linwe
2024-09-03 764d883b5ea3bdc06abbec548b6df0511e567978
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
31
32
33
34
35
36
37
38
39
40
41
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;
}