using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Core; /// /// 缓存类型 /// public enum CacheType { /// /// 内存缓存 /// MemoryCache, /// /// Redis缓存 /// RedisCache }