<?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.nq.dao.PayChnnelMapper">
|
<resultMap id="BaseResultMap" type="com.nq.pojo.PayChnnel" >
|
<result column="id" property="id" />
|
<result column="channel_name" property="channelName" />
|
<result column="channel_type" property="channelType" />
|
<result column="channel_desc" property="channelDesc" />
|
<result column="channel_method" property="channelMethod" />
|
<result column="sort" property="sort"/>
|
<result column="is_show" property="isShow"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
id,
|
channel_name,
|
channel_type,
|
channel_desc,
|
channel_method,
|
sort,
|
is_show
|
|
</sql>
|
|
|
|
</mapper>
|