|  | @@ -1,9 +1,11 @@
 | 
	
		
			
				|  |  |  package com.ym.mec.biz.dal.dto;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.entity.ClassGroupTeacherMapper;
 | 
	
		
			
				|  |  | +import com.ym.mec.biz.dal.enums.TeachModeEnum;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiOperation;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +import java.util.Date;
 | 
	
		
			
				|  |  |  import java.util.List;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  /**
 | 
	
	
		
			
				|  | @@ -24,11 +26,23 @@ public class BatchCourseAdjustDto {
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "是否跳过节假日 true-跳过 false-不跳过", required = true)
 | 
	
		
			
				|  |  |      private Boolean isHoliday;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    @ApiModelProperty(value = "开始时间", required = true)
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "开始日期", required = true)
 | 
	
		
			
				|  |  |      private String startDate;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    @ApiModelProperty(value = "排课循环方式", required = true)
 | 
	
		
			
				|  |  | -    private List<CourseTimeDto> courseTimeDtoList;
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "开始时间")
 | 
	
		
			
				|  |  | +    private String startTime;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "课程暂停时间")
 | 
	
		
			
				|  |  | +    private String pauseDate;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "课程恢复时间")
 | 
	
		
			
				|  |  | +    private String recoveryDate;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "老师设置", required = true)
 | 
	
		
			
				|  |  | +    private List<ClassGroupTeacherMapper> classGroupTeacherMapperList;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "教学形式")
 | 
	
		
			
				|  |  | +    private TeachModeEnum teachMode;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "是否允许0课酬")
 | 
	
		
			
				|  |  |      private Boolean allowZeroSalary = false;
 | 
	
	
		
			
				|  | @@ -36,6 +50,57 @@ public class BatchCourseAdjustDto {
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "教学点")
 | 
	
		
			
				|  |  |      private Integer schoolId;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "确认生成课程")
 | 
	
		
			
				|  |  | +    private Boolean confirmGenerate = false;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String getPauseDate() {
 | 
	
		
			
				|  |  | +        return pauseDate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setPauseDate(String pauseDate) {
 | 
	
		
			
				|  |  | +        this.pauseDate = pauseDate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String getRecoveryDate() {
 | 
	
		
			
				|  |  | +        return recoveryDate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setRecoveryDate(String recoveryDate) {
 | 
	
		
			
				|  |  | +        this.recoveryDate = recoveryDate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public String getStartTime() {
 | 
	
		
			
				|  |  | +        return startTime;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setStartTime(String startTime) {
 | 
	
		
			
				|  |  | +        this.startTime = startTime;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public TeachModeEnum getTeachMode() {
 | 
	
		
			
				|  |  | +        return teachMode;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setTeachMode(TeachModeEnum teachMode) {
 | 
	
		
			
				|  |  | +        this.teachMode = teachMode;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public List<ClassGroupTeacherMapper> getClassGroupTeacherMapperList() {
 | 
	
		
			
				|  |  | +        return classGroupTeacherMapperList;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setClassGroupTeacherMapperList(List<ClassGroupTeacherMapper> classGroupTeacherMapperList) {
 | 
	
		
			
				|  |  | +        this.classGroupTeacherMapperList = classGroupTeacherMapperList;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public Boolean getConfirmGenerate() {
 | 
	
		
			
				|  |  | +        return confirmGenerate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setConfirmGenerate(Boolean confirmGenerate) {
 | 
	
		
			
				|  |  | +        this.confirmGenerate = confirmGenerate;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      public Boolean getChangeMainTeacher() {
 | 
	
		
			
				|  |  |          return changeMainTeacher;
 | 
	
		
			
				|  |  |      }
 | 
	
	
		
			
				|  | @@ -76,14 +141,6 @@ public class BatchCourseAdjustDto {
 | 
	
		
			
				|  |  |          this.startDate = startDate;
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    public List<CourseTimeDto> getCourseTimeDtoList() {
 | 
	
		
			
				|  |  | -        return courseTimeDtoList;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -    public void setCourseTimeDtoList(List<CourseTimeDto> courseTimeDtoList) {
 | 
	
		
			
				|  |  | -        this.courseTimeDtoList = courseTimeDtoList;
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |      public Boolean getAllowZeroSalary() {
 | 
	
		
			
				|  |  |          return allowZeroSalary;
 | 
	
		
			
				|  |  |      }
 |