陈昶聿
3 天以前 d2d33d9e10b6a68b84a43a1b970a94246ffdf801
ruoyi-quartz/src/main/resources/mapper/quartz/SysJobLogMapper.xml
@@ -22,7 +22,10 @@
   <select id="selectJobLogList" parameterType="com.ruoyi.quartz.domain.SysJobLog" resultMap="SysJobLogResult">
      <include refid="selectJobLogVo"/>
      <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>
@@ -41,7 +44,6 @@
         <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">