1234567891011121314151617181920212223242526272829 |
- using Edge.Core.Parser.BinaryParser.Attributes;
- using Edge.Core.Parser.BinaryParser.Util;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LanTian_Pump_664_Or_886.MessageEntity.Incoming
- {
- public class ReadPriceResponse : MessageBase
- {
- /// <summary>
- /// Without decimal points
- /// </summary>
- public int Price
- {
- get
- {
- return base.BodyAndXRL.Take(base.BodyAndXRL.Count - 2).GetBCD();
- }
- }
- public override string ToLogString()
- {
- return this.GetType().Name + base.ToLogString();
- }
- }
- }
|