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 float ObjId { get; set; }
///
/// 所属系统;1系统 2系统
///
[SugarColumn(ColumnName = "SYSTEM")]
public string System { 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 = "LAST_TIME")]
public DateTime LastTime { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATETIME")]
public DateTime Createtime { get; set; }
}
}