| | |
| | | TaskPlaceSelfCheckEntity detail = taskPlaceSelfCheckService.getOne(Condition.getQueryWrapper(taskPlaceSelfCheck)); |
| | | return R.data(TaskPlaceSelfCheckWrapper.build().entityVO(detail)); |
| | | } |
| | | |
| | | /** |
| | | * 消防自查记任务表 自定义详情 |
| | | */ |
| | | @GetMapping("/detailByTaskId") |
| | | @ApiOperationSupport(order = 1) |
| | | @ApiOperation(value = "自定义详情", notes = "传入taskPlaceSelfCheck") |
| | | public R<TaskPlaceSelfCheckVO> detailByTaskId(Long taskId) { |
| | | TaskPlaceSelfCheckEntity detail = taskPlaceSelfCheckService.getDetailByTaskId( taskId); |
| | | return R.data(TaskPlaceSelfCheckWrapper.build().entityVO(detail)); |
| | | } |
| | | /** |
| | | * 消防自查记任务表 分页 |
| | | */ |