@@ -111,18 +111,12 @@ type MessageModel interface {
111
111
UpdateMsgSenderFaceURL (ctx context.Context , sendID , faceURL string , sType int ) error
112
112
// UpdateMsgSenderFaceURLAndSenderNicknameController(ctx context.Context, sendID, faceURL, nickname string, sessionType int) error
113
113
UpdateMsgSenderFaceURLAndSenderNickname (ctx context.Context , conversationID , sendID , faceURL , nickname string ) error
114
- InitSuperLocalErrChatLog (ctx context.Context , groupID string )
115
- SuperBatchInsertExceptionMsg (ctx context.Context , MessageList []* model_struct.LocalErrChatLog , groupID string ) error
116
114
GetAbnormalMsgSeq (ctx context.Context ) (int64 , error )
117
115
GetAbnormalMsgSeqList (ctx context.Context ) ([]int64 , error )
118
116
BatchInsertExceptionMsg (ctx context.Context , MessageList []* model_struct.LocalErrChatLog ) error
119
117
GetConversationAbnormalMsgSeq (ctx context.Context , groupID string ) (int64 , error )
120
118
BatchInsertTempCacheMessageList (ctx context.Context , MessageList []* model_struct.TempCacheLocalChatLog ) error
121
119
InsertTempCacheMessage (ctx context.Context , Message * model_struct.TempCacheLocalChatLog ) error
122
- InitSuperLocalChatLog (ctx context.Context , groupID string )
123
- SuperGroupBatchInsertMessageList (ctx context.Context , MessageList []* model_struct.LocalChatLog , groupID string ) error
124
- SuperGroupInsertMessage (ctx context.Context , Message * model_struct.LocalChatLog , groupID string ) error
125
- SuperGroupDeleteAllMessage (ctx context.Context , groupID string ) error
126
120
DeleteConversationAllMessages (ctx context.Context , conversationID string ) error
127
121
MarkDeleteConversationAllMessages (ctx context.Context , conversationID string ) error
128
122
@@ -169,7 +163,6 @@ type ConversationModel interface {
169
163
SetMultipleConversationRecvMsgOpt (ctx context.Context , conversationIDList []string , opt int ) (err error )
170
164
GetMultipleConversationDB (ctx context.Context , conversationIDList []string ) (result []* model_struct.LocalConversation , err error )
171
165
SearchAllMessageByContentType (ctx context.Context , conversationID string , contentType int ) ([]* model_struct.LocalChatLog , error )
172
- SuperGroupSearchAllMessageByContentType (ctx context.Context , superGroupID string , contentType int32 ) ([]* model_struct.LocalChatLog , error )
173
166
SearchConversations (ctx context.Context , searchParam string ) ([]* model_struct.LocalConversation , error )
174
167
}
175
168
0 commit comments