liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
<?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.sign.dao.FormSignDao">
    
    <sql id="formSignColumns">
        a.id AS "id",
        a.create_by AS "createBy.id",
        a.create_date AS "createDate",
        a.update_by AS "updateBy.id",
        a.update_date AS "updateDate",
        a.remarks AS "remarks",
        a.del_flag AS "delFlag",
        a.sign_card_id AS "signUserID",
        a.sign_time AS "signTime",
        a.sign_status AS "signStatus",
        a.sign_type AS "signType",
        a.location_id AS "locationId",
        a.sign_other AS "signOther",
        a.transferId AS "transferId",
        a.schoolId AS "schoolId",
        a.accessKey AS "accessKey"
    </sql>
    
    <sql id="formSignJoins">
    </sql>
 
    <select id="get" resultType="FormSign">
        SELECT 
            <include refid="formSignColumns"/>
        FROM form_sign a
        <include refid="formSignJoins"/>
        WHERE a.id = #{id}
    </select>
        <select id="findList" resultType="FormSign"> 
        <if test="signType != null and signType == 1">
            
            
        SELECT 
            a.id AS "id",
        a.create_by AS "createBy.id",
        a.create_date AS "createDate",
        a.update_by AS "updateBy.id",
        a.update_date AS "updateDate",
        a.remarks AS "remarks",
        a.del_flag AS "delFlag",
        a.sign_card_id AS "signUserID",
        a.sign_time AS "signTime",
        a.sign_status AS "signStatus",
        a.sign_type AS "signType",
        a.location_id AS "locationId",
        a.sign_other AS "signOther",
            
        u.user_id AS "userId",
        u.card_id AS "cardId",
        u.user_name AS "userName",
        u.dep_id AS "depId",
        u.user_sex AS "usersex",
        u.user_type AS "userType",
        u.user_status AS "userStatus",
        u.user_duty AS "userDuty",
        u.user_other AS "userOther",
        a.transferId AS "transferId",
        a.schoolId AS "schoolId",
        a.accessKey AS "accessKey"
        FROM form_sign a
        right JOIN user_register u ON u.card_id = a.sign_card_id
        
        WHERE 1=1 
        <if test="signTime != null and signTime != ''">
        
            <if test="signTimeRang ==  0">
                  <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 00:00:00') ]]>
                <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 23:59:59') ]]>
          
            </if>
            <!-- 上午 -->
            <if test="signTimeRang == 1">
                <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 00:00:00') ]]>
                    <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 12:00:00') ]]>
            </if>
            <!-- 下午 -->
            <if test="signTimeRang == 2">
                <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 12:00:00') ]]>
                <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 23:59:59') ]]>
            </if>
        </if>
        
            <if test="signTime =='' ">
              <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(curdate(), '%Y-%m-%d'),' 00:00:00') ]]>
                <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(curdate(), '%Y-%m-%d'),' 23:59:59') ]]>
            </if>
        <if test="signUserID != null and signUserID != ''">
            AND sign_card_id like CONCAT('%', #{signUserID}, '%')
 
        </if>
        
        <if test="userName != null and userName != ''">
            AND user_name like CONCAT('%', #{userName}, '%')
 
        </if>
        
            
        <if test="UserDepIDList!= null ">
           
              <foreach collection="UserDepIDList" index="index" item="tag" open="  and u.dep_id in ("
                separator="," close=")">
                
              #{tag}  
              
              </foreach>
             
 
        </if>
        ORDER BY a.sign_time DESC
        </if>
        <if test="signType != null and signType == 2">
                SELECT u.user_id AS "userId",
        u.card_id AS "signUserID",
        u.user_name AS "userName",
        u.dep_id AS "depId",
        u.user_sex AS "usersex",
        u.user_type AS "userType",
        u.user_status AS "userStatus",
        u.user_duty AS "userDuty",
        u.user_other AS "userOther"
         FROM user_register u WHERE 1=1 AND u.card_id not in (
         
         SELECT sign_card_id FROM form_sign where 1=1 
         <if test="signTime != null and signTime != ''">
        
            <if test="signTimeRang ==  0">
                  <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 00:00:00') ]]>
                <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 23:59:59') ]]>
          
            </if>
            <!-- 上午 -->
            <if test="signTimeRang == 1">
                <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 00:00:00') ]]>
                    <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 12:00:00') ]]>
            </if>
            <!-- 下午 -->
            <if test="signTimeRang == 2">
                <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 12:00:00') ]]>
                <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 23:59:59') ]]>
            </if>
        </if>
        
            <if test="signTime =='' ">
              <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(curdate(), '%Y-%m-%d'),' 00:00:00') ]]>
                <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(curdate(), '%Y-%m-%d'),' 23:59:59') ]]>
            </if>
        <if test="signUserID != null and signUserID != ''">
            AND sign_card_id like CONCAT('%', #{signUserID}, '%')
 
        </if>
        
        <if test="userName != null and userName != ''">
            AND user_name like CONCAT('%', #{userName}, '%')
 
        </if>
        
            
        <if test="UserDepIDList!= null ">
           
              <foreach collection="UserDepIDList" index="index" item="tag" open="  and u.dep_id in ("
                separator="," close=")">
                
              #{tag}  
              
              </foreach>
             
 
        </if>
         
        )
        </if>
    </select>
    <select id="findList1111" resultType="FormSign">
        SELECT 
            <include refid="formSignColumns"/>
        FROM form_sign a
        <include refid="formSignJoins"/>
        <where>
            a.del_flag = #{DEL_FLAG_NORMAL}
            <if test="signUserID != null and signUserID != ''">
                AND a.sign_card_id = #{signUserID}
            </if>
            <if test="signTime != null and signTime != ''">
                AND a.sign_time = #{signTime}
            </if>
            <if test="signStatus != null and signStatus != ''">
                AND a.sign_status = #{signStatus}
            </if>
            <if test="signType != null and signType != ''">
                AND a.sign_type = #{signType}
            </if>
            <if test="locationId != null and locationId != ''">
                AND a.location_id = #{locationId}
            </if>
            <if test="signOther != null and signOther != ''">
                AND a.sign_other = #{signOther}
            </if>
            <if test="suserother != null and suserother != ''">
                AND a.transferId= #{transferId}
            </if>
            <if test="suserother != null and suserother != ''">
                AND a.schoolId = #{schoolId}
            </if>
            <if test="suserother != null and suserother != ''">
                AND a.accessKey = #{accessKey}
            </if>
        </where>
        <choose>
            <when test="page !=null and page.orderBy != null and page.orderBy != ''">
                ORDER BY ${page.orderBy}
            </when>
            <otherwise>
                ORDER BY a.update_date DESC
            </otherwise>
        </choose>
    </select>
    
    <select id="findAllList" resultType="FormSign">
        SELECT 
            <include refid="formSignColumns"/>
        FROM form_sign a
        <include refid="formSignJoins"/>
        <where>
            a.del_flag = #{DEL_FLAG_NORMAL}
        </where>        
        <choose>
            <when test="page !=null and page.orderBy != null and page.orderBy != ''">
                ORDER BY ${page.orderBy}
            </when>
            <otherwise>
                ORDER BY a.update_date DESC
            </otherwise>
        </choose>
    </select>
    
    <insert id="insert">
        INSERT INTO form_sign(
            id,
            create_by,
            create_date,
            update_by,
            update_date,
            remarks,
            del_flag,
            sign_card_id,
            sign_time,
            sign_status,
            sign_type,
            location_id,
            sign_other,
            transferId,
            schoolId,
            accessKey
        ) VALUES (
            #{id},
            #{createBy.id},
            #{createDate},
            #{updateBy.id},
            #{updateDate},
            #{remarks},
            #{delFlag},
            #{signUserID},
            #{signTime},
            #{signStatus},
            #{signType},
            #{locationId},
            #{signOther},
            #{transferId},
            #{schoolId},
            #{accessKey}
        )
    </insert>
    
    <update id="update">
        UPDATE form_sign SET     
            update_by = #{updateBy.id},
            update_date = #{updateDate},
            remarks = #{remarks},
            sign_card_id = #{signUserID},
            sign_time = #{signTime},
            sign_status = #{signStatus},
            sign_type = #{signType},
            location_id = #{locationId},
            sign_other = #{signOther},
            transferId=#{transferId},
            schoolId=#{schoolId},
            accessKey=#{accessKey}
        WHERE id = #{id}
    </update>
    
    
    <!--物理删除-->
    <update id="delete">
        DELETE FROM form_sign
        WHERE id = #{id}
    </update>
    
    <!--逻辑删除-->
    <update id="deleteByLogic">
        UPDATE form_sign SET 
            del_flag = #{DEL_FLAG_DELETE}
        WHERE id = #{id}
    </update>
    
    
    <!-- 根据实体名称和字段名称和字段值获取唯一记录 -->
    <select id="findUniqueByProperty" resultType="FormSign" statementType="STATEMENT">
        select * FROM form_sign  where ${propertyName} = '${value}'
    </select>
    
    
    
    
<!--    -->
 
 
<select id="findSignListPage"  resultType="FormSign">
    SELECT  
    u.user_id AS "userId", 
    u.card_id AS "signUserID",
    u.user_name AS "userName",
    u.dep_id AS "depId",
    u.user_sex AS "usersex",
    u.user_type AS "userType",
    u.user_status AS "userStatus",
    u.user_duty AS "userDuty" ,
    u.user_other AS "userOther" ,
    t.signCount AS "signCount" ,
    t.signType AS "signType",
    t.signTime AS "signTime"
    FROM
    user_register u
    JOIN (
        SELECT a.sign_card_id AS signCardId,
                a.sign_type AS signType,
                a.sign_time AS signTime,
                count(*) AS signCount
            FROM
                form_sign a
            WHERE
                a.del_flag = 0 
                
                <if test="signTime != null and signTime != ''">
                    <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(#{signTime}, '%Y-%m-%d'),' 00:00:00') ]]>
                </if>
                <if test="endTime != null and endTime != ''">
                      <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(#{endTime}, '%Y-%m-%d'),' 23:59:59') ]]>
                </if>
                <if test="signTimeRang != null ">
                    <if test="signTimeRang == 1"> <!-- 上午 -->
                        <![CDATA[ and DATE_FORMAT(sign_time,'%H:%i:%s') <='12:00:00' ]]>
                    </if>
                    <if test="signTimeRang == 2"><!-- 下午 -->
                        <![CDATA[ and DATE_FORMAT(sign_time,'%H:%i:%s') >'12:00:00' ]]>
                    </if>
                </if>
                 <if test="signType != null and signType != 0 and signType != ''">
                 and a.sign_type = #{signType}
                 </if>                           
                                              
            GROUP BY
                a.sign_card_id,
                a.sign_type
        
        ) t ON t.signCardId = u.card_id
        WHERE  1=1 
        
        <if test="userName != null and userName != ''">
            AND u.user_name like CONCAT('%', #{userName}, '%')
        </if>
        <if test="signUserID != null and signUserID != ''">
            AND u.card_id like CONCAT('%', #{signUserID}, '%')
        </if>
        <if test="UserDepIDList!= null ">
            <foreach collection="UserDepIDList" index="index" item="tag" open="  and u.dep_id in ("  separator="," close=")">
                  #{tag}  
            </foreach>
        </if>
        <if test="orderByStr != null">
            ORDER BY ${orderByStr}
        </if>
    <!--     ORDER BY u.card_id  ASC -->
    </select>
    
    
    <select id="findDetaillist" resultType="FormSign" parameterType="java.util.Map">
        SELECT id,sign_card_id  AS "signUserID" ,sign_time ,sign_type , location_id ,  sign_other  FROM form_sign 
         WHERE 1=1 
        <if test="start != null and start != ''">
            <![CDATA[ and sign_time >= CONCAT(DATE_FORMAT(#{start}, '%Y-%m-%d'),' 00:00:00') ]]>
        </if>
        <if test="end != null and end != ''">
              <![CDATA[ and sign_time <= CONCAT(DATE_FORMAT(#{end}, '%Y-%m-%d'),' 23:59:59') ]]>
        </if>
        <if test="signTimeRang != null ">
            <if test="signTimeRang == 1"> <!-- 上午 -->
                <![CDATA[ and DATE_FORMAT(sign_time,'%H:%i:%s') <='12:00:00' ]]>
               </if>
            <if test="signTimeRang == 2"><!-- 下午 -->
                <![CDATA[ and DATE_FORMAT(sign_time,'%H:%i:%s') >'12:00:00' ]]>
               </if>
           </if>
         <if test="signType != null and signType != ''">
             and sign_type = #{signType}
         </if> 
         <if test="uid != null ">
             and sign_card_id = #{uid}
         </if> 
          
         
         
    </select>
<!--    -->
    
     
    
</mapper>