fix:检查详情接口提交

pg_adapter
wangxy 8 months ago
parent 530cde393f
commit eb4763f3f2

@ -134,6 +134,7 @@ public class CheckReportController extends BaseController {
*
*/
@GetMapping("/view/{checkId}")
@ResponseBody
public AjaxResult view(@PathVariable("checkId") String 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.SysAreaManager;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
import java.util.Objects;
@Controller
@RequestMapping("/system/checkresult")
@ -108,6 +106,16 @@ public class TdCheckResultController extends BaseController {
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