68 lines
3.1 KiB
XML
68 lines
3.1 KiB
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
|
<mapper namespace="org.xyzh.system.mapper.SysOperationLogMapper">
|
||
|
|
|
||
|
|
<!-- 基础结果映射 -->
|
||
|
|
<resultMap id="BaseResultMap" type="org.xyzh.common.dto.system.TbSysOperationLog">
|
||
|
|
<id column="id" property="id" jdbcType="VARCHAR"/>
|
||
|
|
<result column="user_id" property="userID" jdbcType="VARCHAR"/>
|
||
|
|
<result column="username" property="username" jdbcType="VARCHAR"/>
|
||
|
|
<result column="module" property="module" jdbcType="VARCHAR"/>
|
||
|
|
<result column="operation" property="operation" jdbcType="VARCHAR"/>
|
||
|
|
<result column="method" property="method" jdbcType="VARCHAR"/>
|
||
|
|
<result column="request_url" property="requestUrl" jdbcType="VARCHAR"/>
|
||
|
|
<result column="request_method" property="requestMethod" jdbcType="VARCHAR"/>
|
||
|
|
<result column="request_params" property="requestParams" jdbcType="LONGVARCHAR"/>
|
||
|
|
<result column="response_data" property="responseData" jdbcType="LONGVARCHAR"/>
|
||
|
|
<result column="ip_address" property="ipAddress" jdbcType="VARCHAR"/>
|
||
|
|
<result column="ip_source" property="ipSource" jdbcType="VARCHAR"/>
|
||
|
|
<result column="browser" property="browser" jdbcType="VARCHAR"/>
|
||
|
|
<result column="os" property="os" jdbcType="VARCHAR"/>
|
||
|
|
<result column="status" property="status" jdbcType="INTEGER"/>
|
||
|
|
<result column="error_message" property="errorMessage" jdbcType="LONGVARCHAR"/>
|
||
|
|
<result column="execute_time" property="executeTime" jdbcType="INTEGER"/>
|
||
|
|
<result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<!-- 基础字段 -->
|
||
|
|
<sql id="Base_Column_List">
|
||
|
|
id, user_id, username, module, operation, method, request_url,
|
||
|
|
request_method, request_params, response_data, ip_address, ip_source,
|
||
|
|
browser, os, status, error_message, execute_time, create_time
|
||
|
|
</sql>
|
||
|
|
|
||
|
|
<!-- 通用条件 -->
|
||
|
|
<sql id="Where_Clause">
|
||
|
|
<where>
|
||
|
|
<if test="userID != null and userID != ''">
|
||
|
|
AND user_id = #{userID}
|
||
|
|
</if>
|
||
|
|
<if test="username != null and username != ''">
|
||
|
|
AND username LIKE CONCAT('%', #{username}, '%')
|
||
|
|
</if>
|
||
|
|
<if test="module != null and module != ''">
|
||
|
|
AND module = #{module}
|
||
|
|
</if>
|
||
|
|
<if test="operation != null and operation != ''">
|
||
|
|
AND operation = #{operation}
|
||
|
|
</if>
|
||
|
|
<if test="status != null">
|
||
|
|
AND status = #{status}
|
||
|
|
</if>
|
||
|
|
<if test="ipAddress != null and ipAddress != ''">
|
||
|
|
AND ip_address = #{ipAddress}
|
||
|
|
</if>
|
||
|
|
</where>
|
||
|
|
</sql>
|
||
|
|
|
||
|
|
<!-- selectSysOperationLogs -->
|
||
|
|
<select id="selectSysOperationLogs" resultMap="BaseResultMap">
|
||
|
|
SELECT
|
||
|
|
<include refid="Base_Column_List"/>
|
||
|
|
FROM tb_sys_operation_log
|
||
|
|
<include refid="Where_Clause"/>
|
||
|
|
ORDER BY create_time DESC
|
||
|
|
</select>
|
||
|
|
|
||
|
|
</mapper>
|