|
@@ -3,12 +3,14 @@ package com.ym.mec.biz.dal.entity;
|
|
|
import com.ym.mec.auth.api.entity.SysUser;
|
|
|
import com.ym.mec.biz.dal.dto.MusicScoreSubjectDto;
|
|
|
import com.ym.mec.biz.dal.dto.StudentLessonTrainingDetailWrapper;
|
|
|
+import com.ym.mec.biz.dal.enums.ELessonTrainingType;
|
|
|
import com.ym.mec.biz.dal.enums.GroupType;
|
|
|
import com.ym.mec.biz.dal.enums.ImSendTypeEnum;
|
|
|
import com.ym.mec.common.entity.BaseEntity;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -94,6 +96,8 @@ public class ExtracurricularExercises extends BaseEntity {
|
|
|
|
|
|
private List<MusicScoreSubjectDto> musicScoreSubjectDtos;
|
|
|
|
|
|
+ @ApiModelProperty(value = "作业类型 来源(HOMEWORK,EXTRACURRICULAR,EXTRA)",required = true)
|
|
|
+ private String type;
|
|
|
|
|
|
@ApiModelProperty("乐团名")
|
|
|
private String musicGroupName;
|
|
@@ -108,6 +112,14 @@ public class ExtracurricularExercises extends BaseEntity {
|
|
|
@ApiModelProperty("新版作业 time:2023-03-31")
|
|
|
private List<StudentLessonTrainingDetailWrapper.AddStudentLessonTrainingDetail> studentLessonTrainingDetails;
|
|
|
|
|
|
+ public String getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
public String getVersionTag() {
|
|
|
return versionTag;
|
|
|
}
|