zhaowenxuan
2025-02-06 06c12d2b42c343798d9476be66031b48967df639
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
<?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.ltkj.hosp.mapper.ApiConfigMapper">
 
    <resultMap id="BaseResultMap" type="com.ltkj.hosp.domain.ApiConfig">
            <id property="id" column="id" jdbcType="BIGINT"/>
            <result property="apiUrl" column="api_url" jdbcType="VARCHAR"/>
            <result property="apiMethod" column="api_method" jdbcType="VARCHAR"/>
            <result property="tabName" column="tab_name" jdbcType="VARCHAR"/>
            <result property="isResponse" column="is_response" jdbcType="TINYINT"/>
            <result property="primaryKeys" column="primary_keys" jdbcType="VARCHAR"/>
            <result property="remark" column="remark" jdbcType="VARCHAR"/>
            <result property="resultCodeKey" column="result_code_key" jdbcType="VARCHAR"/>
            <result property="resultDataKey" column="result_data_key" jdbcType="VARCHAR"/>
            <result property="type" column="type" jdbcType="VARCHAR"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,api_url,api_method,
        tab_name,is_response,primary_keys,
        remark,result_code_key,result_data_key,
        type
    </sql>
</mapper>