You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
499 B
C#
22 lines
499 B
C#
namespace EntrustSettle.Common.Const;
|
|
|
|
/// <summary>
|
|
/// 缓存相关常量
|
|
/// </summary>
|
|
public class CacheConst
|
|
{
|
|
///// <summary>
|
|
///// 所有缓存关键字集合
|
|
///// </summary>
|
|
public const string KeyAll = "keys";
|
|
|
|
/// <summary>
|
|
/// 用户信息缓存
|
|
/// </summary>
|
|
public const string KeyUserInfoCache = "userInfoCache:";
|
|
|
|
/// <summary>
|
|
/// 海运达接口访问Token
|
|
/// </summary>
|
|
public const string HydAccessToken = "hydAccessToken";
|
|
} |