feat(stock): 添加退库功能- 在 IWmsStockIoService接口中添加 scanReturnStockByBo 方法

- 在 WmsStockIo 模型中添加 parentId 字段用于关联原出库单
- 在 WmsStockIoBo 中添加 parentId 字段
- 在 WmsStockIoController 中添加 scanReturnStock 控制器方法
- 在 WmsStockIoServiceImpl 中实现 scanReturnStockByBo 方法的业务逻辑
This commit is contained in:
2025-08-12 10:12:13 +08:00
parent dc1ba364fc
commit 47cff10785
5 changed files with 205 additions and 0 deletions

View File

@@ -44,6 +44,8 @@ public class WmsStockIo extends BaseEntity {
* 备注
*/
private String remark;
//
private Long parentId;
/**
* 删除标志0=正常1=已删除)
*/

View File

@@ -53,5 +53,9 @@ public class WmsStockIoBo extends BaseEntity {
*/
private String remark;
/**
* 父级ID用于退库时关联原出库单
*/
private Long parentId;
}