New file |
| | |
| | | package com.cl.pojo.vo.screen; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @ApiModel("残疾儿童康复救助人数VO") |
| | | @Data |
| | | public class SalvationVO { |
| | | @ApiModelProperty(value = "残疾儿童康复救助人数-0-6岁") |
| | | private Integer salvationBeforeSeven = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾儿童康复救助人数-7岁之后") |
| | | private Integer salvationAfterSeven = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾儿童康复救助人数-孤独症") |
| | | private Integer salvationAutism = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾儿童康复救助人数-智力") |
| | | private Integer salvationIntellect = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾儿童康复救助人数-肢体") |
| | | private Integer salvationLimb = 0; |
| | | |
| | | @ApiModelProperty(value = "残疾儿童康复救助人数-言语") |
| | | private Integer salvationSpeech = 0; |
| | | } |