Browse Source

添加分页

chenyongxing 6 years ago
parent
commit
a22d988988

+ 5 - 2
src/main/java/com/yihu/hos/standard/controller/StdCenterEndPoint.java

@ -146,7 +146,10 @@ public class StdCenterEndPoint extends BaseController {
    public List getLastDictItem(@ApiParam(name = "code", value = "字典code", defaultValue = "")
                              @RequestParam(value = "code") String code,
                                @ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
                                @RequestParam(value = "filters", required = false) String filters) throws IOException {
                                @RequestParam(value = "filters", required = false) String filters,
                                @RequestParam(value = "sorts", required = false) String sorts,
                                @RequestParam(value = "size", required = true) int size,
                                @RequestParam(value = "page", required = true) int page) throws IOException {
        List result = new ArrayList();
        String ver = standardService.getLastStandByOrgCode(defaultOrgCode);
        if(StringUtils.isNotBlank(ver)){
@ -156,7 +159,7 @@ public class StdCenterEndPoint extends BaseController {
                if(StringUtils.isBlank(filters)){
                    result = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,ver, "dictId="+id, null, null, null,true);
                }else{
                    result = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,ver, "dictId="+id+";"+filters, null, null, null,true);
                    result = stdDictEntryService.searchPage(StdDictionaryEntryModel.class, StandardVersion.DictEntryTable,ver, "dictId="+id+";"+filters, sorts, page, size,true);
                }
            }
        }