using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JwKdsV.Core.Download { 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, SqlCache = 50 } }