fix: 信用卡账单,新增刷卡次数,日常支出次数。

(cherry picked from commit f116324996)
This commit is contained in:
tianyongbao
2024-08-19 13:49:33 +08:00
parent fe26ac6b20
commit c301983dbb
2 changed files with 9 additions and 6 deletions

View File

@@ -55,6 +55,13 @@ public class CreditCardBill extends BaseEntity
/** 删除标志0代表存在 1代表删除 */
private String billState;
@ApiModelProperty(value="Pos刷卡次数)")
private String posCount;
@ApiModelProperty(value="日常支出次数)")
private String dailyExpensesCount;
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -70,6 +77,8 @@ public class CreditCardBill extends BaseEntity
.append("updateTime", getUpdateTime())
.append("delFlag", getDelFlag())
.append("billState", getBillState())
.append("posCount", getPosCount())
.append("dailyExpensesCount", getDailyExpensesCount())
.toString();
}
}

View File

@@ -26,11 +26,5 @@ public class CreditCardBillVo extends CreditCardBill
@Excel(name = "信用卡")
private String bankNameCode;
@ApiModelProperty(value="Pos刷卡次数)")
private String posCount;
@ApiModelProperty(value="日常支出次数)")
private String dailyExpensesCount;
}