From a70919b4f7baab856125f36e5bd41f5ee81be680 Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期二, 13 五月 2025 09:41:35 +0800 Subject: [PATCH] 修改年份切换字段不为必填 --- src/main/java/com/cl/pojo/vo/screen/StatutoryCertificateVO.java | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/cl/pojo/vo/screen/StatutoryCertificateVO.java b/src/main/java/com/cl/pojo/vo/screen/StatutoryCertificateVO.java new file mode 100644 index 0000000..3ded4a2 --- /dev/null +++ b/src/main/java/com/cl/pojo/vo/screen/StatutoryCertificateVO.java @@ -0,0 +1,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; +} -- Gitblit v1.7.1