huanghongfa
2021-12-28 8dd5c057222ea4f6d22d6bc3fba468600f14a330
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.panzhihua.common.model.vos.community.screen.index;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel("大屏首页实有人口年龄段数据统计返回参数")
public class IndexPopulationAgeStatisticsVO {
 
    @ApiModelProperty("年龄段(1、0-16  2、16-27 3、27-35 4、35-45 5、45-55 6、55以上)")
    private Integer type;
 
    @ApiModelProperty("数量")
    private Integer sum = 0;
 
    @ApiModelProperty("占比")
    private BigDecimal percent;
 
}