using System.Collections.Generic; namespace ET.Server { [ComponentOf(typeof (Map))] public class MapRankComponent: Entity, IAwake, IDestroy { /** 排行榜缓存数据 **/ [StaticField] public List RankList = new List(); /** 上一次推送得列表 **/ [StaticField] public List LastInfoListProto = new List(); } }