fix(文档拆分): 78565
This commit is contained in:
+3
-1
@@ -72,7 +72,8 @@ public class DocumentSplitController {
|
|||||||
@AutoLog(value = "文档拆分-拆分已入库文本分页列表查询")
|
@AutoLog(value = "文档拆分-拆分已入库文本分页列表查询")
|
||||||
@ApiOperation(value="文档拆分-拆分已入库文本分页列表查询", notes="文档拆分-拆分已入库文本分页列表查询")
|
@ApiOperation(value="文档拆分-拆分已入库文本分页列表查询", notes="文档拆分-拆分已入库文本分页列表查询")
|
||||||
@GetMapping(value = "/querySplitFileInfoByPage")
|
@GetMapping(value = "/querySplitFileInfoByPage")
|
||||||
public Result<IPage<SplitFileInfo>> queryByPage(SplitFileInfo splitFileInfo,
|
@RequiresPermissions("split:sarFileSplitInfo:splitFile")
|
||||||
|
public Result<IPage<SplitFileInfo>> querySplitFileInfoByPage(SplitFileInfo splitFileInfo,
|
||||||
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
||||||
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize) {
|
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize) {
|
||||||
return Result.OK(documentSplitService.querySplitFileInfoByPage(splitFileInfo, pageNo, pageSize));
|
return Result.OK(documentSplitService.querySplitFileInfoByPage(splitFileInfo, pageNo, pageSize));
|
||||||
@@ -222,6 +223,7 @@ public class DocumentSplitController {
|
|||||||
@AutoLog(value = "文档拆分详情-根据id查询")
|
@AutoLog(value = "文档拆分详情-根据id查询")
|
||||||
@ApiOperation(value = "文档拆分详情-根据id查询")
|
@ApiOperation(value = "文档拆分详情-根据id查询")
|
||||||
@GetMapping("/queryDocumentSplitDetailById")
|
@GetMapping("/queryDocumentSplitDetailById")
|
||||||
|
@RequiresPermissions("split:sarFileSplitItems:update")
|
||||||
public Result<Map<String,Object>> queryDocumentSplitDetailById(String id) {
|
public Result<Map<String,Object>> queryDocumentSplitDetailById(String id) {
|
||||||
return Result.OK(documentSplitService.queryDocumentSplitDetailById(id));
|
return Result.OK(documentSplitService.queryDocumentSplitDetailById(id));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user