|
@@ -20,6 +20,8 @@ public class TeacherIncomeDto extends CourseSchedule {
|
|
|
|
|
|
private TeacherAttendance teacherAttendance;
|
|
|
|
|
|
+ private Boolean belongToDaya;
|
|
|
+
|
|
|
private List<TeacherSalaryDeductReasonDto> deductReasons;
|
|
|
|
|
|
public TeacherAttendance getTeacherAttendance() {
|
|
@@ -63,4 +65,12 @@ public class TeacherIncomeDto extends CourseSchedule {
|
|
|
public void setDeductReasons(List<TeacherSalaryDeductReasonDto> deductReasons) {
|
|
|
this.deductReasons = deductReasons;
|
|
|
}
|
|
|
+
|
|
|
+ public Boolean getBelongToDaya() {
|
|
|
+ return belongToDaya;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBelongToDaya(Boolean belongToDaya) {
|
|
|
+ this.belongToDaya = belongToDaya;
|
|
|
+ }
|
|
|
}
|