using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.Core.Model { /// /// 夹具实时数据 /// [SugarTable("BOX_FOAMDATAREALTIME", "AUCMA_SCADA")] public class BoxFoamDataRealTime { /// /// 主键 /// [SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)] public int ObjId { get; set; } /// /// 夹具序号 /// [SugarColumn(ColumnName = "SERIALNUMBER")] public int SerialNumber { get; set; } /// /// 产线编码 /// [SugarColumn(ColumnName = "PRODUCTLINE_CODE")] public string ProductlineCode { get; set; } /// /// 夹具箱型 /// [SugarColumn(ColumnName = "FIXTURE_BOXTYPE")] public string FixtureBoxtype { get; set; } /// /// 夹具状态 /// [SugarColumn(ColumnName = "FIXTURE_STATUS")] public string FixtureStatus { get; set; } /// /// 夹具产量 /// [SugarColumn(ColumnName = "FIXTURE_PRODUCTIONCAPACITY")] public int FixtureProductioncapacity { get; set; } /// /// 夹具固化时间设定值 /// [SugarColumn(ColumnName = "FIXTURE_CURINGTIMESETTINGVALUE")] public string FixtureCuringtimesettingvalue { get; set; } /// /// 夹具固化时间显示值 /// [SugarColumn(ColumnName = "FIXTURE_ACTUALTIME")] public string FixtureActualtime { get; set; } /// /// 模具内温度 /// [SugarColumn(ColumnName = "MODE_INTERNALTEMPERATURE")] public string ModeInternaltemperature { get; set; } /// /// 模具外温度 /// [SugarColumn(ColumnName = "MODE_OUTSIDETEMPERATURE")] public string ModeOutsidetemperature { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATED_TIME")] public DateTime CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "UPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "UPDATED_TIME")] public DateTime UpdatedTime { get; set; } } }