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.Basic { /// /// 模块编号: /// 作 用:工艺路线下工序顺序 /// 作 者:闫永刚 /// 编写日期:2017年08月31日 /// [DBTable(TableName = "T_MD_PROCESS_ROUTE_WORKCELL_SEQ", TimeStampColumn = "UPDATETIME")] public class ProcessRouteWithWorkCellSeq : BaseEntity { /// /// /// [DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)] public string PID { get; set; } /// ///工艺路线编号 /// [DBColumn(ColumnName = "ROUTE_CODE", DataType = DbType.String)] public string ROUTE_CODE { get; set; } /// /// /// [DBColumn(ColumnName = "VER_NUM", DataType = DbType.String)] public string VER_NUM { get; set; } /// ///当前工序 /// [DBColumn(ColumnName = "WORKCELL_CODE", DataType = DbType.String)] public string WORKCELL_CODE { get; set; } /// ///前置工序 /// [DBColumn(ColumnName = "PRE_WORKCELL_CODE", DataType = DbType.String)] public string PRE_WORKCELL_CODE { get; set; } /// /// /// [DBColumn(ColumnName = "REMARK", DataType = DbType.String)] public string REMARK { get; set; } /// /// /// [DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)] public string CREATEUSER { get; set; } /// /// /// [DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)] public DateTime CREATEDATE { get; set; } /// /// /// [DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)] public string UPDATEUSER { get; set; } /// /// /// [DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)] public DateTime UPDATEDATE { get; set; } /// /// 错误信息 /// public string InfoError { get; set; } /// /// 导入时判断添加修改 /// public bool IsNewInfo { get; set; } } }