add 聊天记录列表

This commit is contained in:
chen zida
2023-11-28 20:36:28 +08:00
parent 0265b9c0d9
commit 60ed407afe
4 changed files with 178 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
package com.lld.im.common.model;
import lombok.Data;
/**
* @author: Chackylee
* @description:
**/
@Data
public class ChatHistoryReq extends RequestBase {
private static final long serialVersionUID = 1L;
private String operater;
private String userId;
//单次拉取数量
private Integer limit;
//第几页
private Integer offset;
}