12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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="com.jeeplus.modules.sys.mapper.LogMapper">
-
- <select id="findList" resultType="Log">
- SELECT
- a.*,
- u.id AS "createBy.id",
- u.name AS "createBy.name",
- c.name AS "createBy.company.name",
- o.name AS "createBy.office.name"
- FROM sys_log a
- JOIN sys_user u ON u.id = a.create_by
- JOIN sys_office c ON c.id = u.company_id
- JOIN sys_office o ON o.id = u.office_id
- WHERE a.create_date BETWEEN #{beginDate} AND #{endDate}
- <if test="title != null and title != ''">
- AND a.title LIKE
- <if test="dbName == 'oracle'">'%'||#{title}||'%'</if>
- <if test="dbName == 'mysql'">CONCAT('%', #{title}, '%')</if>
- <if test="dbName == 'mssql'">'%'+#{title}+'%'</if>
- </if>
- <if test="createBy != null and createBy.name != null and createBy.name != ''">
- AND u.name = #{createBy.name}
- </if>
- <if test="requestUri != null and requestUri != ''">
- AND a.request_uri LIKE
- <if test="dbName == 'oracle'">'%'||#{requestUri}||'%'</if>
- <if test="dbName == 'mysql'">CONCAT('%', #{requestUri}, '%')</if>
- <if test="dbName == 'mssql'">'%'+#{requestUri}+'%'</if>
- </if>
- <if test="exception != null and exception != ''">
- AND a.type = #{TYPE_EXCEPTION}
- </if>
- ORDER BY a.create_date DESC
- </select>
-
- <select id="get" resultType="Log">
- SELECT
- *
- FROM sys_log
- WHERE id = #{id}
- </select>
-
- <update id="delete">
- DELETE FROM sys_log
- WHERE id = #{id}
- </update>
-
- <update id="empty">
- DELETE FROM sys_log
- </update>
-
- <insert id="insert">
- INSERT INTO sys_log(
- id,
- type,
- title,
- create_by,
- create_date,
- remote_addr,
- user_agent,
- request_uri,
- method,
- params,
- exception
- ) VALUES (
- #{id},
- #{type},
- #{title},
- #{createBy.id},
- #{createDate},
- #{remoteAddr},
- #{userAgent},
- #{requestUri},
- #{method},
- #{params},
- #{exception}
- )
- </insert>
-
- </mapper>
|