You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
503 B
Java
29 lines
503 B
Java
package com.ibeetl.jlw.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 院校-用户中心-权限信息
|
|
* @author mlx
|
|
*/
|
|
@Data
|
|
public class UniversitiesCollegesRuleInfo {
|
|
|
|
/**
|
|
* 课程数量(院校这里,只能看到开课课程)
|
|
*/
|
|
private Integer courseInfoCount;
|
|
/**
|
|
* 应用数量
|
|
*/
|
|
private Integer applicationCount;
|
|
/**
|
|
* 教师用户数
|
|
*/
|
|
private Integer teacherCount;
|
|
/**
|
|
* 学生用户数
|
|
*/
|
|
private Integer studentCount;
|
|
}
|