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
| <?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.ruili.wcp.dao.config.TableMapper">
| <!-- 根据表名获取表名主键名称 -->
| <select id="selectKeyName" parameterType="String" resultType="String">
| select primary_key
| FROM cnf_table
| WHERE table_name = #{tableName}
| </select>
|
| <!-- 根据表名获取表对象 -->
| <select id="selectTable" parameterType="String" resultType="com.ruili.wcp.data.entity.config.Table">
| select table_id,
| primary_key,
| module_id,
| module_name,
| table_name,
| display_name,
| table_description,
| enable_set_main_table,
| create_user_id,
| create_user_name,
| create_time,
| modify_time
| FROM cnf_table
| WHERE table_name = #{tableName}
| </select>
| </mapper>
|
|