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 todoEventsVOList; @ApiModelProperty("社区治理动态") private CommunityGovernanceTrendsVO communityGovernanceTrendsVO; @ApiModelProperty("社区活动情况") private List communityActivitiesVOS; }