fix: 分期账单,新增收款账户字段。

This commit is contained in:
tianyongbao
2024-08-19 16:19:42 +08:00
parent 47016c3cc5
commit 252bf3fb10
4 changed files with 29 additions and 2 deletions

View File

@@ -108,6 +108,12 @@ public class InstallmentHistory extends BaseEntity
@Excel(name = "计算利率")
private String calculateInterestRate;
/** 收款账户 */
@ApiModelProperty(value="收款账户)")
@NotNull(message="收款账户")
@Excel(name = "收款账户")
private Long receivingAccountId;
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -133,6 +139,7 @@ public class InstallmentHistory extends BaseEntity
.append("remark", getRemark())
.append("balance", getBalance())
.append("calculateInterestRate", getCalculateInterestRate())
.append("receivingAccountId", getReceivingAccountId())
.toString();
}
}

View File

@@ -43,4 +43,5 @@ public class InstallmentHistoryDto extends BaseEntity implements Serializable
@ApiModelProperty(value="开始月份")
private String startMonth;
}

View File

@@ -1,9 +1,9 @@
package com.ruoyi.invest.domain.vo;
import com.ruoyi.invest.domain.InstallmentHistory;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import java.util.Date;
@@ -39,4 +39,12 @@ public class InstallmentHistoryVo extends InstallmentHistory
@ApiModelProperty(value="借款天数")
private String loanDays;
/** 收款账户 */
@ApiModelProperty(value="收款账户名称")
private String receivingAccountName;
@ApiModelProperty(value="收款账户卡号")
private String receivingAccountCode;
}