using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Constant { /// /// public class Const { /// /// 登陆信息存放在token中的Key /// public static readonly string LoginInfoKey = "login"; /// /// 加密字符串的Key /// public static string SecretKey = "lxmguoke"; /// /// 加密字符串的Key /// public static string BFYSecretKey = "bfyreport2023"; /// /// 小程序首页地址 /// /// public static string MiniProPageIndex = "pages/index/index"; /// /// 文件保存的路径目录 /// public static string DownExcelTempPath = "/download/exceltemp/"; /// /// 护肤一级分类ID /// public static string SkinCareTopCategoryId = "F3DBD3CE-F07B-A4FD-934A-39E50765B2DF"; /// /// 化妆品一级分类ID /// public static string CosmeticsTopCategoryId = "DA25A968-78DF-2BA6-BDF5-39E50765B2DE"; /// /// 发饰品一级分类ID /// public static string HairOrnamentsTopCategoryId = "EFCE249A-6BC6-C3D2-F445-39E50765B2E0"; /// /// 首饰品一级分类ID /// public static string JewelryOrnamentsTopCategoryId = "2B41F3AB-6261-B504-F006-39E650B7AD73"; /// /// 服务一级分类ID(自定义方便数据分类统计) /// public static string ServiceTopCategoryId = "2DD2476A-E7FD-4C50-8C23-77096FWEAF4C"; /// /// 充值一级分类ID(自定义方便数据分类统计) /// public static string RechargeTopCategoryId = "0E1C9F69-FF73-433D-98D2-20D46ZC81F38"; /// /// 护肤服务一级分类ID(订单分析报表使用) /// public static string HuFuTopCategoryId = "00000000-0000-0000-0000-200000000001"; /// /// 销售运营中心总监组织ID /// public static string ZongJianOranId ="009DCAD9-7CC1-E9D4-0B1C-39F36403B34E"; } }