using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace HighWayIot.Repository.domain { /// /// 设备信息 /// [SugarTable("base_deviceInfo")] public class BaseDeviceinfo { /// /// 主键标识 /// [SugarColumn(ColumnName="objId" ,IsPrimaryKey = true ,IsIdentity = true )] public int ObjId { get; set; } /// /// 机台编号 /// [SugarColumn(ColumnName="process_Id" )] public int? ProcessId { get; set; } /// /// 位置编号 /// [SugarColumn(ColumnName="position_Id" )] public int? PositionId { get; set; } /// /// 设备编号 /// [SugarColumn(ColumnName="device_Id" )] public int? DeviceId { get; set; } /// /// 设备名称 /// [SugarColumn(ColumnName="device_Name" )] public string DeviceName { get; set; } /// /// 设备 IP /// [SugarColumn(ColumnName="device_Ip" )] public string DeviceIp { get; set; } /// /// 设备端口 /// [SugarColumn(ColumnName="device_Port" )] public int? DevicePort { get; set; } /// /// 设备天线 /// [SugarColumn(ColumnName="device_Ant" )] public int? DeviceAnt { get; set; } /// /// 设备类型 /// [SugarColumn(ColumnName="device_Type" )] public string DeviceType { get; set; } } }