| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | 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 lombok.Data; |
| | | |
| | | @Data |
| | | @TableName(value = "com_mng_population") |
| | |
| | | /** |
| | | * 年龄 |
| | | */ |
| | | // private Integer age; |
| | | // private Integer age; |
| | | |
| | | /** |
| | | * 证件类型 |
| | |
| | | @EncryptDecryptField |
| | | private String phone; |
| | | /** |
| | | * 外地or本地(1.本地 2.外地) |
| | | * 外地or本地(1.本地 2.外地) |
| | | */ |
| | | private Integer outOrLocal; |
| | | /** |
| | |
| | | * 婚姻状况(1.未婚 2.已婚 3.离异 4.丧偶 5.分居 6.其他) |
| | | */ |
| | | private Integer marriage; |
| | | |
| | | |
| | | /** |
| | | * 健康状况 |
| | |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Date createAt; |
| | | |
| | | /** |
| | | * 创建用戶 |
| | | */ |
| | | private Long createBy; |
| | | /** |
| | | * 修改时间 |
| | | */ |
| | | @TableField(fill = FieldFill.UPDATE) |
| | | private Date updateAt; |
| | | |
| | | /** |
| | | * 修改用戶 |
| | | */ |
| | | private Long updateBy; |
| | | |
| | | /** |
| | | * 小区名字 |
| | |
| | | /** |
| | | * 与户主关系(1.户主 2.配偶 3.子女 4.孙女 5.父母 6.其他) |
| | | */ |
| | | // private Integer relation; |
| | | // |
| | | // private String relationStr; |
| | | // private Integer relation; |
| | | // |
| | | // private String relationStr; |
| | | |
| | | /** |
| | | * 是否居住地 |
| | |
| | | /** |
| | | * 性别(1.男 2.女 3.未知) |
| | | */ |
| | | public interface sex{ |
| | | public interface sex { |
| | | int nan = 1; |
| | | int nv = 2; |
| | | int no = 3; |
| | |
| | | /** |
| | | * 是否租住 |
| | | */ |
| | | public interface isOk{ |
| | | public interface isOk { |
| | | int yes = 1; |
| | | int no = 0; |
| | | } |
| | |
| | | /** |
| | | * 政治面貌 |
| | | */ |
| | | public interface politicalOutlook{ |
| | | public interface politicalOutlook { |
| | | int dang = 1; |
| | | int tuan = 3; |
| | | int wu = 12; |
| | |
| | | } |
| | | |
| | | /** |
| | | * 外地or本地(1.本地 2.外地) |
| | | * 外地or本地(1.本地 2.外地) |
| | | */ |
| | | public interface outOrLocal{ |
| | | public interface outOrLocal { |
| | | int bd = 1; |
| | | int wd = 2; |
| | | } |