guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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="cn.stylefeng.guns.modular.business.mapper.BannerMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="cn.stylefeng.guns.modular.business.entity.Banner">
        <id column="id" property="id" />
        <result column="status_flag" property="statusFlag" />
        <result column="is_delete" property="isDelete" />
        <result column="type" property="type" />
        <result column="name" property="name" />
        <result column="image" property="image" />
        <result column="jump_module" property="jumpModule" />
        <result column="jump_page" property="jumpPage" />
        <result column="jump_id" property="jumpId" />
        <result column="sort" property="sort" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, status_flag, is_delete, type, name, image, jump_module, jump_page, jump_id, sort
    </sql>
 
</mapper>