Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录
切换导航
L
library
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
stbz
library
Commits
6e661735
提交
6e661735
authored
11月 02, 2022
作者:
zhanglibo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
天猫物流
上级
93683086
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
49 行增加
和
0 行删除
+49
-0
tm_logistics.go
upstream/tm/tm_logistics.go
+49
-0
没有找到文件。
upstream/tm/tm_
deliver
.go
→
upstream/tm/tm_
logistics
.go
浏览文件 @
6e661735
...
@@ -2,37 +2,37 @@ package tm
...
@@ -2,37 +2,37 @@ package tm
import
(
import
(
"context"
"context"
"
encoding/
json"
"
github.com/gogf/gf/encoding/g
json"
)
)
type
deliver
Tm
struct
{
type
logistics
Tm
struct
{
}
}
var
Deliver
=
deliver
Tm
{}
var
Logistics
=
logistics
Tm
{}
type
DeliverInfo
Res
struct
{
type
LogisticsTrace
Res
struct
{
Code
string
`json:"Code"`
Code
string
`json:"Code"`
Message
string
`json:"Message"`
Message
string
`json:"Message"`
RequestId
string
`json:"RequestId"`
RequestId
string
`json:"RequestId"`
Data
struct
{
Data
struct
{
Data
[]
struct
{
Data
[]
struct
{
DataProvider
string
`json:"DataProvider"`
DataProvider
string
`json:"DataProvider"`
LogisticsCompanyName
string
`json:"LogisticsCompanyName"`
//物流公司名称
MailNo
string
`json:"MailNo"`
//运单号
LogisticsCompanyCode
string
`json:"LogisticsCompanyCode"`
//物流公司Code
LogisticsDetailList
struct
{
LogisticsDetailList
struct
{
LogisticsDetailList
[]
struct
{
LogisticsDetailList
[]
struct
{
StanderdDesc
string
`json:"StanderdDesc"`
//物流信息
StanderdDesc
string
`json:"StanderdDesc"`
OcurrTimeStr
string
`json:"OcurrTimeStr"`
//发生时间
OcurrTimeStr
string
`json:"OcurrTimeStr"`
}
`json:"LogisticsDetailList"`
}
`json:"LogisticsDetailList"`
}
`json:"LogisticsDetailList"`
}
`json:"LogisticsDetailList"`
LogisticsCompanyName
string
`json:"LogisticsCompanyName"`
//本单物流公司名称
DataProviderTitle
string
`json:"DataProviderTitle"`
LogisticsCompanyCode
string
`json:"logisticsCompanyCode"`
//本单物流公司Code
MailNo
string
`json:"MailNo"`
//运单号
DataProviderTitle
string
`json:"DataProviderTitle"`
//数据来源说明,如:本数据由菜鸟裹裹提供
}
`json:"Data"`
}
`json:"Data"`
}
`json:"Data"`
}
`json:"Data"`
}
}
//
Info
物流查询接口
//
Trace
物流查询接口
func
(
s
*
deliverTm
)
Info
(
ctx
context
.
Context
,
UserId
,
LmOrderId
string
)
(
res
*
DeliverInfo
Res
,
err
error
)
{
func
(
s
*
logisticsTm
)
Trace
(
ctx
context
.
Context
,
UserId
,
LmOrderId
string
)
(
res
*
LogisticsTrace
Res
,
err
error
)
{
method
:=
"queryLogistics"
method
:=
"queryLogistics"
...
@@ -44,6 +44,6 @@ func (s *deliverTm) Info(ctx context.Context, UserId, LmOrderId string) (res *De
...
@@ -44,6 +44,6 @@ func (s *deliverTm) Info(ctx context.Context, UserId, LmOrderId string) (res *De
}
}
result
,
err
:=
post
(
ctx
,
method
,
request
)
result
,
err
:=
post
(
ctx
,
method
,
request
)
_
=
json
.
Unmarshal
([]
byte
(
result
),
&
res
)
err
=
gjson
.
New
(
result
)
.
Scan
(
&
res
)
return
return
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论