package com.panzhihua.common.model.vos.community.questnaire;
|
|
import java.math.BigDecimal;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* 统计汇总表头返回数据
|
*/
|
@Data
|
public class QuestnaireStatisticsSummaryHeaderAdminVO {
|
|
@ApiModelProperty(value = "填报志愿者数量")
|
private Integer volunteerCount = 0;
|
@ApiModelProperty(value = "填报党员")
|
private Integer partymemberCount = 0;
|
@ApiModelProperty("总填报量")
|
private Integer allCount = 0;
|
@ApiModelProperty("总浏览量")
|
private Integer viewNum = 0;
|
@ApiModelProperty("今日新增")
|
private Integer todayCount = 0;
|
@ApiModelProperty("未填报志愿者")
|
private Integer noVolunteerCount = 0;
|
@ApiModelProperty("未填报党员")
|
private Integer noPartymemberCount = 0;
|
@ApiModelProperty("填报率")
|
private BigDecimal tag = BigDecimal.ZERO;
|
@ApiModelProperty("社区小程序用户总人数")
|
private Integer userCount = 0;
|
|
}
|