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.
48 lines
1.3 KiB
48 lines
1.3 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;
|
|
using System.Web.Mvc;
|
|
|
|
namespace QMAPP.Web.Models.Sys
|
|
{
|
|
/// <summary>
|
|
/// 个行设置
|
|
/// </summary>
|
|
public class PersnalSetModel
|
|
{
|
|
/// <summary>
|
|
/// 用户主键
|
|
/// </summary>
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 36)]
|
|
[InputType(inputType.hidden)]
|
|
public string USERID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认子系统
|
|
/// </summary>
|
|
[Description("默认子系统")]
|
|
[HTMLInput(UpdateRead = false,MaxLength = 10, Width = 155)]
|
|
[InputType(inputType.combobox)]
|
|
[ModelDictionary]
|
|
public string DEFAULTSYSTEM { get; set; }
|
|
|
|
/// <summary>
|
|
/// 启用字段帮助
|
|
/// </summary>
|
|
[Description("启用字段帮助")]
|
|
public bool CKISCOLUMNHELP { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前主题
|
|
/// </summary>
|
|
[Description("当前主题")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 10, Width = 155)]
|
|
[InputType(inputType.combobox)]
|
|
[ModelDictionary]
|
|
public string DEFAULTSKIN { get; set; }
|
|
}
|
|
}
|