<?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="cc.mrbird.febs.mall.mapper.ClothesOrderDraftMapper">
|
|
<select id="selectPageInDraft" resultType="cc.mrbird.febs.mall.vo.clothes.ApiMyDraftVo">
|
select
|
a.*
|
from clothes_order_draft a
|
left join clothes_type b on a.type_id = b.id
|
where a.member_id = #{record.memberId}
|
and a.del_flag = 0
|
and b.state = 1
|
order by a.CREATED_TIME asc
|
</select>
|
|
</mapper>
|