2026-06-30 24681c81c09022f584a57006f2534b5f74723414
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.iocoder.yudao.module.im.service.websocket.notification.friend;
 
import lombok.Data;
 
/**
 * 好友申请被拒绝通知
 * <p>
 * 推送给原申请发起方多端;前端按 requestId 把对应申请记录 handleResult 更新为「已拒绝」
 */
@Data
public class FriendRequestRejectedNotification extends BaseFriendNotification {
 
    /**
     * 已处理的申请记录编号
     */
    private Long requestId;
    /**
     * 拒绝理由(可选)
     */
    private String handleContent;
 
}