2025-04-17 20:28:50 +08:00

35 lines
758 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 AddConrOnlineRecordInput
{
/// <summary>
/// 区域编号
/// </summary>
public string AreaCode { get; set; }
/// <summary>
/// 区域地址
/// </summary>
public string Address { get; set; }
/// <summary>
/// 是否在线
/// </summary>
public bool State { get; set; }
/// <summary>
/// 在/离线时间
/// </summary>
public DateTime LastTime { get; set; }
}
}