using APT.Infrastructure.Core;
using APT.Infrastructure.Utility;
using System.Collections.Generic;
using System.ComponentModel;
namespace APT.BaseData.Domain.Entities.FM
{
    [Description("角色组表")]
    /// 
    /// 角色组
    ///  
    [Redis("")]
	[IgnoreT4] public partial class T_FM_ROLE_GROUP: MesEntityBase
	{
		public T_FM_ROLE_GROUP()
		{
		}
        [Description("编码")]
        /// 
        /// 编码
        /// 
        [CUnique]
		public string CODE { get; set; }
        [Description("名称")]
        /// 
        /// 名称
        /// 
        [AcronymField("NAME_ACRONYM")]
        public string NAME { get; set; }
        /// 
        /// 名称首字母缩写
        /// 
        [Description("名称首字母缩写")]
        public string NAME_ACRONYM { get; set; }
        /// 
        /// FMEnableStatusEnum
        /// 
        [Description("启用标志")]
		[EnumName("FMEnableStatusEnum")]
		public int ENABLE_STATUS { get; set; }
		[Description("备注")]
		public string REMARK { get; set; }
        [Description("导航:角色关联表")]
        public virtual ICollection Nav_BelongRoles { get; set; }
	}
}