@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user