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