解决账户统计报表展示金额的bug

This commit is contained in:
季圣华
2021-04-30 00:16:53 +08:00
parent ec45e0cf9d
commit da9c31762a
2 changed files with 11 additions and 0 deletions

View File

@@ -4,6 +4,8 @@ import java.math.BigDecimal;
public class AccountVo4InOutList {
private Long accountId;
private String number;
private String type;
@@ -24,6 +26,14 @@ public class AccountVo4InOutList {
private Long tenantId;
public Long getAccountId() {
return accountId;
}
public void setAccountId(Long accountId) {
this.accountId = accountId;
}
public String getNumber() {
return number;
}