This commit is contained in:
laodaming
2023-07-14 12:25:02 +08:00
parent 52f65afe1a
commit 6d3a3b2dda
4 changed files with 82 additions and 66 deletions

View File

@@ -269,13 +269,15 @@ type GetTagProductListRsp {
TagList []TagItem `json:"tag_list"`
}
type TagItem {
TypeName string `json:"typeName"`
TypeName string `json:"type_name"`
TypeId int64 `json:"type_id"`
Description string `json:"description"`
Level int64 `json:"level"`
BelongPrefix string `json:"belong_prefix"`
LevelPrefix string `json:"level_prefix"`
Icon string `json:"icon"`
Sort int64 `json:"sort"`
TagProductList []TagProduct `json:"tag_product_list"`
ChildTagList []TagItem `json:"child_tag_list"`
ChildTagList []*TagItem `json:"child_tag_list"`
}
type TagProduct {
ProductId int64 `json:"product_id"`