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>
|
2025-05-14 11:33:31 +08:00
|
|
|
|
/// 设备表型数据信息
|
2025-05-12 15:14:19 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
[SourceAnalyzers(EntityTypeEnum.TableModel)]
|
|
|
|
|
|
public class DeviceTreeModelDataInfo: IoTEntity
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
[FIELDColumn]
|
|
|
|
|
|
public bool xfdsa { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|