can修改
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
private int _报文ID;
|
||||
private double _时间戳;
|
||||
private byte _长度;
|
||||
private string _数据;
|
||||
|
||||
|
||||
// 通道属性
|
||||
@@ -37,6 +38,13 @@
|
||||
set { SetProperty(ref _长度, value); }
|
||||
}
|
||||
|
||||
// 数据属性(原始报文字节十六进制字符串,如 [0x00, 0x01, ...])
|
||||
public string 数据
|
||||
{
|
||||
get { return _数据; }
|
||||
set { SetProperty(ref _数据, value); }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user