GetTransactionFailureResponse.cs 585 B

123456789101112131415161718192021222324
  1. using Parser.BinaryParser.Attributes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HengShan_Pump_NonIC.MessageEntity
  8. {
  9. /// <summary>
  10. /// 0FFH+02H+0BBH+校验;0BBH:表示无该流水
  11. /// </summary>
  12. public class GetTransactionFailureResponse : NonICMessageTemplateBase
  13. {
  14. public GetTransactionFailureResponse()
  15. {
  16. //CMD = 0xAB;
  17. //result = 0xBB;
  18. }
  19. [Format(1,EncodingType.BIN, 1)]
  20. public int result { get; set; }
  21. }
  22. }