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.
29 lines
354 B
29 lines
354 B
|
3 years ago
|
package com.bx.imcommon.model;
|
||
|
3 years ago
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
3 years ago
|
public class IMSendResult<T> {
|
||
|
3 years ago
|
|
||
|
3 years ago
|
/**
|
||
|
|
* 发送方
|
||
|
3 years ago
|
*/
|
||
|
3 years ago
|
private IMUserInfo sender;
|
||
|
3 years ago
|
|
||
|
3 years ago
|
/**
|
||
|
|
* 接收方
|
||
|
3 years ago
|
*/
|
||
|
3 years ago
|
private IMUserInfo receiver;
|
||
|
3 years ago
|
|
||
|
3 years ago
|
/*
|
||
|
3 years ago
|
* 发送状态 IMCmdType
|
||
|
3 years ago
|
*/
|
||
|
3 years ago
|
private Integer code;
|
||
|
|
|
||
|
|
/*
|
||
|
|
* 消息内容
|
||
|
|
*/
|
||
|
3 years ago
|
private T data;
|
||
|
3 years ago
|
|
||
|
|
}
|