43 lines
1.0 KiB
C#
43 lines
1.0 KiB
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 AddFocusLogInput
|
||
{
|
||
/// <summary>
|
||
/// 集中器编号
|
||
/// </summary>
|
||
public string Address { get; set; }
|
||
|
||
/// <summary>
|
||
/// 采集主站
|
||
/// </summary>
|
||
public string GatherServerId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 间隔时间 (DateTime.Now.Minute - LogTime.Minute)
|
||
/// </summary>
|
||
public string IntervalTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 离/在线发生时间
|
||
/// </summary>
|
||
public DateTime LogTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// HeartBeat 终端心跳;SignIn 终端登录;SignOut 终端登出
|
||
/// </summary>
|
||
public string LogType { get; set; }
|
||
|
||
|
||
public string Remark { get; set; }
|
||
}
|
||
}
|