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.
170 lines
5.7 KiB
C#
170 lines
5.7 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 获取发泡机最后一枪记录
|
|
/// </summary>
|
|
[SugarTable("BOX_LASTSHOTRECORD", "AUCMA_SCADA")]
|
|
public class BoxLastShotRecord
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsIdentity = true, IsPrimaryKey = true)]
|
|
public int ObjId { get; set; }
|
|
/// <summary>
|
|
/// 夹具类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BOXFIXTURETYPE")]
|
|
public string BoxFixtureType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属系统;1系统 2系统
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SYSTEM")]
|
|
public string System { get; set; }
|
|
/// <summary>
|
|
/// 枪头
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "GUNHEAD")]
|
|
public string GunHead { get; set; }
|
|
/// <summary>
|
|
/// 工位号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "STATIONNUMBER")]
|
|
public string StationNumber { get; set; }
|
|
/// <summary>
|
|
/// POL注料压力
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "POL_INJECTIONPRESSURE")]
|
|
public string PolInjectionpressure { get; set; }
|
|
|
|
/// <summary>
|
|
/// ISO注料压力
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ISO_INJECTIONPRESSURE")]
|
|
public string IsoInjectionpressure { get; set; }
|
|
|
|
/// <summary>
|
|
/// POL注料温度
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "POL_INJECTIONTEMPERATURE")]
|
|
public string PolInjectiontemperature { get; set; }
|
|
|
|
/// <summary>
|
|
/// ISO注料温度
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ISO_INJECTIONTEMPERATURE")]
|
|
public string IsoInjectiontemperature { get; set; }
|
|
/// <summary>
|
|
/// 中压循环时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MEDIUMPRESSURECYCLETIME")]
|
|
public string MediumPressureCycleTime { get; set; }
|
|
/// <summary>
|
|
/// 高压循环时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "HIGHPRESSURECYCLETIME")]
|
|
public string HighPressureCycleTime { get; set; }
|
|
/// <summary>
|
|
/// 设定注料重量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SETINJECTIONWEIGHT")]
|
|
public string SetInjectionWeight { get; set; }
|
|
/// <summary>
|
|
/// 设定注料料比
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "INJECTIONMATERIALRATIO")]
|
|
public string InjectionMaterialRatio { get; set; }
|
|
/// <summary>
|
|
/// 实际注料重量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ACTUALINJECTIONWEIGHT")]
|
|
public string ActualInjectionWeight { get; set; }
|
|
/// <summary>
|
|
/// 实际注料料比
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ACTUALINJECTIONMATERIALRATIO")]
|
|
public string ActualInjectionMaterialRatio { get; set; }
|
|
/// <summary>
|
|
/// 枪头POL注料压力
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "INJECPRESSUREOFPOLGUNHEAD")]
|
|
public string InjecPressureOfPOLGunHead { get; set; }
|
|
/// <summary>
|
|
/// 枪头ISO注料压力
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "INJECPRESSUREOFISOGUNHEAD")]
|
|
public string InjecPressureOfISOGunHead { get; set; }
|
|
/// <summary>
|
|
/// 枪头POL注料温度
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "POLINJECTEMPERATUREOFGUNHEAD")]
|
|
public string POLInjecTemperatureOfGunHead { get; set; }
|
|
/// <summary>
|
|
/// 枪头ISO注料温度
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ISOINJECTEMPERATUREOFGUNHEAD")]
|
|
public string ISOInjecTemperatureOfGunHead { get; set; }
|
|
/// <summary>
|
|
/// POL注料流量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "POLINJECFLOWRATE")]
|
|
public string POLInjecFlowRate { get; set; }
|
|
/// <summary>
|
|
/// ISO注料流量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ISOINJECFLOWRATE")]
|
|
public string ISOInjecFlowRate { get; set; }
|
|
/// <summary>
|
|
/// 液压压力
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "HYDRAULICPRESSURE")]
|
|
public string HydraulicPressure { get; set; }
|
|
/// <summary>
|
|
/// 液压温度
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "HYDRAULICTEMPERATURE")]
|
|
public string HydraulicTemperature { get; set; }
|
|
/// <summary>
|
|
/// 小活塞开枪时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SMALLPISTONFIRINGTIME")]
|
|
public string SmallPistonFiringTime { get; set; }
|
|
/// <summary>
|
|
/// 小活塞关枪时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SMALLPISTONGUNSHUTDOWNTIME")]
|
|
public string SmallPistonGunShutdownTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 注料状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "INJECTIONSTATUS")]
|
|
public string InjectionStatus { get; set; }
|
|
/// <summary>
|
|
/// 最后一次时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "LAST_TIME")]
|
|
public DateTime LastTime { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CREATETIME")]
|
|
public DateTime Createtime { get; set; }
|
|
/// <summary>
|
|
/// 产线
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PRODUCT_LINE_CODE")]
|
|
public string ProductLineCode { get; set; }
|
|
|
|
}
|
|
}
|