|
@@ -1,6 +1,13 @@
|
|
|
package common
|
|
|
|
|
|
import (
|
|
|
+ "context"
|
|
|
+ "errors"
|
|
|
+ "fmt"
|
|
|
+ "log"
|
|
|
+ "strconv"
|
|
|
+ "time"
|
|
|
+
|
|
|
"app.yhyue.com/moapp/MessageCenter/entity"
|
|
|
"app.yhyue.com/moapp/MessageCenter/rpc/internal/config"
|
|
|
"app.yhyue.com/moapp/MessageCenter/rpc/type/message"
|
|
@@ -8,12 +15,6 @@ import (
|
|
|
"app.yhyue.com/moapp/jybase/common"
|
|
|
m "app.yhyue.com/moapp/jybase/mongodb"
|
|
|
"app.yhyue.com/moapp/jybase/redis"
|
|
|
- "context"
|
|
|
- "errors"
|
|
|
- "fmt"
|
|
|
- "log"
|
|
|
- "strconv"
|
|
|
- "time"
|
|
|
)
|
|
|
|
|
|
func BitmapUserMsgList(this *message.UserMsgListReq) (*message.UserMsgList, *message.Messages) {
|
|
@@ -146,6 +147,7 @@ func BitmapUserMsgList(this *message.UserMsgListReq) (*message.UserMsgList, *mes
|
|
|
if _, ok := entity.ClassSearchMap[column.MsgType]; ok {
|
|
|
column.IsClassSearch = true
|
|
|
}
|
|
|
+ columnData = append(columnData, &column)
|
|
|
}
|
|
|
}
|
|
|
data.SortData = columnData
|