sfd
2025-05-14 f306557dbcfc1583a45e26d86fdfe0aa4b446fb4
aps-modules/aps-system/src/main/resources/mapper/system/SysOperLogMapper.xml
@@ -37,10 +37,10 @@
      <include refid="selectOperLogVo"/>
      <where>
         <if test="operIp != null and operIp != ''">
            AND oper_ip like concat('%', #{operIp}, '%')
            AND oper_ip like '%' || #{operIp} || '%'
         </if>
         <if test="title != null and title != ''">
            AND title like concat('%', #{title}, '%')
            AND title like '%' || #{title} || '%'
         </if>
         <if test="businessType != null">
            AND business_type = #{businessType}
@@ -55,7 +55,7 @@
            AND status = #{status}
         </if>
         <if test="operName != null and operName != ''">
            AND oper_name like concat('%', #{operName}, '%')
            AND oper_name like '%' || #{operName} || '%'
         </if>
         <if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
            AND oper_time &gt;= #{params.beginTime}