提交 | 用户 | age | ||
566411 | 1 | package com.hx.other.service.controller; |
G | 2 | |
3 | import com.hx.resultTool.Result; | |
4 | import org.springframework.web.bind.annotation.RequestMapping; | |
5 | import org.springframework.web.bind.annotation.RestController; | |
6 | ||
7 | /** | |
8 | * @Author: cmg | |
9 | * @Date: 2023/5/5 11:43 | |
10 | */ | |
11 | @RestController | |
12 | @RequestMapping("/ai/test") | |
13 | public class TestController { | |
14 | ||
15 | @RequestMapping("test") | |
16 | public Result test() | |
17 | { | |
18 | return Result.success("test"); | |
19 | } | |
20 | ||
21 | } |