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
42
43
44
45
46
47
48
| package com.nova.sankuai.domain.api.yinsheng.enums;
|
| import lombok.Getter;
|
| /**
| * 银盛快捷协议支付的业务类型
| *
| * @author ephemeral
| * @date 2022/7/9 15:14
| */
| @Getter
| public enum BusinessTypeEnum {
| /**
| * 快捷协议签约
| */
| SIGN("ysepay_trusteeship_sign_response"),
| /**
| * 快捷协议签约确认
| */
| CONFIRM("ysepay_trusteeship_sign_confirm_response"),
|
| /**
| * 快捷协议签约查询
| */
| SIGN_QUERY("ysepay_trusteeship_fastPay_queryProtocol_response"),
|
| /**
| * 快捷协议支付
| */
| PAY("ysepay_trusteeship_fastPay_response"),
|
| /**
| * 重新发送支付短信验证码
| */
| SMS_RESEND("ysepay_trusteeship_fastPay_reachievemsg_response"),
|
| /**
| * 确认支付短信验证码
| */
| SMS_CONFIRM("ysepay_trusteeship_fastPay_confirm_response"),
| ;
|
| private String code;
|
| BusinessTypeEnum(String code) {
| this.code = code;
| }
| }
|
|