| New file |
| | |
| | | package org.springblade.common.enums.wxpay; |
| | | |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Getter; |
| | | |
| | | @AllArgsConstructor |
| | | @Getter |
| | | public enum WxNotifyType { |
| | | |
| | | /** |
| | | * 支付通知 |
| | | */ |
| | | NATIVE_NOTIFY("/wxPay/native/notify"), |
| | | |
| | | /** |
| | | * 支付通知 |
| | | */ |
| | | NATIVE_NOTIFY_V2("/wxPayV2/native/notify"), |
| | | |
| | | |
| | | /** |
| | | * 退款结果通知 |
| | | */ |
| | | REFUND_NOTIFY("/wxPay/refunds/notify"), |
| | | |
| | | /** |
| | | * 添加分账接收方API |
| | | */ |
| | | RECEIVERS_ADD("/v3/profitsharing/receivers/add"), |
| | | |
| | | /** |
| | | * 创建分账订单API |
| | | * |
| | | */ |
| | | PROFITSHARING_ORDERS("/v3/profitsharing/orders"); |
| | | |
| | | /** |
| | | * 类型 |
| | | */ |
| | | private final String type; |
| | | } |