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;
- @Data
- @SuperBuilder
- @NoArgsConstructor
- @AllArgsConstructor
- @ToString
- public class CzrkJzdz {
- private static final long serialVersionUID = 1L;
-
- private Long id;
-
-
- private Long czrkId;
-
- @Excel(name = "身份证",type = IMPORT)
- private String idCard;
-
-
- private String userName;
-
-
- private Integer sort;
-
-
- private Long deptId;
-
-
- private String provinceId;
-
-
- private String province;
-
-
- private String cityId;
-
-
- private String city;
-
-
- private String regionId;
-
-
- 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;
-
-
- private String status = "Y";
- private java.sql.Timestamp createTime;
- private java.sql.Timestamp updateTime;
- private String createBy;
- private String updateBy;
-
- private List<Long> deptIdList;
- }
|