com.yunzhanghu.sdk.authentication.domain.NotifyUserExemptedInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
云账户综合服务平台官方 SDK for Java,支持 Java JDK 1.8 及以上版本
Copyright © 2013 - 2024 云账户技术(天津)有限公司
云账户开放平台:https://open.yunzhanghu.com
package com.yunzhanghu.sdk.authentication.domain;
// 非居民身份证验证名单审核结果回调通知
public class NotifyUserExemptedInfoRequest {
// 综合服务主体 ID
private String brokerId;
// 平台企业 ID
private String dealerId;
// 姓名
private String realName;
// 证件号
private String idCard;
// 审核状态
private String status;
// 流水号
private String ref;
// 审核信息
private String comment;
public void setBrokerId(String brokerId) {
this.brokerId = brokerId;
}
public String getBrokerId() {
return brokerId;
}
public void setDealerId(String dealerId) {
this.dealerId = dealerId;
}
public String getDealerId() {
return dealerId;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getRealName() {
return realName;
}
public void setIdCard(String idCard) {
this.idCard = idCard;
}
public String getIdCard() {
return idCard;
}
public void setStatus(String status) {
this.status = status;
}
public String getStatus() {
return status;
}
public void setRef(String ref) {
this.ref = ref;
}
public String getRef() {
return ref;
}
public void setComment(String comment) {
this.comment = comment;
}
public String getComment() {
return comment;
}
@Override
public String toString() {
return "NotifyUserExemptedInfoRequest{" +
" brokerId='" + brokerId + '\'' +
", dealerId='" + dealerId + '\'' +
", realName='" + realName + '\'' +
", idCard='" + idCard + '\'' +
", status='" + status + '\'' +
", ref='" + ref + '\'' +
", comment='" + comment + '\'' +
"}";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy