添加快捷支付

This commit is contained in:
韩鹏辉
2024-05-20 09:59:15 +08:00
parent 776e9076da
commit cd913643a5
10 changed files with 57 additions and 25 deletions

View File

@@ -1,6 +1,6 @@
spring:
profiles:
active: prod2
active: dev
server:
servlet:
context-path: /cashier-client/
@@ -39,7 +39,7 @@ gateway:
client:
backUrl: https://cashierclient.sxczgkj.cn/cashier-client/notify/notifyPay
thirdPay:
payType: ysk
payType: fushangtong
callBack: https://cashierclient.sxczgkj.cn/cashier-client/notify/notifyPay
url: https://paymentapi.sxczgkj.cn

View File

@@ -19,7 +19,7 @@
</resultMap>
<sql id="Base_Column_List">
id, type, app_id, status, pay_password, applyment_state, created_at, updated_at,
shop_id
shop_id,small_appid,store_id
</sql>
<sql id="Blob_Column_List">
app_token

View File

@@ -154,4 +154,8 @@
<select id="selectByShopIdAndStaffId" resultMap="BaseResultMap">
select * from tb_quick_pay where shop_id=#{shopId} and staff_id=#{staffId} and `status`='0' order by id desc
</select>
<select id="selectByOrderNo" resultMap="BaseResultMap">
select * from tb_quick_pay where order_no=#{orderNo}
</select>
</mapper>