com.alipay.api.domain.InstallmentRepayPlanVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.Date;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 分期还款计划
*
* @author auto create
* @since 1.0, 2024-09-10 14:37:18
*/
public class InstallmentRepayPlanVO extends AlipayObject {
private static final long serialVersionUID = 2761785767497733812L;
/**
* 账单到期还款日
*/
@ApiField("due_date")
private Date dueDate;
/**
* 实际还款金额:本金和利息
没有还款则为全部0
*/
@ApiField("payed_amount")
private BillTermAmountVO payedAmount;
/**
* 有还款,则返回最新的还款时间;没有还款:则为空
*/
@ApiField("payed_date")
private Date payedDate;
/**
* 开始时间
*/
@ApiField("start_date")
private Date startDate;
/**
* 账单的状态
*/
@ApiField("status")
private String status;
/**
* 分期金额,是到期应还
*/
@ApiField("term_amount")
private BillTermAmountVO termAmount;
/**
* 分期期数,默认M,代表月份
*/
@ApiField("term_num")
private String termNum;
/**
* 账单待还款总金额
*/
@ApiField("total_amount")
private String totalAmount;
public Date getDueDate() {
return this.dueDate;
}
public void setDueDate(Date dueDate) {
this.dueDate = dueDate;
}
public BillTermAmountVO getPayedAmount() {
return this.payedAmount;
}
public void setPayedAmount(BillTermAmountVO payedAmount) {
this.payedAmount = payedAmount;
}
public Date getPayedDate() {
return this.payedDate;
}
public void setPayedDate(Date payedDate) {
this.payedDate = payedDate;
}
public Date getStartDate() {
return this.startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public BillTermAmountVO getTermAmount() {
return this.termAmount;
}
public void setTermAmount(BillTermAmountVO termAmount) {
this.termAmount = termAmount;
}
public String getTermNum() {
return this.termNum;
}
public void setTermNum(String termNum) {
this.termNum = termNum;
}
public String getTotalAmount() {
return this.totalAmount;
}
public void setTotalAmount(String totalAmount) {
this.totalAmount = totalAmount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy