定时任务增加系统定时任务

This commit is contained in:
2025-11-25 14:45:11 +08:00
parent 5d14957eba
commit 24c5188eb0
14 changed files with 988 additions and 30 deletions

View File

@@ -274,7 +274,7 @@
AND ct.task_name LIKE CONCAT('%', #{filter.taskName}, '%')
</if>
<if test="filter.taskGroup != null and filter.taskGroup != ''">
AND ct.task_group = #{filter.taskGroup}
AND ct.task_group LIKE CONCAT('%', #{filter.taskGroup}, '%')
</if>
<if test="filter.status != null">
AND ct.status = #{filter.status}
@@ -337,7 +337,7 @@
AND ct.task_name LIKE CONCAT('%', #{filter.taskName}, '%')
</if>
<if test="filter.taskGroup != null and filter.taskGroup != ''">
AND ct.task_group = #{filter.taskGroup}
AND ct.task_group LIKE CONCAT('%', #{filter.taskGroup}, '%')
</if>
<if test="filter.status != null">
AND ct.status = #{filter.status}