Forráskód Böngészése

增加乐团巡查相关基类

周箭河 4 éve
szülő
commit
60a9c38c4d

+ 7 - 0
mec-web/src/main/java/com/ym/mec/web/controller/InspectionController.java

@@ -34,6 +34,13 @@ public class InspectionController extends BaseController {
     @Resource
     private SysUserFeignService sysUserFeignService;
 
+    @ApiOperation(value = "添加巡查任务")
+    @GetMapping("/add")
+    @PreAuthorize("@pcs.hasPermissions('inspection/add')")
+    public HttpResponseResult<List<Inspection>> add(List<Inspection> inspections){
+
+    }
+
     @ApiOperation(value = "巡查任务列表")
     @GetMapping("/queryPage")
     @PreAuthorize("@pcs.hasPermissions('inspection/queryPage')")