| | |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.stylefeng.guns.modular.system.dao.BannerMapper"> |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.stylefeng.guns.modular.system.model.Banner"> |
| | | <id column="id" property="id" /> |
| | | <result column="type" property="type" /> |
| | | <result column="name" property="name" /> |
| | | <result column="img" property="img" /> |
| | | <result column="modelId" property="modelId" /> |
| | | <result column="pageId" property="pageId" /> |
| | | <result column="turnId" property="turnId" /> |
| | | <result column="sort" property="sort" /> |
| | | <result column="state" property="state" /> |
| | | </resultMap> |
| | | |
| | | <select id="getBanner" resultType="com.stylefeng.guns.modular.system.warpper.res.BannerRes"> |
| | | select id, img_url as imgUrl, content from t_banner where `position` = #{position} order by `sort` desc |
| | | </select> |
| | | </mapper> |
| | | <!-- 通用查询结果列 --> |
| | | <sql id="Base_Column_List"> |
| | | id, type, name, img, modelId, pageId, turnId, sort, state |
| | | </sql> |
| | | |
| | | </mapper> |