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
355 B

3 years ago
package com.bx.imcommon.model;
3 years ago
import lombok.Data;
@Data
public class IMSendResult<T> {
3 years ago
/**
* 发送方
3 years ago
*/
private IMUserInfo sender;
3 years ago
/**
* 接收方
3 years ago
*/
private IMUserInfo receiver;
3 years ago
/**
* 发送状态 IMCmdType
3 years ago
*/
private Integer code;
/**
2 years ago
* 消息内容
*/
private T data;
3 years ago
}