xiaoyong931011
2023-08-12 5c4d462bbdce5aa68d4b6dc928a62256efe20d2a
src/main/resources/mapper/dapp/DappMemberDao.xml
@@ -206,7 +206,7 @@
            a.invite_id inviteId,
            a.address address,
            a.account_type accountType,
            a.active_status activeStatus,
            a.active_status activeStatus
        from dapp_member a
        where a.id = #{id}
    </select>
@@ -273,8 +273,11 @@
    </select>
    <select id="selectMallOrderListQueryInPage" resultType="cc.mrbird.febs.dapp.vo.MallOrderListVo">
        select a.*
        select a.*,
               b.goods_name goodsName,
               b.cnt goodsCnt
        from mall_order_info a
        left join mall_order_item b on a.id = b.order_id
        <where>
            a.member_id = #{record.memberId}
            <if test="record != null">
@@ -296,7 +299,7 @@
    <select id="selectMallOrderItemVoByOrderId" resultType="cc.mrbird.febs.dapp.vo.MallOrderItemVo">
        select a.*
        from mall_order_item a
        where orderId = #{orderId}
        where order_id = #{orderId}
    </select>
    <select id="selectMallGoodsListVoById" resultType="cc.mrbird.febs.dapp.vo.MallGoodsListVo">