Explorar o código

提高班添加跳过节假日

周箭河 %!s(int64=5) %!d(string=hai) anos
pai
achega
d5ec0d98d8

+ 11 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dto/HighClassGroupDto.java

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