商品查询
This commit is contained in:
@@ -434,19 +434,21 @@ func (a *API) ImageUpdate(wareId int64, imgIndex int, imgUrl string) (err error)
|
|||||||
}
|
}
|
||||||
|
|
||||||
type SearchWare4ValidResult struct {
|
type SearchWare4ValidResult struct {
|
||||||
PageSize int `json:"pageSize"`
|
PageSize int `json:"pageSize"`
|
||||||
Data []struct {
|
Data []*SearchWare4ValidResultData `json:"data"`
|
||||||
WareID int64 `json:"wareId"`
|
PageNo int `json:"pageNo"`
|
||||||
WareStatus int `json:"wareStatus"`
|
TotalItem int `json:"totalItem"`
|
||||||
CategoryID int `json:"categoryId"`
|
}
|
||||||
OnlineTime int64 `json:"onlineTime"`
|
|
||||||
OuterID string `json:"outerId"`
|
type SearchWare4ValidResultData struct {
|
||||||
Title string `json:"title"`
|
WareID int64 `json:"wareId"`
|
||||||
ItemNum string `json:"itemNum"`
|
WareStatus int `json:"wareStatus"`
|
||||||
ColType int `json:"colType"`
|
CategoryID int `json:"categoryId"`
|
||||||
} `json:"data"`
|
OnlineTime int64 `json:"onlineTime"`
|
||||||
PageNo int `json:"pageNo"`
|
OuterID string `json:"outerId"`
|
||||||
TotalItem int `json:"totalItem"`
|
Title string `json:"title"`
|
||||||
|
ItemNum string `json:"itemNum"`
|
||||||
|
ColType int `json:"colType"`
|
||||||
}
|
}
|
||||||
|
|
||||||
//搜索有效商品
|
//搜索有效商品
|
||||||
|
|||||||
Reference in New Issue
Block a user