| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System;
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- using ProtoBuf;
- namespace ET
- {
- [ProtoContract]
- [Config]
- public partial class (ConfigName)Category : ProtoObject
- {
- public static (ConfigName)Category Instance;
-
- [ProtoIgnore]
- [BsonIgnore]
- private Dictionary<int, (ConfigName)> dict = new Dictionary<int, (ConfigName)>();
-
- [BsonElement]
- [ProtoMember(1)]
- private List<(ConfigName)> list = new List<(ConfigName)>();
-
- public (ConfigName)Category()
- {
- Instance = this;
- }
-
- [ProtoAfterDeserialization]
- public void AfterDeserialization()
- {
- foreach ((ConfigName) config in list)
- {
- this.dict.Add(config.Id, config);
- }
- list.Clear();
- this.EndInit();
- }
-
- public (ConfigName) Get(int id)
- {
- this.dict.TryGetValue(id, out (ConfigName) item);
- if (item == null)
- {
- throw new Exception($"配置找不到,配置表名: {nameof ((ConfigName))},配置id: {id}");
- }
- return item;
- }
-
- public bool Contain(int id)
- {
- return this.dict.ContainsKey(id);
- }
- public Dictionary<int, (ConfigName)> GetAll()
- {
- return this.dict;
- }
- public (ConfigName) GetOne()
- {
- if (this.dict == null || this.dict.Count <= 0)
- {
- return null;
- }
- return this.dict.Values.GetEnumerator().Current;
- }
- }
- [ProtoContract]
- public partial class (ConfigName): ProtoObject, IConfig
- {
- (Fields)
- [ProtoAfterDeserialization]
- public void AfterDeserialization()
- {
- this.EndInit();
- }
- }
- }
|