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
package com.ruoyi.sales.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 销售报价产品导入DTO(报价产品数据Sheet)
 */
@Data
public class SalesQuotationProductImportDto {
 
    @Excel(name = "报价单号")
    @Schema(description = "报价单号(关联主表)")
    private String quotationNo;
 
    @Excel(name = "产品大类")
    @Schema(description = "产品大类")
    private String productCategory;
 
    @Excel(name = "规格型号")
    @Schema(description = "规格型号")
    private String specificationModel;
 
    @Excel(name = "单位")
    @Schema(description = "单位")
    private String unit;
 
    @Excel(name = "单价")
    @Schema(description = "单价")
    private BigDecimal unitPrice;
 
    @Excel(name = "备注")
    @Schema(description = "备注")
    private String remark;
}