using NPOI.SS.Formula.Functions; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.Core.Model { /// /// 获取发泡机最后一枪记录 /// [SugarTable("BOX_LASTSHOTRECORD", "AUCMA_SCADA")] public class BoxLastShotRecord { /// /// 主键 /// [SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)] public int ObjId { get; set; } /// /// 所属系统;1系统 2系统 /// [SugarColumn(ColumnName = "SYSTEM")] public string System { get; set; } /// /// 枪编号;A1枪,B1枪,A2枪,B2枪 /// [SugarColumn(ColumnName = "GUN_CODE")] public string GunCode { get; set; } /// /// 产线编号 /// [SugarColumn(ColumnName = "PRODUCT_LINE_CODE")] public string ProductLineCode { get; set; } /// /// 枪POL注料温度 /// [SugarColumn(ColumnName = "POL_TEMP")] public string PolTemp { get; set; } /// /// 枪POL注料压力 /// [SugarColumn(ColumnName = "POL_HP")] public string PolHp { get; set; } /// /// 枪POL注料流量 /// [SugarColumn(ColumnName = "POL_VOL")] public string PolVol { get; set; } /// /// 枪POL原料用量 /// [SugarColumn(ColumnName = "POL_USAGE")] public string PolUsage { get; set; } /// /// 枪ISO注料温度 /// [SugarColumn(ColumnName = "ISO_TEMP")] public string IsoTemp { get; set; } /// /// 枪ISO注料压力 /// [SugarColumn(ColumnName = "ISO_HP")] public string IsoHp { get; set; } /// ///枪ISO注料流量 /// [SugarColumn(ColumnName = "ISO_VOL")] public string IsoVol { get; set; } /// /// 枪ISO原料用量 /// [SugarColumn(ColumnName = "ISO_USAGE")] public string IsoUsage { get; set; } /// /// 枪注料工位号 /// [SugarColumn(ColumnName = "POUR_NU")] public string PourNu { get; set; } /// /// 枪设定注料时间 /// [SugarColumn(ColumnName = "SET_TIME")] public string SetTime { get; set; } /// /// 枪设定注料重量 /// [SugarColumn(ColumnName = "SET_WEIGHT")] public string SetWeight { get; set; } /// /// 枪设定注料比例 /// [SugarColumn(ColumnName = "SET_RATIO")] public string SetRatio { get; set; } /// /// 枪实际注料重量 /// [SugarColumn(ColumnName = "POUR_WEIGHT")] public string PourWeight { get; set; } /// /// 枪实际注料比例 /// [SugarColumn(ColumnName = "POUR_RATIO")] public string PourRatio { get; set; } /// /// 枪中压循环时间 /// [SugarColumn(ColumnName = "MP_TIME")] public string MpTime { get; set; } /// /// 枪高压循环时间 /// [SugarColumn(ColumnName = "HP_TIME")] public string HpTime { get; set; } /// /// 枪液压压力 /// [SugarColumn(ColumnName = "HYDR_PRESS")] public string HydrPress { get; set; } /// /// 枪液压温度 /// [SugarColumn(ColumnName = "HYDR_TEMP")] public string HydrTemp { get; set; } /// /// 枪开枪时间 /// [SugarColumn(ColumnName = "MIXPIST_ON")] public string MixpistOn { get; set; } /// /// 枪关枪时间 /// [SugarColumn(ColumnName = "MIXPIST_OFF")] public string MixpistOff { get; set; } /// /// 枪总产量 /// [SugarColumn(ColumnName = "TOTAL_YIELD")] public string TotalYield { get; set; } /// /// 枪注料结束信号 /// [SugarColumn(ColumnName = "POUR_END")] public string PourEnd { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATE_TIME")] public DateTime CreateTime { get; set; } } }