|
@@ -50,14 +50,14 @@ public class SfOrderImportDTO implements Serializable {
|
|
|
@ExcelProperty(value = "物品名称", order = 6)
|
|
@ExcelProperty(value = "物品名称", order = 6)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String goodsName;
|
|
private String goodsName;
|
|
|
- @ExcelProperty(value = "物品重量", order = 7)
|
|
|
|
|
- @ColumnWidth(15)
|
|
|
|
|
|
|
+ @ExcelProperty(value = "物品重量(KG)", order = 7)
|
|
|
|
|
+ @ColumnWidth(20)
|
|
|
private BigDecimal goodsWeight;
|
|
private BigDecimal goodsWeight;
|
|
|
- @ExcelProperty(value = "物品体积", order = 8)
|
|
|
|
|
- @ColumnWidth(15)
|
|
|
|
|
|
|
+ @ExcelProperty(value = "物品体积(m³)", order = 8)
|
|
|
|
|
+ @ColumnWidth(20)
|
|
|
private BigDecimal goodsVolume;
|
|
private BigDecimal goodsVolume;
|
|
|
- @ExcelProperty(value = "物品数量", order = 9)
|
|
|
|
|
- @ColumnWidth(15)
|
|
|
|
|
|
|
+ @ExcelProperty(value = "物品数量(件)", order = 9)
|
|
|
|
|
+ @ColumnWidth(20)
|
|
|
private Long goodsQty;
|
|
private Long goodsQty;
|
|
|
/** 上门取件开始时间 */
|
|
/** 上门取件开始时间 */
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@@ -65,8 +65,8 @@ public class SfOrderImportDTO implements Serializable {
|
|
|
@ExcelProperty(value = "产品类型", order = 10)
|
|
@ExcelProperty(value = "产品类型", order = 10)
|
|
|
@ColumnWidth(15)
|
|
@ColumnWidth(15)
|
|
|
private String productCode;
|
|
private String productCode;
|
|
|
- @ExcelProperty(value = "保价金额", order = 11)
|
|
|
|
|
- @ColumnWidth(15)
|
|
|
|
|
|
|
+ @ExcelProperty(value = "保价金额(元)", order = 11)
|
|
|
|
|
+ @ColumnWidth(20)
|
|
|
private String protecPrice;
|
|
private String protecPrice;
|
|
|
|
|
|
|
|
}
|
|
}
|