天津投入产出系统后端
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.
 
 
 
 
 
 

54 lines
1.4 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
{
/// <summary>
/// 联系人模型
/// </summary>
public class ContractUserModel : QDGModel
{
public ContractUserModel()
{
//设置页尺寸
this.pageSize = MvcApplication.PageSize.ToString();
ShowProgress = true;
}
/// <summary>
/// 用户主键
/// </summary>
[Description("用户编号")]
[HTMLInput(UpdateRead = true, required = true, MaxLength = 36)]
[InputType(inputType.hidden)]
[DGColumn(Hidden = true, PrimaryKey = true)]
public string UserID { get; set; }
/// <summary>
/// 员工姓名
/// </summary>
[Description("员工姓名")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)]
[InputType(inputType.text)]
[DGColumn(Sortable = true, Width = 70)]
public string UserName { get; set; }
/// <summary>
/// 电子邮件
/// </summary>
[Description("电子邮件")]
[HTMLInput(UpdateRead = false, required = false, MaxLength = 50)]
[InputType(inputType.text)]
[DGColumn(Sortable = true, Width = 160)]
public string Email { get; set; }
}
}