<?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.sandu.ximon.dao.mapper.UsrWxPayConfigMapper">
|
|
<resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.WxConfigEntity">
|
<id property="configId" column="config_id" jdbcType="BIGINT"/>
|
<result property="appid" column="appid" jdbcType="VARCHAR"/>
|
<result property="appappid" column="appappid" jdbcType="VARCHAR"/>
|
<result property="mchId" column="mch_id" jdbcType="VARCHAR"/>
|
<result property="privateKey" column="private_key" jdbcType="VARCHAR"/>
|
<result property="keyPath" column="key_path" jdbcType="VARCHAR"/>
|
<result property="appSecret" column="app_secret" jdbcType="VARCHAR"/>
|
<result property="state" column="state" jdbcType="INTEGER"/>
|
<result property="clientId" column="client_id" jdbcType="BIGINT"/>
|
<result property="createUserId" column="create_user_id" jdbcType="BIGINT"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
config_id
|
,appid,appappid,
|
mch_id,private_key,client_id,
|
create_user_id
|
</sql>
|
</mapper>
|