using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
///
/// 通讯参数设置
///
public class CommunicationParametersSetInput:BaseInput
{
///
/// 采集编码
///
public string ItemCode { get; set; }
///
/// 集中器ID
///
public string FocusID { get; set; }
///
/// 电表:1
///
public string MeterType { get; set; }
public CommunicationParametersSetDataInput Data { get; set; }
}
public class CommunicationParametersSetDataInput
{
///
/// 主站IP和端口 如 119.23.59.186:10976
///
public string MasterIPandPort { get; set; }
///
/// 备用IP和端口
///
public string BackupIPandPort { get; set; }
///
/// APN 如 CMNET
///
public string APN { get; set; }
}
}