123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- package com.boman.domain;
- import com.boman.domain.annotation.Excel;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import lombok.ToString;
- import lombok.experimental.SuperBuilder;
- import java.util.List;
- import static com.boman.domain.annotation.Excel.Type.IMPORT;
- /**
- * 常住人口对应的居住地址对象 czrk_jzdz
- *
- * @author ruoyi
- * @date 2022-01-14
- */
- @Data
- @SuperBuilder
- @NoArgsConstructor
- @AllArgsConstructor
- @ToString
- public class CzrkJzdz {
- private static final long serialVersionUID = 1L;
- /**
- * 主键
- */
- private Long id;
- /**
- * czrk表的id
- */
- //@Excel(name = "czrk表的id")
- private Long czrkId;
- /**
- * 身份证号码
- */
- @Excel(name = "身份证号码",type = IMPORT)
- private String idCard;
- /**
- * 姓名
- */
- //@Excel(name = "姓名")
- private String userName;
- /**
- * 居住地址的排序
- */
- //@Excel(name = "居住地址的排序")
- private Integer sort;
- /**
- * $column.columnComment
- */
- //@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private Long deptId;
- /**
- * 户籍地的省份
- */
- //@Excel(name = "户籍地的省份")
- private String provinceId;
- /**
- * 户籍地的省份
- */
- //@Excel(name = "户籍地的省份")
- private String province;
- /**
- * 户籍地的城市
- */
- //@Excel(name = "户籍地的城市")
- private String cityId;
- /**
- * 户籍地的城市
- */
- //@Excel(name = "户籍地的城市")
- private String city;
- /**
- * 户籍地的区
- */
- //@Excel(name = "户籍地的区")
- private String regionId;
- /**
- * 户籍地的区
- */
- //@Excel(name = "户籍地的区")
- private String region;
- /**
- * 居住地的镇
- */
- @Excel(name = "居住地的镇Id",type = IMPORT)
- private String townId;
- /**
- * 居住地的镇
- */
- @Excel(name = "居住地的镇",type = IMPORT)
- private String town;
- /**
- * 居住地的村
- */
- @Excel(name = "居住地的村Id",type = IMPORT)
- private String villageId;
- /**
- * 居住地的村
- */
- @Excel(name = "居住地的村",type = IMPORT)
- private String village;
- /**
- * 居住地的详细地址
- */
- @Excel(name = "居住详细地址",type = IMPORT)
- private String nowIn;
- @Excel(name = "居住地的组Id",type = IMPORT)
- private String villagerGroupId;
- @Excel(name = "居住地的组",type = IMPORT)
- private String villagerGroup;
- /**
- * Y有效地址,N无效地址
- */
- //@Excel(name = "Y有效地址,N无效地址")
- private String status = "Y";
- private java.sql.Timestamp createTime;
- private java.sql.Timestamp updateTime;
- private String createBy;
- private String updateBy;
- /** 部门id集合 */
- private List<Long> deptIdList;
- }
|