Merge remote-tracking branch 'origin/beetlsql3-dev' into beetlsql3-dev
commit
6ed2a4ab96
@ -0,0 +1,22 @@
|
||||
package com.ibeetl.jlw.entity;
|
||||
|
||||
/**
|
||||
* 类功能说明
|
||||
*
|
||||
* @Version 0.0.1
|
||||
* @Author 许良彤
|
||||
* @Date 2022/10/26 21:57
|
||||
*/
|
||||
public class SchoolAdminIndex {
|
||||
|
||||
//注册学生数
|
||||
|
||||
//注册老师数
|
||||
|
||||
//登录人数
|
||||
|
||||
//登录人次
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
package com.ibeetl.jlw.entity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 类功能说明
|
||||
*
|
||||
* @Version 0.0.1
|
||||
* @Author 许良彤
|
||||
* @Date 2022/10/26 22:11
|
||||
*/
|
||||
public class StudentHandsOnTaskReportParam {
|
||||
|
||||
private Long count;
|
||||
|
||||
private List<StudentHandsOnTaskReportParams> params;
|
||||
|
||||
public Long getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void setCount(Long count) {
|
||||
this.count = count;
|
||||
}
|
||||
|
||||
public List<StudentHandsOnTaskReportParams> getParams() {
|
||||
return params;
|
||||
}
|
||||
|
||||
public void setParams(List<StudentHandsOnTaskReportParams> params) {
|
||||
this.params = params;
|
||||
}
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
package com.ibeetl.jlw.entity;
|
||||
|
||||
/**
|
||||
* 类功能说明
|
||||
*
|
||||
* @Version 0.0.1
|
||||
* @Author 许良彤
|
||||
* @Date 2022/10/26 22:12
|
||||
*/
|
||||
public class StudentHandsOnTaskReportParams {
|
||||
|
||||
/**
|
||||
* 课程名称
|
||||
*/
|
||||
private String courseName;
|
||||
|
||||
/**
|
||||
* 班级
|
||||
*/
|
||||
private String className;
|
||||
|
||||
/**
|
||||
* 待审阅份数
|
||||
*/
|
||||
private Long toBeReviewed;
|
||||
|
||||
public String getCourseName() {
|
||||
return courseName;
|
||||
}
|
||||
|
||||
public void setCourseName(String courseName) {
|
||||
this.courseName = courseName;
|
||||
}
|
||||
|
||||
public String getClassName() {
|
||||
return className;
|
||||
}
|
||||
|
||||
public void setClassName(String className) {
|
||||
this.className = className;
|
||||
}
|
||||
|
||||
public Long getToBeReviewed() {
|
||||
return toBeReviewed;
|
||||
}
|
||||
|
||||
public void setToBeReviewed(Long toBeReviewed) {
|
||||
this.toBeReviewed = toBeReviewed;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue