fix 修复售后bug2

This commit is contained in:
pepis
2021-09-23 21:10:00 +08:00
parent 32f196a78f
commit a5cb8081d2

View File

@ -126,7 +126,7 @@ public class StoreAfterSalesController {
if (StrUtil.isEmpty(key)) {
throw new YshopException("参数错误");
}
Boolean revoke = storeAfterSalesService.revoke(key, id, uid);
Boolean revoke = storeAfterSalesService.revoke(key, uid, id);
return ApiResult.ok(revoke);
}