| | |
| | | |
| | | import com.ycl.platform.domain.entity.Report; |
| | | import com.ycl.platform.domain.entity.TMonitor; |
| | | import com.ycl.platform.domain.form.ReportAuditingForm; |
| | | import com.ycl.platform.domain.vo.ReportVO; |
| | | import com.ycl.platform.domain.vo.TMonitorVO; |
| | | import com.ycl.system.domain.group.Update; |
| | |
| | | return reportService.all(); |
| | | } |
| | | |
| | | @GetMapping("/examine/record") |
| | | @ApiOperation(value = "审核记录", notes = "审核记录") |
| | | @PreAuthorize("@ss.hasPermi('system:report:record')") |
| | | public Result examineRecord() { |
| | | return reportService.examineRecord(); |
| | | } |
| | | |
| | | @PostMapping("/auditing") |
| | | @ApiOperation(value = "审核", notes = "审核") |
| | | @PreAuthorize("@ss.hasPermi('system:report:auditing')") |
| | | public Result auditing(@RequestBody @Validated ReportAuditingForm form) { |
| | | return reportService.auditing(form); |
| | | } |
| | | |
| | | @PostMapping("/export") |
| | | @ApiOperation(value = "导出", notes = "导出") |
| | | @PreAuthorize("@ss.hasPermi('system:report:export')") |