using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.EnergySystem.Dto { /// /// 校准电表时间 /// public class AdjustMeterTimingInput:BaseInput { /// /// 波特率 /// public int BaudRate { get; set; } /// /// 端口号 /// public int Port { get; set; } /// /// 电表地址 /// public string MeterAddress { get; set; } /// /// 电表密码 /// public string Password { get; set; } } }