任务日志增加分组条件查询

This commit is contained in:
RuoYi
2019-07-12 10:11:42 +08:00
parent 8c5d7fd336
commit 3be95bc577
2 changed files with 9 additions and 3 deletions

View File

@@ -26,6 +26,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="jobName != null and jobName != ''">
AND job_name like concat('%', #{jobName}, '%')
</if>
<if test="jobGroup != null and jobGroup != ''">
AND job_group = #{jobGroup}
</if>
<if test="status != null and status != ''">
AND status = #{status}
</if>