PumpRaiseInternalErrorResponse.cs 585 B

1234567891011121314151617181920
  1. using Edge.Core.Parser.BinaryParser.Attributes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace FuRen_Sinopec_IcCardReader.MessageEntity.Outgoing
  7. {
  8. public class PumpRaiseInternalErrorResponse : KaJiLianDongV11MessageTemplateBase
  9. {
  10. [Format(1, EncodingType.BIN, 1)]
  11. public byte COMMAND_通讯的命令字 { get; set; }
  12. /// <summary>
  13. /// b0= 0:接受无误/1:通讯错
  14. /// </summary>
  15. [Format(1, EncodingType.BIN, 2)]
  16. public byte FLAG_成功标志 { get; set; }
  17. }
  18. }