refactor(qc): 更新WMS检查任务服务中的物料卷查询方法

- 将selectVoList替换为selectVoListWithDynamicJoin以支持动态连接查询
- 保持原有的按创建时间倒序排序逻辑不变
This commit is contained in:
2026-02-03 10:10:45 +08:00
parent efefe6e88f
commit 3e55354f04

View File

@@ -134,7 +134,7 @@ public class WmsCheckTaskServiceImpl implements IWmsCheckTaskService {
// 根据创建时间倒序
qw.orderByDesc("create_time");
return wmsMaterialCoilMapper.selectVoList(qw);
return wmsMaterialCoilMapper.selectVoListWithDynamicJoin(qw);
}