deason 1 год назад
Родитель
Сommit
251b316429

+ 1 - 1
examcloud-core-basic-api-provider/src/main/java/cn/com/qmth/examcloud/core/basic/api/controller/OrgController.java

@@ -463,7 +463,7 @@ public class OrgController extends ControllerSupport {
         List<OrgEntity> list = orgRepo.findByParentId(rootOrgId);
         List<Object[]> lines = new ArrayList<>();
         for (OrgEntity info : list) {
-            lines.add(new Object[]{info.getCode(), info.getName(), info.getContacts(), info.getTelephone()});
+            lines.add(new Object[]{info.getName(), info.getCode(), info.getContacts(), info.getTelephone()});
         }
 
         String filePath = systemConfig.getTempDataDir() + File.separator + System.currentTimeMillis() + ".xlsx";