|
|
|
@ -20,6 +20,9 @@ public class TeacherOpenCourseMergeCourseInfoQuery extends PageParam {
|
|
|
|
|
@Query(name = "开课ID", display = false,type=Query.TYPE_DICT,dict="teacher_open_course.teacher_open_course_title.teacher_open_course_status=1")
|
|
|
|
|
private Long teacherOpenCourseId;
|
|
|
|
|
|
|
|
|
|
@Query(name = "系统课程ID", display = true)
|
|
|
|
|
private Long systemCourseInfoId ;
|
|
|
|
|
|
|
|
|
|
@NotEmpty(message = "章节名称不能为空", groups =ValidateConfig.ADD.class)
|
|
|
|
|
@Query(name = "课程名称", display = true)
|
|
|
|
|
private String courseInfoName;
|
|
|
|
@ -287,4 +290,12 @@ public class TeacherOpenCourseMergeCourseInfoQuery extends PageParam {
|
|
|
|
|
public void setInnerJoin(Boolean innerJoin) {
|
|
|
|
|
this.innerJoin = innerJoin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getSystemCourseInfoId() {
|
|
|
|
|
return systemCourseInfoId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSystemCourseInfoId(Long systemCourseInfoId) {
|
|
|
|
|
this.systemCourseInfoId = systemCourseInfoId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|