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