diff --git a/platformapi/q_bida/q_bida_params.go b/platformapi/q_bida/q_bida_params.go index 348c8d98..7e43cf3e 100644 --- a/platformapi/q_bida/q_bida_params.go +++ b/platformapi/q_bida/q_bida_params.go @@ -121,7 +121,7 @@ type GetOrderDetailReq struct { // GetOrderDetailRes 订单详情返回值 type GetOrderDetailRes struct { PublicParams - Data *OrderDetail + Data *OrderDetail `json:"data"` } type OrderDetail struct { @@ -134,60 +134,60 @@ type OrderDetail struct { ShipMethod interface{} `json:"shipMethod"` ShipMethodName string `json:"shipMethodName"` - ChangeFee float64 // 转寄费用 - ConsumeFee float64 // 耗材费元 - CopyText string // 复制信息 - CreateDate string // 下单时间 - ExpressFee string // 快递费元 (元) - FeeStatus int // 费用状态0下单费用冻结中 ,非0下单费用已扣 - Goods string // 物品 - GuaranteeValueAmount float64 // 保价金额 - InsuranceFee float64 // 保价费元 - IsForward bool // 是否转寄单0否1是(转寄单额外收取50%运费) - IsLimit bool // 是否超限0否1是 - OriginalFee int // 官方原价 - OtherFee int // 其他费用 - OverWeightStatus int // 超重状态 - PackageNum int // 包裹数 - ReceiveAddress string // 收件人地址 - ReceiveCity string // 收件人地址城市 - ReceiveName string // 收件人名称 - ReceivePhone string // 收件人电话 - SenderAddress string // 寄件人地址 - SenderCity string // 寄件人地址城市 - SenderName string // 寄件人姓名 - SenderPhone string // 寄件人电话 - Soliciter string // 揽件员 - Status int // 状态0预下单1待取件2运输中5已签收6取消订单7终止揽收 - StatusName string // 状态名称 - TotalFee string // 总费用元 - PayFee float64 // 实际支付费用元 - TraceList []*TraceListDetail // 快递详情列表 - TrackingNum string // 运单号 - Type int // 快递公司 0:京东 1:德邦 - Volume int // 体积cm3 - VolumeRemark string // 体积重量计算说明 - VolumeWeight float64 // 体积重量Kg - Weight int // 下单重量Kg - WeightActual float64 // 实际重量Kg - WeightBill int // 计费重量Kg - WeightStatus string // 超重状态 - Yuanjia float64 // 快递费 + ChangeFee float64 `json:"changeFee"` // 转寄费用 + ConsumeFee float64 `json:"consumeFee"` // 耗材费元 + CopyText string `json:"copyText"` // 复制信息 + CreateDate string `json:"createDate"` // 下单时间 + ExpressFee string `json:"expressFee"` // 快递费元 (元) + FeeStatus int `json:"feeStatus"` // 费用状态0下单费用冻结中 ,非0下单费用已扣 + Goods string `json:"goods"` // 物品 + GuaranteeValueAmount float64 `json:"guaranteeValueAmount"` // 保价金额 + InsuranceFee float64 `json:"insuranceFee"` // 保价费元 + IsForward bool `json:"isForward"` // 是否转寄单0否1是(转寄单额外收取50%运费) + IsLimit bool `json:"isLimit"` // 是否超限0否1是 + OriginalFee int `json:"originalFee"` // 官方原价 + OtherFee int `json:"otherFee"` // 其他费用 + OverWeightStatus int `json:"overWeightStatus"` // 超重状态 + PackageNum int `json:"packageNum"` // 包裹数 + ReceiveAddress string `json:"receiveAddress"` // 收件人地址 + ReceiveCity string `json:"receiveCity"` // 收件人地址城市 + ReceiveName string `json:"receiveName"` // 收件人名称 + ReceivePhone string `json:"receivePhone"` // 收件人电话 + SenderAddress string `json:"senderAddress"` // 寄件人地址 + SenderCity string `json:"senderCity"` // 寄件人地址城市 + SenderName string `json:"senderName"` // 寄件人姓名 + SenderPhone string `json:"senderPhone"` // 寄件人电话 + Soliciter string `json:"soliciter"` // 揽件员 + Status int `json:"status"` // 状态0预下单1待取件2运输中5已签收6取消订单7终止揽收 + StatusName string `json:"statusName"` // 状态名称 + TotalFee string `json:"totalFee"` // 总费用元 + PayFee float64 `json:"payFee"` // 实际支付费用元 + TraceList []*TraceListDetail `json:"traceList"` // 快递详情列表 + TrackingNum string `json:"trackingNum"` // 运单号 + Type int `json:"type"` // 快递公司 0:京东 1:德邦 + Volume int `json:"volume"` // 体积cm3 + VolumeRemark string `json:"volumeRemark"` // 体积重量计算说明 + VolumeWeight float64 `json:"volumeWeight"` // 体积重量Kg + Weight int `json:"weight"` // 下单重量Kg + WeightActual float64 `json:"weightActual"` // 实际重量Kg + WeightBill int `json:"weightBill"` // 计费重量Kg + WeightStatus string `json:"weightStatus"` // 超重状态 + Yuanjia float64 `json:"yuanJia"` // 快递费 } type TraceListDetail struct { - ID int - CreateDate string - UpdateDate interface{} - Version int - Courier string // 快递员 - CourierTel string // 快递员电话 - OpeName interface{} // 操作人 - OpeRemark string // 操作详情 - OpeTime string // 操作时间 - OpeTimeAll string // - OpeTitle string // - WaybillCode string // 运单号 + ID int `json:"id"` + CreateDate string `json:"createDate"` + UpdateDate interface{} `json:"updateDate"` + Version int `json:"version"` + Courier string `json:"courier"` // 快递员 + CourierTel string `json:"courierTel"` // 快递员电话 + OpeName interface{} `json:"opeName"` // 操作人 + OpeRemark string `json:"opeRemark"` // 操作详情 + OpeTime string `json:"opeTime"` // 操作时间 + OpeTimeAll string `json:"opeTimeAll"` // + OpeTitle string `json:"opeTitle"` // + WaybillCode string `json:"waybillCode"` // 运单号 } //#endregion