|
@@ -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";
|