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.
64 lines
1.6 KiB
64 lines
1.6 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Data;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
|
||
|
namespace QMAPP.Entity.Sys.Table
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 在线帮助表实体类
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_QM_ONLINEHELP")]
|
||
|
public class T_QM_ONLINEHELP : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///模块编号
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MENUID", DataType = DbType.String)]
|
||
|
public string MENUID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///页面名称
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PAGENAME", DataType = DbType.String)]
|
||
|
public string PAGENAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///模型名称
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MODELNAME", DataType = DbType.String)]
|
||
|
public string MODELNAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///字段名
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "COLUMNANME", DataType = DbType.String)]
|
||
|
public string COLUMNANME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///P:页面级 C:字段级
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "KIND", DataType = DbType.String)]
|
||
|
public string KIND { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///帮助内容
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "HELPCONTENT", DataType = DbType.String)]
|
||
|
public string HELPCONTENT { get; set; }
|
||
|
}
|
||
|
}
|