|
@@ -0,0 +1,104 @@
|
|
|
|
+package com.ym.mec.biz.dal.entity;
|
|
|
|
+
|
|
|
|
+import com.ym.mec.biz.dal.enums.ClassGroupTypeEnum;
|
|
|
|
+import com.ym.mec.biz.dal.enums.GroupType;
|
|
|
|
+import com.ym.mec.common.entity.BaseEntity;
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
+
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+public class ClassGroupDto extends BaseEntity {
|
|
|
|
+
|
|
|
|
+ private GroupType groupType;
|
|
|
|
+
|
|
|
|
+ /** */
|
|
|
|
+ @ApiModelProperty(value = "乐团编号", required = true)
|
|
|
|
+ private String musicGroupId;
|
|
|
|
+
|
|
|
|
+ /** */
|
|
|
|
+ @ApiModelProperty(value = "科目编号(多个,号分割)", required = true)
|
|
|
|
+ private String subjectIdList;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "学生编号(多个,号分割)", required = true)
|
|
|
|
+ private String userIds;
|
|
|
|
+
|
|
|
|
+ /** 班级名称 */
|
|
|
|
+ @ApiModelProperty(value = "班级名称", required = true)
|
|
|
|
+ private String name;
|
|
|
|
+
|
|
|
|
+ /** 预计招生人数 */
|
|
|
|
+ @ApiModelProperty(value = "预计招生人数", required = true)
|
|
|
|
+ private Integer expectStudentNum;
|
|
|
|
+
|
|
|
|
+ /** 班级类型(普通班级、合奏班级) */
|
|
|
|
+ @ApiModelProperty(value = "班级类型(普通班级、合奏班级、提高课班级、VIP班级、试听课)", required = true)
|
|
|
|
+ private ClassGroupTypeEnum type;
|
|
|
|
+
|
|
|
|
+ private List<ClassGroupTeacherMapper> teacherMapperList = new ArrayList<ClassGroupTeacherMapper>();
|
|
|
|
+
|
|
|
|
+ public GroupType getGroupType() {
|
|
|
|
+ return groupType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGroupType(GroupType groupType) {
|
|
|
|
+ this.groupType = groupType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getMusicGroupId() {
|
|
|
|
+ return musicGroupId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setMusicGroupId(String musicGroupId) {
|
|
|
|
+ this.musicGroupId = musicGroupId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSubjectIdList() {
|
|
|
|
+ return subjectIdList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSubjectIdList(String subjectIdList) {
|
|
|
|
+ this.subjectIdList = subjectIdList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getUserIds() {
|
|
|
|
+ return userIds;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setUserIds(String userIds) {
|
|
|
|
+ this.userIds = userIds;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getName() {
|
|
|
|
+ return name;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setName(String name) {
|
|
|
|
+ this.name = name;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getExpectStudentNum() {
|
|
|
|
+ return expectStudentNum;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExpectStudentNum(Integer expectStudentNum) {
|
|
|
|
+ this.expectStudentNum = expectStudentNum;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public ClassGroupTypeEnum getType() {
|
|
|
|
+ return type;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setType(ClassGroupTypeEnum type) {
|
|
|
|
+ this.type = type;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<ClassGroupTeacherMapper> getTeacherMapperList() {
|
|
|
|
+ return teacherMapperList;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTeacherMapperList(List<ClassGroupTeacherMapper> teacherMapperList) {
|
|
|
|
+ this.teacherMapperList = teacherMapperList;
|
|
|
|
+ }
|
|
|
|
+}
|