package com.ruoyi.call.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import java.util.List;
|
|
/**
|
* 视频会话对象 ard_call_session
|
*
|
* @author ard
|
* @date 2024-07-03
|
*/
|
public class ArdCallSession extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
private String id;
|
|
/**
|
* 会话类型
|
*/
|
@Excel(name = "会话类型")
|
private String type;
|
|
/**
|
* userId
|
*/
|
@Excel(name = "用户Id")
|
private String userId;
|
|
/**
|
* 会话用户列表
|
*/
|
private List<String> targetIds;
|
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
|
public List<String> getTargetIds() {
|
return targetIds;
|
}
|
|
public void setTargetIds(List<String> targetIds) {
|
this.targetIds = targetIds;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("type", getType())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.toString();
|
}
|
}
|