|
@@ -101,30 +101,44 @@ public class ApplyBuyBomAccessoryVo {
|
|
|
private BigDecimal shortageQuantity;
|
|
|
|
|
|
/**
|
|
|
+ * 周转率
|
|
|
+ */
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(value = "90天周转次数", index = 12)
|
|
|
+ private BigDecimal turnoverRate;
|
|
|
+
|
|
|
+ /**
|
|
|
* 申购数量
|
|
|
*/
|
|
|
- @ColumnWidth(15)
|
|
|
- @ExcelProperty(value = "申购数量", index = 12)
|
|
|
+ @ColumnWidth(12)
|
|
|
+ @ExcelProperty(value = "申购数量", index = 13)
|
|
|
private BigDecimal applyBuyQuantity;
|
|
|
|
|
|
/**
|
|
|
- * 周转率
|
|
|
+ * 单价
|
|
|
*/
|
|
|
- @ColumnWidth(15)
|
|
|
- @ExcelProperty(value = "90天周转次数", index = 13)
|
|
|
- private BigDecimal turnoverRate;
|
|
|
+ @ColumnWidth(10)
|
|
|
+ @ExcelProperty(value = "单价", index = 14)
|
|
|
+ private BigDecimal unitPrice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 总价
|
|
|
+ */
|
|
|
+ @ColumnWidth(10)
|
|
|
+ @ExcelProperty(value = "总价", index = 15)
|
|
|
+ private BigDecimal totalPrice;
|
|
|
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|
|
|
@ColumnWidth(15)
|
|
|
- @ExcelProperty(value = "备注", index = 14)
|
|
|
+ @ExcelProperty(value = "备注", index = 16)
|
|
|
private String remark;
|
|
|
|
|
|
/**
|
|
|
* 附注
|
|
|
*/
|
|
|
@ColumnWidth(15)
|
|
|
- @ExcelProperty(value = "附注", index = 15)
|
|
|
+ @ExcelProperty(value = "附注", index = 17)
|
|
|
private String annotation;
|
|
|
}
|