Test_BatchInsertChat2DB

This commit is contained in:
withchao
2023-05-24 12:13:45 +08:00
parent 9b271da739
commit 95cf1e292b
3 changed files with 68 additions and 5 deletions
+5 -2
View File
@@ -21,8 +21,11 @@ type MsgDocModel struct {
}
type MsgInfoModel struct {
SendTime int64 `bson:"sendtime"`
Msg []byte `bson:"msg"`
SendTime int64 `bson:"sendtime"`
Msg []byte `bson:"msg"`
Revoke bool `bson:"revoke"`
ReadList []string `bson:"read_list"`
DelList []string `bson:"del_list"`
}
type MsgDocModelInterface interface {