Administrator
2021-08-10 c8ebf3038d2a7f69d9eb40f5a276dc3fa826fa9b
src/main/java/org/springblade/modules/system/service/impl/DeptServiceImpl.java
@@ -228,10 +228,11 @@
   /**
    * 懒加载获取部门树形结构(包含用户数据)app
    * @param type 1:保安对保安  2:保安向民警   3:民警向民警
    * @param jurisdiction 辖区id
    * @return
    */
   @Override
   public List<DeptVO> lazyTreeUserApp(Integer type) {
      return ForestNodeMerger.merge(baseMapper.lazyTreeUserApp(type));
   public List<DeptVO> lazyTreeUserApp(Integer type,String jurisdiction) {
      return ForestNodeMerger.merge(baseMapper.lazyTreeUserApp(type,jurisdiction));
   }
}