1
zj
2026-01-19 055926357a0e6725122f69197c3e1b89d33454d8
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
27
28
<?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>