|
@@ -5,6 +5,8 @@ import com.ym.mec.biz.dal.enums.StudentAttendanceStatusEnum;
|
|
import com.ym.mec.biz.dal.enums.TeachTypeEnum;
|
|
import com.ym.mec.biz.dal.enums.TeachTypeEnum;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @Author Joburgess
|
|
* @Author Joburgess
|
|
* @Date 2019/9/17
|
|
* @Date 2019/9/17
|
|
@@ -51,12 +53,22 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
|
|
|
private String groupName;
|
|
private String groupName;
|
|
|
|
|
|
|
|
+ private List<StudentNameAndPhoneDto> students;
|
|
|
|
+
|
|
@ApiModelProperty(value = "是否是第一次进行学生点名")
|
|
@ApiModelProperty(value = "是否是第一次进行学生点名")
|
|
private int studentAttendanceIsFirstTime;
|
|
private int studentAttendanceIsFirstTime;
|
|
|
|
|
|
@ApiModelProperty(value = "能否进行调整")
|
|
@ApiModelProperty(value = "能否进行调整")
|
|
private int enableAdjustInToday;
|
|
private int enableAdjustInToday;
|
|
|
|
|
|
|
|
+ public List<StudentNameAndPhoneDto> getStudents() {
|
|
|
|
+ return students;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStudents(List<StudentNameAndPhoneDto> students) {
|
|
|
|
+ this.students = students;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getSubjectId() {
|
|
public String getSubjectId() {
|
|
return subjectId;
|
|
return subjectId;
|
|
}
|
|
}
|