xiukira | 687b9cb | 2025-05-29 15:15:02 +0800 | [diff] [blame] | 1 | package com.g9.g9backend.controller; |
| 2 | |
| 3 | import org.slf4j.Logger; |
| 4 | import org.slf4j.LoggerFactory; |
| 5 | import org.springframework.web.bind.annotation.RequestMapping; |
| 6 | import org.springframework.web.bind.annotation.RestController; |
| 7 | |
| 8 | /** |
| 9 | * NotificationController 通知控制器类,处理与通知相关的请求 |
| 10 | * |
| 11 | * @author Seamher |
| 12 | */ |
| 13 | @RestController |
| 14 | @RequestMapping("/notification") |
| 15 | public class NotificationController { |
| 16 | |
| 17 | private final Logger logger = LoggerFactory.getLogger(NotificationController.class); |
| 18 | } |