cn.com.antcloud.api.riskplus.v1_0.model.ZhimaQueryResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antcloud-api-riskplus Show documentation
Show all versions of antcloud-api-riskplus Show documentation
Ant Chain API SDK For Java
Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.riskplus.v1_0.model;
import java.lang.String;
import javax.validation.constraints.NotNull;
/**
* zhima.customer.ep.identification.query
* 在认证完成后,商户可以查询认证的状态和结果
*/
public class ZhimaQueryResp {
private String epCertNo;
private String epName;
private String failedCode;
private String passed;
@NotNull
private String resultCode;
@NotNull
private String resultMsg;
private String subCode;
private String subMsg;
/**
* 认证的企业证件号 */
public String getEpCertNo() {
return this.epCertNo;
}
/**
* 认证的企业证件号 */
public void setEpCertNo(String epCertNo) {
this.epCertNo = epCertNo;
}
/**
* 认证的企业名 */
public String getEpName() {
return this.epName;
}
/**
* 认证的企业名 */
public void setEpName(String epName) {
this.epName = epName;
}
/**
* 认证不通过的错误码 */
public String getFailedCode() {
return this.failedCode;
}
/**
* 认证不通过的错误码 */
public void setFailedCode(String failedCode) {
this.failedCode = failedCode;
}
/**
* 认证是否通过,通过为true,不通过为false */
public String getPassed() {
return this.passed;
}
/**
* 认证是否通过,通过为true,不通过为false */
public void setPassed(String passed) {
this.passed = passed;
}
/**
* 10000是成功,其余是失败 */
public String getResultCode() {
return this.resultCode;
}
/**
* 10000是成功,其余是失败 */
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
/**
* */
public String getResultMsg() {
return this.resultMsg;
}
/**
* */
public void setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
}
/**
* */
public String getSubCode() {
return this.subCode;
}
/**
* */
public void setSubCode(String subCode) {
this.subCode = subCode;
}
/**
* */
public String getSubMsg() {
return this.subMsg;
}
/**
* */
public void setSubMsg(String subMsg) {
this.subMsg = subMsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy