mitao
2025-05-20 179c4d64313c9b7572778da4aaaf6c6584fe457d
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;
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField;
import lombok.Data;
/**
 * 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;
    /**
     * 身份证号码
     */
@@ -87,7 +88,7 @@
    @EncryptDecryptField
    private String phone;
    /**
     * 外地or本地(1.本地  2.外地)
     * 外地or本地(1.本地 2.外地)
     */
    private Integer outOrLocal;
    /**
@@ -115,6 +116,10 @@
     */
    private String nativePlace;
    /**
     * 民族code
     */
    private String nativeCode;
    /**
     * 民族
     */
    private String nation;
@@ -128,22 +133,14 @@
    private String villageName;
    /**
     * 与户主关系(1.户主 2.配偶 3.子女 4.孙女 5.父母 6.其他)
     */
//    private Integer relation;
//
//    private String relationStr;
    /**
     * 文化程度(1.小学 2.初中 3.高中 4.中专 5.大专 6.本科 7.硕士 8.博士 9.其他)
     */
    private Integer cultureLevel;
    private String cultureLevel;
    /**
     * 婚姻状况(1.未婚 2.已婚 3.离异 4.丧偶 5.分居 6.其他)
     */
    private Integer marriage;
    /**
     * 健康状况
@@ -159,46 +156,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;
    }
}