23 lines
632 B
C#
23 lines
632 B
C#
|
using MongoDB.Bson.Serialization.Attributes;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class YuanBaoLog:Entity
|
|||
|
{
|
|||
|
[BsonIgnore]
|
|||
|
public bool isModify;
|
|||
|
/// <summary>
|
|||
|
/// key=天
|
|||
|
/// </summary>
|
|||
|
[BsonDictionaryOptions(Representation = MongoDB.Bson.Serialization.Options.DictionaryRepresentation.ArrayOfArrays)]
|
|||
|
public Dictionary<int, string> logDic = new();
|
|||
|
}
|
|||
|
public class YuanBaoLogComponent:Entity
|
|||
|
{
|
|||
|
public static YuanBaoLogComponent instance;
|
|||
|
public Dictionary<long, YuanBaoLog> YuanBaoLogDic = new();
|
|||
|
}
|
|||
|
}
|