This commit is contained in:
jiangh277
2025-12-24 14:17:19 +08:00
parent 3eb445291f
commit 4c7d59f87b
89 changed files with 3525 additions and 311 deletions

View File

@@ -0,0 +1,18 @@
package com.timeline.user.entity;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class FriendNotify {
private Long id;
private String fromUserId;
private String toUserId;
private String type; // request / accept / reject
private String status; // unread / read
private String content;
private LocalDateTime createTime;
private LocalDateTime readTime;
}