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 StatutoryCertificateVO { |
| | | @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-视力") |
| | | private Integer statutoryCertificateEyesight = 0; |
| | | |
| | | @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-智力") |
| | | private Integer statutoryCertificateIntellect = 0; |
| | | |
| | | @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-肢体") |
| | | private Integer statutoryCertificateLimb = 0; |
| | | |
| | | @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-言语") |
| | | private Integer statutoryCertificateSpeech = 0; |
| | | |
| | | @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-听力") |
| | | private Integer statutoryCertificateHearing = 0; |
| | | } |