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("BOX_FOAMDATA", "AUCMA_SCADA")]
public class BoxFoamData
{
///
/// 主键标识
///
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true)]
public int ObjId { get; set; }
///
/// 夹具类型
///
[SugarColumn(ColumnName = "BOX_FIXTURETYPE")]
public string BoxFixturetype { get; set; }
///
/// 夹具状态;1正常生产、0暂停生产
///
[SugarColumn(ColumnName = "BOX_FIXTURESTATUS")]
public int BoxFixturestatus { get; set; }
///
/// 夹具产量
///
[SugarColumn(ColumnName = "BOX_FIXTUREPRODUCTION")]
public int BoxFixtureproduction { get; set; }
///
/// 侧板温度
///
[SugarColumn(ColumnName = "BOX_FIXTURESIDEPLATE")]
public string BoxFixturesideplate { get; set; }
///
/// 内模温度
///
[SugarColumn(ColumnName = "BOX_CLOSEBETATEMPERATURE")]
public string BoxClosebetatemperature { get; set; }
///
/// 节拍
///
[SugarColumn(ColumnName = "BOX_BEAT")]
public int BoxBeat { get; set; }
///
///发泡量
///
[SugarColumn(ColumnName = "BOX_BEAT")]
public int FoamVolume { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATETIME")]
public DateTime Createtime { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATETIME")]
public DateTime UpdateTime { get; set; }
}
}