|
@@ -1,11 +1,9 @@
|
|
|
package com.ruoyi.system.domain.idcard;
|
|
|
|
|
|
-import com.ruoyi.system.domain.enterprise.SysUserEnterprise;
|
|
|
-import com.ruoyi.system.domain.loan.LoanApplication;
|
|
|
-import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
-import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
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;
|
|
|
|
|
@@ -48,6 +46,10 @@ public class SysUserIdcard extends BaseEntity
|
|
|
|
|
|
@Excel(name = "反面地址")
|
|
|
private String back;
|
|
|
+
|
|
|
+ * H5新增是使用
|
|
|
+ */
|
|
|
+ private String certifyId;
|
|
|
|
|
|
* 企业数量
|
|
|
*/
|
|
@@ -65,6 +67,41 @@ public class SysUserIdcard extends BaseEntity
|
|
|
*/
|
|
|
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;
|
|
|
}
|
|
@@ -184,21 +221,23 @@ public class SysUserIdcard extends BaseEntity
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("userId", getUserId())
|
|
|
- .append("idCard", getIdCard())
|
|
|
- .append("realName", getRealName())
|
|
|
- .append("expirationDate", getExpirationDate())
|
|
|
- .append("phonenumber", getPhonenumber())
|
|
|
- .append("address", getAddress())
|
|
|
- .append("front", getFront())
|
|
|
- .append("back", getBack())
|
|
|
- .append("delFlag", getDelFlag())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("remark", getRemark())
|
|
|
- .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 + '\'' +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|