25 lines
505 B
C#
Raw Normal View History

2025-04-15 15:49:51 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.FreeRedisProvider
{
/// <summary>
/// 设备缓存基础模型
/// </summary>
public class DeviceCacheBasicModel
{
/// <summary>
/// 集中器Id
/// </summary>
public int FocusId { get; set; }
/// <summary>
/// 表Id
/// </summary>
public int MeterId { get; set; }
}
}