|
|
|
@ -3,10 +3,12 @@ package com.ibeetl.jlw.entity;
|
|
|
|
|
import com.ibeetl.admin.core.entity.BaseEntity;
|
|
|
|
|
import com.ibeetl.admin.core.util.ValidateConfig;
|
|
|
|
|
import com.ibeetl.jlw.entity.vo.HandsOnTaskProblemVO;
|
|
|
|
|
import com.ibeetl.jlw.web.query.TeacherOpenCourseHandsOnSimulationTasksFile;
|
|
|
|
|
import org.beetl.sql.annotation.entity.AssignID;
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 教师开课-课程实操-实训任务
|
|
|
|
@ -81,6 +83,12 @@ public class TeacherOpenCourseHandsOnSimulationTasks extends BaseEntity{
|
|
|
|
|
|
|
|
|
|
private Date addTime ;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 附件列表
|
|
|
|
|
*/
|
|
|
|
|
private String teacherOpenCourseHandsOnSimulationTasksFile;
|
|
|
|
|
private List<TeacherOpenCourseHandsOnSimulationTasksFile> teacherOpenCourseHandsOnSimulationTasksFileList;
|
|
|
|
|
|
|
|
|
|
private HandsOnTaskProblemVO handsOnTaskProblemVo;
|
|
|
|
|
|
|
|
|
|
public HandsOnTaskProblemVO getHandsOnTaskProblemVo() {
|
|
|
|
@ -302,5 +310,19 @@ public class TeacherOpenCourseHandsOnSimulationTasks extends BaseEntity{
|
|
|
|
|
this.addTime = addTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getTeacherOpenCourseHandsOnSimulationTasksFile() {
|
|
|
|
|
return teacherOpenCourseHandsOnSimulationTasksFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTeacherOpenCourseHandsOnSimulationTasksFile(String teacherOpenCourseHandsOnSimulationTasksFile) {
|
|
|
|
|
this.teacherOpenCourseHandsOnSimulationTasksFile = teacherOpenCourseHandsOnSimulationTasksFile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<TeacherOpenCourseHandsOnSimulationTasksFile> getTeacherOpenCourseHandsOnSimulationTasksFileList() {
|
|
|
|
|
return teacherOpenCourseHandsOnSimulationTasksFileList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTeacherOpenCourseHandsOnSimulationTasksFileList(List<TeacherOpenCourseHandsOnSimulationTasksFile> teacherOpenCourseHandsOnSimulationTasksFileList) {
|
|
|
|
|
this.teacherOpenCourseHandsOnSimulationTasksFileList = teacherOpenCourseHandsOnSimulationTasksFileList;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|