PumpNotifyTransactionDoneResponse.cs 655 B

12345678910111213141516171819202122232425
  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 PumpNotifyTransactionDoneResponse : KaJiLianDongV11MessageTemplateBase
  9. {
  10. public PumpNotifyTransactionDoneResponse()
  11. {
  12. base.HANDLE = 0x32;
  13. }
  14. public enum PumpNotifyTransactionDoneResponseResult
  15. {
  16. 正确 = 0,
  17. T_MAC_错 = 1,
  18. }
  19. [Format(1, EncodingType.BIN, 1)]
  20. public PumpNotifyTransactionDoneResponseResult Result { get; set; }
  21. }
  22. }