18 lines
619 B
XML
18 lines
619 B
XML
|
<?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.atguigu.spzx.manger.mapper.BrandMapper">
|
||
|
<!-- 用于select查询公用抽取的列 -->
|
||
|
<sql id="columns">
|
||
|
id,name,logo,create_time,update_time,is_deleted
|
||
|
</sql>
|
||
|
|
||
|
<!-- 查找分页品牌 -->
|
||
|
<select id="findByPage" resultType="com.atguigu.spzx.model.entity.product.Brand">
|
||
|
select
|
||
|
<include refid="columns"/>
|
||
|
from brand
|
||
|
where is_deleted = 0
|
||
|
order by id desc
|
||
|
</select>
|
||
|
</mapper>
|