using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.HttpApi { public enum DownloadCacheName : uint { None = 0, //操作员 Worker = 1, WorkerError = 100, WorkerException = 101, //门店营业方案 BusinessPlan = 2, BusinessPlanError = 200, BusinessPlanException = 201, //品类 ProductType = 3, ProductTypeError = 300, ProductTypeException = 301, //商品 Product = 4, ProductError = 400, ProductException = 401, //单位 ProductUnit = 5, ProductUnitError = 500, ProductUnitException = 501, //图片 ProductImage = 6, ProductImageError = 600, ProductImageException = 601, //规格 ProductSpec = 7, ProductSpecError = 700, ProductSpecException = 701, //做法类型 ProductMakeType = 8, ProductMakeTypeError = 800, ProductMakeTypeException = 801, //做法信息 ProductMakeDetail = 9, ProductMakeDetailError = 900, ProductMakeDetailException = 901, //商品套菜 ProductSuit = 10, ProductSuitError = 1000, ProductSuitException = 1001, //套菜明细 ProductSuitDetail = 11, ProductSuitDetailError = 1100, ProductSuitDetailException = 1101, //班次方案 BusinessPlanDetail = 12, BusinessPlanDetailError = 1200, BusinessPlanDetailException = 1201, //付款类型 PayType = 13, PayTypeError = 1300, PayTypeException = 1301, //收银方式 PayMode = 14, PayModeError = 1400, PayModeException = 1401, //餐桌区域 TableArea = 15, TableAreaError = 1500, TableAreaException = 1501, //餐桌类型 TableType = 16, TableTypeError = 1600, TableTypeException = 1601, //餐桌资料 Table = 17, TableError = 1700, TableException = 1701, //门店品牌 Brand = 18, BrandError = 1800, BrandException = 1801, //操作员角色 WorkerRole = 19, WorkerRoleError = 1900, WorkerRoleException = 1901, //操作员权限 WorkerPermissions = 20, WorkerPermissionsError = 2000, WorkerPermissionsException = 2001, //门店支付参数(原生支付) PayParameter = 21, PayParameterError = 2100, PayParameterException = 2101, //厨打方案 KitPlan = 22, KitPlanError = 2200, KitPlanException = 2201, //商品厨打方案信息 KitProduct = 23, KitProductError = 2300, KitProductException = 2301, //服务端打印机信息 Printer = 24, PrinterError = 2400, PrinterException = 2401, //服务端读卡器信息 Carder = 25, CarderError = 2500, CarderException = 2501, //门店信息 StoreInfo = 26, StoreInfoError = 2600, StoreInfoException = 2601, //门店下票图片 StorePrintImage = 27, StorePrintImageError = 2700, StorePrintImageException = 2701, //库存系数 ProductRatio = 28, ProductRatioError = 2800, ProductRatioException = 2801, //门店仓库 StoreStorage = 29, StoreStorageError = 2900, StoreStorageException = 2901, //商品库存 ProductStock = 30, ProductStockError = 3000, ProductStockException = 3001, //厨显方案 KdsPlan = 31, KdsPlanError = 3100, KdsPlanException = 3101, //商品厨显方案信息 KdsProduct = 32, KdsProductError = 3200, KdsProductException = 3201, //门店双屏图片信息 AdvertPicture = 33, AdvertPictureError = 3300, AdvertPictureException = 3301, //美团商品映射 MappingDishMeiTuan = 34, MappingDishMeiTuanError = 3400, MappingDishMeiTuanException = 3401, //饿了么商品映射 MappingDishEleMe = 35, MappingDishEleMeError = 3500, MappingDishEleMeException = 3501, //百度商品映射 BaiDuMappingDish = 36, BaiDuMappingDishError = 3600, BaiDuMappingDishException = 3601, //门店双屏字幕信息 AdvertCaption = 37, AdvertCaptionError = 3700, AdvertCaptionException = 3701, //门店双屏字幕信息 Feeitem = 38, FeeitemError = 3800, FeeitemException = 3801, //私有做法信息 ProductMakeDetailPrivate = 39, ProductMakeDetailPrivateError = 3900, ProductMakeDetailPrivateException = 3901, //熟客 Visitor = 40, VisitorError = 4000, VisitorException = 4001, //熟客地址 VisitorAddress = 41, VisitorAddressError = 4100, VisitorAddressException = 4101, //熟客标签 VisitorTag = 42, VisitorTagError = 4200, VisitorTagException = 4201, //百度商品映射 MappingDishBaiDu = 43, MappingDishBaiDuError = 4300, MappingDishBaiDuException = 4301, //卡友日 CardProDay = 44, CardProDayError = 4400, CardProDayException = 4401, //门店促销 PromotionStoreTask = 45, PromotionStoreTaskError = 4500, PromotionStoreTaskException = 4501, //门店优惠券 PromotionStoreCoupon = 46, PromotionStoreCouponError = 4600, PromotionStoreCouponException = 4601, //总部充值支付参数 RechargeParameter = 47, RechargeParameterError = 4700, RechargeParameterException = 4701, //POS模块设置信息下载 SetPlan = 48, SetPlanError = 4800, SetPlanException = 4801, //商品耗料配方 ProductBurden = 49, ProductBurdenError = 4900, ProductBurdenException = 4901, //做法耗料配方 MakeBurden = 50, MakeBurdenError = 5000, MakeBurdenException = 5001, //门店商品优惠券 StoreProductCoupon = 51, StoreProductCouponError = 5100, StoreProductCouponException = 5101, SqlCache = 60, #region subin 2023-07-09 add //分店账号信息 SplitShopAccount = 70, SplitShopAccountError = 7100, SplitShopAccountException = 7101, //分店账号信息 SplitFoodAccount = 80, SplitFoodAccountError = 8100, SplitFoodAccountException = 8101, #endregion } }