feat: 新接口查原材料时查联查库存在途和需求

This commit is contained in:
JR
2025-07-31 14:35:46 +08:00
parent 0d9c592a6a
commit dc92cb240f
5 changed files with 135 additions and 1 deletions

View File

@@ -193,5 +193,23 @@ public class WmsRawMaterialVo {
@ExcelProperty(value = "BOM 表头ID")
private Long bomId;
/**
* 需求量
*/
@ExcelProperty(value = "需求量")
private BigDecimal demand;
/**
* 库存量
*/
@ExcelProperty(value = "库存量")
private BigDecimal inventory;
/**
* 在途量
*/
@ExcelProperty(value = "在途量")
private BigDecimal onTheWay;
}