using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
///
/// 更新集中器在线记录
///
public class AddConrOnlineRecordInput
{
///
/// 区域编号
///
public string AreaCode { get; set; }
///
/// 区域地址
///
public string Address { get; set; }
///
/// 是否在线
///
public bool State { get; set; }
///
/// 在/离线时间
///
public DateTime LastTime { get; set; }
}
}