You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace Service.Execute.Model;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 换电设备通讯日志
|
|
|
|
|
*/
|
|
|
|
|
public class SwapDeviceLog
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 1:雷达 2:rfid 3:tbox 4:plc
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Device { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 描述
|
|
|
|
|
/// </summary>
|
|
|
|
|
public String desc { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
public String Data { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发生时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime Time { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 类型 1:发送 2:接受
|
|
|
|
|
/// /// </summary>
|
|
|
|
|
public int Type { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|