Pu Zhibing
2025-02-27 f0a9a41697a8568e8b3bd3436c450e68b3298916
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
38
package com.panzhihua.common.model.vos;
 
import java.util.List;
 
import com.panzhihua.common.model.vos.community.CommunityActivitiesVO;
import com.panzhihua.common.model.vos.community.CommunityGovernanceTrendsVO;
import com.panzhihua.common.model.vos.community.TodoEventsVO;
 
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-06 09:39
 **/
@Data
@ApiModel(value = "社区管理后台数据看板")
public class IndexDataVO {
 
    @ApiModelProperty("全部用户")
    private Integer allUser;
    @ApiModelProperty("已登记房屋")
    private Integer house;
    @ApiModelProperty("志愿者人数")
    private Integer volunteerUser;
    @ApiModelProperty("党员人数")
    private Integer partymemberUser;
    @ApiModelProperty("代办事件")
    private List<TodoEventsVO> todoEventsVOList;
    @ApiModelProperty("社区治理动态")
    private CommunityGovernanceTrendsVO communityGovernanceTrendsVO;
    @ApiModelProperty("社区活动情况")
    private List<CommunityActivitiesVO> communityActivitiesVOS;
 
}