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