|
|
|
@ -7,11 +7,9 @@ import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
|
|
|
|
import com.ruoyi.system.domain.TdCheck;
|
|
|
|
|
import com.ruoyi.system.domain.check.TdCheckReport;
|
|
|
|
|
import com.ruoyi.system.domain.check.TdCheckType;
|
|
|
|
|
import com.ruoyi.system.domain.check.dto.TdCheckReportDTO;
|
|
|
|
|
import com.ruoyi.system.service.ITdCheckService;
|
|
|
|
|
import com.ruoyi.system.service.check.TdCheckTypeService;
|
|
|
|
|
import com.ruoyi.web.controller.manager.CheckReportManager;
|
|
|
|
|
import com.ruoyi.web.controller.manager.SysAreaManager;
|
|
|
|
@ -52,7 +50,7 @@ public class TdCheckResultController extends BaseController {
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public TableDataInfo list(TdCheckReport tdCheckReport) {
|
|
|
|
|
startPage();
|
|
|
|
|
List<TdCheckReport> tdCheckReports = checkReportManager.selectTdCheckReportList(tdCheckReport);
|
|
|
|
|
List<TdCheckReport> tdCheckReports = checkReportManager.selectTdCheckResultList(tdCheckReport);
|
|
|
|
|
return getDataTable(tdCheckReports);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -64,7 +62,7 @@ public class TdCheckResultController extends BaseController {
|
|
|
|
|
@PostMapping("/export")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public AjaxResult export(TdCheckReport tdCheckReport) {
|
|
|
|
|
List<TdCheckReport> tdCheckReports = checkReportManager.selectTdCheckReportList(tdCheckReport);
|
|
|
|
|
List<TdCheckReport> tdCheckReports = checkReportManager.selectTdCheckResultList(tdCheckReport);
|
|
|
|
|
tdCheckReports.forEach(tdCheck1 -> {
|
|
|
|
|
tdCheck1.setFramework(sysAreaManager.getAreaName(tdCheck1.getFramework()));
|
|
|
|
|
tdCheck1.setArea(sysAreaManager.getAreaName(tdCheck1.getArea()));
|
|
|
|
|