cn.com.antcloud.api.riskplus.v1_0.model.CreditAmount 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.Long;
import java.lang.String;
import java.util.Date;
import javax.validation.constraints.NotNull;
/**
* 天枢系统专用CreditAmount结构体 */
public class CreditAmount {
@NotNull
private Long creditAmount;
@NotNull
private Long restAmount;
@NotNull
private Date payDate;
@NotNull
private Date expireDate;
@NotNull
private String rateUnit;
@NotNull
private Long rateValue;
@NotNull
private String repayWay;
@NotNull
private String status;
private Date payDateSup;
private Date expireDateSup;
/**
* 授信额度 */
public Long getCreditAmount() {
return this.creditAmount;
}
/**
* 授信额度 */
public void setCreditAmount(Long creditAmount) {
this.creditAmount = creditAmount;
}
/**
* 授信余额 */
public Long getRestAmount() {
return this.restAmount;
}
/**
* 授信余额 */
public void setRestAmount(Long restAmount) {
this.restAmount = restAmount;
}
/**
* 发放日期 */
public Date getPayDate() {
return this.payDate;
}
/**
* 发放日期 */
public void setPayDate(Date payDate) {
this.payDate = payDate;
}
/**
* 到期日期 */
public Date getExpireDate() {
return this.expireDate;
}
/**
* 到期日期 */
public void setExpireDate(Date expireDate) {
this.expireDate = expireDate;
}
/**
* 利率单位(1:年,2:月,3:日) */
public String getRateUnit() {
return this.rateUnit;
}
/**
* 利率单位(1:年,2:月,3:日) */
public void setRateUnit(String rateUnit) {
this.rateUnit = rateUnit;
}
/**
* 执行利率,利率值,单位%
* 年化5%,rateValue=5
*/
public Long getRateValue() {
return this.rateValue;
}
/**
* 执行利率,利率值,单位%
* 年化5%,rateValue=5
*/
public void setRateValue(Long rateValue) {
this.rateValue = rateValue;
}
/**
* 还款方式1等额本息2等额本金3先息后本4一次性利随本清5只还本金6等本等息 */
public String getRepayWay() {
return this.repayWay;
}
/**
* 还款方式1等额本息2等额本金3先息后本4一次性利随本清5只还本金6等本等息 */
public void setRepayWay(String repayWay) {
this.repayWay = repayWay;
}
/**
* 状态0-正常 1-冻结 2-终止 */
public String getStatus() {
return this.status;
}
/**
* 状态0-正常 1-冻结 2-终止 */
public void setStatus(String status) {
this.status = status;
}
/**
* 发放日期(兼容字段) */
public Date getPayDateSup() {
return this.payDateSup;
}
/**
* 发放日期(兼容字段) */
public void setPayDateSup(Date payDateSup) {
this.payDateSup = payDateSup;
}
/**
* 到期日期(兼容字段) */
public Date getExpireDateSup() {
return this.expireDateSup;
}
/**
* 到期日期(兼容字段) */
public void setExpireDateSup(Date expireDateSup) {
this.expireDateSup = expireDateSup;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy