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.
119 lines
3.7 KiB
119 lines
3.7 KiB
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.Web.Models.Sys
|
|
{
|
|
public class ParaAuthorityPortModel : QDGModel
|
|
{
|
|
public ParaAuthorityPortModel()
|
|
{
|
|
//设置页尺寸
|
|
this.pageSize = MvcApplication.PageSize.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 参数主键
|
|
/// </summary>
|
|
[Description("参数编号")]
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 36)]
|
|
[InputType(inputType.hidden)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string ParaID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数类型
|
|
/// </summary>
|
|
[Description("参数类型")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 1)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 200)]
|
|
[ModelDictionary]
|
|
public string ParaType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 参数描述
|
|
/// </summary>
|
|
[Description("参数名称")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 200)]
|
|
public string ParaDESC { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户编号
|
|
/// </summary>
|
|
[Description("用户编号")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 36)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Hidden = true, Sortable = true, Width = 200)]
|
|
public string UserID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户姓名
|
|
/// </summary>
|
|
[Description("用户姓名")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 200)]
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所在机构
|
|
/// </summary>
|
|
[Description("所在机构")]
|
|
[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetOrgaList", MaxLength = 50)]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true,Hidden = true, Sortable = true, Width = 200)]
|
|
public string OrgaID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所在机构
|
|
/// </summary>
|
|
[Description("所在机构")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 50)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 200)]
|
|
public string OrgaDESC { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除标识
|
|
/// </summary>
|
|
[InputType(inputType.hidden)]
|
|
public string DelFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建日期
|
|
/// </summary>
|
|
[InputType(inputType.hidden)]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[InputType(inputType.hidden)]
|
|
public string CreateUser { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新日期
|
|
/// </summary>
|
|
[InputType(inputType.hidden)]
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[InputType(inputType.hidden)]
|
|
public string UpdateUser { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否编辑画面
|
|
/// </summary>
|
|
public string isEdit { get; set; }
|
|
|
|
}
|
|
}
|