-
Notifications
You must be signed in to change notification settings - Fork 12
/
RecongnizeItemInfo.go
81 lines (34 loc) · 1.74 KB
/
RecongnizeItemInfo.go
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
package dt
// RecongnizeItemInfo
type RecongnizeItemInfo struct {
// 原产地
OriginPlace string `json:"origin_place,omitempty" xml:"origin_place,omitempty"`
// 扩展信息
ExtMap string `json:"ext_map,omitempty" xml:"ext_map,omitempty"`
// 优惠结束时间
PromotionEndTime string `json:"promotion_end_time,omitempty" xml:"promotion_end_time,omitempty"`
// 优惠开始时间
PromotionStartTime string `json:"promotion_start_time,omitempty" xml:"promotion_start_time,omitempty"`
// 规格描述
SpecDesc string `json:"spec_desc,omitempty" xml:"spec_desc,omitempty"`
// rt货号
RtItemNo string `json:"rt_item_no,omitempty" xml:"rt_item_no,omitempty"`
// 优惠描述
PromotionDesc string `json:"promotion_desc,omitempty" xml:"promotion_desc,omitempty"`
// 促销类型
PromotionType int64 `json:"promotion_type,omitempty" xml:"promotion_type,omitempty"`
// 是否促销中
InPromotion bool `json:"in_promotion,omitempty" xml:"in_promotion,omitempty"`
// 促销价
PromotionPrice int64 `json:"promotion_price,omitempty" xml:"promotion_price,omitempty"`
// 销售价
SalePrice int64 `json:"sale_price,omitempty" xml:"sale_price,omitempty"`
// 品牌
BrandName string `json:"brand_name,omitempty" xml:"brand_name,omitempty"`
// 品名
Title string `json:"title,omitempty" xml:"title,omitempty"`
// 条码
BarCode string `json:"bar_code,omitempty" xml:"bar_code,omitempty"`
// 流水号
SerialNo string `json:"serial_no,omitempty" xml:"serial_no,omitempty"`
}