|
@@ -172,4 +172,9 @@ public class OrgController {
|
|
|
return orgService.getCompanyByUser(condition,companyIds);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping(value = "list/all/company", method = RequestMethod.POST)
|
|
|
+ public AjaxMessage<List<OrgBaseTreeInfoDto>> listAllCompany() {
|
|
|
+ return new AjaxMessage<>(ResultStatus.OK, orgService.getCompanyByUser(null,null));
|
|
|
+ }
|
|
|
+
|
|
|
}
|