付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?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.wgcloud.mapper.WorkLoggingMapper">
    <resultMap id="resultMap" type="com.wgcloud.entity.WorkLogging">
        <id column="ID" property="id" jdbcType="CHAR" />
        <result column="USERNAME" property="username" jdbcType="CHAR" />
        <result column="WORK_DATE" property="workDate" jdbcType="TIMESTAMP" />
        <result column="CONTENT" property="content" jdbcType="CHAR" />
    </resultMap>
 
    <sql id="tableColumnList">
        ID,USERNAME, WORK_DATE,CONTENT
    </sql>
 
    <sql id="queryByParams">
        <if test="username != null">
            <choose>
                <when test="_databaseId == 'oracle'">
                    <![CDATA[ AND ( USERNAME  = #{username} ]]>
                </when>
                <otherwise>
                    <![CDATA[ AND ( USERNAME  = #{username}]]>
                </otherwise>
            </choose>
        </if>
        <if test="startTime != null and endTime !=null and startTime !='' and endTime != '' ">
            <if test="_databaseId == 'mysql'">
                <![CDATA[ AND WORK_DATE >= #{startTime} and WORK_DATE <=#{endTime}]]>
            </if>
            <if test="_databaseId == 'postgresql'">
                <![CDATA[ AND WORK_DATE >= cast(#{startTime} as timestamp) and WORK_DATE <= cast(#{endTime} as timestamp)]]>
            </if>
            <if test="_databaseId == 'oracle'">
                <![CDATA[ AND WORK_DATE >= to_date(#{startTime},'yyyy-MM-dd hh24:mi:ss') and WORK_DATE <= to_date(#{endTime},'yyyy-MM-dd hh24:mi:ss')]]>
            </if>
        </if>
    </sql>
 
 
    <select id="selectById" resultMap="resultMap" parameterType="java.lang.String">
        SELECT
        <include refid="tableColumnList" />
        FROM WORK_LOGGING
        WHERE ID=#{id}
    </select>
 
 
    <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
        DELETE FROM WORK_LOGGING
        WHERE ID = #{id}
    </delete>
 
 
    <delete id="deleteByUsername" parameterType="map">
        DELETE FROM WORK_LOGGING WHERE <![CDATA[  USERNAME =#{username}]]>
    </delete>
 
    <delete id="deleteById" parameterType="java.lang.String">
        DELETE FROM
        WORK_LOGGING
        WHERE ID IN
        <foreach item="item" index="index" collection="array" open="(" separator="," close=")">
            #{item}
        </foreach>
    </delete>
 
    <insert id="save" parameterType="com.wgcloud.entity.WorkLogging">
        INSERT INTO WORK_LOGGING
        <trim prefix="(" suffix=")" suffixOverrides="," >
              <if test="id != null" >ID,</if>
              <if test="username != null" >USERNAME,</if>
              <if test="workDate != null" >WORK_DATE</if>
              <if test="content != null" >CONTENT</if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides="," >
              <if test="id != null" >#{id},</if>
              <if test="username != null" >#{username},</if>
              <if test="workDate != null" >#{workDate},</if>
              <if test="content != null" >#{content}</if>
        </trim>
    </insert>
 
    <insert id="insertList" parameterType="java.util.List" >
        <choose>
            <when test="_databaseId == 'oracle'">
                begin
                <foreach collection="list" item="item" index="index">
                    INSERT INTO WORK_LOGGING (ID,USERNAME, WORK_DATE,CONTENT)  VALUES
                    (#{item.id},#{item.username},#{item.workDate},#{item.content});
                </foreach>
                end;
            </when>
            <otherwise>
                INSERT INTO WORK_LOGGING (ID,USERNAME, WORK_DATE,CONTENT)  VALUES
                 <foreach collection="list" item="item" index="index" separator="," >
                     (#{item.id},#{item.username},#{item.workDate},#{item.content});
                </foreach>
            </otherwise>
        </choose>
    </insert>
 
 
    <select id="countByParams" parameterType="map" resultType="java.lang.Integer">
        SELECT count(*)  FROM WORK_LOGGING t
        <where>
            <include refid="queryByParams" />
        </where>
    </select>
 
 
    <select id="selectAllByParams" parameterType="map" resultMap="resultMap">
        SELECT
        <include refid="tableColumnList" />
        FROM WORK_LOGGING t
        <where>
            <include refid="queryByParams" />
        </where>
         ORDER BY ID DESC
    </select>
 
    <select id="selectByParams" parameterType="map" resultMap="resultMap">
        SELECT
        <include refid="tableColumnList" />
        FROM WORK_LOGGING
        <where>
            <include refid="queryByParams" />
        </where>
        <choose>
            <when test="orderBy !=null and orderBy != ''">
                <![CDATA[ ORDER BY ${orderBy} ${orderType}]]>
            </when>
            <otherwise>
                ORDER BY ID DESC
            </otherwise>
        </choose>
 
    </select>
 
 
</mapper>