|
|
@ -49,6 +49,16 @@ func (b *brand) All(ctx context.Context) (result []BrandItem, err error) {
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// All2 @Title 品牌名称筛选品牌
|
|
|
|
|
|
|
|
func (b *brand) All2(ctx context.Context, name string) (result []BrandItem, err error) {
|
|
|
|
|
|
|
|
xClient, err := client.GetClient(b)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
err = xClient.Call(ctx, "All2", 0, &result)
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ArgsBrandAdd struct {
|
|
|
|
type ArgsBrandAdd struct {
|
|
|
|
Name string // 品牌名称
|
|
|
|
Name string // 品牌名称
|
|
|
|
}
|
|
|
|
}
|
|
|
|