|
|
|
@ -3,6 +3,7 @@ package com.ibeetl.jlw.web.query;
|
|
|
|
|
import com.ibeetl.admin.core.annotation.Query;
|
|
|
|
|
import com.ibeetl.admin.core.web.query.PageParam;
|
|
|
|
|
import com.ibeetl.jlw.entity.SchoolClass;
|
|
|
|
|
import com.ibeetl.jlw.web.SchoolClassController;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
@ -30,6 +31,12 @@ public class SchoolClassQuery extends PageParam {
|
|
|
|
|
private Long orgId;
|
|
|
|
|
@Query(name = "后台用户ID", display = false)
|
|
|
|
|
private Long userId;
|
|
|
|
|
/**
|
|
|
|
|
* 通过教师查询指定的班级,目前只有{@link SchoolClassController#getValues}
|
|
|
|
|
* 在用
|
|
|
|
|
*/
|
|
|
|
|
@Query(name = "教师ID", display = false)
|
|
|
|
|
private Long teacherId;
|
|
|
|
|
public Long getClassId(){
|
|
|
|
|
return classId;
|
|
|
|
|
}
|
|
|
|
@ -95,6 +102,14 @@ public class SchoolClassQuery extends PageParam {
|
|
|
|
|
this.universityFacultyId = universityFacultyId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getTeacherId() {
|
|
|
|
|
return teacherId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTeacherId(Long teacherId) {
|
|
|
|
|
this.teacherId = teacherId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SchoolClass pojo(){
|
|
|
|
|
SchoolClass pojo = new SchoolClass();
|
|
|
|
|
pojo.setClassId(this.getClassId());
|
|
|
|
|