|
@@ -5,6 +5,7 @@ import com.ym.mec.biz.dal.entity.PracticeGroup;
|
|
|
import com.ym.mec.biz.dal.enums.SignInStatusEnum;
|
|
|
import com.ym.mec.biz.dal.enums.SignOutStatusEnum;
|
|
|
import com.ym.mec.biz.dal.enums.YesOrNoEnum;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
@@ -57,6 +58,9 @@ public class CourseScheduleEndDto extends CourseSchedule {
|
|
|
/** 合作单位 */
|
|
|
private String cooperationOrgan;
|
|
|
|
|
|
+ @ApiModelProperty(value = "被合并的课程ids,多个,分割")
|
|
|
+ private String mergedCourseIds;
|
|
|
+
|
|
|
public Date getGenerateTime() {
|
|
|
return generateTime;
|
|
|
}
|
|
@@ -224,4 +228,12 @@ public class CourseScheduleEndDto extends CourseSchedule {
|
|
|
public void setCooperationOrgan(String cooperationOrgan) {
|
|
|
this.cooperationOrgan = cooperationOrgan;
|
|
|
}
|
|
|
+
|
|
|
+ public String getMergedCourseIds() {
|
|
|
+ return mergedCourseIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMergedCourseIds(String mergedCourseIds) {
|
|
|
+ this.mergedCourseIds = mergedCourseIds;
|
|
|
+ }
|
|
|
}
|