| 123456789101112131415161718192021222324252627 |
- 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 发送参数信息字符串给油机
- /// </summary>
- public class AckSetPumpConfigResponse : MessageTemplateBase
- {
- /// <summary>
- /// 固定值0x01
- /// </summary>
- [Format(1, EncodingType.BIN, 1)]
- public byte 参数 { get; set; }
- /// <summary>
- /// 参数状态为0x00表示设置成功,其他表示失败
- /// </summary>
- [Format(1, EncodingType.BIN, 2)]
- public byte 状态 { get; set; }
- }
- }
|