using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
///
/// 电表档案一键匹配输入
///
public class AmmeterArchivesMatchInput
{
public string AreaCode { get; set; }
public string Address { get; set; }
public string GatherCode { get; set; }
public AmmeterArchivesMatchDetailsInput Details { get; set; }
}
public class AmmeterArchivesMatchDetailsInput
{
public List Data { get; set; }
}
public class AmmeterArchivesMatchDetailsDataInput
{
///
/// 波特率
///
public int BaudRate { get; set; }
///
/// 端口号
///
public int Port { get; set; }
///
/// 电表地址
///
public string MeterAddress { get; set; }
}
}