New file |
| | |
| | | package com.cl.pojo.vo.screen; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @ApiModel("右下角数据") |
| | | @Data |
| | | public class RightDownVO { |
| | | @ApiModelProperty(value = "公益文体活动-开展次数") |
| | | private Integer activityFrequency = 0; |
| | | |
| | | @ApiModelProperty(value = "公益文体活动-参加人数") |
| | | private Integer educationNumber = 0; |
| | | |
| | | @ApiModelProperty(value = "服务”一件事“办件数") |
| | | private Integer matter = 0; |
| | | |
| | | @ApiModelProperty(value = "家庭医生签约增值服务数") |
| | | private Integer doctorApprecitation = 0; |
| | | |
| | | @ApiModelProperty(value = "困难重度残疾人家庭无障碍改造实施改造户数") |
| | | private Integer remould = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾人接访情况-办公室接访") |
| | | private Integer interviewsOffice = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾人接访情况-电话接访") |
| | | private Integer interviewsPhone = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾人接访情况-上级交办") |
| | | private Integer interviewsSuperior = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾人接访情况-12345交办") |
| | | private Integer interviewsHotline = 0; |
| | | } |