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; }
///
/// 夹具类型
///
[SugarColumn(ColumnName = "BOXFIXTURETYPE")]
public string BoxFixtureType { get; set; }
///
/// 所属系统;1系统 2系统
///
[SugarColumn(ColumnName = "SYSTEM")]
public string System { get; set; }
///
/// 枪头
///
[SugarColumn(ColumnName = "GUNHEAD")]
public string GunHead { get; set; }
///
/// 工位号
///
[SugarColumn(ColumnName = "STATIONNUMBER")]
public string StationNumber { get; set; }
///
/// POL注料压力
///
[SugarColumn(ColumnName = "POL_INJECTIONPRESSURE")]
public string PolInjectionpressure { get; set; }
///
/// ISO注料压力
///
[SugarColumn(ColumnName = "ISO_INJECTIONPRESSURE")]
public string IsoInjectionpressure { get; set; }
///
/// POL注料温度
///
[SugarColumn(ColumnName = "POL_INJECTIONTEMPERATURE")]
public string PolInjectiontemperature { get; set; }
///
/// ISO注料温度
///
[SugarColumn(ColumnName = "ISO_INJECTIONTEMPERATURE")]
public string IsoInjectiontemperature { get; set; }
///
/// 中压循环时间
///
[SugarColumn(ColumnName = "MEDIUMPRESSURECYCLETIME")]
public string MediumPressureCycleTime { get; set; }
///
/// 高压循环时间
///
[SugarColumn(ColumnName = "HIGHPRESSURECYCLETIME")]
public string HighPressureCycleTime { get; set; }
///
/// 设定注料重量
///
[SugarColumn(ColumnName = "SETINJECTIONWEIGHT")]
public string SetInjectionWeight { get; set; }
///
/// 设定注料料比
///
[SugarColumn(ColumnName = "INJECTIONMATERIALRATIO")]
public string InjectionMaterialRatio { get; set; }
///
/// 实际注料重量
///
[SugarColumn(ColumnName = "ACTUALINJECTIONWEIGHT")]
public string ActualInjectionWeight { get; set; }
///
/// 实际注料料比
///
[SugarColumn(ColumnName = "ACTUALINJECTIONMATERIALRATIO")]
public string ActualInjectionMaterialRatio { get; set; }
///
/// 枪头POL注料压力
///
[SugarColumn(ColumnName = "INJECPRESSUREOFPOLGUNHEAD")]
public string InjecPressureOfPOLGunHead { get; set; }
///
/// 枪头ISO注料压力
///
[SugarColumn(ColumnName = "INJECPRESSUREOFISOGUNHEAD")]
public string InjecPressureOfISOGunHead { get; set; }
///
/// 枪头POL注料温度
///
[SugarColumn(ColumnName = "POLINJECTEMPERATUREOFGUNHEAD")]
public string POLInjecTemperatureOfGunHead { get; set; }
///
/// 枪头ISO注料温度
///
[SugarColumn(ColumnName = "ISOINJECTEMPERATUREOFGUNHEAD")]
public string ISOInjecTemperatureOfGunHead { get; set; }
///
/// POL注料流量
///
[SugarColumn(ColumnName = "POLINJECFLOWRATE")]
public string POLInjecFlowRate { get; set; }
///
/// ISO注料流量
///
[SugarColumn(ColumnName = "ISOINJECFLOWRATE")]
public string ISOInjecFlowRate { get; set; }
///
/// 液压压力
///
[SugarColumn(ColumnName = "HYDRAULICPRESSURE")]
public string HydraulicPressure { get; set; }
///
/// 液压温度
///
[SugarColumn(ColumnName = "HYDRAULICTEMPERATURE")]
public string HydraulicTemperature { get; set; }
///
/// 小活塞开枪时间
///
[SugarColumn(ColumnName = "SMALLPISTONFIRINGTIME")]
public string SmallPistonFiringTime { get; set; }
///
/// 小活塞关枪时间
///
[SugarColumn(ColumnName = "SMALLPISTONGUNSHUTDOWNTIME")]
public string SmallPistonGunShutdownTime { get; set; }
///
/// 注料状态
///
[SugarColumn(ColumnName = "INJECTIONSTATUS")]
public DateTime InjectionStatus { get; set; }
///
/// 最后一次时间
///
[SugarColumn(ColumnName = "LAST_TIME")]
public DateTime LastTime { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATETIME")]
public DateTime Createtime { get; set; }
}
}