feat: 新增协作邀请功能与标签管理
Some checks failed
test/timeline-server/pipeline/head Something is wrong with the build of this commit
Some checks failed
test/timeline-server/pipeline/head Something is wrong with the build of this commit
新增故事协作邀请功能,包括邀请状态字段和相关接口 添加标签管理功能,支持时间线节点的标签分类 实现智能填充服务,从图片EXIF提取时间和地点信息 优化Docker镜像使用Alpine基础镜像减少体积 新增批量操作功能,包括排序、删除和时间修改 扩展通知系统支持协作邀请相关消息 添加评论和提醒功能相关实体和服务接口
This commit is contained in:
@@ -25,4 +25,8 @@ public class ResponseEntity<T> {
|
||||
public static <T> ResponseEntity<T> error(ResponseEnum responseEnum, String detailMessage) {
|
||||
return new ResponseEntity<>(responseEnum.getCode(), responseEnum.getMessage() + ": " + detailMessage, null);
|
||||
}
|
||||
|
||||
public static <T> ResponseEntity<T> error(String message) {
|
||||
return new ResponseEntity<>(ResponseEnum.BAD_REQUEST.getCode(), message, null);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user