feat(wms): 添加加工后钢卷ID字段支持

- 在WmsCoilPendingAction实体类中新增processedCoilIds字段
- 在WmsCoilPendingActionBo业务对象中添加processedCoilIds属性
- 更新WmsCoilPendingActionMapper.xml映射文件中的结果映射
- 在WmsCoilPendingActionServiceImpl服务实现中添加模糊查询条件
- 在WmsCoilPendingActionVo视图对象中增加processedCoilIds字段
This commit is contained in:
2026-03-16 13:20:40 +08:00
parent e84e41b20f
commit f84168396c
5 changed files with 15 additions and 0 deletions

View File

@@ -201,5 +201,9 @@ public class WmsCoilPendingActionVo extends BaseEntity implements Serializable {
private String actualWarehouseName;
private Integer delFlag;
// 加工后的钢卷ids
private String processedCoilIds;
}