wangjiuyun 2025-06-05 20:07:38 +08:00
commit a9a7dca53c
1 changed files with 7 additions and 0 deletions

View File

@ -123,6 +123,13 @@ public class ProjectInfoController extends BaseController
mmap.put("projectInfo", projectInfo);
return prefix + "/edit";
}
@GetMapping("/query/{id}")
@ResponseBody
public AjaxResult edit(@PathVariable("id") Long id)
{
ProjectInfo projectInfo = projectInfoService.selectProjectInfoById(id);
return AjaxResult.success(projectInfo);
}
/**
*