using Edge.Core.Parser.BinaryParser.Attributes; using System; using System.Collections.Generic; using System.Text; namespace Censtar_31064V105OrV106_Pump.MessageEntity.Outgoing { /// /// 送无员工上班时是否允许加油机加油标志 /// public class SetAllowFuelingOrNotWhenOffDutyRequest : MessageBase { public enum AllowModeEnum { 允许加油 = 0xAA, 不允许加油 = 0x55, } /// /// /// [Format(1, EncodingType.BIN, 0)] public AllowModeEnum AllowMode { get; set; } public SetAllowFuelingOrNotWhenOffDutyRequest(AllowModeEnum allowMode) { base.Cmd = 0x33; this.AllowMode = allowMode; } } }