CzrkJzdz.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package com.boman.domain;
  2. import com.boman.domain.annotation.Excel;
  3. import lombok.AllArgsConstructor;
  4. import lombok.Data;
  5. import lombok.NoArgsConstructor;
  6. import lombok.ToString;
  7. import lombok.experimental.SuperBuilder;
  8. import java.util.List;
  9. import static com.boman.domain.annotation.Excel.Type.IMPORT;
  10. /**
  11. * 常住人口对应的居住地址对象 czrk_jzdz
  12. *
  13. * @author ruoyi
  14. * @date 2022-01-14
  15. */
  16. @Data
  17. @SuperBuilder
  18. @NoArgsConstructor
  19. @AllArgsConstructor
  20. @ToString
  21. public class CzrkJzdz {
  22. private static final long serialVersionUID = 1L;
  23. /**
  24. * 主键
  25. */
  26. private Long id;
  27. /**
  28. * czrk表的id
  29. */
  30. //@Excel(name = "czrk表的id")
  31. private Long czrkId;
  32. /**
  33. * 身份证号码
  34. */
  35. @Excel(name = "身份证号码",type = IMPORT)
  36. private String idCard;
  37. /**
  38. * 姓名
  39. */
  40. //@Excel(name = "姓名")
  41. private String userName;
  42. /**
  43. * 居住地址的排序
  44. */
  45. //@Excel(name = "居住地址的排序")
  46. private Integer sort;
  47. /**
  48. * $column.columnComment
  49. */
  50. //@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  51. private Long deptId;
  52. /**
  53. * 户籍地的省份
  54. */
  55. //@Excel(name = "户籍地的省份")
  56. private String provinceId;
  57. /**
  58. * 户籍地的省份
  59. */
  60. //@Excel(name = "户籍地的省份")
  61. private String province;
  62. /**
  63. * 户籍地的城市
  64. */
  65. //@Excel(name = "户籍地的城市")
  66. private String cityId;
  67. /**
  68. * 户籍地的城市
  69. */
  70. //@Excel(name = "户籍地的城市")
  71. private String city;
  72. /**
  73. * 户籍地的区
  74. */
  75. //@Excel(name = "户籍地的区")
  76. private String regionId;
  77. /**
  78. * 户籍地的区
  79. */
  80. //@Excel(name = "户籍地的区")
  81. private String region;
  82. /**
  83. * 居住地的镇
  84. */
  85. @Excel(name = "居住地的镇Id",type = IMPORT)
  86. private String townId;
  87. /**
  88. * 居住地的镇
  89. */
  90. @Excel(name = "居住地的镇",type = IMPORT)
  91. private String town;
  92. /**
  93. * 居住地的村
  94. */
  95. @Excel(name = "居住地的村Id",type = IMPORT)
  96. private String villageId;
  97. /**
  98. * 居住地的村
  99. */
  100. @Excel(name = "居住地的村",type = IMPORT)
  101. private String village;
  102. /**
  103. * 居住地的详细地址
  104. */
  105. @Excel(name = "居住详细地址",type = IMPORT)
  106. private String nowIn;
  107. @Excel(name = "居住地的组Id",type = IMPORT)
  108. private String villagerGroupId;
  109. @Excel(name = "居住地的组",type = IMPORT)
  110. private String villagerGroup;
  111. /**
  112. * Y有效地址,N无效地址
  113. */
  114. //@Excel(name = "Y有效地址,N无效地址")
  115. private String status = "Y";
  116. private java.sql.Timestamp createTime;
  117. private java.sql.Timestamp updateTime;
  118. private String createBy;
  119. private String updateBy;
  120. /** 部门id集合 */
  121. private List<Long> deptIdList;
  122. }