feat(stock): 添加库存日志批次号字段并更新相关接口

- 在 WmsStockLog 模型中添加 batchNo 字段
- 更新 WmsStockLogBo 和 WmsStockLogVo 中添加批次号属性
- 修改 WmsStockIoServiceImpl 中的 saveStockIoLog 方法,正确设置批次号
This commit is contained in:
2025-09-12 17:17:26 +08:00
parent 7c9b64c74f
commit afed19d1d9
4 changed files with 10 additions and 1 deletions

View File

@@ -86,4 +86,7 @@ public class WmsStockLogVo {
*/
@ExcelProperty(value = "仓库/库区名称")
private String warehouseName;
//批次号
private String batchNo;
}