185 检查项目设置-》检查方法:【编辑】检查类型已选中“心电图”【保存】报错“检查类型不能为空”

186
检查项目设置-》检查部位:曝光次数和费用套餐的值错位了
This commit is contained in:
Ranyunqiao
2026-03-16 11:49:57 +08:00
parent 449209a79b
commit 0c70b224f9
2 changed files with 34 additions and 8 deletions

View File

@@ -59,8 +59,10 @@ public class CheckMethodAppServiceImpl implements ICheckMethodAppService {
return R.fail("检查方法的检查类型不能为空!");
}
//2.保存
boolean save = checkMethodService.save(checkMethod);
return R.ok(save);
checkMethodService.save(checkMethod);
java.util.Map<String, Object> result = new java.util.HashMap<>();
result.put("id", checkMethod.getId());
return R.ok(result);
}
@Override