| 123456789101112131415161718192021222324252627 |
- using Edge.Core.Parser.BinaryParser.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using static ZhongSheng_NonIC_Pump.SetPumpConfigRequest;
- namespace ZhongSheng_NonIC_Pump
- {
- /// <summary>
- /// PC 读取参数信息字符串从加油机
- /// </summary>
- public class ReadPumpConfigResponse : MessageTemplateBase
- {
- [Format(1, EncodingType.BIN, 1)]
- public byte Parameter { get; set; }
- [Format(1, EncodingType.BIN, 2)]
- public ParameterTableTypeEnum 参数列表类型 { get; set; }
- [Format(1, EncodingType.BCD, 3)]
- public byte 枪数 { get; set; }
- [EnumerableFormat("%cascade", 4)]
- public List<NozzleConfig> NozzleConfigs { get; set; }
- }
- }
|