修改日志查询,

This commit is contained in:
furongxin 2024-09-05 10:26:09 +08:00
parent 56306514d4
commit b5a658fa61

View File

@ -108,7 +108,7 @@
LEFT JOIN (SELECT log_instance_id, COUNT(log_instance_id) AS unReadCount FROM work_log_read where read_status = 0 AND deleted = 0 GROUP BY log_instance_id ) AS d ON a.id = d.log_instance_id
LEFT JOIN (SELECT work_log_id, COUNT(work_log_id) AS comment FROM work_log_comment where deleted = 0 GROUP BY work_log_id) AS b ON a.id = b.work_log_id
<where>
deleted = 0
a.deleted = 0
<if test="reqVO.type != null">
and a.type = #{reqVO.type}
</if>