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 | * AIController AI控制器类,处理与智能搜索/推荐相关的请求 | ||||
10 | * | ||||
11 | * @author Seamher | ||||
12 | */ | ||||
13 | @RestController | ||||
14 | @RequestMapping("/ai") | ||||
15 | public class AIController { | ||||
16 | |||||
17 | private final Logger logger = LoggerFactory.getLogger(AIController.class); | ||||
18 | } |