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:雷达 2:rfid 3:tbox 4:plc
/// </summary>
public int Device { get; set; }
/// 描述
public String desc { get; set; }
/// 数据
public String Data { get; set; }
/// 发生时间
public DateTime Time { get; set; }
/// 类型 1:发送 2:接受
/// /// </summary>
public int Type { get; set; }
}