陈昶聿
5 天以前 ec23ec3d3dc4ec1ba7d79ba4f46ae2c31d5a16a9
ruoyi-quartz/src/main/resources/mapper/quartz/SysJobLogMapper.xml
@@ -22,7 +22,8 @@
   <select id="selectJobLogList" parameterType="com.ruoyi.quartz.domain.SysJobLog" resultMap="SysJobLogResult">
      <include refid="selectJobLogVo"/>
      <where>
      WHERE 1=1
         <if test="jobName != null and jobName != ''">
            AND job_name like concat('%', #{jobName}, '%')
         </if>
@@ -41,7 +42,7 @@
         <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>
      </where>
   </select>
   <select id="selectJobLogAll" resultMap="SysJobLogResult">