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.

21 lines
531 B

using HybirdFrameworkCore.Autofac.Attribute;
namespace Service.Charger.Msg.Host.Req
{
/// <summary>
/// 3.3.7 监控平台远程停止充电
/// </summary>
public class RemoteStopCharging: ASDU
{
/// <summary>
///停止原因 0 正常停机 1 服务器发现桩异常,强制停机
/// </summary>
[Property(0, 8)]
public byte StopReason { get; set; }
public RemoteStopCharging(byte stopReason)
{
StopReason = stopReason;
}
}
}