zhanghua
2025-04-14 1cad14bca191807e18705c3a5526eda8151be439
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ycl.controller.intelligentPatrol;
 
import com.ycl.controller.BaseController;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * AnalysisController
 * 
 * @author: AI
 * @date:  2022-11-01 16:43
 * @version V1.0
**/
@RestController
@RequestMapping("/intelligentPatrol")
@Api(tags = "智能巡查")
public class AnalysisController extends BaseController {
}