Commit ad3f9cd41788a8c9f9413da63e08b4233d3b7603
1 parent
da637423
巡查计划-初始值提交
Showing
1 changed file
with
1 additions
and
1 deletions
urbanops-module-garden/src/main/java/com/zteits/urbanops/module/garden/controller/admin/inspectionplan/InspectionPlanController.java
| ... | ... | @@ -41,7 +41,7 @@ public class InspectionPlanController { |
| 41 | 41 | @Operation(summary = "创建巡检计划汇总") |
| 42 | 42 | @PreAuthorize("@ss.hasPermission('garden:inspection-plan:create')") |
| 43 | 43 | public CommonResult<Long> createInspectionPlan(@Valid @RequestBody InspectionPlanSaveReqVO createReqVO) { |
| 44 | - return success(inspectionPlanService.createInspectionPlan(createReqVO)); | |
| 44 | + return inspectionPlanService.createInspectionPlan(createReqVO); | |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | @PutMapping("/update") | ... | ... |