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;
}

View File

@@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="ioType" column="io_type"/>
<result property="bizType" column="biz_type"/>
<result property="status" column="status"/>
<result property="parentId" column="parent_id"/>
<result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/>
<result property="createTime" column="create_time"/>