21 lines
520 B
C#
21 lines
520 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Common.Consts
|
|||
|
|
{
|
|||
|
|
public class FreeRedisConst
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 缓存基础目录
|
|||
|
|
/// </summary>
|
|||
|
|
public const string CacheBasicDirectoryKey = "CollectBus:";
|
|||
|
|
/// <summary>
|
|||
|
|
/// 缓存电表信息
|
|||
|
|
/// </summary>
|
|||
|
|
public const string CacheAmmeterInfoKey = $"{CacheBasicDirectoryKey}AmmeterInfo:";
|
|||
|
|
}
|
|||
|
|
}
|