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.

28 lines
648 B

using System;
namespace BatCharging.Model
{
public class APCI
{
/// <summary>
/// 开始字符
/// </summary>
public byte StartChar { get; set; }
/// <summary>
/// 报文长度
/// </summary>
public UInt16 PackLen { get; set; }
/// <summary>
/// 控制域
/// </summary>
public UInt32 CtlArea { get; set; }
/// <summary>
/// 目标地址
/// </summary>
public byte[] DestAddr { get; set; }
/// <summary>
/// 源地址
/// </summary>
public UInt32 SrcAddr { get; set; }
}
}