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 { /// /// 模块名称:项目编号 /// 作 者:来洋 /// 编写日期:2018年04月09日 /// public class ProjectModel: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 = 20)] [InputType(inputType.combobox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string FACTORY_CODE { get; set; } /// /// 工厂名称 /// [Description("工厂名称")] [DGColumn(frozenColumns = true, Sortable = true, Width = 320, DataAlign = DataAlign.left)] public string FACTORY_NAME { get; set; } /// /// 项目编号 /// [Description("项目编号")] [HTMLInput(UpdateRead = true, required = true, MaxLength = 50)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 180, DataAlign = DataAlign.left)] public string PROJECT_CODE { get; set; } /// /// 项目名称 /// [Description("项目名称")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 100)] [InputType(inputType.text)] [DGColumn(Sortable = true, Width = 220, DataAlign = DataAlign.left)] public string PROJECT_NAME { get; set; } /// /// 备注 /// [Description("备注")] [HTMLInput(UpdateRead = false, required = false, MaxLength = 100, Width = 150, Height = 50)] [InputType(inputType.textArea)] [DGColumn(Sortable = true, Width = 200, DataAlign = DataAlign.left)] public string MEMO { get; set; } /// /// 创建用户 /// [Description("创建用户")] [DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string CREATEUSER { 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("更新用户")] [DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string UPDATEUSER { 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; } } }