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.

53 lines
1.3 KiB
C#

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
{
/// <summary>
/// 设备信息
/// </summary>
[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;
}
}