You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.3 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application
{
/// <summary>
/// redis枚举配置
/// </summary>
public class SystemConst
{
#region 聊天
/// <summary>
/// 聊天历史列表
/// </summary>
public const string LIVE_HISTORYLIST = "Live_HistoryList:";
/// <summary>
/// 聊天详情
/// </summary>
public const string LIVE_MESSAGE = "Live_Message:";
/// <summary>
/// 聊天详情
/// </summary>
public const string LIVE_UNREAD = "Live_Unread:";
#endregion
#region 用户
/// <summary>
/// 小程序用户信息
/// </summary>
public const string MINI_USERINFO = "Live_Message:";
/// <summary>
/// 小程序电话验证码
/// </summary>
public const string MINI_USERPHONECODE = "User_PhoneCode:";
/// <summary>
/// AccessToken
/// </summary>
public const string MINI_ACCESSTOKEN = "AccessToken:";
#endregion
#region 二维码
/// <summary>
/// 二维码生成
/// </summary>
public const string MINI_QRCODE = "QRCode:";
#endregion
}
}