using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model.Model_New
{
///
/// 箱体发泡夹具完工数据
///
[SugarTable("RECORD_BOXFOAM_FIXTURECOMPLATE", "AUCMA_SCADA")]
public class RecordBoxFoamFixtureComplate
{
///
/// 主键标识
///
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_RECORD_BOXFOAM_FIXTURECOMPLATE")]
public decimal ObjId { get; set; }
///
/// 产线编号
///
[SugarColumn(ColumnName = "PRODUCTION_LINE")]
public string ProductionLine { get; set; }
///
/// 工位编号
///
[SugarColumn(ColumnName = "STATION_CODE")]
public string StationCode { get; set; }
///
/// 夹具编号
///
[SugarColumn(ColumnName = "FIXTURE_CODE")]
public int FixtureCode { get; set; }
///
/// 夹具箱型
///
[SugarColumn(ColumnName = "FIXTURE_BOXTYPE")]
public string FixtureBoxType { get; set; }
///
/// 夹具状态
///
[SugarColumn(ColumnName = "FIXTURE_STATUS")]
public int FixtureStatus { get; set; }
///
/// 夹具产量
///
[SugarColumn(ColumnName = "FIXTURE_OUTPUT")]
public int FixtureOutPut { get; set; }
///
/// 实际产量
///
[SugarColumn(ColumnName = "REAL_OUTPUT")]
public int RealOutPut { get; set; }
///
/// 固化实际设定值
///
[SugarColumn(ColumnName = "PLANCURINGTIME")]
public decimal PlanCuringTime { get; set; }
///
/// 固化时间实际值
///
[SugarColumn(ColumnName = "REALCUTINGTIME")]
public decimal RealCuringTime { get; set; }
///
/// 记录时间
///
[SugarColumn(ColumnName = "RECORDTIME")]
public DateTime RecordTime { get; set; }
}
}