lin
2024-04-12 a9f3c37b85dddd7e6f1342813060e17309bc93cb
src/main/java/org/springblade/modules/patrol/controller/PatrolGroupController.java
@@ -130,8 +130,8 @@
    */
   @ApiOperation(value = "查询巡查项树数据", notes = "查询巡查项树数据")
   @GetMapping(value = "/getPatrolGroupTree")
   public R getPatrolGroupTree() {
      return R.data(patrolGroupService.getPatrolGroupTree());
   public R getPatrolGroupTree(@RequestParam(value = "type",required = false)String type,@RequestParam(value = "childType",required = false)String childType) {
      return R.data(patrolGroupService.getPatrolGroupTree(type,childType));
   }
   /**