2024-08-21 16:50:14 +08:00

23 lines
618 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; //时间
}
}