You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
279 B
14 lines
279 B
namespace GPSBusiness.BBGPSStandard
|
|
{
|
|
/// <summary>
|
|
/// 事件报告
|
|
/// </summary>
|
|
public class Data_0301
|
|
{
|
|
public byte SetID;
|
|
public void FromBytes(Data_0301 model, byte[] buffer)
|
|
{
|
|
model.SetID = buffer[0];
|
|
}
|
|
}
|
|
}
|
|
|