智慧保安后台管理-外网
Administrator
2021-09-27 345d17cf82e1bbc1fbfbeec10193c2bed59cd674
src/main/java/org/springblade/modules/dispatcher/service/impl/DispatcherUnitServiceImpl.java
@@ -103,10 +103,10 @@
         if (dispatcherUnitExcel.getName()!=null && dispatcherUnitExcel.getName()!=""){
            //仅中文
            String chinese = "^[\\u4E00-\\u9FA5\\uF900-\\uFA2D]+$";
            Pattern compile = Pattern.compile(chinese);
            String name = compile.matcher(dispatcherUnitExcel.getName()).replaceAll("");
            dispatcherUnit.setName(name);
//            String chinese = "^[\\u4E00-\\u9FA5\\uF900-\\uFA2D]+$";
//            Pattern compile = Pattern.compile(chinese);
//            String name = compile.matcher(dispatcherUnitExcel.getName()).replaceAll("");
            dispatcherUnit.setName(dispatcherUnitExcel.getName());
         }
         if (dispatcherUnitExcel.getLinkman()!=null && dispatcherUnitExcel.getLinkman()!=""){