TASK:十月优惠邮件发送接口;

This commit is contained in:
shahaibo
2024-10-03 12:14:30 +08:00
parent 28e67db78d
commit 8445c23984
3 changed files with 58 additions and 0 deletions

View File

@@ -254,5 +254,12 @@ public class AccountController {
return Response.success("success");
}
@PostMapping("halfPricePromotion")
@ApiOperation(value = "十月半价活动")
public Response<Boolean> halfPricePromotion() {
accountService.halfPricePromotion();
return Response.success(true);
}
}