|
|
@ -16,14 +16,12 @@ import com.ruoyi.system.service.check.TdCheckTypeService;
|
|
|
|
import com.ruoyi.web.controller.manager.CheckReportManager;
|
|
|
|
import com.ruoyi.web.controller.manager.CheckReportManager;
|
|
|
|
import com.ruoyi.web.controller.manager.SysAreaManager;
|
|
|
|
import com.ruoyi.web.controller.manager.SysAreaManager;
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.ui.ModelMap;
|
|
|
|
import org.springframework.ui.ModelMap;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Controller
|
|
|
|
@Controller
|
|
|
|
@RequestMapping("/system/checkresult")
|
|
|
|
@RequestMapping("/system/checkresult")
|
|
|
@ -108,6 +106,16 @@ public class TdCheckResultController extends BaseController {
|
|
|
|
return toAjax(checkReportManager.deletedTdCheckReportIds(ids));
|
|
|
|
return toAjax(checkReportManager.deletedTdCheckReportIds(ids));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 详情
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@GetMapping("/view/{checkId}")
|
|
|
|
|
|
|
|
@ResponseBody
|
|
|
|
|
|
|
|
public AjaxResult view(@PathVariable("checkId") String checkId) {
|
|
|
|
|
|
|
|
return AjaxResult.success(checkReportManager.getTdCheckReportDTO(checkId));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 检查 报告管理
|
|
|
|
* 检查 报告管理
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|