|
@ -63,9 +63,9 @@ public class OrgEndPoint extends EnvelopRestEndPoint {
|
|
|
|
|
|
@RequestMapping(value = "/organizations/getAllOrgs", method = RequestMethod.GET, consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "查询所有机构列表")
|
|
|
public List<MOrganization> getAllOrgs() throws Exception {
|
|
|
public Collection<MOrganization> getAllOrgs() throws Exception {
|
|
|
List<Organization> orgs = orgService.search(null);
|
|
|
return (List)convertToModels(orgs, new ArrayList<MOrganization>(orgs.size()), MOrganization.class, "");
|
|
|
return convertToModels(orgs, new ArrayList<MOrganization>(orgs.size()), MOrganization.class, "");
|
|
|
}
|
|
|
|
|
|
|
|
@ -455,9 +455,9 @@ public class OrgEndPoint extends EnvelopRestEndPoint {
|
|
|
|
|
|
@RequestMapping(value = "/organizations/getAllOrgsNoPaging", method = RequestMethod.GET, consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ApiOperation(value = "查询所有机构列表不分页")
|
|
|
public List<MOrganization> getAllOrgsNoPaging() throws Exception {
|
|
|
public Collection<MOrganization> getAllOrgsNoPaging() throws Exception {
|
|
|
List<Organization> orgs = orgService.search(null);
|
|
|
return (List)convertToModels(orgs, new ArrayList<MOrganization>(orgs.size()), MOrganization.class, "");
|
|
|
return convertToModels(orgs, new ArrayList<MOrganization>(orgs.size()), MOrganization.class, "");
|
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/organizations/batch", method = RequestMethod.POST)
|