2025-05-12 15:14:19 +08:00
|
|
|
|
using JiShe.CollectBus.Analyzers.Shared;
|
|
|
|
|
|
using JiShe.CollectBus.IoTDB.Attributes;
|
|
|
|
|
|
using JiShe.CollectBus.IoTDB.Model;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace JiShe.CollectBus.IotSystems.Devices
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 设备树模型数据信息
|
|
|
|
|
|
/// </summary>
|
2025-05-21 17:11:27 +08:00
|
|
|
|
[SourceAnalyzers(EntityTypeEnum.TreeModel)]
|
|
|
|
|
|
public class DeviceTreeModelDataInfo : IoTEntity
|
2025-05-12 15:14:19 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
[FIELDColumn]
|
|
|
|
|
|
public bool xfdsa { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|