feat: 完善相关功能

This commit is contained in:
ivmiku
2024-09-13 22:13:21 +08:00
parent 4a39ca48ee
commit 262103e034
18 changed files with 410 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
package com.ivmiku.tutorial.response;
import lombok.Data;
/**
* 提醒用户实体
* @author Aurora
*/
@Data
public class AtNotifier {
private String fromId;
private String toId;
private String postId;
}