fix(任务转交): 80355

This commit is contained in:
yjz
2024-02-02 18:20:39 +08:00
parent c0e8f9424d
commit 8d5336c490
2 changed files with 2 additions and 2 deletions
@@ -87,7 +87,7 @@
<select id="queryProcessDB" resultType="com.jero.modules.laws.tasktransfer.entity.LawsProcessDB"> <select id="queryProcessDB" resultType="com.jero.modules.laws.tasktransfer.entity.LawsProcessDB">
select * select *
from ( from (
SELECT pa.id, SELECT par.id,
task_id, task_id,
prc_num, prc_num,
prc_type, prc_type,
@@ -132,7 +132,7 @@ public class LawsTaskTransferServiceImpl implements ILawsTaskTransferService {
queryWrapper.eq("par.user_id", loginUser.getId()); queryWrapper.eq("par.user_id", loginUser.getId());
} }
if (StringUtils.isNotBlank(lawsProcessDb.getIds())){ if (StringUtils.isNotBlank(lawsProcessDb.getIds())){
queryWrapper.in("pa.id", Arrays.asList(lawsProcessDb.getIds().split(","))); queryWrapper.in("par.id", Arrays.asList(lawsProcessDb.getIds().split(",")));
} }
return queryWrapper; return queryWrapper;
} }