using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc.Html; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; namespace QMAPP.MD.Web.Models { /// /// 模块名称:工序顺序 /// 作 者:郭兆福 /// 编写日期:2017年05月19日 /// /// 主键 /// [Description("主键")] [HTMLInput(UpdateRead = false, required = false, MaxLength = 72)] [InputType(inputType.text)] [DGColumn(Hidden = true, PrimaryKey = true)] public string PID { get; set; } /// ///工艺路线编码 /// [Description("工艺路线编码")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20)] [InputType(inputType.text)] public string ROUTE_CODE { get; set; } /// ///工序编码 /// [Description("工序编码")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20)] [InputType(inputType.text)] public string WORKCELL_CODE { get; set; } /// ///工艺版本 /// [Description("工艺版本")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20)] [InputType(inputType.text)] public string VER_NUM { get; set; } /// /// 前一工序编码 /// [Description("前置工序")] [HTMLInput(UpdateRead = false, required = false, MaxLength = 20)] [InputType(inputType.combobox)] [DGColumn(ColumnName = "PRE_WORKCELL_CODE", Width = 200, DataAlign = DataAlign.left, Editor = CellEditorType.combobox, required = true)] public string PRE_WORKCELL_CODE { get; set; } /// /// 前一工序名称 /// [Description("前一工序名称")] public string PRE_WORKCELL_NAME { get; set; } /// /// 创建用户 /// [Description("创建用户")] public string CREATEUSER { get; set; } /// /// 创建时间 /// [Description("创建时间")] public DateTime CREATEDATE { get; set; } /// /// 更新用户 /// [Description("更新用户")] public string UPDATEUSER { get; set; } /// /// 更新时间 /// [Description("更新时间")] public DateTime UPDATEDATE { get; set; } /// /// 明细数据 /// public string DetailValue { get; set; } } }