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_HOTWELDPARAMETER")] public class HotweldParameter : BaseEntity { /// /// /// [DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)] public string PID { get; set; } /// /// /// [DBColumn(ColumnName = "MID", DataType = DbType.String)] public string MID { get; set; } /// /// /// [DBColumn(ColumnName = "MAINCODE", DataType = DbType.String)] public string MAINCODE { 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; } /// ///0:表皮 ///1:骨架 ///3:气囊支架 ///4:开关支架 ///5:风道 ///6:HUD风道 ///7:格栅 ///8:中控支架 ///9:本体 /// [DBColumn(ColumnName = "PRODUCTTYPE", DataType = DbType.String)] public string PRODUCTTYPE { 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 = "CAMERARESULT", DataType = DbType.String)] public string CAMERARESULT { get; set; } /// /// /// [DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)] public DateTime CREATEDATE { get; set; } /// /// /// [DBColumn(ColumnName = "HEATINGTIME", DataType = DbType.Int32)] public int HEATINGTIME { get; set; } /// /// /// [DBColumn(ColumnName = "RESULT", DataType = DbType.String)] public string RESULT { get; set; } /// /// /// [DBColumn(ColumnName = "CHANGEOVERTIME", DataType = DbType.Int32)] public int CHANGEOVERTIME { get; set; } /// /// /// [DBColumn(ColumnName = "WELDINGTIME", DataType = DbType.Int32)] public int WELDINGTIME { get; set; } /// /// /// [DBColumn(ColumnName = "WELDINGDISTINCTVERT", DataType = DbType.Int32)] public int WELDINGDISTINCTVERT { get; set; } /// /// /// [DBColumn(ColumnName = "WELDINGDISTANCEAIRB", DataType = DbType.Int32)] public int WELDINGDISTANCEAIRB { get; set; } /// /// /// [DBColumn(ColumnName = "OPERATETIME", DataType = DbType.String)] public string OPERATETIME { get; set; } /// /// 错误信息 /// public string InfoError { get; set; } /// /// 导入时判断添加修改 /// public bool IsNewInfo { get; set; } } }