2 天以前 f93a8f3d091f1e9d1b9c2df246ad39df0e14cfdd
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
package com.ruoyi.account.bean.vo.financial;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
/**
 * 科目账基础分录查询对象(SQL映射使用)。
 */
@Data
public class FinLedgerEntryRecordVo {
 
    /**
     * 凭证日期。
     */
    private LocalDate voucherDate;
 
    /**
     * 凭证字号。
     */
    private String voucherNo;
 
    /**
     * 摘要。
     */
    private String summary;
 
    /**
     * 借方金额。
     */
    private BigDecimal debit;
 
    /**
     * 贷方金额。
     */
    private BigDecimal credit;
 
    /**
     * 行号(排序字段)。
     */
    private Integer rowNo;
}