|
@@ -40,15 +40,30 @@ public class OrderSkuExportVo {
|
|
|
@ExcelProperty(value = "bom品号", index = 2)
|
|
|
private String bomSpecCode;
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * E10成品品号
|
|
|
+ */
|
|
|
+ @ColumnWidth(15)
|
|
|
+ @ExcelProperty(value = "E10成品品号", index = 3)
|
|
|
+ private String erpCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * E10成品特征码
|
|
|
+ */
|
|
|
+ @ColumnWidth(15)
|
|
|
+ @ExcelProperty(value = "特征码", index = 4)
|
|
|
+ private String featureCode;
|
|
|
+
|
|
|
/**
|
|
|
* 数量
|
|
|
*/
|
|
|
- @ExcelProperty(value = "业务数量", index = 3)
|
|
|
+ @ExcelProperty(value = "业务数量", index = 5)
|
|
|
private BigDecimal quantity;
|
|
|
|
|
|
/**
|
|
|
* sku总金额
|
|
|
*/
|
|
|
- @ExcelProperty(value = "金额", index = 4)
|
|
|
+ @ExcelProperty(value = "金额", index = 6)
|
|
|
private BigDecimal totalAmount;
|
|
|
}
|