publish 0.9.6

This commit is contained in:
曾文豪
2023-03-31 16:33:21 +08:00
parent 68781d4685
commit e19f27f597
14 changed files with 27 additions and 24 deletions

View File

@@ -39,7 +39,10 @@
<select id="getJobFunc" resultType="java.lang.String">
select cjf.func_id from core_job_func cjf
left join core_config_func ccf on ccf.id=cjf.func_id
where cjf.job_id=#{jobId} and ccf.is_used=1
where cjf.job_id=#{jobId}
<if test="isUsed != null">
and ccf.is_used=#{isUsed}
</if>
</select>