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

net.unmz.java.wechat.pay.constants.WeChatResponseCodeEnum Maven / Gradle / Ivy

There is a newer version: 1.0.13
Show newest version
package net.unmz.java.wechat.pay.constants;

/**
 * Project Name: 微信支付SDK
 * 功能描述:微信支付状态码定义
 *
 * @author [email protected]
 * @version 1.0
 * @date 2018-3-31 23:52
 * @since JDK 1.8
 */
public enum WeChatResponseCodeEnum {

    SUCCESS("SUCCESS", "成功"),


    ;

    WeChatResponseCodeEnum(String code, String desc) {
        this.code = code;
        this.desc = desc;
    }

    private String code;
    private String desc;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getDesc() {
        return desc;
    }

    public void setDesc(String desc) {
        this.desc = desc;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy