zss
2 天以前 1942fb9f1a4dd6a90daca24e3a093c138e0e48c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.ruoyi.account.bean.vo.financial;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
/**
 * 科目账行数据返回对象。
 */
@Data
public class FinLedgerRowVo {
 
    /**
     * 行类型:opening/entry/monthly_total/yearly_total。
     */
    private String rowType;
 
    /**
     * 日期。
     */
    private LocalDate date;
 
    /**
     * 凭证字号。
     */
    private String voucherNo;
 
    /**
     * 摘要。
     */
    private String summary;
 
    /**
     * 借方金额。
     */
    private BigDecimal debit;
 
    /**
     * 贷方金额。
     */
    private BigDecimal credit;
 
    /**
     * 余额方向:借/贷。
     */
    private String direction;
 
    /**
     * 余额(借正贷负)。
     */
    private BigDecimal balance;
}