Files
baseapi/platformapi/tao_vegetable/store_model.go
richboo111 f5b24c834b 1
2023-06-15 09:52:22 +08:00

18 lines
649 B
Go

package tao_vegetable
const (
BaseUrl = "https://eco.taobao.com/router/rest/" //正式环境
)
/*商品分类*/
type CategoryInfo struct {
Code string `json:"code"` // 类目编码
Name string `json:"name"` // 类目名称
Leaf string `json:"leaf"` // 是否叶子结点
SortOrder string `json:"sortOrder"` // 排序值
Desc string `json:"desc"` // 详细描述
ChildCategorys string `json:"childCategorys"` // 子节点信息
ForestId string `json:"forestId"` // 类目id
ParentForestId string `json:"parentForestId"` // 父节点id
}