using APT.Infrastructure.Core;
using APT.Infrastructure.Utility;
using System;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities.FM
{
    /// 
    /// 信息区域隶属角色关系表
    /// 
    [Description("信息区域隶属角色关系表")]
	[Redis("")]
	[IgnoreT4]public class T_FM_PANEL_BELONG_ROLE : MesEntityBase
	{
        /// 信息区域ID
        [Description("顺序")]
        public int NUM { get; set; }
        /// 信息区域ID
        [Description("PANEL_ID")]
		public Guid PANEL_ID { get; set; }
		/// 所属角色ID
		[Description("所属角色ID")]
		public Guid BELONG_ROLE_ID { get; set; }
		/// 导航:用户
		[Description("导航:区域信息表")]
		public virtual T_FM_PANEL Nav_Panel { get; set; }
		/// 导航:所属角色
		[Description("导航:所属角色")]
		public virtual T_FM_ROLE Nav_BelongRole { get; set; }
	}
}