| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Censtar_31064V105OrV106_Pump.MessageEntity.Outgoing
- {
- public class ChangePriceRequest : MessageBase
- {
- /// <summary>
- ///
- /// </summary>
- /// <param name="price">without decimal points, should >=0 and <=999999</param>
- public ChangePriceRequest(int price)
- {
- if (price < 0 || price > 999999)
- throw new ArgumentOutOfRangeException("price should >=0 and <=999999");
- base.Cmd = 0x03;
- }
- }
- }
|