|
|
@@ -112,5 +112,16 @@ public class PatrolInspectionPlanController {
|
|
|
return ApiResult.success(patrolInspectionPlanService.patrolInspectionSiteVoList(planId, areaId));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 巡查自检-巡检子计划-手动生成
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping("addPlanSon")
|
|
|
+ public ApiResult<Void> addPlanSon() {
|
|
|
+ patrolInspectionPlanService.addPatrolInspectionPlanSon();
|
|
|
+ return ApiResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|