update 后管订单详情页查询退款信息

This commit is contained in:
2023-09-15 14:25:51 +08:00
parent cadfa31c98
commit 2fe34b5bf7
6 changed files with 30 additions and 7 deletions

View File

@@ -202,4 +202,12 @@
</foreach>
</if>
</select>
<select id="getOrderRecord" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from member_wallet_log
where related_order_code = #{orderCode,jdbcType=VARCHAR}
and type = #{type,jdbcType=VARCHAR}
</select>
</mapper>