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; }