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 communityUserX; @ApiModelProperty("社区用户量y轴") private List communityUserY; @ApiModelProperty("社区活跃度x轴") private List communityActiveUserX; @ApiModelProperty("用户新增数量y轴") private List communityAddUserY; @ApiModelProperty("日活跃用户数量y轴") private List communityActiveUserY; }