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.
139 lines
4.5 KiB
139 lines
4.5 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_INJECTIONPARAMETER")]
|
||
|
public class InJectionParameter : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///注塑操作加工参数记录主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { 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>
|
||
|
/// 零件类别
|
||
|
///</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 = "CREATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime CREATEDATE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///加工时间
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "OPERATEDATE", DataType = DbType.DateTime)]
|
||
|
public DateTime OPERATEDATE { get; set; }
|
||
|
|
||
|
|
||
|
[DBColumn(ColumnName = "IpAddr", DataType = DbType.String)]
|
||
|
public string IpAddr { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "CycleTime", DataType = DbType.String)]
|
||
|
public string CycleTime { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "MoldOpenTime", DataType = DbType.String)]
|
||
|
public string MoldOpenTime { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "MoldCloseTime", DataType = DbType.String)]
|
||
|
public string MoldCloseTime { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "InjHoldTime", DataType = DbType.String)]
|
||
|
public string InjHoldTime { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "ChargeTime", DataType = DbType.String)]
|
||
|
public string ChargeTime { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "InjSwitchTime", DataType = DbType.String)]
|
||
|
public string InjSwitchTime { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "MoldProTime", DataType = DbType.String)]
|
||
|
public string MoldProTime { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "InjectStartPos", DataType = DbType.String)]
|
||
|
public string InjectStartPos { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "HoldEndPos", DataType = DbType.String)]
|
||
|
public string HoldEndPos { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "ChargeEndPos", DataType = DbType.String)]
|
||
|
public string ChargeEndPos { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "MoldOpenEndPos", DataType = DbType.String)]
|
||
|
public string MoldOpenEndPos { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "ChargeMaxRPM", DataType = DbType.String)]
|
||
|
public string ChargeMaxRPM { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "InjectMaxSP", DataType = DbType.String)]
|
||
|
public string InjectMaxSP { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "InjectMaxPressure", DataType = DbType.String)]
|
||
|
public string InjectMaxPressure { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "InjectEPos", DataType = DbType.String)]
|
||
|
public string InjectEPos { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "HoldPresSPos", DataType = DbType.String)]
|
||
|
public string HoldPresSPos { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "CutOffPressure", DataType = DbType.String)]
|
||
|
public string CutOffPressure { get; set; }
|
||
|
|
||
|
[DBColumn(ColumnName = "RecordDate", DataType = DbType.String)]
|
||
|
public DateTime RecordDate { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|