|
@@ -1,6 +1,7 @@
|
|
|
using Hotline.Caching.Interfaces;
|
|
|
using Hotline.Settings;
|
|
|
using Hotline.Share.Dtos.Order;
|
|
|
+using Hotline.Share.Enums.CallCenter;
|
|
|
using Hotline.Share.Enums.Order;
|
|
|
using System;
|
|
|
using System.Collections.Concurrent;
|
|
@@ -24,6 +25,8 @@ public class BaseDataApplication : IScopeDependency
|
|
|
}
|
|
|
|
|
|
private ConcurrentDictionary<string, dynamic> _baseData = new ConcurrentDictionary<string, dynamic>();
|
|
|
+
|
|
|
+
|
|
|
//private ConcurrentDictionary<string, int> _baseType = new ConcurrentDictionary<string, int>();
|
|
|
//private ConcurrentDictionary<string, int> _enumType = new ConcurrentDictionary<string, int>();
|
|
|
#region 内部方法
|
|
@@ -111,4 +114,9 @@ public class BaseDataApplication : IScopeDependency
|
|
|
Add(SysDicTypeConsts.CallForwardingType);
|
|
|
return this;
|
|
|
}
|
|
|
+ public BaseDataApplication EndBy()
|
|
|
+ {
|
|
|
+ Add(typeof(EEndBy));
|
|
|
+ return this;
|
|
|
+ }
|
|
|
}
|