|
|
@ -26,6 +26,16 @@ func (c *category) All(ctx context.Context) (result []CategoryItem, err error) {
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// AllNoHidden @Title 获取显示的分类
|
|
|
|
|
|
|
|
func (c *category) AllNoHidden(ctx context.Context) (result []CategoryItem, err error) {
|
|
|
|
|
|
|
|
xClient, err := client.GetClient(c)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
err = xClient.Call(ctx, "AllNoHidden", 0, &result)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ArgsCategoryAdd struct {
|
|
|
|
type ArgsCategoryAdd struct {
|
|
|
|
Name string // 分类名称
|
|
|
|
Name string // 分类名称
|
|
|
|
ParentId uint // 上级id
|
|
|
|
ParentId uint // 上级id
|
|
|
|