昨天 b17d24985527421ee9df504af8eccf24cf1aa7f3
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
package com.ruoyi.sales.excel;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 开票登记列表导出对象
 */
@Data
public class InvoiceRegistrationExportVo {
 
    @Excel(name = "销售合同号")
    private String salesContractNo;
 
    @Excel(name = "客户合同号")
    private String customerContractNo;
 
    @Excel(name = "客户名称")
    private String customerName;
 
    @Excel(name = "合同金额")
    private BigDecimal contractAmount;
 
    @Excel(name = "已开票金额")
    private BigDecimal invoiceTotal;
 
    @Excel(name = "未开票金额")
    private BigDecimal noInvoiceAmountTotal;
}