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/SalvationVO.java | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/cl/pojo/vo/screen/SalvationVO.java b/src/main/java/com/cl/pojo/vo/screen/SalvationVO.java index f8b5db4..c04bf85 100644 --- a/src/main/java/com/cl/pojo/vo/screen/SalvationVO.java +++ b/src/main/java/com/cl/pojo/vo/screen/SalvationVO.java @@ -8,20 +8,20 @@ @Data public class SalvationVO { @ApiModelProperty(value = "残疾儿童康复救助人数-0-6岁") - private Integer salvationBeforeSeven; + private Integer salvationBeforeSeven = 0; @ApiModelProperty(value = "残疾儿童康复救助人数-7岁之后") - private Integer salvationAfterSeven; + private Integer salvationAfterSeven = 0; @ApiModelProperty(value = "残疾儿童康复救助人数-孤独症") - private Integer salvationAutism; + private Integer salvationAutism = 0; @ApiModelProperty(value = "残疾儿童康复救助人数-智力") - private Integer salvationIntellect; + private Integer salvationIntellect = 0; @ApiModelProperty(value = "残疾儿童康复救助人数-肢体") - private Integer salvationLimb; + private Integer salvationLimb = 0; @ApiModelProperty(value = "残疾儿童康复救助人数-言语") - private Integer salvationSpeech; + private Integer salvationSpeech = 0; } -- Gitblit v1.7.1