|
@@ -48,6 +48,9 @@ public class ClassGroup4MixDto {
|
|
|
@ApiModelProperty(value = "排课方式(new -新增 renew-重排)", required = true)
|
|
|
private String courseAddType;
|
|
|
|
|
|
+ @ApiModelProperty(value = "预计学生人数", required = true)
|
|
|
+ private Integer expectStudentNum;
|
|
|
+
|
|
|
public String getMusicGroupId() {
|
|
|
return musicGroupId;
|
|
|
}
|
|
@@ -151,4 +154,12 @@ public class ClassGroup4MixDto {
|
|
|
public void setCourseAddType(String courseAddType) {
|
|
|
this.courseAddType = courseAddType;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getExpectStudentNum() {
|
|
|
+ return expectStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExpectStudentNum(Integer expectStudentNum) {
|
|
|
+ this.expectStudentNum = expectStudentNum;
|
|
|
+ }
|
|
|
}
|