using MaterialTraceability.Rfid; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MaterialTraceability.Entity.DAO { /// /// 设备信息 /// [Serializable] [SugarTable("Pro_Equip")] public partial class ProEquip { [SugarColumn(ColumnName = "EquipID", IsPrimaryKey = true, IsIdentity = true)] public int equipId { get; set; } [SugarColumn(ColumnName = "EquipName")] public string equipName { get; set; } [SugarColumn(ColumnName = "MachineId")] public int machineId { get; set; } [SugarColumn(ColumnName = "EquipIP")] public string equipIp { get; set; } [SugarColumn(ColumnName = "EquipPort")] public string equipPort { get; set; } public string equipAnt { get; set; } [SugarColumn(ColumnName = "PositionID")] public int positionId { get; set; } [SugarColumn(ColumnName = "EquipType")] public string equipType { get; set; } [SugarColumn(ColumnName = "PLCAdress")] public string plcAddress { get; set; } [SugarColumn(IsIgnore = true)] public bool IsConnect { get; set; } public IDeviceAdapter DeviceAdapter; } }