28 lines
571 B
C#
28 lines
571 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.EnergySystem.Dto
|
|||
|
|
{
|
|||
|
|
public class BaseInput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 集中器区位码
|
|||
|
|
/// </summary>
|
|||
|
|
public string AreaCode { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 集中器地址
|
|||
|
|
/// </summary>
|
|||
|
|
public string Address { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 采集端端口号
|
|||
|
|
/// </summary>
|
|||
|
|
public string GatherCode { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|