123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- package com.ruoyi.system.domain.idcard;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import com.ruoyi.system.domain.enterprise.SysUserEnterprise;
- import com.ruoyi.system.domain.loan.LoanApplication;
- import java.util.List;
- /**
- * 用户身份证信息对象 sys_user_idcard
- *
- * @author boman
- * @date 2024-04-22
- */
- public class SysUserIdcard extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 用户ID */
- private Long userId;
- /** 身份证号码 */
- private String idCard;
- /** 真实姓名 */
- @Excel(name = "真实姓名")
- private String realName;
- /** 失效日期 */
- @Excel(name = "失效日期")
- private String expirationDate;
- /** 手机号码 */
- @Excel(name = "手机号码")
- private String phonenumber;
- /** 居住地址 */
- @Excel(name = "居住地址")
- private String address;
- /** 正面地址 */
- @Excel(name = "正面地址")
- private String front;
- /** 反面地址 */
- @Excel(name = "反面地址")
- private String back;
- /**
- * H5新增是使用
- */
- private String certifyId;
- /**
- * 企业数量
- */
- private Integer sysUserEnterpriseNum;
- /**
- * 企业集合
- */
- private List<SysUserEnterprise> sysUserEnterpriseList;
- /**
- * 贷款申请数量
- */
- private Integer loanApplicationNum;
- /**
- * 贷款申请集合
- */
- private List<LoanApplication> loanApplicationList;
- /**
- * MetaInfo环境参数,需要通过客户端SDK获取
- *
- * {"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"}
- */
- private String metaInfo;
- /**
- * 您的业务页面回跳的目标地址。
- */
- private String returnUrl;
- public String getMetaInfo() {
- return metaInfo;
- }
- public void setMetaInfo(String metaInfo) {
- this.metaInfo = metaInfo;
- }
- public String getReturnUrl() {
- return returnUrl;
- }
- public void setReturnUrl(String returnUrl) {
- this.returnUrl = returnUrl;
- }
- public String getCertifyId() {
- return certifyId;
- }
- public void setCertifyId(String certifyId) {
- this.certifyId = certifyId;
- }
- public Integer getSysUserEnterpriseNum() {
- return sysUserEnterpriseNum;
- }
- public void setSysUserEnterpriseNum(Integer sysUserEnterpriseNum) {
- this.sysUserEnterpriseNum = sysUserEnterpriseNum;
- }
- public List<SysUserEnterprise> getSysUserEnterpriseList() {
- return sysUserEnterpriseList;
- }
- public void setSysUserEnterpriseList(List<SysUserEnterprise> sysUserEnterpriseList) {
- this.sysUserEnterpriseList = sysUserEnterpriseList;
- }
- public Integer getLoanApplicationNum() {
- return loanApplicationNum;
- }
- public void setLoanApplicationNum(Integer loanApplicationNum) {
- this.loanApplicationNum = loanApplicationNum;
- }
- public List<LoanApplication> getLoanApplicationList() {
- return loanApplicationList;
- }
- public void setLoanApplicationList(List<LoanApplication> loanApplicationList) {
- this.loanApplicationList = loanApplicationList;
- }
- /** 删除标志(0代表存在 2代表删除) */
- private String delFlag;
- public void setUserId(Long userId)
- {
- this.userId = userId;
- }
- public Long getUserId()
- {
- return userId;
- }
- public void setIdCard(String idCard)
- {
- this.idCard = idCard;
- }
- public String getIdCard()
- {
- return idCard;
- }
- public void setRealName(String realName)
- {
- this.realName = realName;
- }
- public String getRealName()
- {
- return realName;
- }
- public void setExpirationDate(String expirationDate)
- {
- this.expirationDate = expirationDate;
- }
- public String getExpirationDate()
- {
- return expirationDate;
- }
- public void setPhonenumber(String phonenumber)
- {
- this.phonenumber = phonenumber;
- }
- public String getPhonenumber()
- {
- return phonenumber;
- }
- public void setAddress(String address)
- {
- this.address = address;
- }
- public String getAddress()
- {
- return address;
- }
- public void setFront(String front)
- {
- this.front = front;
- }
- public String getFront()
- {
- return front;
- }
- public void setBack(String back)
- {
- this.back = back;
- }
- public String getBack()
- {
- return back;
- }
- public void setDelFlag(String delFlag)
- {
- this.delFlag = delFlag;
- }
- public String getDelFlag()
- {
- return delFlag;
- }
- @Override
- public String toString() {
- return "SysUserIdcard{" +
- "userId=" + userId +
- ", idCard='" + idCard + '\'' +
- ", realName='" + realName + '\'' +
- ", expirationDate='" + expirationDate + '\'' +
- ", phonenumber='" + phonenumber + '\'' +
- ", address='" + address + '\'' +
- ", front='" + front + '\'' +
- ", back='" + back + '\'' +
- ", certifyId='" + certifyId + '\'' +
- ", sysUserEnterpriseNum=" + sysUserEnterpriseNum +
- ", sysUserEnterpriseList=" + sysUserEnterpriseList +
- ", loanApplicationNum=" + loanApplicationNum +
- ", loanApplicationList=" + loanApplicationList +
- ", metaInfo='" + metaInfo + '\'' +
- ", returnUrl='" + returnUrl + '\'' +
- ", delFlag='" + delFlag + '\'' +
- '}';
- }
- }
|