package com.nova.sankuai.domain.api.yinsheng.enums;
|
|
import lombok.Getter;
|
|
/**
|
* @author ephemeral
|
* @date 2022/7/12 08:57
|
*/
|
@Getter
|
public enum YinShengMethodEnum {
|
|
/**
|
* 查询快捷协议签约method常量
|
*/
|
QUERY_PROTOCOL_METHOD("ysepay.trusteeship.fastPay.queryProtocol"),
|
|
/**
|
* 签约快捷协议method常量
|
*/
|
SIGN_PROTOCOL_METHOD("ysepay.trusteeship.sign"),
|
|
/**
|
* 确认快捷协议签约method常量
|
*/
|
SIGN_CONFIRM_METHOD("ysepay.trusteeship.sign.confirm"),
|
|
/**
|
* 快捷协议支付method常量
|
*/
|
FAST_PROTOCOL_PAY("ysepay.trusteeship.fastPay"),
|
|
/**
|
* 快捷协议支付短信重新发送method常量
|
*/
|
FAST_PROTOCOL_SMS_RESEND("ysepay.trusteeship.fastPay.reachievemsg"),
|
|
/**
|
* 快捷协议支付短信确认method常量
|
*/
|
FAST_PROTOCOL_SMS_CONFIRM("ysepay.trusteeship.fastPay.confirm")
|
;
|
|
private String code;
|
|
YinShengMethodEnum(String code) {
|
this.code = code;
|
}
|
}
|