23 lines
618 B
C#
23 lines
618 B
C#
namespace Yunda.SOMS.DataMonitoringServer.Service.DataAnalysis.Model
|
||
{
|
||
|
||
public struct YC_TYPE_New
|
||
{
|
||
public byte addr;//装置地址
|
||
public byte sector;//装置扇区
|
||
public ushort inf;//信息序号(编码地址)
|
||
public float val;//遥测值
|
||
public uint chgFlag;//值变化的标志(0未变化,1变化)
|
||
|
||
public DateTime time; //时间
|
||
}
|
||
public struct RECORDYXBURST_New
|
||
{
|
||
public byte dev_addr;
|
||
public byte dev_sector;
|
||
public uint dev_inf;
|
||
public byte yx_val;
|
||
public DateTime time; //时间
|
||
}
|
||
}
|