1234567891011121314151617181920212223242526272829 |
- using Dfs.WayneChina.HengshanTerminalWrapper.MessageEntity.Base;
- using Edge.Core.Parser.BinaryParser.Attributes;
- namespace Dfs.WayneChina.HengshanTerminalWrapper.MessageEntity.Outgoing
- {
- /// <summary>
- /// Request: 0FFH+02H+0AAH+校验
- /// Response:0FFH+03H+0AAH+55H+校验
- /// </summary>
- public class UnAuthorizePumpResponse : NonCardDispenserMessageTemplateBase
- {
- public UnAuthorizePumpResponse()
- {
- CMD = 0xAA;
- }
- [Format(1, EncodingType.BIN, 3)]
- public int result { get; set; }
- public Result EnumResult
- {
- get { return result == 0x55 ? Result.成功 : Result.失败; }
- set
- {
- result = (value == Result.成功) ? 0x55 : 0xAA;
- }
- }
- }
- }
|