| 123456789101112131415161718192021222324 |
- using Parser.BinaryParser.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HengShan_Pump_NonIC.MessageEntity
- {
- /// <summary>
- /// 0FFH+02H+0BBH+校验;0BBH:表示无该流水
- /// </summary>
- public class GetTransactionFailureResponse : NonICMessageTemplateBase
- {
- public GetTransactionFailureResponse()
- {
- //CMD = 0xAB;
- //result = 0xBB;
- }
- [Format(1,EncodingType.BIN, 1)]
- public int result { get; set; }
- }
- }
|