cn.com.antcloud.api.riskplus.v1_0.response.QueryCreditStatusResponse 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.response;
import cn.com.antcloud.api.product.AntCloudProdResponse;
import cn.com.antcloud.api.riskplus.v1_0.model.CreditAmount;
import java.lang.Long;
import java.lang.String;
import java.util.Date;
/**
* 天枢系统授信额度查询接口 */
public class QueryCreditStatusResponse extends AntCloudProdResponse {
private String status;
private String msg;
private Long creditAmt;
private Long period;
private String repayType;
private CreditAmount creditInfo;
private String customNo;
private String applyNo;
private String fundCode;
private Date coolingPeriod;
private String loanInstCode;
/**
* 授信状态(0-通过/1-不通过2-处理中) */
public String getStatus() {
return this.status;
}
/**
* 授信状态(0-通过/1-不通过2-处理中) */
public void setStatus(String status) {
this.status = status;
}
/**
* 拒绝原因 */
public String getMsg() {
return this.msg;
}
/**
* 拒绝原因 */
public void setMsg(String msg) {
this.msg = msg;
}
/**
* 授信额度 */
public Long getCreditAmt() {
return this.creditAmt;
}
/**
* 授信额度 */
public void setCreditAmt(Long creditAmt) {
this.creditAmt = creditAmt;
}
/**
* 期数 */
public Long getPeriod() {
return this.period;
}
/**
* 期数 */
public void setPeriod(Long period) {
this.period = period;
}
/**
* 还款方式 */
public String getRepayType() {
return this.repayType;
}
/**
* 还款方式 */
public void setRepayType(String repayType) {
this.repayType = repayType;
}
/**
* 额度信息 */
public CreditAmount getCreditInfo() {
return this.creditInfo;
}
/**
* 额度信息 */
public void setCreditInfo(CreditAmount creditInfo) {
this.creditInfo = creditInfo;
}
/**
* 客户编号(该客户的唯一标识,后续接口需要用到) */
public String getCustomNo() {
return this.customNo;
}
/**
* 客户编号(该客户的唯一标识,后续接口需要用到) */
public void setCustomNo(String customNo) {
this.customNo = customNo;
}
/**
* 授信申请编号 */
public String getApplyNo() {
return this.applyNo;
}
/**
* 授信申请编号 */
public void setApplyNo(String applyNo) {
this.applyNo = applyNo;
}
/**
* 资金方编号 */
public String getFundCode() {
return this.fundCode;
}
/**
* 资金方编号 */
public void setFundCode(String fundCode) {
this.fundCode = fundCode;
}
/**
* 冷静期结束日期 */
public Date getCoolingPeriod() {
return this.coolingPeriod;
}
/**
* 冷静期结束日期 */
public void setCoolingPeriod(Date coolingPeriod) {
this.coolingPeriod = coolingPeriod;
}
/**
* 资金源编码 */
public String getLoanInstCode() {
return this.loanInstCode;
}
/**
* 资金源编码 */
public void setLoanInstCode(String loanInstCode) {
this.loanInstCode = loanInstCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy