| 123456789101112131415161718192021 |
- 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 AckDisplayResponse : MessageTemplateBase
- {
- /// <summary>
- /// 参数为常数0x00
- /// </summary>
- [Format(1, EncodingType.BIN, 1)]
- public byte 参数 { get; set; }
- }
- }
|