fix:检查详情接口提交

pg_adapter
wangxy 8 months ago
parent 530cde393f
commit eb4763f3f2

@ -134,6 +134,7 @@ public class CheckReportController extends BaseController {
* *
*/ */
@GetMapping("/view/{checkId}") @GetMapping("/view/{checkId}")
@ResponseBody
public AjaxResult view(@PathVariable("checkId") String checkId) { public AjaxResult view(@PathVariable("checkId") String checkId) {
return AjaxResult.success(checkReportManager.getTdCheckReportDTO(checkId)); return AjaxResult.success(checkReportManager.getTdCheckReportDTO(checkId));
} }

@ -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));
}
/** /**
* *
*/ */

Loading…
Cancel
Save