陈昶聿
6 天以前 0d5a84d599cbfbd77b5663e592603f938b54409e
ruoyi-quartz/src/main/resources/mapper/quartz/SysJobMapper.xml
@@ -28,7 +28,6 @@
   <select id="selectJobList" parameterType="SysJob" resultMap="SysJobResult">
      <include refid="selectJobVo"/>
      WHERE 1=1
         <if test="jobName != null and jobName != ''">
            AND job_name like concat('%', #{jobName}, '%')
         </if>
@@ -41,7 +40,9 @@
         <if test="invokeTarget != null and invokeTarget != ''">
            AND invoke_target like concat('%', #{invokeTarget}, '%')
         </if>
         <if test="orgid != null and orgid != ''">
            AND orgid = #{orgid}
         </if>
   </select>
   
   <select id="selectJobAll" resultMap="SysJobResult">