fix(domain): 修复项目任务执行状态判断逻辑

master
zhaokai 2026-03-18 16:07:44 +08:00
parent 21a353b40d
commit 27a5c4863c
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@
left join user u on dd.master_user_id = u.id left join user u on dd.master_user_id = u.id
left join domain_group dg on dd.domain_type = dg.domain_type left join domain_group dg on dd.domain_type = dg.domain_type
where dd.delete_enum = 'FALSE' where dd.delete_enum = 'FALSE'
<if test="params.corpinfoId != null "> <if test="corpinfoId != null ">
and dg.corpinfo_id =#{params.corpinfoId} and dg.corpinfo_id =#{corpinfoId}
</if> </if>
order by dd.create_time desc order by dd.create_time desc
</select> </select>