liusheng
3 天以前 da026a34bcc97b2eb49607a3b02d94d8f683f997
ruoyi-quartz/src/main/resources/mapper/quartz/SysJobMapper.xml
@@ -27,7 +27,10 @@
   
   <select id="selectJobList" parameterType="SysJob" resultMap="SysJobResult">
      <include refid="selectJobVo"/>
      <where>
      where 1=1
      <if test="orgid != null and orgid != ''">
         AND orgid = #{orgid}
      </if>
         <if test="jobName != null and jobName != ''">
            AND job_name like concat('%', #{jobName}, '%')
         </if>
@@ -40,7 +43,6 @@
         <if test="invokeTarget != null and invokeTarget != ''">
            AND invoke_target like concat('%', #{invokeTarget}, '%')
         </if>
      </where>
   </select>
   
   <select id="selectJobAll" resultMap="SysJobResult">