19 lines
409 B
Java
19 lines
409 B
Java
|
|
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;
|
||
|
|
}
|
||
|
|
|