Skip to content

Commit

Permalink
binarywang#3319【微信支付】商家转账到零钱,新增 batch_status 返回值
Browse files Browse the repository at this point in the history
  • Loading branch information
imyzt committed Jul 15, 2024
1 parent 7262699 commit f1cf24e
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,15 @@ public class TransferCreateResult implements Serializable {
*/
@SerializedName("create_time")
private String createTime;

/**
* 批次状态
* 说明:
* ACCEPTED:已受理。批次已受理成功,若发起批量转账的30分钟后,转账批次单仍处于该状态,可能原因是商户账户余额不足等。商户可查询账户资金流水,若该笔转账批次单的扣款已经发生,则表示批次已经进入转账中,请再次查单确认
* PROCESSING:转账中。已开始处理批次内的转账明细单
* FINISHED:已完成。批次内的所有转账明细单都已处理完成
* CLOSED:已关闭。可查询具体的批次关闭原因确认
*/
@SerializedName("batch_status")
private String batchStatus;
}

0 comments on commit f1cf24e

Please sign in to comment.