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

com.zopen.wechat.pay.dto.constant.TradeStateEnum Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.zopen.wechat.pay.dto.constant;

/**
 * 订单交易状态
 *
 * @author [email protected]
 * @since 2019/8/24
 */
public enum TradeStateEnum {

    SUCCESS("支付成功"),
    REFUND("转入退款"),
    NOTPAY("未支付"),
    CLOSED("已关闭"),
    REVOKED("已撤销(刷卡支付)"),
    USERPAYING("用户支付中"),
    PAYERROR("支付失败(其他原因,如银行返回失败)");

    private String desc;

    TradeStateEnum(String desc) {
        this.desc = desc;
    }

    public String getDesc() {
        return desc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy