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