package com.mindskip.xzs.viewmodel.teacher.index;
|
|
|
import com.mindskip.xzs.domain.other.KeyValue;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @version 2.2.0
|
* @description: 教师端首页数据
|
* Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司
|
* @date 2021 /9/7 9:45
|
*/
|
@Data
|
public class TeacherIndexVM {
|
/**
|
* 班级数
|
*/
|
private Integer classesCount;
|
/**
|
* 用户数
|
*/
|
private Integer userCount;
|
/**
|
* 试卷数
|
*/
|
private Integer examPaperCount;
|
/**
|
* 题目数
|
*/
|
private Integer questionCount;
|
/**
|
* 班级用户分布
|
*/
|
private List<KeyValue> classUserPie;
|
/**
|
* 班级试卷分布
|
*/
|
private List<KeyValue> classPaperPie;
|
}
|