从山证v2.3.0拷贝
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace YLErp.Modules.DataCacheModule
|
||||
{
|
||||
public static partial class DataCacheManager
|
||||
{
|
||||
/// <summary>
|
||||
/// 对冲账户
|
||||
/// </summary>
|
||||
class ExchangeAccountDataSource : GenericeCachedDataSource<ExchangeAccount>
|
||||
{
|
||||
public override string TableName => nameof(ExchangeAccount);
|
||||
|
||||
public static readonly ExchangeAccountDataSource Default;
|
||||
|
||||
static ExchangeAccountDataSource()
|
||||
{
|
||||
Default = new ExchangeAccountDataSource();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user