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