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
| <?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.ycl.mapper.ProcessConfigInfoMapper">
|
| <!-- 通用查询映射结果 -->
| <resultMap id="BaseResultMap" type="com.ycl.domain.vo.ProcessConfigInfoVO">
| <result column="deploy_id" property="deployId" />
| <result column="project_type" property="projectType" />
| <result column="fund_type" property="fundType" />
| <result column="invest_type" property="investType" />
| <result column="importance_type" property="importanceType" />
| <result column="deploy_version" property="deployVersion" />
| </resultMap>
|
|
|
|
|
|
|
| <select id="getById" resultMap="BaseResultMap">
| SELECT
| TPCI.deploy_id,
| TPCI.project_type,
| TPCI.fund_type,
| TPCI.invest_type,
| TPCI.importance_type,
| TPCI.deploy_version,
| TPCI.id
| FROM
| t_process_config_info TPCI
| WHERE
| TPCI.id = #{id} AND TPCI.deleted = 0
| </select>
|
|
| <select id="getPage" resultMap="BaseResultMap">
| SELECT
| TPCI.deploy_id,
| TPCI.project_type,
| TPCI.fund_type,
| TPCI.invest_type,
| TPCI.importance_type,
| TPCI.deploy_version,
| TPCI.id
| FROM
| t_process_config_info TPCI
| WHERE
| TPCI.deleted = 0
| </select>
|
| </mapper>
|
|