fix: 微信支付,登录接口。
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
package com.intc.weixin.constant;
|
||||
|
||||
/**
|
||||
* 支付订单状态常量
|
||||
*
|
||||
* @author intc
|
||||
*/
|
||||
public class PayOrderStatus {
|
||||
|
||||
/**
|
||||
* 未支付
|
||||
*/
|
||||
public static final Integer NOTPAY = 0;
|
||||
|
||||
/**
|
||||
* 支付中
|
||||
*/
|
||||
public static final Integer USERPAYING = 1;
|
||||
|
||||
/**
|
||||
* 支付成功
|
||||
*/
|
||||
public static final Integer SUCCESS = 2;
|
||||
|
||||
/**
|
||||
* 支付失败
|
||||
*/
|
||||
public static final Integer PAYERROR = 3;
|
||||
|
||||
/**
|
||||
* 已关闭
|
||||
*/
|
||||
public static final Integer CLOSED = 4;
|
||||
|
||||
/**
|
||||
* 已退款
|
||||
*/
|
||||
public static final Integer REFUND = 5;
|
||||
}
|
||||
Reference in New Issue
Block a user