| 12345678910111213141516171819202122232425 |
- using Edge.Core.Parser.BinaryParser.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LanTian_Sinopec_PumpIcCardReader.MessageEntity.Outgoing
- {
- public class PumpNotifyTransactionDoneResponse : KaJiLianDongV11MessageTemplateBase
- {
- public PumpNotifyTransactionDoneResponse()
- {
- base.HANDLE = 0x32;
- }
- public enum ResultEnum
- {
- 正确 = 0,
- T_MAC_错 = 1,
- }
- [Format(1, EncodingType.BIN, 1)]
- public ResultEnum Result { get; set; }
- }
- }
|