using APT.Infrastructure.Core;
using APT.Infrastructure.Utility;
using System;
using System.Collections.Generic;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities
{
	/// 
	/// 页面列表区域表
	/// 
	[Description("页面列表区域表 ")]
	[Redis("PAGE_TABLE_ID", "ID")]
	[APT.Infrastructure.Api.RootOrg]
	[IgnoreT4] public class T_PF_PAGE_TABLE_PANEL : MesEntityBase
	{
		/// 
		/// 表ID字段
		/// 
		public Guid PAGE_TABLE_ID { get; set; }
		/// 
		/// 显示名称
		/// 
		[Description("显示名称")]
		public string LABEL { get; set; }
		/// 
		/// 是否默认展开
		/// 
		[Description("是否默认展开")]
		public bool IS_DEFAULT_EXPAND { get; set; }
		/// 
		/// 是否显示
		/// 
		[Description("是否显示")]
		public bool IS_DISPLAY { get; set; }
		/// 
		/// 顺序 
		/// 
		[Description("顺序")]
		public int NUM { get; set; }
		/// 
		/// 导航属性:列表页面
		/// 
		[Description("导航属性:列表页面")]
		public virtual T_PF_PAGE_TABLE Nav_PageTable { get; set; }
		[Description("源ID")]
		public Guid? SRC_ID { get; set; }
	}
}