1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.panzhihua.common.model.vos.community.screen.index;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @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;
|
| }
|
|