修改余额退款逻辑

This commit is contained in:
2023-03-07 16:43:19 +08:00
parent f4fe4e74c2
commit 3035eb547b
6 changed files with 164 additions and 27 deletions

View File

@@ -224,4 +224,14 @@
create_time = #{createTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
</update>
<select id="selectWxpayRefundCallbackList" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from wxpay_refund_callback
where out_trade_no in
<foreach collection="list" item="item" open="(" separator="," close=")">
#{item,jdbcType=VARCHAR}
</foreach>
</select>
</mapper>