using System.Collections.Generic; using MongoDB.Bson.Serialization.Attributes; namespace ET { public class LevelRankComponent : Entity, IAwake, IDestroy { public long LevelRankRefreshTime = 0; public long LevelRankRefreshTimerId = 0; //<关卡id, LevelRankInfo> [BsonIgnore] public Dictionary LevelRankInfoDic = new Dictionary(); //关卡排行榜全部的玩家信息 [BsonIgnore] public Dictionary LevelRankRoleInfoDic = new Dictionary(); //用来每5分钟更新的排行榜数据,只有100条 [BsonIgnore] public Dictionary> QueryRankInfoDic = new Dictionary>(); } }