HttpOrderComponent.cs 408 B

12345678910111213
  1. using System.Collections.Generic;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ET
  4. {
  5. public class HttpOrderComponent : Entity, IAwake, IDestroy
  6. {
  7. [BsonIgnore] public Dictionary<string, int> OrderErrorNumDic = new Dictionary<string, int>();
  8. //预留字典,无用
  9. [BsonIgnore] public Dictionary<string, string> ReserveDic = new Dictionary<string, string>();
  10. }
  11. }