using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.DB.Models; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models { [SugarTable("EquipmentStatus", "设备运行状态表")] public class EquipmentStatus : BaseEntity { /// /// 站台ID /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "ID")] public int Equipment_id { get; set; } /// /// 设备编号 /// [SugarColumn(Length = 50, ColumnDescription = "设备编号")] public string Equipment_Number { get; set; } /// /// 设备名称 /// [SugarColumn(Length = 50, ColumnDescription = "设备名称")] public string Equipment_name { get; set; } /// /// 设备状态(0--正常,1--故障,2--维修中) /// [SugarColumn( ColumnDescription = "设备状态")] public int Equipment_Status { get; set; } /// /// 设备类型(1--堆垛机,2--RGV,3---站台) /// [SugarColumn(ColumnDescription = "设备类型")] public int Equipment_type { get; set; } /// /// 备注 /// [SugarColumn( Length = 50, ColumnDescription = "备注", IsNullable = true)] public string Station_remark { get; set; } } }