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.
39 lines
1.1 KiB
39 lines
1.1 KiB
using System;
|
|
using System.Data;
|
|
using QMFrameWork.Data.Attributes;
|
|
|
|
namespace QMAPP.Entity.Sys.Entity
|
|
{
|
|
/// </summary>
|
|
/// 个性设置
|
|
/// 作 者:李炳海
|
|
/// 编写日期:2015年02月26日
|
|
/// </summary>
|
|
[DBTable(TableName = "T_QM_PERSNALSET")]
|
|
public class T_QM_PERSNALSET:BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 用户主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "USERID", IsKey = true, DataType = DbType.String)]
|
|
public string USERID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认子系统
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "DEFAULTSYSTEM", DataType = DbType.String)]
|
|
public string DEFAULTSYSTEM { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用字段帮助
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "ISCOLUMNHELP", DataType = DbType.String)]
|
|
public string ISCOLUMNHELP { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前主题
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "DEFAULTSKIN", DataType = DbType.String)]
|
|
public string DEFAULTSKIN { get; set; }
|
|
}
|
|
}
|
|
|