using System; using System.Collections.Generic; using System.Linq; using System.Web; using QMFrameWork.WebUI.Attribute; using System.Web.Mvc.Html; using QMFrameWork.WebUI; namespace QMAPP.FJC.Web.Models.Basic { public class ProcessRouteModel : 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 = false, required = true, MaxLength = 6)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string ROUTE_CODE { get; set; } /// ///工艺路线名称 /// [Description("工艺路线名称")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string ROUTE_NAME { get; set; } //#region 区域 ///// /////区域主键 ///// //[Description("区域")] //[HTMLInput(UpdateRead = true, required = true, MaxLength = 36, JsonUtl = "/Dict/GetAreaComboxSource")] //[InputType(inputType.combobox)] //public string AREAID { get; set; } ///// ///// 区域编号 ///// //[Description("区域编号")] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)] //public string AREACODE { get; set; } ///// ///// 区域名称 ///// //[Description("区域名称")] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)] //public string AREANAME { get; set; } //#endregion //#region 工厂 ///// /////工厂主键 ///// //[Description("工厂")] //[HTMLInput(UpdateRead = true, required = true, MaxLength = 36)] //[InputType(inputType.combobox)] //public string FACTORY_PID { get; set; } ///// ///// 工厂编号 ///// //[Description("工厂编号")] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)] //public string FACTORY_CODE { get; set; } ///// ///// 工厂名称 ///// //[Description("工厂名称")] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)] //public string FACTORY_NAME { get; set; } //#endregion /// ///备注 /// [Description("备注")] [HTMLInput(UpdateRead = false, required = false, MaxLength = 200, Width = 153, Height = 70)] [InputType(inputType.textArea)] [DGColumn(frozenColumns = false, Sortable = true, Width = 120, DataAlign = DataAlign.left)] public string REMARK { get; set; } /// ///删除标识 /// [Description("删除标识")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 1)] [InputType(inputType.hidden)] public string FLAGDEL { get; set; } /// /// 创建用户 /// [Description("创建用户")] public string CREATEUSR { get; set; } /// /// 创建用户 /// [Description("创建用户")] [DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string CREATEUSERNAME { get; set; } /// /// 创建时间 /// [Description("创建时间")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.hidden)] [DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")] public DateTime CREATEDATE { get; set; } /// /// 更新用户 /// [Description("更新用户")] public string UPDATEUSR { get; set; } /// /// 更新用户 /// [Description("更新用户")] [DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string UPDATEUSERNAME { get; set; } /// /// 更新时间 /// [Description("更新时间")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.hidden)] [DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")] public DateTime UPDATEDATE { get; set; } } }