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