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