支付 测试

This commit is contained in:
2025-02-04 15:29:22 +08:00
parent 9fb8bc989d
commit 78046e8707
3 changed files with 17 additions and 17 deletions

View File

@@ -64,8 +64,8 @@ public class AffiliateController {
/*@ApiOperation(value = "每月发送结算邮件")
@GetMapping("/commissionCalculation")
public Response<String> commissionCalculation() {
affiliateService.commissionCalculation(null, null);
public Response<String> commissionCalculation(@RequestParam("year") Integer year, @RequestParam("month") Integer month) {
affiliateService.commissionCalculation(year, month);
return Response.success("success ");
}*/