|
|
|
@ -32,6 +32,12 @@ public class TeacherOpenCourseMergeStudent extends BaseEntity{
|
|
|
|
|
@Dict(type="teacher_open_course.teacher_open_course_title.teacher_open_course_status=1")
|
|
|
|
|
|
|
|
|
|
private Long teacherOpenCourseId ;
|
|
|
|
|
|
|
|
|
|
@FetchOne("teacherOpenCourseId")
|
|
|
|
|
@DictDeep
|
|
|
|
|
@UpdateIgnore
|
|
|
|
|
@InsertIgnore
|
|
|
|
|
private TeacherOpenCourse teacherOpenCourseInfo;
|
|
|
|
|
|
|
|
|
|
//加入类型 (枚举 OpenCourseMergeJoinTypeEnum)
|
|
|
|
|
@Dict(type="open_course_merge_join_type")
|
|
|
|
@ -181,4 +187,12 @@ public class TeacherOpenCourseMergeStudent extends BaseEntity{
|
|
|
|
|
public void setStudentInfo(Student studentInfo) {
|
|
|
|
|
this.studentInfo = studentInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TeacherOpenCourse getTeacherOpenCourseInfo() {
|
|
|
|
|
return teacherOpenCourseInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTeacherOpenCourseInfo(TeacherOpenCourse teacherOpenCourseInfo) {
|
|
|
|
|
this.teacherOpenCourseInfo = teacherOpenCourseInfo;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|