This commit is contained in:
zt
2025-07-02 15:24:56 +08:00
parent 49e74b91c5
commit 155e99a588
11 changed files with 63 additions and 51 deletions

View File

@ -34,7 +34,8 @@ public class AppDivideController {
@PostMapping("/activityRefundMoney")
@Operation(summary = "活动退款")
public CommonResult<Boolean> activityRefundMoney(@RequestBody ActivityRefundMoney refundMoney) {
return success(profitsharingService.activityRefundMoney(refundMoney));
profitsharingService.activityRefundMoney(refundMoney);
return success(true);
}
}