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.

39 lines
640 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace Service.Execute.Model;
/**
* 换电设备通讯日志
*/
public class SwapDeviceLog
{
/// <summary>
/// 1雷达 2rfid 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; }
}