소스 검색

文件结构调整

hill9868 6 년 전
부모
커밋
16fcc5466a

+ 4 - 4
src/main/java/com/yihu/ehr/basic/org/controller/OrgEndPoint.java

@ -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 Collection<MOrganization> getAllOrgs() throws Exception {
    public List<MOrganization> getAllOrgs() throws Exception {
        List<Organization> orgs = orgService.search(null);
        return convertToModels(orgs, new ArrayList<MOrganization>(orgs.size()), MOrganization.class, "");
        return (List)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 Collection<MOrganization> getAllOrgsNoPaging() throws Exception {
    public List<MOrganization> getAllOrgsNoPaging() throws Exception {
        List<Organization> orgs = orgService.search(null);
        return  convertToModels(orgs, new ArrayList<MOrganization>(orgs.size()), MOrganization.class, "");
        return  (List)convertToModels(orgs, new ArrayList<MOrganization>(orgs.size()), MOrganization.class, "");
    }
    @RequestMapping(value = "/organizations/batch", method = RequestMethod.POST)

+ 2 - 3
src/main/java/com/yihu/ehr/basic/user/controller/RoleReportRelationEndPoint.java

@ -77,14 +77,13 @@ public class RoleReportRelationEndPoint extends EnvelopRestEndPoint {
        return convertToModels(roleFeatureRelations, new ArrayList<MRoleReportRelation>(roleFeatureRelations.size()), MRoleReportRelation.class, fields);
    }
    //TODO 验证接口使用是否能正常进行
    @RequestMapping(value = ServiceApi.Roles.SearchRoleReportRelationNoPage, method = RequestMethod.GET)
    @ApiOperation(value = "查询角色与资源报表的授权关系列表(未分页)")
    public Collection<MRoleReportRelation> searchRoleReportRelationNoPage(
    public List<MRoleReportRelation> searchRoleReportRelationNoPage(
            @ApiParam(name = "filters", value = "过滤器,为空检索所有信息", defaultValue = "")
            @RequestParam(value = "filters", required = false) String filters) throws Exception {
        List<RoleReportRelation> list = roleReportRelationService.search(filters);
        return convertToModels(list, new ArrayList<MRoleReportRelation>(list.size()), MRoleReportRelation.class, "");
        return (List)convertToModels(list, new ArrayList<MRoleReportRelation>(list.size()), MRoleReportRelation.class, "");
    }