using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc.Html;
using QMFrameWork.WebUI.Attribute;
using QMFrameWork.WebUI;
using System.Web.Mvc;
namespace QMAPP.Web.Models.Sys
{
///
/// 个行设置
///
public class PersnalSetModel
{
///
/// 用户主键
///
[HTMLInput(UpdateRead = true, required = true, MaxLength = 36)]
[InputType(inputType.hidden)]
public string USERID { get; set; }
///
/// 默认子系统
///
[Description("默认子系统")]
[HTMLInput(UpdateRead = false,MaxLength = 10, Width = 155)]
[InputType(inputType.combobox)]
[ModelDictionary]
public string DEFAULTSYSTEM { get; set; }
///
/// 启用字段帮助
///
[Description("启用字段帮助")]
public bool CKISCOLUMNHELP { get; set; }
///
/// 当前主题
///
[Description("当前主题")]
[HTMLInput(UpdateRead = false, required = true, MaxLength = 10, Width = 155)]
[InputType(inputType.combobox)]
[ModelDictionary]
public string DEFAULTSKIN { get; set; }
}
}