PersonsEntity.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. package me.zhengjie.dao.mybatis.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. /**
  8. * <p>
  9. * 当事人/代理人信息
  10. * </p>
  11. *
  12. * @author humuyu
  13. * @since 2022-03-10
  14. */
  15. @TableName("persons")
  16. public class PersonsEntity implements Serializable {
  17. private static final long serialVersionUID = 1L;
  18. @TableId(value = "id", type = IdType.AUTO)
  19. private Integer id;
  20. /**
  21. * 是否法人,当事人为组织或企业时填写
  22. */
  23. @TableField("zzlx")
  24. private Integer zzlx;
  25. /**
  26. * 法人类别,当事人为组织或企业时填写
  27. */
  28. @TableField("frlb")
  29. private String frlb;
  30. /**
  31. * 法定代表人,当事人为组织或企业时填写
  32. */
  33. @TableField("fddbr")
  34. private String fddbr;
  35. /**
  36. * 当事人类别 参照 当事人/代理人类别 字典
  37. */
  38. @TableField("nature_type")
  39. private String natureType;
  40. /**
  41. * 当事人姓名/单位名称
  42. */
  43. @TableField("dsrmc")
  44. private String dsrmc;
  45. /**
  46. * 证件类型
  47. */
  48. @TableField("zjlx")
  49. private String zjlx;
  50. /**
  51. * 证件号码
  52. */
  53. @TableField("zjhm")
  54. private String zjhm;
  55. /**
  56. * 国籍
  57. */
  58. @TableField("gjdm")
  59. private String gjdm;
  60. /**
  61. * 身份特征
  62. */
  63. @TableField("sftz")
  64. private String sftz;
  65. /**
  66. * 地址
  67. */
  68. @TableField("lxdz")
  69. private String lxdz;
  70. /**
  71. * 电话
  72. */
  73. @TableField("lxdh")
  74. private String lxdh;
  75. public Integer getId() {
  76. return id;
  77. }
  78. public PersonsEntity setId(Integer id) {
  79. this.id = id;
  80. return this;
  81. }
  82. public Integer getZzlx() {
  83. return zzlx;
  84. }
  85. public PersonsEntity setZzlx(Integer zzlx) {
  86. this.zzlx = zzlx;
  87. return this;
  88. }
  89. public String getFrlb() {
  90. return frlb;
  91. }
  92. public PersonsEntity setFrlb(String frlb) {
  93. this.frlb = frlb;
  94. return this;
  95. }
  96. public String getFddbr() {
  97. return fddbr;
  98. }
  99. public PersonsEntity setFddbr(String fddbr) {
  100. this.fddbr = fddbr;
  101. return this;
  102. }
  103. public String getNatureType() {
  104. return natureType;
  105. }
  106. public PersonsEntity setNatureType(String natureType) {
  107. this.natureType = natureType;
  108. return this;
  109. }
  110. public String getDsrmc() {
  111. return dsrmc;
  112. }
  113. public PersonsEntity setDsrmc(String dsrmc) {
  114. this.dsrmc = dsrmc;
  115. return this;
  116. }
  117. public String getZjlx() {
  118. return zjlx;
  119. }
  120. public PersonsEntity setZjlx(String zjlx) {
  121. this.zjlx = zjlx;
  122. return this;
  123. }
  124. public String getZjhm() {
  125. return zjhm;
  126. }
  127. public PersonsEntity setZjhm(String zjhm) {
  128. this.zjhm = zjhm;
  129. return this;
  130. }
  131. public String getGjdm() {
  132. return gjdm;
  133. }
  134. public PersonsEntity setGjdm(String gjdm) {
  135. this.gjdm = gjdm;
  136. return this;
  137. }
  138. public String getSftz() {
  139. return sftz;
  140. }
  141. public PersonsEntity setSftz(String sftz) {
  142. this.sftz = sftz;
  143. return this;
  144. }
  145. public String getLxdz() {
  146. return lxdz;
  147. }
  148. public PersonsEntity setLxdz(String lxdz) {
  149. this.lxdz = lxdz;
  150. return this;
  151. }
  152. public String getLxdh() {
  153. return lxdh;
  154. }
  155. public PersonsEntity setLxdh(String lxdh) {
  156. this.lxdh = lxdh;
  157. return this;
  158. }
  159. @Override
  160. public String toString() {
  161. return "PersonsEntity{" +
  162. "id=" + id +
  163. ", zzlx=" + zzlx +
  164. ", frlb=" + frlb +
  165. ", fddbr=" + fddbr +
  166. ", natureType=" + natureType +
  167. ", dsrmc=" + dsrmc +
  168. ", zjlx=" + zjlx +
  169. ", zjhm=" + zjhm +
  170. ", gjdm=" + gjdm +
  171. ", sftz=" + sftz +
  172. ", lxdz=" + lxdz +
  173. ", lxdh=" + lxdh +
  174. "}";
  175. }
  176. }