28 lines
571 B
C#
Raw Normal View History

2024-12-25 16:25:16 +08:00
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; }
}
}