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.
31 lines
651 B
31 lines
651 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
public class OfflineStopCharging : ASDU
|
|
{
|
|
/// <summary>
|
|
///应答结果
|
|
/// </summary>
|
|
public byte Result { get; set; }
|
|
|
|
/// <summary>
|
|
/// 保留
|
|
/// </summary>
|
|
public UInt16 Remark { get; set; }
|
|
|
|
public OfflineStopCharging(byte result, UInt16 remark)
|
|
{
|
|
this.Result = result;
|
|
this.Remark = remark;
|
|
|
|
this.FrameTypeNo = 45;
|
|
//this.SetReason(4);
|
|
this.MsgBodyCount = 1;
|
|
//this.RecordType = 43;
|
|
}
|
|
|
|
|
|
}
|
|
} |