huanghongfa
2021-08-21 2e64c232ab6b51b2cecf1ee96e1e9b709234f326
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
package com.panzhihua.common.model.vos.community.bigscreen;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClasssName BigScreenStatisticParty
 * @Description  大屏数据党建统计信息
 * @Author cedoo
 * @Date 2021/6/15
 * @Version 1.0
 **/
@Data
public class BigScreenStatisticPartyBuild {
 
    @ApiModelProperty(value = "党组织数")
    private Integer orgCount;
    @ApiModelProperty(value = "党员数")
    private Integer memberCount;
    @ApiModelProperty(value = "党员活动数")
    private Integer activityCount;
    @ApiModelProperty(value = "党建宣传数")
    private Integer dynCount;//党建动态
 
}