using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.EnergySystem.Dto { public class BaseInput { /// /// 集中器区位码 /// public string AreaCode { get; set; } /// /// 集中器地址 /// public string Address { get; set; } /// /// 采集端端口号 /// public string GatherCode { get; set; } } }