聊天会话记录
This commit is contained in:
@@ -37,8 +37,10 @@
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
@@ -49,4 +51,4 @@
|
||||
</build>
|
||||
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
||||
@@ -2,13 +2,16 @@ package com.lld.im.common.model;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @description:
|
||||
* @author: lld
|
||||
* @version: 1.0
|
||||
*/
|
||||
@Data
|
||||
public class RequestBase {
|
||||
public class RequestBase implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Integer appId;
|
||||
|
||||
private String operater;
|
||||
|
||||
@@ -8,10 +8,12 @@ import lombok.Data;
|
||||
**/
|
||||
@Data
|
||||
public class SyncReq extends RequestBase {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
//客户端最大seq
|
||||
private Long lastSequence;
|
||||
//一次拉取多少
|
||||
private Integer maxLimit;
|
||||
|
||||
private String operater;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user