You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
350 B

package cn.teammodel.model.vo.admin;
import lombok.Data;
import java.util.Map;
/**
* @author winter
* @create 2023-12-06 14:47
*/
@Data
public class IndexData {
private Integer totalCount;
private Integer praiseCount;
private Integer criticalCount;
private Integer teacherCount;
private Map<Integer, Integer> countByWeek;
}