123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using Edge.Core.Parser.BinaryParser.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HengshanPaymentTerminal.MessageEntity.Outgoing
- {
- public class CancelAuthResult : CardMessageBase
- {
- public CancelAuthResult() : base(Command.CancelAuthResult)
- {
- }
-
-
-
-
- [Format(10, EncodingType.BcdString, -89)]
- public string Asn { get; set; }
- [Format(4, EncodingType.BIN, -88)]
- public int PosTtc { get; set; }
- [Format(2, EncodingType.BIN, -87)]
- public ushort SeqNo { get; set; }
- [Format(2, EncodingType.BIN, -86)]
- public ushort FPCode { get; set; }
- [Format(1, EncodingType.BIN, -85)]
- public byte Result { get; set; }
-
-
-
-
- [Format(1, EncodingType.BIN, -84)]
- public byte AdditionalInfoLength { get; set; }
-
-
-
-
- [EnumerableFormat("AdditionalInfoLength", 1)]
- public string AdditionalInfo { get; set; }
- }
- }
|