|
|
|
@ -145,11 +145,12 @@ func (g *goods) Adopt(ctx context.Context, goodsIds []uint) (reply []AdoptItem,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Discard @Title 批量废弃
|
|
|
|
|
func (g *goods) Discard(ctx context.Context, goodsIds []uint) (reply []AdoptItem, err error) {
|
|
|
|
|
func (g *goods) Discard(ctx context.Context, goodsIds []uint) (err error) {
|
|
|
|
|
xClient, err := client.GetClient(g)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
reply := 0
|
|
|
|
|
err = xClient.Call(ctx, "Discard", goodsIds, &reply)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|