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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package itao
import (
"context"
"github.com/gogf/gf/encoding/gjson"
"github.com/gogf/gf/frame/g"
)
type goodsItao struct {
}
var Goods = goodsItao{}
type GoodsDetailRes struct {
Result struct {
DebugInfoMap struct {
TraceId string `json:"traceId"`
} `json:"debugInfoMap"`
EnterNewLink string `json:"enterNewLink"`
Item struct {
CategoryId []string `json:"categoryId"`
CategoryName []string `json:"categoryName"`
City string `json:"city"`
FastPostFee int `json:"fastPostFee"`
Images []string `json:"images"`
ItemId string `json:"itemId"`
ItemServices []struct {
ActionTitle string `json:"actionTitle,omitempty"`
ActionUrl string `json:"actionUrl,omitempty"`
Desc string `json:"desc"`
Title string `json:"title"`
} `json:"itemServices"`
MainPic string `json:"mainPic"`
OrdinaryPostFee int `json:"ordinaryPostFee"`
Props []struct {
Content string `json:"content"`
Word string `json:"word"`
} `json:"props"`
Prov string `json:"prov"`
Receipt bool `json:"receipt"`
SoldQuantity int `json:"soldQuantity"`
Status int `json:"status"`
Title string `json:"title"`
} `json:"item"`
Seller struct {
ShopName string `json:"shopName"`
} `json:"seller"`
SkuBase struct {
Props []struct {
Name string `json:"name"`
Pid string `json:"pid"`
Values []struct {
Image string `json:"image"`
Name string `json:"name"`
Vid string `json:"vid"`
} `json:"values"`
} `json:"props"`
Skus []struct {
PropPath string `json:"propPath"`
SkuId string `json:"skuId"`
} `json:"skus"`
} `json:"skuBase"`
SkuCore struct {
DefaultSkuId int64 `json:"defaultSkuId"`
Sku2Info map[string]GoodsItem `json:"sku2info"`
} `json:"skuCore"`
} `json:"result"`
}
type GoodsItem struct {
QuantityVague string `json:"quantityVague"`
OriginalPrice string `json:"originalPrice"`
FinalPrice string `json:"finalPrice"`
TjbMarketPrice string `json:"tjbMarketPrice"`
PriceMoney string `json:"priceMoney"`
}
//Detail 详情[实时]
func (goodsItao) Detail(ctx context.Context, GoodsID string) (res *GoodsDetailRes, err error) {
method := "com.alibaba.c2m/ltao.detail.jnpiter.getDetail"
result, err := server.Post(ctx, method, g.Map{
"parameters": g.Map{
"itemId": GoodsID,
},
})
_ = gjson.New(result).Scan(&res)
return
}
type GoodsDynamicRes struct {
Result struct {
Data []struct {
DebugInfoMap struct {
TraceId string `json:"traceId"`
} `json:"debugInfoMap"`
EnterNewLink string `json:"enterNewLink"`
Sku2Info map[string]GoodsItem `json:"sku2info"`
} `json:"data"`
ItemIds string `json:"itemIds"`
Time int `json:"time"`
} `json:"result"`
}
//Dynamic 详情[动态]
func (goodsItao) Dynamic(ctx context.Context, GoodsID string) (res *GoodsDynamicRes, err error) {
method := "com.alibaba.c2m/ltao.detail.csp.getDetailDynamic"
result, err := server.Post(ctx, method, g.Map{
"parameters": g.Map{
"itemIds": GoodsID,
},
})
_ = gjson.New(result).Scan(&res)
return
}
type GoodBatchRes struct {
Result struct {
Data []struct {
DebugInfoMap struct {
TraceId string `json:"traceId"`
} `json:"debugInfoMap"`
EnterNewLink string `json:"enterNewLink"`
Item struct {
CategoryId []string `json:"categoryId"`
CategoryName []string `json:"categoryName"`
City string `json:"city"`
FastPostFee int `json:"fastPostFee"`
Images []string `json:"images"`
ItemId string `json:"itemId"`
ItemServices []struct {
ActionTitle string `json:"actionTitle,omitempty"`
ActionUrl string `json:"actionUrl,omitempty"`
Desc string `json:"desc"`
Title string `json:"title"`
} `json:"itemServices"`
MainPic string `json:"mainPic"`
OrdinaryPostFee int `json:"ordinaryPostFee"`
Props []struct {
Content string `json:"content"`
Word string `json:"word"`
} `json:"props"`
Prov string `json:"prov"`
Receipt bool `json:"receipt"`
SoldQuantity int `json:"soldQuantity"`
Status int `json:"status"`
Title string `json:"title"`
} `json:"item"`
Seller struct {
ShopName string `json:"shopName"`
} `json:"seller"`
Sku2Info map[string]GoodsItem `json:"sku2info"`
SkuBase struct {
Props []struct {
Name string `json:"name"`
Pid string `json:"pid"`
Values []struct {
Image string `json:"image"`
Name string `json:"name"`
Vid string `json:"vid"`
} `json:"values"`
} `json:"props"`
Skus []struct {
PropPath string `json:"propPath"`
SkuId string `json:"skuId"`
} `json:"skus"`
} `json:"skuBase"`
} `json:"data"`
ItemIds string `json:"itemIds"`
Time int `json:"time"`
} `json:"result"`
}
//Batch 详情[批量]
func (goodsItao) Batch(ctx context.Context, GoodsID string) (res *GoodBatchRes, err error) {
method := "com.alibaba.c2m/ltao.detail.csp.getDetail"
result, err := server.Post(ctx, method, g.Map{
"parameters": g.Map{
"itemIds": GoodsID,
},
})
_ = gjson.New(result).Scan(&res)
return
}