All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taotao.cloud.pay.wxpay.wx.enums.ResponseCode Maven / Gradle / Ivy

There is a newer version: 2024.09
Show newest version
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