79 lines
1.8 KiB
XML
79 lines
1.8 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="com.jeeplus.modules.sys.dao.LogDao">
|
||
|
|
||
|
<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>
|
||
|
<if test="createBy != null and createBy.name != null and createBy.name != ''">
|
||
|
AND u.name LIKE
|
||
|
<if test="dbName == 'oracle'">'%'||#{createBy.name}||'%'</if>
|
||
|
<if test="dbName == 'mysql'">CONCAT('%', #{createBy.name}, '%')</if>
|
||
|
</if>
|
||
|
<if test="exception != null and exception != ''">
|
||
|
AND a.type = #{TYPE_EXCEPTION}
|
||
|
</if>
|
||
|
<!-- 数据范围过滤 -->
|
||
|
${sqlMap.dsf}
|
||
|
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>
|