无关风月
2025-04-03 b01f752252eaadd1fa31eda6a9ad43146660b721
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
<?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.xinquan.system.mapper.CustomConfigMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.xinquan.system.domain.CustomConfig">
        <id column="config_id" property="configId" />
        <result column="del_flag" property="delFlag" />
        <result column="create_time" property="createTime" />
        <result column="update_time" property="updateTime" />
        <result column="config_type" property="configType" />
        <result column="config_key" property="configKey" />
        <result column="config_name" property="configName" />
        <result column="config_value" property="configValue" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        del_flag,
        create_time,
        update_time,
        config_id, config_type, config_key, config_name, config_value
    </sql>
 
</mapper>