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
| <?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.gkhy.exam.system.mapper.ProclaimMapper">
|
| <select id="selectProclaimList" resultType="com.gkhy.exam.system.domain.Proclaim">
| SELECT
| p.`id`,
| p.`company_id`,
| p.`content`,
| p.`check_id`,
| su.`name` AS check_name,
| p.`sign`,
| p.`status`,
| p.`type`,
| p.`del_flag`,
| p.`create_by`,
| p.`create_time`,
| p.`update_by`,
| p.`update_time`
| FROM
| `proclaim` p
| LEFT JOIN sys_user su ON p.check_id = su.id
| WHERE
| p.del_flag = 0 and type = #{type}
| <if test="companyId!=null">
| and p.company_id = #{companyId}
| </if>
| ORDER BY
| p.create_time DESC
| </select>
| <select id="selectByCompanyId" resultType="com.gkhy.exam.system.domain.Proclaim">
| SELECT
| p.`id`,
| p.`company_id`,
| p.`content`,
| p.`check_id`,
| su.`name` AS check_name,
| p.`sign`,
| p.`status`,
| p.`type`,
| p.`del_flag`,
| p.`create_by`,
| p.`create_time`,
| p.`update_by`,
| p.`update_time`
| FROM
| `proclaim` p
| LEFT JOIN sys_user su ON p.check_id = su.id
| WHERE
| p.del_flag = 0
| <if test="companyId!=null">
| and p.company_id = #{companyId}
| </if>
| ORDER BY
| p.create_time DESC
| </select>
| </mapper>
|
|