|
|
@@ -21,61 +21,64 @@ public class GoodsListExport implements Serializable {
|
|
|
@Serial
|
|
|
private static final long serialVersionUID = 6833195135537265912L;
|
|
|
|
|
|
- @ExcelProperty(value = "上架状态", index = 0)
|
|
|
+ @ExcelProperty(value = "序号" )
|
|
|
+ private String serialNumber;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "上架状态")
|
|
|
private String statusLabel;
|
|
|
|
|
|
- @ExcelProperty(value = "商品名称", index = 1)
|
|
|
+ @ExcelProperty(value = "商品名称")
|
|
|
private String name;
|
|
|
|
|
|
- @ExcelProperty(value = "商品类别", index = 2)
|
|
|
+ @ExcelProperty(value = "商品类别")
|
|
|
private String goodsTypeLabel;
|
|
|
|
|
|
- @ExcelProperty(value = "计量单位", index = 3)
|
|
|
+ @ExcelProperty(value = "计量单位")
|
|
|
private String unitLabel;
|
|
|
|
|
|
- @ExcelProperty(value = "规格尺寸", index = 4)
|
|
|
+ @ExcelProperty(value = "规格尺寸")
|
|
|
private String spec;
|
|
|
|
|
|
- @ExcelProperty(value = "发票税率", index = 5)
|
|
|
+ @ExcelProperty(value = "发票税率")
|
|
|
private String taxRateLabel;
|
|
|
|
|
|
- @ExcelProperty(value = "库存数量", index = 6)
|
|
|
+ @ExcelProperty(value = "库存数量")
|
|
|
private String amount;
|
|
|
|
|
|
- @ExcelProperty(value = "交易方式", index = 7)
|
|
|
+ @ExcelProperty(value = "交易方式")
|
|
|
private String tradingLabel;
|
|
|
|
|
|
- @ExcelProperty(value = "最低单价", index = 8)
|
|
|
+ @ExcelProperty(value = "最低单价")
|
|
|
private String highestPrice;
|
|
|
|
|
|
- @ExcelProperty(value = "最高单价", index = 9)
|
|
|
+ @ExcelProperty(value = "最高单价")
|
|
|
private String lowestPrice;
|
|
|
|
|
|
- @ExcelProperty(value = "仓储地址", index = 10)
|
|
|
+ @ExcelProperty(value = "仓储地址")
|
|
|
private String address;
|
|
|
|
|
|
- @ExcelProperty(value = "客户经理", index = 11)
|
|
|
+ @ExcelProperty(value = "客户经理")
|
|
|
private String manageName;
|
|
|
|
|
|
- @ExcelProperty(value = "联系电话", index = 12)
|
|
|
+ @ExcelProperty(value = "联系电话")
|
|
|
private String phone;
|
|
|
|
|
|
- @ExcelProperty(value = "上架时间", index = 13)
|
|
|
+ @ExcelProperty(value = "上架时间")
|
|
|
private String addedTime;
|
|
|
|
|
|
- @ExcelProperty(value = "下架时间", index = 14)
|
|
|
+ @ExcelProperty(value = "下架时间")
|
|
|
private String shelfTime;
|
|
|
|
|
|
- @ExcelProperty(value = "供应企业", index = 15)
|
|
|
+ @ExcelProperty(value = "供应企业")
|
|
|
private String supplyEnt;
|
|
|
|
|
|
- @ExcelProperty(value = "创建人", index = 16)
|
|
|
+ @ExcelProperty(value = "创建人")
|
|
|
private String createByName;
|
|
|
|
|
|
- @ExcelProperty(value = "创建时间", index = 17)
|
|
|
+ @ExcelProperty(value = "创建时间")
|
|
|
private String createTime;
|
|
|
|
|
|
- @ExcelProperty(value = "备注", index = 18)
|
|
|
+ @ExcelProperty(value = "备注")
|
|
|
private String remark;
|
|
|
|
|
|
}
|