You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
163 lines
4.0 KiB
163 lines
4.0 KiB
4 years ago
|
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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 作 用:红外焊接加工参数数据模型
|
||
|
/// 作 者:王丹丹
|
||
|
/// 编写日期:2015年06月8日
|
||
|
///</summary>
|
||
|
[DBTable(TableName = "T_AW_HOTWELDPARAMETER")]
|
||
|
public class HotweldParameter : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MID", DataType = DbType.String)]
|
||
|
public string MID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MAINCODE", DataType = DbType.String)]
|
||
|
public string MAINCODE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PDID", DataType = DbType.String)]
|
||
|
public string PDID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PRODUCTCODE", DataType = DbType.String)]
|
||
|
public string PRODUCTCODE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MOID", DataType = DbType.String)]
|
||
|
public string MOID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///0:表皮
|
||
|
///1:骨架
|
||
|
///3:气囊支架
|
||
|
///4:开关支架
|
||
|
///5:风道
|
||
|
///6:HUD风道
|
||
|
///7:格栅
|
||
|
///8:中控支架
|
||
|
///9:本体
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PRODUCTTYPE", DataType = DbType.String)]
|
||
|
public string PRODUCTTYPE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MACHINENAME", DataType = DbType.String)]
|
||
|
public string MACHINENAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MACHINECODDE", DataType = DbType.String)]
|
||
|
public string MACHINECODDE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CAMERARESULT", DataType = DbType.String)]
|
||
|
public string CAMERARESULT { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "HEATINGTIME", DataType = DbType.Int32)]
|
||
|
public int HEATINGTIME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "RESULT", DataType = DbType.String)]
|
||
|
public string RESULT { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "CHANGEOVERTIME", DataType = DbType.Int32)]
|
||
|
public int CHANGEOVERTIME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "WELDINGTIME", DataType = DbType.Int32)]
|
||
|
public int WELDINGTIME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "WELDINGDISTINCTVERT", DataType = DbType.Int32)]
|
||
|
public int WELDINGDISTINCTVERT { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "WELDINGDISTANCEAIRB", DataType = DbType.Int32)]
|
||
|
public int WELDINGDISTANCEAIRB { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "OPERATETIME", DataType = DbType.String)]
|
||
|
public string OPERATETIME { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 错误信息
|
||
|
/// </summary>
|
||
|
public string InfoError { get; set; }
|
||
|
/// <summary>
|
||
|
/// 导入时判断添加修改
|
||
|
/// </summary>
|
||
|
public bool IsNewInfo { get; set; }
|
||
|
}
|
||
|
}
|