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
package com.ruoyi.sales.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 销售台账导出DTO
 */
@Data
public class SalesLedgerExportDto {
 
    @Excel(name = "销售合同号")
    private String salesContractNo;
 
    @Excel(name = "客户合同号")
    private String customerContractNo;
 
    @Excel(name = "项目名称")
    private String projectName;
 
    @Excel(name = "客户名称")
    private String customerName;
 
    @Excel(name = "业务员")
    private String salesman;
 
    @Excel(name = "录入人")
    private String entryPersonName;
 
    @Excel(name = "录入日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date entryDate;
 
    @Excel(name = "签订日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date executionDate;
 
    @Excel(name = "交货日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date deliveryDate;
 
    @Excel(name = "合同金额(元)")
    private BigDecimal contractAmount;
 
    @Excel(name = "发货状态")
    private String deliveryStatusText;
 
    @Excel(name = "入库状态")
    private String stockStatusText;
 
    @Excel(name = "审核状态")
    private String reviewStatusText;
 
    @Excel(name = "订单状态")
    private String orderStatusText;
 
    @Excel(name = "备注")
    private String remarks;
 
    @Excel(name = "客户备注")
    private String customerRemarks;
}