zhanghua
2023-02-21 929aa85a1f0299b4776f90a69d9e24b7697edb2b
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 {
}