43 lines
549 B
Java
Raw Normal View History

2025-10-17 17:32:20 +08:00
package com.cdzy.payment.enums;
/**
2025-10-21 09:57:21 +08:00
* @author: yanglei
* @since: 2025-10-17 15:10
2025-10-17 17:32:20 +08:00
*/
public interface TradeStatus {
/**
* 支付成功
*/
int SUCCESS = 0;
/**
* 退款
*/
int REFUNDED = 1;
/**
* 未支付
*/
int UNPAID = 2;
/**
* 关闭
*/
int CLOSED = 3;
/**
* 取消
*/
int CANCELED = 4;
/**
* 支付中
*/
int PAYING = 5;
/**
* 支付错误
*/
int ERROR = 6;
/**
* 接受
*/
int ACCEPTED = 7;
}