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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package cn.iocoder.yudao.module.im.controller.admin.manager.friend.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - IM 好友申请 Response VO")
@Data
public class ImFriendRequestManagerRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "发起方用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long fromUserId;
 
    @Schema(description = "发起方昵称", example = "张三")
    private String fromNickname;
 
    @Schema(description = "接收方用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2048")
    private Long toUserId;
 
    @Schema(description = "接收方昵称", example = "李四")
    private String toNickname;
 
    @Schema(description = "申请理由", example = "我是芋艿")
    private String applyContent;
 
    @Schema(description = "发起方对接收方的备注")
    private String displayName;
 
    @Schema(description = "添加来源", example = "1")
    private Integer addSource; // 参见 ImFriendAddSourceEnum 枚举类
 
    @Schema(description = "处理结果", requiredMode = Schema.RequiredMode.REQUIRED, example = "0")
    private Integer handleResult; // 参见 ImFriendRequestHandleResultEnum 枚举类
 
    @Schema(description = "处理理由", example = "暂不通过")
    private String handleContent;
 
    @Schema(description = "处理时间")
    private LocalDateTime handleTime;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
}