init
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user