fix(emergency): add接口新增成功后返回主键ID

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-07 10:32:15 +08:00
co-authored by Claude
parent 1484f621bd
commit bb95f1d78f
@@ -74,7 +74,7 @@ public class FirstAidResourceController extends JeecgController<FirstAidResource
return Result.error("标题不能为空");
}
resourceService.saveResource(entity);
return Result.OK("添加成功!");
return Result.OK("添加成功!", entity.getId());
}
@Operation(summary = "急救宣教资源-编辑")