feat(core): 完善收银台功能并优化相关配置

- 新增小程序支付方式
- 更新聚合支付名称
- 添加收银台签名接口
- 实现收银台链接创建功能
-优化收银台配置查询
- 修复聚合支付URL生成逻辑- 优化微信授权URL生成格式
This commit is contained in:
DaxPay
2024-12-04 15:12:28 +08:00
parent 554aa7e123
commit 947817e12d
9 changed files with 45 additions and 22 deletions

View File

@@ -20,9 +20,10 @@ public enum CheckoutCallTypeEnum {
QR_CODE("qr_code", "扫码支付"),
BAR_CODE("bar_code", "条码支付"),
LINK("link", "跳转链接"),
JSAPI("jsapi", "JSAPI"),
MINI_APP("mini_app", "小程序"),
AGGREGATE("aggregate", "聚合支付"),
APP("app", "APP支付"),
JSAPI("jsapi", "JSAPI"),
;
private final String code;

View File

@@ -9,6 +9,7 @@ import java.util.Objects;
/**
* 收银台类型
* 字典 checkout_type
* @author xxm
* @since 2024/11/26
*/
@@ -19,7 +20,7 @@ public enum CheckoutTypeEnum {
H5("h5", "H5"),
PC("pc", "PC"),
MINI_APP("mini_app", "小程序"),
AGGREGATE("aggregate", "聚合扫码"),
AGGREGATE("aggregate", "聚合支付"),
;
private final String code;