添加追加商品功能

This commit is contained in:
2025-02-06 11:52:57 +08:00
parent d11f17c532
commit b1a318ff13
5 changed files with 110 additions and 0 deletions

View File

@@ -34,3 +34,14 @@ func (a *audit) Cancel(ctx context.Context, args ArgsAuditSubmit) (err error) {
err = xClient.Call(ctx, "Cancel", args, &reply)
return
}
// Append @TITLE 追加商品审核
func (a *audit) Append(ctx context.Context, args ArgsAuditSubmit) (err error) {
xClient, err := client.GetClient(a)
if err != nil {
return
}
reply := 0
err = xClient.Call(ctx, "Append", args, &reply)
return
}