can修改

This commit is contained in:
2026-09-12 20:31:45 +08:00
parent 4acb4d8d13
commit c4fc2d80fd
4 changed files with 689 additions and 5 deletions
+8
View File
@@ -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); }
}
}
}