using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc.Html; using QMFrameWork.WebUI; using QMFrameWork.WebUI.Attribute; namespace QMAPP.Common.Web.Models { /// /// 查询模板列表模型 /// 创建者:李炳海 /// 创建日期:2014.8.13 /// public class TemplateListModel : QDGModel { /// /// 模板主键 /// [Description("模板主键")] [DGColumn(Hidden = true, PrimaryKey = true)] public string TEMPLATEID { get; set; } /// /// 模板名称 /// [Description("模板名称")] [HTMLInput(required = true, MaxLength = 50)] [InputType(inputType.text)] [DGColumn(Sortable = true, Width = 100)] public string TEMPLATENAME { get; set; } /// /// 对应查询模块 /// public string ProgramName { get; set; } /// /// 是否公开 /// [Description("是否公开")] [DGColumn(Sortable = true, Width = 60)] public string ISPUBLISH { get; set; } /// /// 创建人 /// [Description("创建人")] [DGColumn(Sortable = true, Width = 100)] public string CREATEUSER { get; set; } /// /// 更新日期 /// [Description("更新日期")] [DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")] public DateTime UPDATEDATE { get; set; } } }