feat(material): 添加材料卷材下一库区多选功能支持

- 在 WmsMaterialCoilBo 中新增 nextWarehouseIds 字段用于存储多个库区ID
- 在查询逻辑中统一处理 nextWarehouseId 与 nextWarehouseIds 的过滤条件
- 实现对逗号分隔的库区ID字符串解析和数字转换功能
- 修复逻辑删除条件重复设置的问题
- 优化库区ID列表的去重和过滤处理逻辑
This commit is contained in:
2026-02-06 15:23:50 +08:00
parent 13833aab4d
commit 0fae7ad434
2 changed files with 26 additions and 2 deletions

View File

@@ -66,6 +66,11 @@ public class WmsMaterialCoilBo extends BaseEntity {
*/
private Long nextWarehouseId;
/**
* 下一库区IDs逗号分隔
*/
private String nextWarehouseIds;
/**
* 关联二维码IDwms_generate_record.record_id
*/