This commit is contained in:
邹宗楠
2023-05-26 15:26:09 +08:00
parent 777eb21cf4
commit 07b277006c
3 changed files with 17 additions and 16 deletions

View File

@@ -44,9 +44,14 @@ type PreCreateOrderReq struct {
// PreCreateOrderResponse 预下单返回参数
type PreCreateOrderResponse struct {
Result int `json:"result"`
ErrorMsg string `json:"error_msg"`
OrderInfo string `json:"order_info"` //拉起收银台的 orderInfo
Result int `json:"result"`
ErrorMsg string `json:"error_msg"`
OrderInfo CreateOrderResponseInfo `json:"order_info"` //拉起收银台的 orderInfo
}
type CreateOrderResponseInfo struct {
OrderInfoToken string `json:"order_info_token"`
OrderNo string `json:"order_no"`
}
// GetOrderDetailRes 获取支付订单详情