1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package schl
import (
"context"
"github.com/gogf/gf/encoding/gjson"
"github.com/gogf/gf/util/gconv"
)
type logisticsLogic struct {
}
var Logistics = logisticsLogic{}
type LogisticsTraceReq struct {
UnionNo string `json:"unionNo"`
ExpNo string `json:"expNo"`
}
type LogisticsTraceRes struct {
CommonRes
Result struct {
Courier string `json:"courier"`
CourierPhone string `json:"courierPhone"`
DeliveryStatus int `json:"deliverystatus"`
ExpName string `json:"expName"`
ExpPhone string `json:"expPhone"`
List []struct {
Time string `json:"time"`
Status string `json:"status"`
} `json:"list"`
Number string `json:"number"`
Type string `json:"type"`
} `json:"result"`
TraceId string `json:"traceId"`
}
func (s *Config) LogisticsTrace(ctx context.Context, req LogisticsTraceReq) (res *LogisticsTraceRes, err error) {
result, err := s.Post(ctx, "/open/xdxt/api/v2/order/queryExpTrack", gconv.Map(req))
if err != nil {
return
}
err = gjson.New(result).Scan(&res)
return
}