|
|
|
@ -1,48 +1,49 @@
|
|
|
|
|
package com.ibeetl.jlw.web.query;
|
|
|
|
|
|
|
|
|
|
import com.ibeetl.admin.core.util.TimeTool;
|
|
|
|
|
import com.ibeetl.jlw.entity.UniversitiesCollegesJurisdictionCurriculumResources;
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
|
import com.ibeetl.admin.core.annotation.Query;
|
|
|
|
|
import com.ibeetl.admin.core.util.Tool;
|
|
|
|
|
import com.ibeetl.admin.core.util.enums.CoreDictType;
|
|
|
|
|
import com.ibeetl.admin.core.util.TimeTool;
|
|
|
|
|
import com.ibeetl.admin.core.web.query.PageParam;
|
|
|
|
|
import com.ibeetl.jlw.entity.UniversitiesCollegesJurisdictionCurriculumResources;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*UniversitiesCollegesJurisdictionCurriculumResources查询
|
|
|
|
|
*/
|
|
|
|
|
public class UniversitiesCollegesJurisdictionCurriculumResourcesQuery extends PageParam {
|
|
|
|
|
@Query(name = "ID", display = true)
|
|
|
|
|
@Query(name = "ID", display = false)
|
|
|
|
|
private Long universitiesCollegesJurisdictionCurriculumResourcesId;
|
|
|
|
|
@Query(name = "院校ID", display = true)
|
|
|
|
|
@Query(name = "院校ID", display = false)
|
|
|
|
|
private Long universitiesCollegesId;
|
|
|
|
|
@Query(name = "类型(1子应用系统 2实务课程系统 3考证课程类系统)", display = true)
|
|
|
|
|
@Query(name = "类型(1子应用系统 2实务课程系统 3考证课程类系统)", display = false)
|
|
|
|
|
private Integer type;
|
|
|
|
|
@Query(name = "对应ID", display = true)
|
|
|
|
|
@Query(name = "对应ID", display = false)
|
|
|
|
|
private Long typeId;
|
|
|
|
|
@Query(name = "使用级别(0不使用 1购买 2试用)", display = true)
|
|
|
|
|
@Query(name = "使用级别(0不使用 1购买 2试用)", display = false)
|
|
|
|
|
private Integer useType;
|
|
|
|
|
@Query(name = "开始时间", display = true)
|
|
|
|
|
@Query(name = "开始时间", display = false)
|
|
|
|
|
private String useStartTime;
|
|
|
|
|
@Query(name = "结束时间", display = true)
|
|
|
|
|
@Query(name = "结束时间", display = false)
|
|
|
|
|
private String useEndTime;
|
|
|
|
|
@Query(name = "二级课程名", display = true)
|
|
|
|
|
@Query(name = "二级课程名", display = false)
|
|
|
|
|
private String secondLevelName;
|
|
|
|
|
@Query(name = "二级课程logo", display = true)
|
|
|
|
|
@Query(name = "二级课程logo", display = false)
|
|
|
|
|
private String secondLevelLogo;
|
|
|
|
|
@Query(name = "添加时间", display = true)
|
|
|
|
|
@Query(name = "添加时间", display = false)
|
|
|
|
|
private Date addTime;
|
|
|
|
|
@Query(name = "组织机构ID", display = true)
|
|
|
|
|
@Query(name = "组织机构ID", display = false)
|
|
|
|
|
private Long orgId;
|
|
|
|
|
@Query(name = "后台用户ID", display = true)
|
|
|
|
|
@Query(name = "后台用户ID", display = false)
|
|
|
|
|
private Long userId;
|
|
|
|
|
@Query(name = "实验系统ID", display = true)
|
|
|
|
|
@Query(name = "课程名称", display = false)
|
|
|
|
|
|
|
|
|
|
private Long courseInfoId;//课程ID
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 课程名称模糊匹配
|
|
|
|
|
*/
|
|
|
|
|
private String courseInfoName;
|
|
|
|
|
|
|
|
|
|
private Long universitiesCollegesJurisdictionExperimentalSystemId; //暂时无用
|
|
|
|
|
public Long getUniversitiesCollegesJurisdictionCurriculumResourcesId(){
|
|
|
|
|
return universitiesCollegesJurisdictionCurriculumResourcesId;
|
|
|
|
@ -153,4 +154,12 @@ public class UniversitiesCollegesJurisdictionCurriculumResourcesQuery extends Pa
|
|
|
|
|
public void setCourseInfoId(Long courseInfoId) {
|
|
|
|
|
this.courseInfoId = courseInfoId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCourseInfoName() {
|
|
|
|
|
return courseInfoName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCourseInfoName(String courseInfoName) {
|
|
|
|
|
this.courseInfoName = courseInfoName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|