fix
This commit is contained in:
@@ -66,10 +66,14 @@ type CartItem {
|
||||
ItemPrice string `json:"item_price"` //单价
|
||||
TotalPrice string `json:"totalPrice"` //单价X数量=总价
|
||||
DiyInformation DiyInformation `json:"diy_information"` //diy信息
|
||||
StepNum []int64 `json:"step_num"` //阶梯数量
|
||||
StepNum []StepNumItem `json:"step_num"` //阶梯数量
|
||||
IsInvalid bool `json:"is_invalid"` //是否无效
|
||||
InvalidDescription string `json:"invalid_description"` //无效原因
|
||||
}
|
||||
type StepNumItem {
|
||||
PurchaseQuantity int64 `json:"purchase_quantity"` //数量
|
||||
IsSelected bool `json:"is_selected"` //是否选中
|
||||
}
|
||||
type SizeInfo {
|
||||
SizeId int64 `json:"size_id"` //尺寸id
|
||||
Capacity string `json:"capacity"` //尺寸名称
|
||||
@@ -88,4 +92,5 @@ type DiyInformation {
|
||||
Address string `json:"address"`
|
||||
Website string `json:"website"`
|
||||
Qrcode string `json:"qrcode"`
|
||||
Slogan string `json:"slogan"`
|
||||
}
|
||||
Reference in New Issue
Block a user