1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| 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");
|
| /**
| * 类型
| */
| private final String type;
| }
|
|