聊天会话记录

This commit is contained in:
2023-09-28 20:27:54 +08:00
parent 1459ec3656
commit 7aa2e17897
20 changed files with 95 additions and 142 deletions

View File

@@ -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>

View File

@@ -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;

View File

@@ -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;
}