|
|
|
@ -117,3 +117,14 @@ func (a *afsAudit) GetAfsAuditConfig(ctx context.Context) (reply ReplyAfsAuditCo
|
|
|
|
|
err = xClient.Call(ctx, "GetAfsAuditConfig", args, &reply)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Info @Title 审核详情
|
|
|
|
|
func (a *afsAudit) Info(ctx context.Context, afsAuditId uint) (reply ReplyAfsDetail, err error) {
|
|
|
|
|
xClient, err := client.GetClient(a)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
args := 0
|
|
|
|
|
err = xClient.Call(ctx, "Info", args, &reply)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|