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;//党建动态
|
|
}
|