添加查询日志请求方式参数

This commit is contained in:
sh
2026-04-16 17:18:11 +08:00
parent 1359772d76
commit 6045da9972

View File

@@ -57,6 +57,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="status != null">
AND status = #{status}
</if>
<if test="requestMethod != null and requestMethod!='' ">
AND request_method = #{requestMethod}
</if>
<if test="operName != null and operName != ''">
AND oper_name like concat('%', CAST(#{operName} AS VARCHAR), '%')
</if>