mitao
2025-04-07 18891c60ab1c06a4acc85d0ec54dee50d1b1a19f
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
<?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.finance.system.mapper.TbFieldMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.finance.system.domain.TbField">
        <id column="id" property="id" />
        <result column="field_name" property="fieldName" />
        <result column="field_type" property="fieldType" />
        <result column="level_one_category" property="levelOneCategory" />
        <result column="level_two_category" property="levelTwoCategory" />
        <result column="level_three_category" property="levelThreeCategory" />
        <result column="status" property="status" />
        <result column="num_min" property="numMin" />
        <result column="num_max" property="numMax" />
        <result column="text_input_type" property="textInputType" />
        <result column="text_min_num" property="textMinNum" />
        <result column="text_max_num" property="textMaxNum" />
        <result column="text_content" property="textContent" />
        <result column="del_flag" property="delFlag" />
        <result column="create_by" property="createBy" />
        <result column="create_time" property="createTime" />
        <result column="update_by" property="updateBy" />
        <result column="update_time" property="updateTime" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, field_name, field_type, level_one_category, level_two_category, level_three_category, hidden, num_min, num_max, text_input_type, text_min_num, text_max_num, text_content, del_flag, create_by, create_time, update_by, update_time
    </sql>
 
</mapper>