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 CertificateVO { |
| | | @ApiModelProperty(value = "持证残疾人数-视力") |
| | | private Integer certificateEyesight = 0; |
| | | |
| | | @ApiModelProperty(value = "持证残疾人数-智力") |
| | | private Integer certificateIntellect = 0; |
| | | |
| | | @ApiModelProperty(value = "持证残疾人数-肢体") |
| | | private Integer certificateLimb = 0; |
| | | |
| | | @ApiModelProperty(value = "持证残疾人数-言语") |
| | | private Integer certificateSpeech = 0; |
| | | |
| | | @ApiModelProperty(value = "持证残疾人数-听力") |
| | | private Integer certificateHearing = 0; |
| | | |
| | | @ApiModelProperty(value = "持证残疾人数-精神") |
| | | private Integer certificateSpirit = 0; |
| | | |
| | | @ApiModelProperty(value = "持证残疾人数-多重") |
| | | private Integer certificateMultiple = 0; |
| | | } |