提交 4aecd51e authored 作者: lvbencai's avatar lvbencai

合并分支 'qa' 到 'master'

refactor(promotion): 更新检查计划查询控制器的返回逻辑 查看合并请求 !57
......@@ -25,10 +25,10 @@ public class ExaPlanQueryController {
@GetMapping("/{id}")
public R selectById(@PathVariable @PathParam("id") Long id) {
ActivityExamineDto examineDto = exaPlanQueryService.selectById(id);
if (examineDto != null) {
return R.success(examineDto);
}
// ActivityExamineDto examineDto = exaPlanQueryService.selectById(id);
// if (examineDto != null) {
// return R.success(examineDto);
// }
InspectionInfoDto inspectionInfoDto =exaPlanQueryService.selectNewByID(id);
return R.success(inspectionInfoDto);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论