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月11日 /// public class WorkCellModel : QDGModel { /// ///工序主键 /// [Description("工序主键")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [InputType(inputType.text)] [DGColumn(Hidden = true, PrimaryKey = true)] public string PID { get; set; } /// /// 工厂 /// [Description("工厂")] [HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 15, Width = 160)] [InputType(inputType.combobox)] [DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string FACTORY_CODE { get; set; } /// /// 工厂 /// [Description("工厂")] [DGColumn(Sortable = true, Width = 300, DataAlign = DataAlign.left)] public string FACTORY_NAME { get; set; } /// /// 工作中心 /// [Description("工作中心名称")] [DGColumn(frozenColumns = false, Sortable = true, Width = 180, DataAlign = DataAlign.left)] public string WORKCENTER_NAME { get; set; } /// /// 工作中心编号 /// [Description("工作中心编号")] [HTMLInput(UpdateRead = true, required = true, MaxLength = 100, Width = 160)] [InputType(inputType.combobox)] //[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.left)] public string WORKCENTER_CODE { get; set; } /// ///工序名称 /// [Description("工序名称")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 160)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 120, DataAlign = DataAlign.left)] public string WORKCELL_NAME { get; set; } /// /// 工序编码 /// [Description("工序编码")] [HTMLInput(UpdateRead = true, required = true, MaxLength = 20, Width = 160)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string WORKCELL_CODE { get; set; } /// ///反冲标识名称 /// [Description("反冲标识")] [DGColumn(frozenColumns = false, required = true, Sortable = false, Width = 70, DataAlign = DataAlign.left)] public string FLAG_BACKFLUSH_NAME { get; set; } /// ///描述 /// [Description("描述")] [HTMLInput(UpdateRead = false, required = false, MaxLength = 100, Width = 160, Height = 70)] [InputType(inputType.textArea)] [DGColumn(frozenColumns = false, Sortable = true, Width = 300, DataAlign = DataAlign.left)] public string REMARK { get; set; } /// ///反冲标识 /// [Description("反冲标识")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 1, Width = 160, JsonUtl = "/Dict/GetFixedComboxSource?kind=BackFlushFlag&WithEmpty=false")] [InputType(inputType.combobox)] public string FLAG_BACKFLUSH { get; set; } /// ///删除标识 /// [Description("删除标识")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 1)] [InputType(inputType.hidden)] public string FLGDEL { get; set; } /// /// 创建用户 /// [Description("创建用户")] public string CREATEUSER { get; set; } /// /// 创建时间 /// [Description("创建时间")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.hidden)] public DateTime CREATEDATE { get; set; } /// /// 更新用户 /// [Description("更新用户")] public string UPDATEUSER { get; set; } /// /// 更新时间 /// [Description("更新时间")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.hidden)] public DateTime UPDATEDATE { get; set; } } }