You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
355 B
28 lines
355 B
package com.bx.imcommon.model;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class IMSendResult<T> {
|
|
|
|
/**
|
|
* 发送方
|
|
*/
|
|
private IMUserInfo sender;
|
|
|
|
/**
|
|
* 接收方
|
|
*/
|
|
private IMUserInfo receiver;
|
|
|
|
/**
|
|
* 发送状态 IMCmdType
|
|
*/
|
|
private Integer code;
|
|
|
|
/**
|
|
* 消息内容
|
|
*/
|
|
private T data;
|
|
|
|
}
|
|
|