Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
wangjian963
2026-03-16 14:40:39 +08:00
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