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.

40 lines
877 B

using System;
using System.Collections.Generic;
namespace BatCharging.Model
{
public class ASDU
{
/// <summary>
/// 帧类型号
/// </summary>
public byte FrameTypeNo { get; set; }
/// <summary>
/// 信息体个数
/// </summary>
public byte MsgBodyCount { get; set; }
/// <summary>
/// 传送原因-3.1.3.2
/// </summary>
public UInt16 TransReason { get; set; }
/// <summary>
/// 公共地址
/// </summary>
public UInt16 PublicAddr { get; set; }
/// <summary>
/// 信息体地址-3个字节
/// </summary>
public byte[] MsgBodyAddr { get; set; }
/// <summary>
/// 信息体内容,数组数量152
/// </summary>
public byte[] MsgBodyContents { get; set; }
}
}