using Edge.Core.Parser.BinaryParser.Attributes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZhongSheng_NonIC_Pump { /// /// PC 发送开机命令给油机(在油机“授权加油模式”时使用) /// Request.FrameSeqNo. 与 Response.FrameSeqNo. 没有关系。 /// public class AckStartPumpResponse : MessageTemplateBase { /// /// 参数为0x00表示提枪成功; /// 参数为其他数表示提枪失败,内容为错误码; /// [Format(1, EncodingType.BIN, 1)] public byte 参数 { get; set; } } }