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
49
50
51
52
53
54
package cn.iocoder.yudao.module.im.controller.admin.manager.rtc.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - IM 通话记录 Response VO")
@Data
public class ImRtcCallManagerRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "业务通话编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "uuid-xxx")
    private String room;
 
    @Schema(description = "会话类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer conversationType; // 参见 ImConversationTypeEnum 枚举类
 
    @Schema(description = "媒体类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer mediaType; // 参见 ImRtcCallMediaTypeEnum 枚举类
 
    @Schema(description = "发起人用户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long inviterUserId;
 
    @Schema(description = "发起人昵称", example = "张三")
    private String inviterNickname;
 
    @Schema(description = "群编号;私聊为空", example = "999")
    private Long groupId;
 
    @Schema(description = "群名称;私聊为空", example = "测试群")
    private String groupName;
 
    @Schema(description = "通话状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
    private Integer status; // 参见 ImRtcCallStatusEnum 枚举类
 
    @Schema(description = "结束原因", example = "1")
    private Integer endReason; // 参见 ImRtcCallEndReasonEnum 枚举类
 
    @Schema(description = "发起时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime startTime;
 
    @Schema(description = "接通时间;未接通为空")
    private LocalDateTime acceptTime;
 
    @Schema(description = "结束时间;未结束为空")
    private LocalDateTime endTime;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
}