gongchunyi
23 小时以前 86bceee8a4a9114527ef6eac70d5c7dd39c87490
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
package com.ruoyi.basic.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
/**
 * 产品批量导入行(三个sheet:原料/半成品/成品)
 */
@Data
public class ProductImportRowDto {
 
    @Excel(name = "产品父类")
    private String productParentName;
 
    @Excel(name = "产品大类")
    private String productCategoryName;
 
    @Excel(name = "产品名称")
    private String productName;
 
    @Excel(name = "产品编码")
    private String productCode;
 
    @Excel(name = "规格型号")
    private String model;
 
    @Excel(name = "单位")
    private String unit;
}