数据库操作实现:
1.分析数据表结构
查询status=1且按照seq进行排序
2.添加测试数据
3.编写sql语句
SELECT img_id,img_url,img_bg_color,prod_id,category_id,index_type,seq,STATUS,create_time,update_time
FROM index_img WHERE STATUS=1 ORDER BY seq
4.在mapper接口(dao)中定义操作方法
public interface IndexImgMapper extends GeneralDAO<IndexImg> {
//1.查询轮播图信息:查询status=1且按照seq进行排序
public List<IndexImg> listIndexImgs();
}
5.配置映射文件
<?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.qfedu.fmmall.dao.IndexImgMapper">
<resultMap id="BaseResultMap" type="com.qfedu.fmmall.entity.IndexImg">
<!--
WARNING - @mbg.generated
-->
<id column="img_id" jdbcType="VARCHAR" property="imgId" />
<result column="img_url" jdbcType="VARCHAR" property="imgUrl" />
<result column="img_bg_color" jdbcType="VARCHAR" property="imgBgColor" />
<result column="prod_id" jdbcType="VARCHAR" property="prodId" />
<result column="category_id" jdbcType="VARCHAR" property="categoryId" />
<result column="index_type" jdbcType="INTEGER" property="indexType" />
<result column="seq" jdbcType="INTEGER" property="seq" />
<result column="status" jdbcType="INTEGER" property="status" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
</resultMap>
<select id="listIndexImgs" resultMap="BaseResultMap">
SELECT img_id,img_url,img_bg_color,prod_id,category_id,index_type,seq,STATUS,create_time,update_time
FROM index_img WHERE STATUS=1 ORDER BY seq
</select>
</mapper>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/128118.html