| | |
| | | import org.jeecg.modules.dnc.request.DocInfoUploadRequest; |
| | | import org.jeecg.modules.dnc.response.CommonCode; |
| | | import org.jeecg.modules.dnc.response.QueryListResponseResult; |
| | | import org.jeecg.modules.dnc.response.QueryPageResponseResult; |
| | | import org.jeecg.modules.dnc.response.ResponseResult; |
| | | import org.jeecg.modules.dnc.service.IDocInfoService; |
| | | import org.jeecg.modules.dnc.utils.ValidateUtil; |
| | |
| | | @ApiOperation(value = "文件表-查询可指派的文档信息列表", notes = "文件表-查询可指派的文档信息列表") |
| | | @GetMapping("/find/list") |
| | | public Result<?> findList(DocInfoQueryRequest docQuery) { |
| | | return docInfoService.findList(docQuery); |
| | | List<DocInfo> docInfoList=docInfoService.findList(docQuery); |
| | | return Result.ok(docInfoList); |
| | | } |
| | | |
| | | @AutoLog(value = "文件表-批量删除文档接口") |