123
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
package com.ruoyi.cai.dto.app.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
public class UserCallAppVo {
|
||||
|
||||
@Schema(description = "通话ID")
|
||||
private Long id;
|
||||
@Schema(description = "通话类型,标识当前用户是哪一方 1=主叫方 2=接收方")
|
||||
private Integer type;
|
||||
@Schema(description = "通话对方的用户类型(好像没撒用,这里返回的0=普通用户 1=内部用户)")
|
||||
private Integer otherType;
|
||||
@Schema(description = "通话状态 1=取消 2=拒绝 3=超时 4=已接通")
|
||||
private Integer status;
|
||||
@Schema(description = "通话状态文字")
|
||||
private String statusText;
|
||||
@Schema(description = "通话对方的用户ID")
|
||||
private Long userId;
|
||||
@Schema(description = "通话对方的用户蜜瓜号")
|
||||
private String usercode;
|
||||
@Schema(description = "通话对方的用户昵称")
|
||||
private String nickname;
|
||||
@Schema(description = "通话对方的用户头像")
|
||||
private String avatar;
|
||||
@Schema(description = "通话对方的用户性别")
|
||||
private Integer gender;
|
||||
@Schema(description = "通话对方的用户年龄")
|
||||
private Long age;
|
||||
@Schema(description = "通话对方的所在城市")
|
||||
private String city;
|
||||
@Schema(description = "通话对方的所属城市ID")
|
||||
private Integer cityId;
|
||||
@Schema(description = "开始通话时间")
|
||||
private LocalDateTime createTime;
|
||||
}
|
||||
@@ -9,4 +9,8 @@ public class AppHomeConfig {
|
||||
private String ossDomain;
|
||||
@Schema(description = "是否开启提现")
|
||||
private boolean openWithdraw = true;
|
||||
@Schema(description = "系统通知IM ID")
|
||||
private String sysId = "2";
|
||||
@Schema(description = "客服IM ID")
|
||||
private String servId = "4";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user