| 12345678910111213141516171819202122 |
- 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实时信息, as one of response for GenericInquiryRequest
- /// 加油机空闲
- /// </summary>
- public class PumpInIdleResponse : MessageTemplateBase
- {
- /// <summary>
- /// 固定值,0x00
- /// </summary>
- [Format(1, EncodingType.BIN, 1)]
- public byte 参数 { get; set; }
- }
- }
|