2025-03-12 09:58:37 +08:00
|
|
|
|
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:";
|
2025-03-12 14:57:42 +08:00
|
|
|
|
|
2025-03-12 09:58:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 缓存电表信息
|
|
|
|
|
|
/// </summary>
|
2025-03-12 14:57:42 +08:00
|
|
|
|
public const string CacheAmmeterInfoKey = $"{CacheBasicDirectoryKey}{"{0}"}:AmmeterInfo:";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 缓存水表信息
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public const string CacheWatermeterInfoKey = $"{CacheBasicDirectoryKey}{"{0}"}:WatermeterInfo:";
|
2025-03-12 09:58:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|