| package com.matrix.system.app.action; | 
|   | 
| import com.matrix.core.pojo.AjaxResult; | 
| import io.swagger.annotations.Api; | 
| import io.swagger.annotations.ApiOperation; | 
| import org.springframework.web.bind.annotation.GetMapping; | 
| import org.springframework.web.bind.annotation.RequestMapping; | 
| import org.springframework.web.bind.annotation.RestController; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2020-12-21 | 
|  **/ | 
| @Api(value = "TestAction", tags = "测试类") | 
| @RestController | 
| @RequestMapping(value = "/api/test") | 
| public class TestAction { | 
|   | 
|     @ApiOperation(value = "测试请求", notes = "测试请求") | 
|     @GetMapping(value = "/testQuery") | 
|     public AjaxResult testQuery() { | 
|         return null; | 
|     } | 
| } |