Administrator
2025-08-20 de8b3cf7a9b22be7abcb544a53dcea7f1b340760
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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 desc
    </select>
 
</mapper>