using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
///
/// 读取表号
///
public class ReadMeterNumInput:BaseInput
{
///
/// 采集编码
///
public string ItemCode { get; set; }
///
/// 集中器地址
///
public string FocusID { get; set; }
///
/// 电表:1
///
public string MeterType { get; set; }
///
/// 计量点号 如"1,2,3,4"
///
public string Data { get; set; }
}
}