From e23f9ac4b32e7dd1386f1050b7b669ace97f187f Mon Sep 17 00:00:00 2001 From: manailin <261030956@qq.com> Date: 星期二, 27 七月 2021 21:58:03 +0800 Subject: [PATCH] [新增]新增根据区域ID,查询下属的网络列表数据 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngPopulationServeExcelVO.java | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngPopulationServeExcelVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngPopulationServeExcelVO.java index c9d6341..0789848 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngPopulationServeExcelVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComMngPopulationServeExcelVO.java @@ -2,6 +2,8 @@ import com.alibaba.excel.annotation.ExcelProperty; import com.google.common.collect.Lists; +import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass; +import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; import lombok.Data; import java.io.Serializable; @@ -13,12 +15,14 @@ * @author: llming */ @Data +@EncryptDecryptClass public class ComMngPopulationServeExcelVO implements Serializable { @ExcelProperty(value = "姓名", index = 0) private String name; @ExcelProperty(value = "身份证号码", index = 1) + @EncryptDecryptField private String cardNo; @ExcelProperty(value = "民族", index = 2) @@ -144,7 +148,7 @@ @ExcelProperty(value = "是否死亡(是/否)", index = 41) private Integer death; - @ExcelProperty(value = "退役军人(是/否)", index = 41) + @ExcelProperty(value = "退役军人(是/否)", index = 42) private Integer veterans; @ExcelProperty(value = "残疾人(是/否)", index = 43) -- Gitblit v1.7.1