huliguo
2025-05-09 bf2f1ffb99634b8350539b28bd9d1f20b30a5aa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}