puhanshu
2022-07-23 bbda2ee1af4e86d76f93e00386d77efb56c60d5f
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
39
40
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 BigScreenStatisticAgeGender {
 
    @ApiModelProperty(value = "男性占比")
    private Double manPer;
    @ApiModelProperty(value = "男性数量")
    private Integer manTotal;
    @ApiModelProperty(value = "女性占比")
    private Double womenPer;
    @ApiModelProperty(value = "女性数量")
    private Integer womeTotal;
 
    @ApiModelProperty(value = "年龄段总数 30以下")
    private Double thirtyPer;
    @ApiModelProperty(value = "年龄段占比 30以下")
    private Integer thirtyTotal;
 
    @ApiModelProperty(value = "年龄段总数 30-60")
    private Double sixtyPer;
    @ApiModelProperty(value = "年龄段占比 30-60")
    private Integer sixtyTotal;
 
    @ApiModelProperty(value = "年龄段总数 60以上")
    private Double biggerPer;
    @ApiModelProperty(value = "年龄段占比 60以上")
    private Integer biggerTotal;
 
}