7 天以前 11214e3074266a23fe61e8eebbce647fdb7305ef
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
package com.ruoyi.sales.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 销售报价主表导入DTO(报价单数据Sheet)
 */
@Data
public class SalesQuotationMainImportDto {
 
    @Excel(name = "报价单号")
    @Schema(description = "报价单号(可选,不填自动生成)")
    private String quotationNo;
 
    @Excel(name = "客户名称")
    @Schema(description = "客户名称")
    private String customerName;
 
    @Excel(name = "业务员")
    @Schema(description = "业务员")
    private String salesperson;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "报价日期", width = 30, dateFormat = "yyyy-MM-dd")
    @Schema(description = "报价日期")
    private Date quotationDate;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "有效期至", width = 30, dateFormat = "yyyy-MM-dd")
    @Schema(description = "有效期至")
    private Date validDate;
 
    @Excel(name = "付款方式")
    @Schema(description = "付款方式")
    private String paymentMethod;
 
    @Excel(name = "交货周期")
    @Schema(description = "交货周期")
    private String deliveryPeriod;
 
    @Excel(name = "备注")
    @Schema(description = "备注")
    private String remark;
}