陈昶聿
5 天以前 0d5a84d599cbfbd77b5663e592603f938b54409e
ruoyi-quartz/src/main/resources/mapper/quartz/SysJobLogMapper.xml
@@ -23,7 +23,6 @@
   <select id="selectJobLogList" parameterType="com.ruoyi.quartz.domain.SysJobLog" resultMap="SysJobLogResult">
      <include refid="selectJobLogVo"/>
      WHERE 1=1
         <if test="jobName != null and jobName != ''">
            AND job_name like concat('%', #{jobName}, '%')
         </if>
@@ -42,7 +41,9 @@
         <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
            and date_format(create_time,'%y%m%d') &lt;= date_format(#{params.endTime},'%y%m%d')
         </if>
         <if test="orgid != null and orgid != ''">
            AND orgid = #{orgid}
         </if>
   </select>
   <select id="selectJobLogAll" resultMap="SysJobLogResult">