using ProjectBase.Data.BaseDAL; using ProjectBase.Util; using System; namespace SIASUN.Autopilot.Model { /// /// 权限管理中的用户管理 /// [Serializable] public class MoGroupRole : BaseEntity { public MoGroupRole() { this.CurrentLoginUserId = SysEnvironment.CurrentLoginID; } #region Field Members private string m_GroupId = ""; // 组编码 private string m_RoleId = ""; // 用户编码 #endregion #region Property Members /// /// 组编码 /// public virtual string GroupId { get { return this.m_GroupId; } set { this.m_GroupId = value; } } /// /// 用户编码 /// public virtual string RoleId { get { return this.m_RoleId; } set { this.m_RoleId = value; } } #endregion } }