tj
2025-03-20 87a0ccb7ed3f0c9bfd856169ef03de136cd1047d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.jsh.erp.datasource.vo;
 
import com.jsh.erp.datasource.entities.Account;
 
public class AccountVo4List extends Account{
 
    private String thisMonthAmount;
 
    public String getThisMonthAmount() {
        return thisMonthAmount;
    }
 
    public void setThisMonthAmount(String thisMonthAmount) {
        this.thisMonthAmount = thisMonthAmount;
    }
}