智慧保安后台管理项目备份
zhongrj
2024-05-24 b5960d1968e007b91d4d33dd7cbb74f1b566f2c1
src/main/java/org/springblade/modules/information/controller/InformationController.java
@@ -1362,4 +1362,20 @@
      }
      return R.data(lists);
   }
   @PostMapping("/selectBxc")
   public R<IPage> selectBxc(String jurisdiction,String type,Query query) {
      IPage maps = informationService.selectBxc(Condition.getPage(query), jurisdiction,type);
      return R.data(maps);
   }
   /**
    * 获取部门信息()
    * @param information
    * @return
    */
   @GetMapping("/getInformationDetails")
   public R getInformationDetails(InformationVO information) {
      return R.data(informationService.getInformationDetails(information));
   }
}