|
@@ -35,6 +35,9 @@ public class HighClassGroupDto extends ClassGroup {
|
|
@ApiModelProperty(value = "排课次数", required = true)
|
|
@ApiModelProperty(value = "排课次数", required = true)
|
|
private Integer courseTimes;
|
|
private Integer courseTimes;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否跳过节假日 true-跳过 false-不跳过", required = true)
|
|
|
|
+ private Boolean isHoliday;
|
|
|
|
+
|
|
public Integer getUserId() {
|
|
public Integer getUserId() {
|
|
return userId;
|
|
return userId;
|
|
}
|
|
}
|
|
@@ -95,4 +98,12 @@ public class HighClassGroupDto extends ClassGroup {
|
|
public void setTeacherName(String teacherName) {
|
|
public void setTeacherName(String teacherName) {
|
|
this.teacherName = teacherName;
|
|
this.teacherName = teacherName;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Boolean getHoliday() {
|
|
|
|
+ return isHoliday;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setHoliday(Boolean holiday) {
|
|
|
|
+ isHoliday = holiday;
|
|
|
|
+ }
|
|
}
|
|
}
|