fix: 微信支付,登录接口。

This commit is contained in:
tianyongbao
2026-01-16 14:33:21 +08:00
parent fe0f3e0432
commit 32844af3dd
34 changed files with 2581 additions and 145 deletions

View File

@@ -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;
}