refactor: 交易状态增加等待扣款状态

根据微信最新的业务变动增加 “ACCEPT” 字段用来标记“已接收,等待扣款”状态
This commit is contained in:
felord.cn
2021-02-03 11:15:30 +08:00
committed by felord.cn
parent 0bb56bc874
commit 75584f374f
2 changed files with 10 additions and 4 deletions

View File

@@ -1,10 +1,10 @@
## 1.0.5.RELEASE ## 1.0.5.RELEASE
- 微信支付 - 微信支付
- feat:增加V2 退款接口 - feat:增加V2退款接口
- feat:增加V2 企业付款到零钱接口 - feat:增加V2企业付款到零钱接口
- feat:增加V2 红包接口 - feat:增加V2红包接口
- refactor:优化了一些底层功能 - refactor:优化了一些底层功能
- refactor:整了支付配置Spring注入的顺序 - refactor:整了支付配置Spring注入的顺序
- refactor:JCE由SPI提供不再使用JDK内置 - refactor:JCE由SPI提供不再使用JDK内置
- fix: 关单接口调用异常 - fix: 关单接口调用异常

View File

@@ -67,4 +67,10 @@ public enum TradeState {
* @since 1.0.0.RELEASE * @since 1.0.0.RELEASE
*/ */
PAYERROR, PAYERROR,
/**
* 已接收,等待扣款
*
* @since 1.0.6.RELEASE
*/
ACCEPT,
} }