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.
18 lines
316 B
18 lines
316 B
1 year ago
|
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 Map<Integer, Integer> countByWeek;
|
||
|
}
|