From 1fb23cbeeaaeda0a66cf8fe8977c3f5915743cc7 Mon Sep 17 00:00:00 2001
From: fengjin <1435304038@qq.com>
Date: 星期五, 21 十月 2022 15:13:10 +0800
Subject: [PATCH] Merge branch 'zigonggao_dev' into huacheng_test
---
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/grid/admin/ComMngPopulationListDTO.java | 16 ++++++++++------
1 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/grid/admin/ComMngPopulationListDTO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/grid/admin/ComMngPopulationListDTO.java
index 4670b2e..3520e6f 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/grid/admin/ComMngPopulationListDTO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/dtos/grid/admin/ComMngPopulationListDTO.java
@@ -1,11 +1,12 @@
package com.panzhihua.common.model.dtos.grid.admin;
+import javax.validation.constraints.Max;
+
+import org.hibernate.validator.constraints.Length;
+
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
-import org.hibernate.validator.constraints.Length;
-
-import javax.validation.constraints.Max;
/**
* 居民列表-请求参数
@@ -14,7 +15,7 @@
* @version 1.0
* @since 1.0
* @date 2021-05-26
- * */
+ */
@Data
@ApiModel("居民列表-请求参数")
public class ComMngPopulationListDTO {
@@ -28,7 +29,7 @@
@ApiModelProperty(value = "走访状态(1待走访2已走访3待验证5已撤销)")
private Integer eventStatus;
- @Length(max=100)
+ @Length(max = 100)
@ApiModelProperty(value = "人员标签", hidden = false, example = "")
private String label;
@@ -44,7 +45,7 @@
@ApiModelProperty("关联实有房屋(1.是 2.否)")
private Integer isHouse;
- @Length(max=100)
+ @Length(max = 100)
@ApiModelProperty(value = "关键词", hidden = false, example = "")
private String keyWord;
@@ -55,4 +56,7 @@
@ApiModelProperty(value = "(当前操作)用户ID", hidden = true, example = "1")
private Long userId;
+ @ApiModelProperty(value = "身份证号码", hidden = true, example = "1")
+ private String cardNo;
+
}
--
Gitblit v1.7.1