担保支付的订单需要同步到抖音商场订单里
文档地址:https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/server/ecpay/order/order-sync
/**
* 普通小程序订单订单状态,POI 订单可以忽略
* 0:待支付
* 1:已支付
* 2:已取消(用户主动取消或者超时未支付导致的关单)
* 4:已核销(核销状态是整单核销,即一笔订单买了 3 个券,核销是指 3 个券核销的整单)
* 5:退款中
* 6:已退款
* 8:退款失败
* 注意:普通小程序订单必传,担保支付分账依赖该状态
*
*
* status 订单状态,建议采用以下枚举值:
* 待支付
* 已支付
* 已取消
* 已超时
* 已核销
* 退款中
* 已退款
* 退款失败
*
* @param open_id 用户openid
* @param order_status
* @param orderNo. 商户订单号
* @param status
* @param totalPrice 金额分
* @return
*/
public String pushOrder(String open_id , Integer order_status , String orderNo , String status , Integer totalPrice){