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.
84 lines
2.6 KiB
84 lines
2.6 KiB
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
|
|
namespace QMAPP.Web.Models
|
|
{
|
|
/// <summary>
|
|
/// 模块编号:
|
|
/// 作 用:热点使用查询
|
|
/// 作 者:周晓东
|
|
/// 编写日期:20180423
|
|
///</summary>
|
|
public class FuntionDescriptionModel : QDGModel
|
|
{
|
|
|
|
///<summary>
|
|
///功能模块
|
|
///</summary>
|
|
[Description("功能模块")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, JsonUtl = "/FuntionDescription/GetModelNameCombox")]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)]
|
|
public string MODELNAME { get; set; }
|
|
|
|
///<summary>
|
|
///菜单项
|
|
///</summary>
|
|
[Description("菜单项")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)]
|
|
public string MENUNAME { get; set; }
|
|
|
|
///<summary>
|
|
///用户
|
|
///</summary>
|
|
[Description("用户")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20, JsonUtl = "/FuntionDescription/GetUserComboxSource")]
|
|
[InputType(inputType.combobox)]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
///<summary>
|
|
///用户
|
|
///</summary>
|
|
[Description("用户")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)]
|
|
public string CREATEUSERNAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///功能点
|
|
///</summary>
|
|
[Description("功能点")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)]
|
|
public string FUNCTIONNAME { get; set; }
|
|
|
|
///<summary>
|
|
///次数
|
|
///</summary>
|
|
[Description("次数")]
|
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)]
|
|
public string useCount { get; set; }
|
|
|
|
|
|
|
|
///<summary>
|
|
///操作时间
|
|
///</summary>
|
|
[Description("操作时间")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
|
[InputType(inputType.dateTimeBox)]
|
|
public string STARTCREATEDATE { get; set; }
|
|
|
|
///<summary>
|
|
///至
|
|
///</summary>
|
|
[Description("至")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 8)]
|
|
[InputType(inputType.dateTimeBox)]
|
|
public string ENDCREATEDATE { get; set; }
|
|
|
|
|
|
}
|
|
}
|