sen
2025-12-19 6b8f073df16ed45ec9e710abe18d1f4ffde30540
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
package com.ruoyi.cwgl.domain.vo;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
import com.ruoyi.cwgl.domain.ReceivableFeeDetail;
 
/**
 * 应收费用统计结果VO
 */
@Data
public class ReceivableFeeStatisticsVo {
 
    /**
     * 单据数量
     */
    private int documentCount;
 
    /**
     * 汇率
     */
    private BigDecimal rate;
 
    /**
     * 总应收金额
     */
    private BigDecimal totalReceivableAmount;
 
    /**
     * 人民币总金额
     */
    private BigDecimal totalAmountRmb;
 
    /**
     * 港币总金额
     */
    private BigDecimal totalAmountHkd;
 
    /**
     * 明细列表
     */
    private List<ReceivableFeeDetail> detailList;
}