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
54
55
56
57
package com.ruoyi.sales.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ReceiptPaymentExeclDto {
 
    @ApiModelProperty(value = "销售合同号")
    @Excel(name = "销售合同号",sort = 1)
    private String salesContractNo;
 
    @ApiModelProperty(value = "客户合同号")
    @Excel(name = "客户合同号",sort = 2)
 
    private String customerContractNo;
 
    @ApiModelProperty(value = "客户名称")
    @Excel(name = "客户名称",sort = 3)
    private String customerName;
 
    @ApiModelProperty(value = "产品大类")
    @Excel(name = "产品大类",sort = 4)
    private String productCategory;
 
    @ApiModelProperty(value = "项目名称")
    @Excel(name = "项目名称",sort = 5)
    private String projectName;
 
    @ApiModelProperty(value = "发票号")
    @Excel(name = "发票号",sort = 6)
    private String invoiceNo;
 
    @ApiModelProperty(value = "发票金额")
    @Excel(name = "发票金额",sort = 7)
    private BigDecimal invoiceTotal;
 
    @ApiModelProperty(value = "税率(%)")
    @Excel(name = "税率(%)",sort = 8)
    private BigDecimal taxRate;
 
    @ApiModelProperty(value = "回款金额")
    @Excel(name = "回款金额",sort = 9)
    private BigDecimal receiptPaymentAmountTotal;
 
    @ApiModelProperty(value = "待回款金额")
    @Excel(name = "待回款金额",sort = 10)
    private BigDecimal noReceiptAmount;
 
 
 
 
}