You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
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
|
|
{
|
|
/// <summary>
|
|
/// 查询模板列表模型
|
|
/// 创建者:李炳海
|
|
/// 创建日期:2014.8.13
|
|
/// </summary>
|
|
public class TemplateListModel : QDGModel
|
|
{
|
|
/// <summary>
|
|
/// 模板主键
|
|
/// </summary>
|
|
[Description("模板主键")]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string TEMPLATEID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模板名称
|
|
/// </summary>
|
|
[Description("模板名称")]
|
|
[HTMLInput(required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(Sortable = true, Width = 100)]
|
|
public string TEMPLATENAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对应查询模块
|
|
/// </summary>
|
|
public string ProgramName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否公开
|
|
/// </summary>
|
|
[Description("是否公开")]
|
|
[DGColumn(Sortable = true, Width = 60)]
|
|
public string ISPUBLISH { get; set; }
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[Description("创建人")]
|
|
[DGColumn(Sortable = true, Width = 100)]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新日期
|
|
/// </summary>
|
|
[Description("更新日期")]
|
|
[DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd")]
|
|
public DateTime UPDATEDATE { get; set; }
|
|
}
|
|
}
|