| | |
| | | <result column="longitude" property="longitude" /> |
| | | <result column="latitude" property="latitude" /> |
| | | <result column="remark" property="remark" /> |
| | | <result column="del_flag" property="delFlag" /> |
| | | <collection property="items" ofType="cc.mrbird.febs.mall.entity.MallOrderItem"> |
| | | <id property="id" column="item_id" /> |
| | | <result property="orderId" column="order_id" /> |
| | |
| | | where del_flag=2 and member_id=#{memberId} |
| | | group by status |
| | | </select> |
| | | |
| | | <select id="getMallOrderDetailById" resultType="cc.mrbird.febs.mall.vo.AdminOrderDetailVo"> |
| | | select * from mall_order_info a where a.id = #{id} |
| | | </select> |
| | | |
| | | <select id="getMallOrderItemByOrderId" resultType="cc.mrbird.febs.mall.entity.MallOrderItem"> |
| | | select * from mall_order_item where order_id = #{id} |
| | | </select> |
| | | |
| | | </mapper> |