You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
namespace HighWayIot.Repository.domain
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备信息
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("base_deviceInfo")]
|
|
|
|
|
public class BaseDeviceinfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键标识
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="objId" ,IsPrimaryKey = true ,IsIdentity = true )]
|
|
|
|
|
public int ObjId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 机台编号
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="process_Id" )]
|
|
|
|
|
public int? ProcessId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 位置编号
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="position_Id" )]
|
|
|
|
|
public int? PositionId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备编号
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="device_Id" )]
|
|
|
|
|
public int? DeviceId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备名称
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="device_Name" )]
|
|
|
|
|
public string DeviceName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备 IP
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="device_Ip" )]
|
|
|
|
|
public string DeviceIp { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备端口
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="device_Port" )]
|
|
|
|
|
public int? DevicePort { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备天线
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="device_Ant" )]
|
|
|
|
|
public int? DeviceAnt { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 设备类型
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="device_Type" )]
|
|
|
|
|
public string DeviceType { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|