| 1234567891011121314151617181920212223 |
- 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
- {
- /// <summary>
- /// PC 发送开机命令给油机(在油机“授权加油模式”时使用)
- /// Request.FrameSeqNo. 与 Response.FrameSeqNo. 没有关系。
- /// </summary>
- public class AckStartPumpResponse : MessageTemplateBase
- {
- /// <summary>
- /// 参数为0x00表示提枪成功;
- /// 参数为其他数表示提枪失败,内容为错误码;
- /// </summary>
- [Format(1, EncodingType.BIN, 1)]
- public byte 参数 { get; set; }
- }
- }
|