赵文轩
2024-06-12 d866e43afbe901bfc640776e02f767b9045acbc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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.HisApiConfigMapper">
 
    <resultMap id="BaseResultMap" type="com.ltkj.hosp.domain.HisApiConfig">
            <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="isLimit" column="is_limit" jdbcType="TINYINT"/>
            <result property="primaryKeys" column="primary_keys" jdbcType="VARCHAR"/>
            <result property="remark" column="remark" jdbcType="VARCHAR"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,api_url,api_method,
        tab_name,is_limit,primary_keys,
        remark
    </sql>
</mapper>