- 添加后去收件人信息

This commit is contained in:
sin
2019-04-05 15:16:23 +08:00
parent fb60682c44
commit 21bb6fd1c4
6 changed files with 52 additions and 0 deletions

View File

@@ -20,6 +20,16 @@
)
</insert>
<!--
查询 - 根据 orderId
-->
<select id="selectByOrderId" resultType="cn.iocoder.mall.order.biz.dataobject.OrderRecipientDO">
SELECT
<include refid="FIELDS" />
FROM `order_recipient`
WHERE order_id = #{orderId}
</select>
<!--
查询 - 根据 orderIds
-->
@@ -32,4 +42,5 @@
#{orderId}
</foreach>
</select>
</mapper>