| | |
| | | <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} |
| | |
| | | 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 >= #{params.beginTime} |