新增获取收藏列表接口
This commit is contained in:
@@ -35,13 +35,21 @@ type DeleteCollectProductReq {
|
||||
type GetCollectProductListReq {
|
||||
CurrentPage int `form:"current_page"`
|
||||
}
|
||||
type GetCollectProductListRsp {
|
||||
Meta Meta `json:"meta"` //分页信息
|
||||
List []GetCollectProductListRspItem `json:"list"`
|
||||
}
|
||||
type GetCollectProductListRspItem {
|
||||
Id int64 `json:"id"`
|
||||
ProductId int64 `json:"product_id"`
|
||||
ProductName string `json:"product_name"`
|
||||
Logo string `json:"logo"`
|
||||
SelectColorIndex int64 `json:"select_color_index"`
|
||||
TemplateTag string `json:"template_tag"`
|
||||
SizeCount int64 `json:"size_count"`
|
||||
MinPrice string `json:"min_price"`
|
||||
Id int64 `json:"id"`
|
||||
ProductId int64 `json:"product_id"`
|
||||
ProductName string `json:"product_name"`
|
||||
Logo string `json:"logo"`
|
||||
Cover string `json:"cover"`
|
||||
CoverMetadata interface{} `json:"coverMetadata"`
|
||||
SelectColorIndex int64 `json:"select_color_index"`
|
||||
TemplateTag string `json:"template_tag"`
|
||||
SizeCount int64 `json:"size_count"`
|
||||
MinPrice string `json:"min_price"`
|
||||
IsShelf int64 `json:"is_shelf"`
|
||||
IsDeleted int64 `json:"is_deleted"`
|
||||
}
|
||||
@@ -22,7 +22,7 @@ service websocket {
|
||||
|
||||
//渲染完了通知接口
|
||||
type RenderNotifyReq {
|
||||
TaskId string `json:"task_id"` //任务id + " " + wid的结合字符串
|
||||
TaskId string `json:"task_id"`
|
||||
UserId int64 `json:"user_id"`
|
||||
GuestId int64 `json:"guest_id"`
|
||||
Image string `json:"image"`
|
||||
|
||||
Reference in New Issue
Block a user