| | |
| | | package com.panzhihua.common.model.vos.community; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * |
| | |
| | | * @version 1.0 |
| | | * @since 1.0 |
| | | * @date 2021-06-09 |
| | | * */ |
| | | */ |
| | | @Data |
| | | @ApiModel("高龄老人报表记录返回参数") |
| | | public class ComEldersAuthHistoryVO { |
| | | |
| | | @ApiModelProperty(value = "主键id") |
| | | private Long id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "年份") |
| | | private Integer year; |
| | | private Integer year; |
| | | |
| | | @ApiModelProperty(value = "月份") |
| | | private Integer month; |
| | | private Integer month; |
| | | |
| | | @ApiModelProperty(value = "高龄老人总人数") |
| | | private Integer sum; |
| | | private Integer sum; |
| | | |
| | | @ApiModelProperty(value = "已认证人数") |
| | | private Integer authSum; |
| | | private Integer authSum; |
| | | |
| | | @ApiModelProperty(value = "未认证人数") |
| | | private Integer noAuthSum; |
| | | private Integer noAuthSum; |
| | | |
| | | } |