feat(stock): 添加库存 IO 记录的父 ID 字段

- 在 WmsStockIoMapper.xml 中添加 parent_id 列的映射
- 在 WmsStockIoVo.java 中添加 parentId 属性
This commit is contained in:
2025-08-12 10:25:28 +08:00
parent 73d507b08a
commit 596c5d51ff
2 changed files with 3 additions and 0 deletions

View File

@@ -58,5 +58,7 @@ public class WmsStockIoVo {
@ExcelProperty(value = "备注")
private String remark;
private Long parentId;
}