using ProjectBase.Data.BaseDAL; using ProjectBase.Util; using System; namespace SIASUN.Autopilot.Model { /// /// 权限管理中的用户管理 /// [Serializable] public class MoAuthoryRole: BaseEntity { public MoAuthoryRole() { this.CurrentLoginUserId = SysEnvironment.CurrentLoginID; } #region Field Members private string m_RoleId = ""; // 角色编码 private string m_RoleName = ""; // 角色名称 private DateTime m_RoleTime = DateTime.Now; // 角色创建时间 private string m_RoleDescription = ""; // 角色描述 #endregion #region Property Members /// /// 角色编码 /// public virtual string RoleId { get { return this.m_RoleId; } set { this.m_RoleId = value; } } /// /// 角色名称 /// public virtual string RoleName { get { return this.m_RoleName; } set { this.m_RoleName = value; } } /// /// 角色创建时间 /// public virtual DateTime RoleTime { get { return this.m_RoleTime; } set { this.m_RoleTime = value; } } /// /// 角色描述 /// public virtual string RoleDescription { get { return this.m_RoleDescription; } set { this.m_RoleDescription = value; } } #endregion } }