| | |
| | | @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 = "文档表-文档文件预览") |