zhanghua
2023-04-14 e8a0f05f99f33fa05085536541da6bc27e66a644
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 {
}