| 1234567891011121314151617181920 |
- using Parser.BinaryParser.Attributes;
- namespace HengShan_Pump_NonIC.MessageEntity
- {
- /// <summary>
- /// 定量金额
- /// 接收命令: 0FFH+05H+0A9H+数量3+校验
- /// </summary>
- public class AuthPumpWithAmountRequest : NonICMessageTemplateBase
- {
- public AuthPumpWithAmountRequest()
- {
- base.CMD = 0xA9;
- }
- [Format(3, EncodingType.BCD, 1)]
- public int Amount { get; set; }
- }
- }
|