chenrui
2025-05-12 f81c345f7bf058fdfe5fee6f0dfd5de0f4cb767c
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.ruoyi.sales.excel;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
public class InvoiceRegisAndProductExcelDto {
 
    @Excel(name = "销售合同号")
    private String salesContractNo;
 
    @Excel(name = "客户合同号")
    private String customerContractNo;
 
    @Excel(name = "客户名称")
    private String customerName;
 
    @Excel(name =  "业务员")
    private String salesman;
 
    @Excel(name = "项目名称")
    private String projectName;
 
    @Excel(name =  "合同金额")
    private BigDecimal contractAmount;
 
    @Excel(name =  "产品大类")
    private String productCategory;
 
    @Excel(name =  "规格型号")
    private String specificationModel;
 
    @Excel(name =  "单位")
    private String unit;
 
    @Excel(name =  "数量")
    private BigDecimal quantity;
 
    @Excel(name =  "税率%")
    private BigDecimal taxRate;
 
    @Excel(name = "含税单价")
    private BigDecimal taxInclusiveUnitPrice;
 
    @Excel(name = "含税总价")
    private BigDecimal taxInclusiveTotalPrice;
 
    @Excel(name ="不含税总价")
    private BigDecimal taxExclusiveTotalPrice;
 
    @Excel(name ="发票类型")
    private String invoiceType;
 
    @Excel(name ="开票数")
    private Integer invoiceNum;
 
    @Excel(name ="未开票数")
    private Integer noInvoiceNum;
 
    @Excel(name ="开票金额")
    private BigDecimal invoiceAmount;
 
    @Excel(name ="未开票金额")
    private BigDecimal noInvoiceAmount;
 
 
}