using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.Entity;
using QMFrameWork.Data.Attributes;
using System.Data;
namespace QMAPP.FJC.Entity.ProcessParameter
{
///
/// 作 用:预热操作加工参数数据模型
/// 作 者:王丹丹
/// 编写日期:2015年06月8日
///
[DBTable(TableName = "T_AW_PREHEATPARAMETER")]
public class PreheatParameter : BaseEntity
{
///
///预热操作加工参数
///
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
public string PID { get; set; }
///
///零件信息主键
///
[DBColumn(ColumnName = "PDID", DataType = DbType.String)]
public string PDID { get; set; }
///
///零件条码
///
[DBColumn(ColumnName = "PRODUCTCODE", DataType = DbType.String)]
public string PRODUCTCODE { get; set; }
///
///加工记录主键
///
[DBColumn(ColumnName = "MOID", DataType = DbType.String)]
public string MOID { get; set; }
///
/// 零件类别
///
[DBColumn(ColumnName = "PRODUCTTYPE", DataType = DbType.String)]
public string PRODUCTTYPE { get; set; }
///
///温度
///
[DBColumn(ColumnName = "TEMPRATURE", DataType = DbType.Decimal)]
public decimal TEMPRATURE { get; set; }
///
///设备名称
///
[DBColumn(ColumnName = "MACHINENAME", DataType = DbType.String)]
public string MACHINENAME { get; set; }
///
///设备编码
///
[DBColumn(ColumnName = "MACHINECODDE", DataType = DbType.String)]
public string MACHINECODDE { get; set; }
///
///操作时间
///
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
public DateTime CREATEDATE { get; set; }
///
/// 错误信息
///
public string InfoError { get; set; }
///
/// 导入时判断添加修改
///
public bool IsNewInfo { get; set; }
}
}