王佳豪
2021-06-26 718f604deb342b0bee6c588bb44e22ced3371fb8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?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.slcf.dao.SysLogDao">
 
<!-- mapper不支持sql语句嵌套时,采用sql片段包含方式,解决xml标签问题 -->
<sql id="sysLogConditionSql">    
        <if test="login_no!=null and login_no!='' ">
            and a.login_no like '%' + #{login_no} + '%'
        </if>
        <if test="machine_ip!=null and machine_ip!='' ">
            and machine_ip like '%' + #{machine_ip} + '%'
        </if>
        <if test="form_no!=null and form_no!='' ">
            and form_no like '%' + #{form_no} + '%'
        </if>
        <if test="tts_keyname!=null and tts_keyname!='' ">
            and tts_keyname like '%' + #{tts_keyname} + '%'
        </if>
        <if test="login_name!=null and login_name!='' ">
            and b.user_name like '%' + #{login_name} + '%'
        </if>
        <if test="begin_date!=null and begin_date!='' ">
            <![CDATA[
            and login_date >= #{begin_date}             
            ]]>            
        </if>    
        <if test="end_date!=null and end_date!='' ">
            <![CDATA[
            and login_date <= #{end_date}             
            ]]>            
        </if>
</sql>
 
<!-- 分页查询所有信息 -->
<select id="querySysLogList" parameterType="com.slcf.bean.SysLogCondition" resultType="com.slcf.pojo.SysLogBean">
select top (#{pageSize}) a.*,b.user_name login_name
from sys_tts_mast a left join tb_user b  on a.login_no=b.user_account
<where>
    log_id not in (select top ((#{pageNumber}-1)*#{pageSize}) log_id from sys_tts_mast 
    <where>
        1=1
        <include refid="sysLogConditionSql"></include>        
    </where>
    order by login_date desc)
    <include refid="sysLogConditionSql"></include>
    <![CDATA[
        order by login_date desc
    ]]>
</where>
</select>
 
<select id="getSysLogCount" parameterType="com.slcf.bean.SysLogCondition"    resultType="Integer">
select count(1) from sys_tts_mast a left join tb_user b  on a.login_no=b.user_account
<where>
    <![CDATA[
        1=1
    ]]>
    <include refid="sysLogConditionSql"></include>
</where>
</select>
 
<!-- 不分页查询所有信息,用于excel导出 -->
<select id="getSysLogAll" parameterType="com.slcf.bean.SysLogCondition" resultType="com.slcf.pojo.SysLogBean">
select  a.*,b.user_name login_name
from sys_tts_mast a left join tb_user b  on a.login_no=b.user_account
<where>
    <![CDATA[
         1=1
     ]]>
    <include refid="sysLogConditionSql"></include>
    <![CDATA[
         order by login_date desc
     ]]> 
</where>
</select>
 
</mapper>