feat(stock): 添加库存 IO 记录的父 ID 字段
- 在 WmsStockIoMapper.xml 中添加 parent_id 列的映射 - 在 WmsStockIoVo.java 中添加 parentId 属性
This commit is contained in:
@@ -58,5 +58,7 @@ public class WmsStockIoVo {
|
|||||||
@ExcelProperty(value = "备注")
|
@ExcelProperty(value = "备注")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
private Long parentId;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<result property="ioType" column="io_type"/>
|
<result property="ioType" column="io_type"/>
|
||||||
<result property="bizType" column="biz_type"/>
|
<result property="bizType" column="biz_type"/>
|
||||||
<result property="status" column="status"/>
|
<result property="status" column="status"/>
|
||||||
|
<result property="parentId" column="parent_id"/>
|
||||||
<result property="remark" column="remark"/>
|
<result property="remark" column="remark"/>
|
||||||
<result property="delFlag" column="del_flag"/>
|
<result property="delFlag" column="del_flag"/>
|
||||||
<result property="createTime" column="create_time"/>
|
<result property="createTime" column="create_time"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user