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.
106 lines
3.1 KiB
106 lines
3.1 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using QMFrameWork.WebUI.Attribute;
|
||
|
using QMFrameWork.WebUI;
|
||
|
using System.Web.Mvc.Html;
|
||
|
|
||
|
namespace QMAPP.Web.Models.Sys
|
||
|
{
|
||
|
public class OnLineHelpModel : QDGModel
|
||
|
{
|
||
|
///<summary>
|
||
|
///主键
|
||
|
///</summary>
|
||
|
[Description("主键")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///模块编号
|
||
|
///</summary>
|
||
|
[Description("模块编号")]
|
||
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 20)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string MENUID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///页面名称
|
||
|
///</summary>
|
||
|
[Description("页面名称")]
|
||
|
[HTMLInput(UpdateRead = false, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string PAGENAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///模型名称
|
||
|
///</summary>
|
||
|
[Description("模型名称")]
|
||
|
[HTMLInput(UpdateRead = false, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string MODELNAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///字段名
|
||
|
///</summary>
|
||
|
[Description("字段名")]
|
||
|
[HTMLInput(UpdateRead = false, MaxLength = 50)]
|
||
|
[InputType(inputType.text)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string COLUMNANME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///P:页面级 C:字段级
|
||
|
///</summary>
|
||
|
[Description("帮助类型")]
|
||
|
[HTMLInput(UpdateRead = false, MaxLength = 1, JsonUtl = "/OnLineHelp/GetEquComboxSource")]
|
||
|
[InputType(inputType.combobox)]
|
||
|
[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
||
|
public string KIND { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///帮助内容
|
||
|
///</summary>
|
||
|
[Description("帮助内容")]
|
||
|
[HTMLInput(UpdateRead = false, MaxLength = 2000, Height = 240, Width = 680)]
|
||
|
[InputType(inputType.textArea)]
|
||
|
public string HELPCONTENT { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///字段帮助内容
|
||
|
///</summary>
|
||
|
[Description("帮助内容")]
|
||
|
[HTMLInput(UpdateRead = false, MaxLength = 16,Width = 200)]
|
||
|
[InputType(inputType.text)]
|
||
|
public string FIELDCONTENT
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return HELPCONTENT;
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
HELPCONTENT = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
///<summary>
|
||
|
///字段帮助集合
|
||
|
///</summary>
|
||
|
public string FieldsJson { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|