Skip to content

Commit

Permalink
#665 作业总览页面添加作业类型过滤
Browse files Browse the repository at this point in the history
  • Loading branch information
cmzdandan committed Dec 30, 2019
1 parent aa35825 commit 7f07900
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@
<if test="condition.isEnabled != null">
and is_enabled = #{condition.isEnabled}
</if>
<if test="condition.jobType != null">
and job_type = #{condition.jobType}
</if>
<choose>
<when test="condition.jobName != null">
and job_name like CONCAT('%',#{condition.jobName},'%')
Expand Down Expand Up @@ -127,6 +130,9 @@
<if test="condition.isEnabled != null">
and is_enabled = #{condition.isEnabled}
</if>
<if test="condition.jobType != null">
and job_type = #{condition.jobType}
</if>
<choose>
<when test="condition.jobName != null">
and job_name like CONCAT('%',#{condition.jobName},'%')
Expand Down

0 comments on commit 7f07900

Please sign in to comment.