|
@@ -4,6 +4,7 @@ import com.ym.mec.biz.dal.entity.CourseSchedule;
|
|
|
import com.ym.mec.biz.dal.enums.PracticeGroupType;
|
|
|
import com.ym.mec.biz.dal.enums.StudentAttendanceStatusEnum;
|
|
|
import com.ym.mec.biz.dal.enums.TeachTypeEnum;
|
|
|
+import com.ym.mec.biz.dal.enums.UpdateAttendanceEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.util.List;
|
|
@@ -83,6 +84,9 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
//申述内容
|
|
|
private String complaintsContent;
|
|
|
|
|
|
+ //申诉考勤的方式 SIGN_IN签到,SIGN_OUT签退,ALL所有
|
|
|
+ private UpdateAttendanceEnum complaintsType;
|
|
|
+
|
|
|
//申述凭证
|
|
|
private String url;
|
|
|
|
|
@@ -93,6 +97,14 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
|
|
|
private PracticeGroupType practiceType;
|
|
|
|
|
|
+ public UpdateAttendanceEnum getComplaintsType() {
|
|
|
+ return complaintsType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setComplaintsType(UpdateAttendanceEnum complaintsType) {
|
|
|
+ this.complaintsType = complaintsType;
|
|
|
+ }
|
|
|
+
|
|
|
public String getHeadUrl() {
|
|
|
return headUrl;
|
|
|
}
|