using System; using System.Collections.Generic; using System.Text; namespace Edu.Cache { public class CacheKey { /// /// 用户登录缓存Key /// public static string User_Login_Key = "Edu_User_Login_"; /// ///app学生登录缓存Key /// public static string AppStudent_Login_Key = "App_Student_Login_"; /// ///小程序学生登录缓存Key /// public static string AppletStudent_Login_Key = "Applet_Student_Login_"; /// /// 短信号码缓存Key /// public static string MsgStudent_Login_Key = "Msg_Student_Login_"; public static string MsgStudent_Send_Code_List = "Msg_Student_Code_List_"; /// /// 学生登录错误缓存Key /// public static string Student_ErrorLogin_Key = "Edu_Student_ErrorLogin_"; /// /// 学生冻结key /// public static string Student_Frozen_Key = "Edu_Student_Frozen_"; /// /// 微信支付回调key /// public static string WeChatPay_Callback_Key = "WeChatPay_Callback_Key_"; /// /// 通讯录token /// public static string QYWeChat_TelToken_Key = "TWeChat_Token_Key_"; /// /// 外部人员token /// public static string QYWeChat_EmpToken_Key = "EWeChat_Token_Key_"; /// /// 企业微信配置文件 /// public static string QYWECHAT_GLOBAL_CONFIG_KEY = "QYWECHAT_GLOBAL_CONFIG"; /// /// 微信公众号token /// public static readonly string DATA_WeChatAccountToken = "DATA_WeChatAccountToken_"; /// /// 微信公众号token(赞羊生活) /// public static string GZH_ZYSH_Key = "GZH_ZYSHToken_Key_"; /// /// AppletB2B_Login_1(用户id) /// public static string AppletB2B_Login_Info_ { get { return "AppletB2B_Edu_Login_"; } } } }