|
@@ -82,7 +82,7 @@ func GetHistoryByUserID(userID string) ([]*msg.HistoryRecord, error) {
|
|
Id: int32(record.ID),
|
|
Id: int32(record.ID),
|
|
RoomId: int32(record.RoomID),
|
|
RoomId: int32(record.RoomID),
|
|
UserId: record.UserID,
|
|
UserId: record.UserID,
|
|
- Time: record.CreateTime.GoString(),
|
|
|
|
|
|
+ Time: fmt.Sprintf("%d", record.CreateTime.UnixMilli()),
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|