Merge remote-tracking branch 'origin/beetlsql3-dev' into beetlsql3-dev
commit
58bcfbdcbd
@ -0,0 +1,91 @@
|
|||||||
|
package com.ibeetl.jlw.entity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 类功能说明
|
||||||
|
*
|
||||||
|
* @Version 0.0.1
|
||||||
|
* @Author 许良彤
|
||||||
|
* @Date 2022/10/29 23:44
|
||||||
|
*/
|
||||||
|
public class TaskTypeParam {
|
||||||
|
|
||||||
|
private String handsOnName;
|
||||||
|
|
||||||
|
private Long typeNum;
|
||||||
|
/**
|
||||||
|
* 视频类型
|
||||||
|
*/
|
||||||
|
private Boolean isVideo;
|
||||||
|
/**
|
||||||
|
* PPT
|
||||||
|
*/
|
||||||
|
private Boolean isPpt;
|
||||||
|
/**
|
||||||
|
* 理论测评
|
||||||
|
*/
|
||||||
|
private Boolean isTheory;
|
||||||
|
/**
|
||||||
|
* 实训操作步骤
|
||||||
|
*/
|
||||||
|
private Boolean isStep;
|
||||||
|
/**
|
||||||
|
* 报告撰写
|
||||||
|
*/
|
||||||
|
private Boolean isRreport;
|
||||||
|
|
||||||
|
public String getHandsOnName() {
|
||||||
|
return handsOnName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHandsOnName(String handsOnName) {
|
||||||
|
this.handsOnName = handsOnName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getTypeNum() {
|
||||||
|
return typeNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTypeNum(Long typeNum) {
|
||||||
|
this.typeNum = typeNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getVideo() {
|
||||||
|
return isVideo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVideo(Boolean video) {
|
||||||
|
isVideo = video;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getPpt() {
|
||||||
|
return isPpt;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPpt(Boolean ppt) {
|
||||||
|
isPpt = ppt;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getTheory() {
|
||||||
|
return isTheory;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTheory(Boolean theory) {
|
||||||
|
isTheory = theory;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getStep() {
|
||||||
|
return isStep;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStep(Boolean step) {
|
||||||
|
isStep = step;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getRreport() {
|
||||||
|
return isRreport;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRreport(Boolean rreport) {
|
||||||
|
isRreport = rreport;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,33 @@
|
|||||||
|
package com.ibeetl.jlw.web.query;
|
||||||
|
|
||||||
|
import com.ibeetl.admin.core.web.query.PageParam;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 类功能说明
|
||||||
|
*
|
||||||
|
* @Version 0.0.1
|
||||||
|
* @Author 许良彤
|
||||||
|
* @Date 2022/10/30 0:06
|
||||||
|
*/
|
||||||
|
public class GetHandsOnListParam extends PageParam {
|
||||||
|
|
||||||
|
private Long teacherOpenCourseId;
|
||||||
|
|
||||||
|
private Long classId;
|
||||||
|
|
||||||
|
public Long getTeacherOpenCourseId() {
|
||||||
|
return teacherOpenCourseId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTeacherOpenCourseId(Long teacherOpenCourseId) {
|
||||||
|
this.teacherOpenCourseId = teacherOpenCourseId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getClassId() {
|
||||||
|
return classId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setClassId(Long classId) {
|
||||||
|
this.classId = classId;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue