给账户的流水页面增加备注返回值

This commit is contained in:
jishenghua
2025-06-10 23:32:09 +08:00
parent 04e5b65fdf
commit 6a2d847f08
2 changed files with 23 additions and 7 deletions

View File

@@ -24,6 +24,8 @@ public class AccountVo4InOutList {
private String amList;
private String remark;
private Long tenantId;
public Long getAccountId() {
@@ -106,6 +108,14 @@ public class AccountVo4InOutList {
this.amList = amList;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Long getTenantId() {
return tenantId;
}