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;
|
}
|