com.taotao.cloud.pay.wxpay.wx.enums.ResponseCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-cloud-starter-pay-wxpay Show documentation
Show all versions of taotao-cloud-starter-pay-wxpay Show documentation
taotao-cloud-starter-pay-wxpay
package com.taotao.cloud.pay.wxpay.wx.enums;
import com.fasterxml.jackson.annotation.JsonCreator;
/**
* 返回code
*
* @author lingting 2021/2/1 11:31
*/
public enum ResponseCode {
/**
* 成功
*/
SUCCESS,
/**
* 失败
*/
FAIL,
/**
* 异常
*/
ERROR,
;
ResponseCode() {
}
@JsonCreator
public static ResponseCode of(String status) {
switch (status) {
case "SUCCESS":
return SUCCESS;
case "FAIL":
return FAIL;
default:
return ERROR;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy