35 lines
757 B
C#
35 lines
757 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 ReadMeterNumInput:BaseInput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 采集编码
|
|||
|
|
/// </summary>
|
|||
|
|
public string ItemCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 集中器地址
|
|||
|
|
/// </summary>
|
|||
|
|
public string FocusID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 电表:1
|
|||
|
|
/// </summary>
|
|||
|
|
public string MeterType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 计量点号 如"1,2,3,4"
|
|||
|
|
/// </summary>
|
|||
|
|
public string Data { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|