aaa
doum
2026-06-08 cf2da3b2a63840888815c6a81cbd7948faf93533
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
package com.doumee.dao.business.model;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 商品异步导入 Excel 行对象(新版模板)
 */
@Data
@ApiModel("商品异步导入对象")
public class GoodsImportAsync {
 
    @ExcelColumn(name = "商品文件夹名称", value = "id", index = 0)
    private String id;
 
    @ExcelColumn(name = "商品名称", value = "name", index = 1)
    private String name;
 
    @ExcelColumn(name = "商品类别", value = "category", index = 2)
    private String category;
 
    @ExcelColumn(name = "商品品牌", value = "brand", index = 3)
    private String brand;
 
    @ExcelColumn(name = "指导价", value = "zdPrice", index = 4)
    private String zdPrice;
 
    @ExcelColumn(name = "入手价", value = "price", index = 5)
    private String price;
 
    @ExcelColumn(name = "产品参数", value = "paramStr", index = 6)
    private String paramStr;
 
    @ExcelColumn(name = "商品二级类别", value = "subCategory", index = 7)
    private String subCategory;
 
    @ExcelColumn(name = "商品主图", value = "mainImage", index = 8)
    private String mainImage;
 
    @ExcelColumn(name = "商品多图", value = "multiImages", index = 9)
    private String multiImages;
}