SysUserIdcard.java 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. package com.ruoyi.system.domain.idcard;
  2. import com.ruoyi.common.annotation.Excel;
  3. import com.ruoyi.common.core.domain.BaseEntity;
  4. import com.ruoyi.system.domain.enterprise.SysUserEnterprise;
  5. import com.ruoyi.system.domain.loan.LoanApplication;
  6. import java.util.List;
  7. /**
  8. * 用户身份证信息对象 sys_user_idcard
  9. *
  10. * @author boman
  11. * @date 2024-04-22
  12. */
  13. public class SysUserIdcard extends BaseEntity
  14. {
  15. private static final long serialVersionUID = 1L;
  16. /** 用户ID */
  17. private Long userId;
  18. /** 身份证号码 */
  19. private String idCard;
  20. /** 真实姓名 */
  21. @Excel(name = "真实姓名")
  22. private String realName;
  23. /** 失效日期 */
  24. @Excel(name = "失效日期")
  25. private String expirationDate;
  26. /** 手机号码 */
  27. @Excel(name = "手机号码")
  28. private String phonenumber;
  29. /** 居住地址 */
  30. @Excel(name = "居住地址")
  31. private String address;
  32. /** 正面地址 */
  33. @Excel(name = "正面地址")
  34. private String front;
  35. /** 反面地址 */
  36. @Excel(name = "反面地址")
  37. private String back;
  38. /**
  39. * H5新增是使用
  40. */
  41. private String certifyId;
  42. /**
  43. * 企业数量
  44. */
  45. private Integer sysUserEnterpriseNum;
  46. /**
  47. * 企业集合
  48. */
  49. private List<SysUserEnterprise> sysUserEnterpriseList;
  50. /**
  51. * 贷款申请数量
  52. */
  53. private Integer loanApplicationNum;
  54. /**
  55. * 贷款申请集合
  56. */
  57. private List<LoanApplication> loanApplicationList;
  58. /**
  59. * MetaInfo环境参数,需要通过客户端SDK获取
  60. *
  61. * {"zimVer":"3.0.0","appVersion": "1","bioMetaInfo": "4.1.0:1150****,0","appName": "com.aliyun.antcloudauth","deviceType": "ios","osVersion": "iOS 10.3.2","apdidToken": "","deviceModel": "iPhone9,1"}
  62. */
  63. private String metaInfo;
  64. /**
  65. * 您的业务页面回跳的目标地址。
  66. */
  67. private String returnUrl;
  68. public String getMetaInfo() {
  69. return metaInfo;
  70. }
  71. public void setMetaInfo(String metaInfo) {
  72. this.metaInfo = metaInfo;
  73. }
  74. public String getReturnUrl() {
  75. return returnUrl;
  76. }
  77. public void setReturnUrl(String returnUrl) {
  78. this.returnUrl = returnUrl;
  79. }
  80. public String getCertifyId() {
  81. return certifyId;
  82. }
  83. public void setCertifyId(String certifyId) {
  84. this.certifyId = certifyId;
  85. }
  86. public Integer getSysUserEnterpriseNum() {
  87. return sysUserEnterpriseNum;
  88. }
  89. public void setSysUserEnterpriseNum(Integer sysUserEnterpriseNum) {
  90. this.sysUserEnterpriseNum = sysUserEnterpriseNum;
  91. }
  92. public List<SysUserEnterprise> getSysUserEnterpriseList() {
  93. return sysUserEnterpriseList;
  94. }
  95. public void setSysUserEnterpriseList(List<SysUserEnterprise> sysUserEnterpriseList) {
  96. this.sysUserEnterpriseList = sysUserEnterpriseList;
  97. }
  98. public Integer getLoanApplicationNum() {
  99. return loanApplicationNum;
  100. }
  101. public void setLoanApplicationNum(Integer loanApplicationNum) {
  102. this.loanApplicationNum = loanApplicationNum;
  103. }
  104. public List<LoanApplication> getLoanApplicationList() {
  105. return loanApplicationList;
  106. }
  107. public void setLoanApplicationList(List<LoanApplication> loanApplicationList) {
  108. this.loanApplicationList = loanApplicationList;
  109. }
  110. /** 删除标志(0代表存在 2代表删除) */
  111. private String delFlag;
  112. public void setUserId(Long userId)
  113. {
  114. this.userId = userId;
  115. }
  116. public Long getUserId()
  117. {
  118. return userId;
  119. }
  120. public void setIdCard(String idCard)
  121. {
  122. this.idCard = idCard;
  123. }
  124. public String getIdCard()
  125. {
  126. return idCard;
  127. }
  128. public void setRealName(String realName)
  129. {
  130. this.realName = realName;
  131. }
  132. public String getRealName()
  133. {
  134. return realName;
  135. }
  136. public void setExpirationDate(String expirationDate)
  137. {
  138. this.expirationDate = expirationDate;
  139. }
  140. public String getExpirationDate()
  141. {
  142. return expirationDate;
  143. }
  144. public void setPhonenumber(String phonenumber)
  145. {
  146. this.phonenumber = phonenumber;
  147. }
  148. public String getPhonenumber()
  149. {
  150. return phonenumber;
  151. }
  152. public void setAddress(String address)
  153. {
  154. this.address = address;
  155. }
  156. public String getAddress()
  157. {
  158. return address;
  159. }
  160. public void setFront(String front)
  161. {
  162. this.front = front;
  163. }
  164. public String getFront()
  165. {
  166. return front;
  167. }
  168. public void setBack(String back)
  169. {
  170. this.back = back;
  171. }
  172. public String getBack()
  173. {
  174. return back;
  175. }
  176. public void setDelFlag(String delFlag)
  177. {
  178. this.delFlag = delFlag;
  179. }
  180. public String getDelFlag()
  181. {
  182. return delFlag;
  183. }
  184. @Override
  185. public String toString() {
  186. return "SysUserIdcard{" +
  187. "userId=" + userId +
  188. ", idCard='" + idCard + '\'' +
  189. ", realName='" + realName + '\'' +
  190. ", expirationDate='" + expirationDate + '\'' +
  191. ", phonenumber='" + phonenumber + '\'' +
  192. ", address='" + address + '\'' +
  193. ", front='" + front + '\'' +
  194. ", back='" + back + '\'' +
  195. ", certifyId='" + certifyId + '\'' +
  196. ", sysUserEnterpriseNum=" + sysUserEnterpriseNum +
  197. ", sysUserEnterpriseList=" + sysUserEnterpriseList +
  198. ", loanApplicationNum=" + loanApplicationNum +
  199. ", loanApplicationList=" + loanApplicationList +
  200. ", metaInfo='" + metaInfo + '\'' +
  201. ", returnUrl='" + returnUrl + '\'' +
  202. ", delFlag='" + delFlag + '\'' +
  203. '}';
  204. }
  205. }