fix: 分期账单,新增收款账户字段。
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -43,4 +43,5 @@ public class InstallmentHistoryDto extends BaseEntity implements Serializable
|
||||
@ApiModelProperty(value="开始月份")
|
||||
private String startMonth;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user