mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.panzhihua.common.model.vos;
 
import java.util.List;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 运营后台数据看板
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2021-01-05 15:23
 **/
@Data
@ApiModel(value = "运营后台数据看板")
public class IndexDataKanbanVO {
 
    @ApiModelProperty("全部用户")
    private Integer allUser;
    @ApiModelProperty("新增用户")
    private Integer addUser;
    @ApiModelProperty("日活跃用户")
    private Integer activeDayUser;
    @ApiModelProperty("周活跃用户")
    private Integer activeWeekUser;
    @ApiModelProperty("社区用户量x轴")
    private List<String> communityUserX;
    @ApiModelProperty("社区用户量y轴")
    private List<Integer> communityUserY;
    @ApiModelProperty("社区活跃度x轴")
    private List<String> communityActiveUserX;
    @ApiModelProperty("用户新增数量y轴")
    private List<Integer> communityAddUserY;
    @ApiModelProperty("日活跃用户数量y轴")
    private List<Integer> communityActiveUserY;
}