懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3 <mapper namespace="cn.stylefeng.guns.sys.modular.system.mapper.LoginLogMapper">
4
5     <!-- 通用查询映射结果 -->
6     <resultMap id="BaseResultMap" type="cn.stylefeng.guns.sys.modular.system.entity.LoginLog">
7         <id column="login_log_id" property="loginLogId"/>
8         <result column="log_name" property="logName"/>
9         <result column="user_id" property="userId"/>
10         <result column="create_time" property="createTime"/>
11         <result column="succeed" property="succeed"/>
12         <result column="message" property="message"/>
13         <result column="ip_address" property="ipAddress"/>
14     </resultMap>
15
16     <!-- 通用查询结果列 -->
17     <sql id="Base_Column_List">
18         login_log_id AS "loginLogId", log_name AS "logName", user_id AS "userId", create_time AS "createTime", succeed AS "succeed", message AS "message", ip_address AS "ipAddress"
19     </sql>
20
21     <select id="getLoginLogs" resultType="map"
22             parameterType="com.baomidou.mybatisplus.extension.plugins.pagination.Page">
23         select
24         <include refid="Base_Column_List"/>
25         from sys_login_log
26         where 1 = 1
27         <if test="beginTime != null and beginTime !='' and endTime != null and endTime != ''">
28             and (create_time between CONCAT(#{beginTime},' 00:00:00') and CONCAT(#{endTime},' 23:59:59'))
29         </if>
30         <if test="logName != null and logName !=''">
31             and log_name like CONCAT('%',#{logName},'%')
32         </if>
33     </select>
34
35     <select id="getLoginLogs" resultType="map"
36             parameterType="com.baomidou.mybatisplus.extension.plugins.pagination.Page" databaseId="pgsql">
37         select
38         <include refid="Base_Column_List"/>
39         from sys_login_log
40         where 1 = 1
41         <if test="beginTime != null and beginTime !=''">
42             and create_time >= to_date(#{beginTime} || ' 00:00:00','YYYY-MM-DD HH24:MI:SS')
43         </if>
44         <if test="endTime != null and endTime !=''">
45             and create_time &lt;= to_date(#{endTime}||' 23:59:59','yyyy-mm-dd hh24:mi:ss')
46         </if>
47         <if test="logName != null and logName !=''">
48             and log_name like CONCAT('%',#{logName},'%')
49         </if>
50     </select>
51
52     <select id="getLoginLogs" resultType="map"
53             parameterType="com.baomidou.mybatisplus.extension.plugins.pagination.Page" databaseId="oracle">
54         select
55         <include refid="Base_Column_List"/>
56         from sys_login_log
57         where 1 = 1
58         <if test="beginTime != null and beginTime !='' and endTime != null and endTime != ''">
59             and create_time &gt;= to_date(#{beginTime}||'00:00:00','yyyy-mm-dd hh24:mi:ss')
60             and create_time &lt;= to_date(#{endTime}||'23:59:59','yyyy-mm-dd hh24:mi:ss')
61         </if>
62         <if test="logName != null and logName !=''">
63             and log_name like '%' || #{logName} || '%'
64         </if>
65     </select>
66
67 </mapper>