<?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>
|