| | |
| | | @AutoLog(value = "文档表-查询设备发送目录的文档状态") |
| | | @ApiOperation(value = "文档表-查询设备发送目录的文档状态", notes = "文档表-查询设备发送目录的文档状态") |
| | | @GetMapping("/find/page/device/{page}/{size}") |
| | | public QueryPageResponseResult<DocInfo> findPageListByDevice(@PathVariable("page") int page, @PathVariable("size") int size, DocInfoQueryRequest docQuery) { |
| | | return docInfoService.findPageListByDevice(page, size, docQuery); |
| | | public Result<?> findPageListByDevice(@PathVariable("page") int page, @PathVariable("size") int size, DocInfoQueryRequest docQuery) { |
| | | return Result.ok(docInfoService.findPageListByDevice(page, size, docQuery)); |
| | | } |
| | | |
| | | @AutoLog(value = "文档表-文档文件预览") |
| | |
| | | @AutoLog(value = "文件表-查询可指派的文档信息列表") |
| | | @ApiOperation(value = "文件表-查询可指派的文档信息列表", notes = "文件表-查询可指派的文档信息列表") |
| | | @GetMapping("/find/list") |
| | | public QueryListResponseResult<DocInfo> findList(DocInfoQueryRequest docQuery) { |
| | | public Result<?> findList(DocInfoQueryRequest docQuery) { |
| | | return docInfoService.findList(docQuery); |
| | | } |
| | | |