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

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