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.
23 lines
543 B
23 lines
543 B
package cms_api_struct
|
|
|
|
import (
|
|
pbCommon "Open_IM/pkg/proto/sdk_ws"
|
|
)
|
|
|
|
type GetChatLogsReq struct {
|
|
SessionType int `json:"sessionType"`
|
|
ContentType int `json:"contentType"`
|
|
Content string `json:"content"`
|
|
SendID string `json:"userID"`
|
|
RecvID string `json:"recvID"`
|
|
GroupID string `json:"groupID"`
|
|
SendTime string `json:"sendTime"`
|
|
RequestPagination
|
|
}
|
|
|
|
type GetChatLogsResp struct {
|
|
ChatLogs []*pbCommon.MsgData `json:"chatLogs"`
|
|
ChatLogsNum int `json:"logNums"`
|
|
ResponsePagination
|
|
}
|