|
|
|
@ -4,6 +4,8 @@ import com.ibeetl.admin.core.annotation.Dict;
|
|
|
|
|
import com.ibeetl.admin.core.entity.BaseEntity;
|
|
|
|
|
import com.ibeetl.admin.core.util.ValidateConfig;
|
|
|
|
|
import org.beetl.sql.annotation.entity.AssignID;
|
|
|
|
|
import org.beetl.sql.fetch.annotation.Fetch;
|
|
|
|
|
import org.beetl.sql.fetch.annotation.FetchOne;
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
|
import java.util.Date;
|
|
|
|
@ -12,6 +14,7 @@ import java.util.Date;
|
|
|
|
|
* 应用-关联-课程开课
|
|
|
|
|
* gen by Spring Boot2 Admin 2022-10-20
|
|
|
|
|
*/
|
|
|
|
|
@Fetch
|
|
|
|
|
public class ApplicationMergeTeacherOpenCourse extends BaseEntity{
|
|
|
|
|
|
|
|
|
|
//应用-开课关联ID
|
|
|
|
@ -25,6 +28,9 @@ public class ApplicationMergeTeacherOpenCourse extends BaseEntity{
|
|
|
|
|
@Dict(type="resources_application.application_name.1=1")
|
|
|
|
|
|
|
|
|
|
private Long resourcesApplicationId ;
|
|
|
|
|
|
|
|
|
|
@FetchOne("resourcesApplicationId")
|
|
|
|
|
private ResourcesApplication resourcesApplication;
|
|
|
|
|
|
|
|
|
|
//教师开课ID
|
|
|
|
|
@Dict(type="teacher_open_course.teacher_open_course_title.teacher_open_course_status=1")
|
|
|
|
@ -125,4 +131,11 @@ public class ApplicationMergeTeacherOpenCourse extends BaseEntity{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ResourcesApplication getResourcesApplication() {
|
|
|
|
|
return resourcesApplication;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setResourcesApplication(ResourcesApplication resourcesApplication) {
|
|
|
|
|
this.resourcesApplication = resourcesApplication;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|