文档库--代替标准手动查找
This commit is contained in:
+4
-4
@@ -110,11 +110,11 @@ public class BussDocumentLibraryEOController extends JeroController<BussDocument
|
|||||||
@ApiOperation(value="代替标准分页列表查询", notes="代替标准分页列表查询")
|
@ApiOperation(value="代替标准分页列表查询", notes="代替标准分页列表查询")
|
||||||
@PostMapping(value = "/replacePageInfo")
|
@PostMapping(value = "/replacePageInfo")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public JSONObject replacePageInfo(@RequestBody Map<String,Object> parameter) {
|
public Result<?> replacePageInfo(@RequestBody Map<String,Object> parameter) {
|
||||||
IPage infoPage = bussDocumentLibraryEOService.replacePageInfo(parameter);
|
IPage infoPage = bussDocumentLibraryEOService.replacePageInfo(parameter);
|
||||||
Result<IPage> ok = Result.OK(infoPage);
|
// Result<IPage> ok = Result.OK(infoPage);
|
||||||
JSONObject jsonResult = JSONObject.fromObject(ok);
|
// JSONObject jsonResult = JSONObject.fromObject(ok);
|
||||||
return jsonResult;
|
return Result.OK(infoPage);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user