using ProjectBase.Data.BaseDAL; using ProjectBase.Util; using System; namespace SIASUN.Autopilot.Model { /// /// 权限管理中的用户管理 /// [Serializable] public class MoAuthoryRight: BaseEntity { public MoAuthoryRight() { this.CurrentLoginUserId = SysEnvironment.CurrentLoginID; } #region Field Members private string m_RightId = ""; // 权限编码 private string m_ParentRightId = ""; // 父权限编码 private string m_RightName = ""; // 权限名称 private string m_RightDescription = ""; // 权限描述 #endregion #region Property Members /// /// 权限编码 /// public virtual string RightId { get { return this.m_RightId; } set { this.m_RightId = value; } } /// /// 父权限编码 /// public virtual string ParentRightId { get { return this.m_ParentRightId; } set { this.m_ParentRightId = value; } } /// /// 权限名称 /// public virtual string RightName { get { return this.m_RightName; } set { this.m_RightName = value; } } /// /// 权限描述 /// public virtual string RightDescription { get { return this.m_RightDescription; } set { this.m_RightDescription = value; } } #endregion } }