liding
9 天以前 6305d0c86c23e9a583e8ca798645885d167f4dc5
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
package com.ruoyi.sales.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 销售台账产品导出DTO
 */
@Data
public class SalesLedgerProductExportDto {
 
    @Excel(name = "销售合同号")
    private String salesContractNo;
 
    @Excel(name = "产品大类")
    private String productCategory;
 
    @Excel(name = "规格型号")
    private String specificationModel;
 
    @Excel(name = "厚度(mm)")
    private BigDecimal thickness;
 
    @Excel(name = "楼层编号")
    private String floorCode;
 
    @Excel(name = "宽(mm)")
    private BigDecimal width;
 
    @Excel(name = "高(mm)")
    private BigDecimal height;
 
    @Excel(name = "数量")
    private BigDecimal quantity;
 
    @Excel(name = "结算单片面积(㎡)")
    private BigDecimal settlePieceArea;
 
    @Excel(name = "结算总面积(㎡)")
    private BigDecimal settleTotalArea;
 
    @Excel(name = "含税单价(元)")
    private BigDecimal taxInclusiveUnitPrice;
 
    @Excel(name = "税率(%)")
    private BigDecimal taxRate;
 
    @Excel(name = "含税总价(元)")
    private BigDecimal taxInclusiveTotalPrice;
 
    @Excel(name = "不含税总价(元)")
    private BigDecimal taxExclusiveTotalPrice;
 
    @Excel(name = "发票类型")
    private String invoiceType;
 
    @Excel(name = "加工要求")
    private String processRequirement;
 
    @Excel(name = "备注")
    private String remark;
}