From 5f91a8d7816954e705b033b56ba91f3544b21d25 Mon Sep 17 00:00:00 2001 From: manailin <261030956@qq.com> Date: 星期一, 28 六月 2021 15:54:06 +0800 Subject: [PATCH] [修改]修改注释 --- springcloud_k8s_panzhihuazhihuishequ/service_api/src/main/java/com/panzhihua/serviceapi/model/dto/ComMngPopulationDTO.java | 60 +++++++----------------------------------------------------- 1 files changed, 7 insertions(+), 53 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_api/src/main/java/com/panzhihua/serviceapi/model/dto/ComMngPopulationDTO.java b/springcloud_k8s_panzhihuazhihuishequ/service_api/src/main/java/com/panzhihua/serviceapi/model/dto/ComMngPopulationDTO.java index 6d616e9..7738b4b 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_api/src/main/java/com/panzhihua/serviceapi/model/dto/ComMngPopulationDTO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_api/src/main/java/com/panzhihua/serviceapi/model/dto/ComMngPopulationDTO.java @@ -1,12 +1,17 @@ package com.panzhihua.serviceapi.model.dto; -import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass; import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; import lombok.Data; import java.io.Serializable; import java.util.Date; - +/** + * program 攀枝花智慧社区项目 + * description 实有人口信息 + * + * @author manailin + * Date 2021-06-22 15:30 + **/ @Data public class ComMngPopulationDTO implements Serializable { private static final long serialVersionUID = 1L; @@ -35,10 +40,6 @@ * 性别(1.男 2.女 3.未知) */ private Integer sex; - /** - * 年龄 - */ -// private Integer age; /** * 身份证号码 */ @@ -127,12 +128,6 @@ */ private String villageName; - /** - * 与户主关系(1.户主 2.配偶 3.子女 4.孙女 5.父母 6.其他) - */ -// private Integer relation; -// -// private String relationStr; /** * 文化程度(1.小学 2.初中 3.高中 4.中专 5.大专 6.本科 7.硕士 8.博士 9.其他) @@ -159,46 +154,5 @@ * 出生年月日 */ private String birthday; - - /** - * 居住地房屋id - */ -// private Long houseId; - - /** - * 性别(1.男 2.女 3.未知) - */ - public interface sex{ - int nan = 1; - int nv = 2; - int no = 3; - } - - /** - * 是否租住 - */ - public interface isOk{ - int yes = 1; - int no = 0; - } - - /** - * 政治面貌 - */ - public interface politicalOutlook{ - int dang = 1; - int tuan = 3; - int wu = 12; - int qun = 13; - int no = 13; - } - - /** - * 外地or本地(1.本地 2.外地) - */ - public interface outOrLocal{ - int bd = 1; - int wd = 2; - } } -- Gitblit v1.7.1