using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ProjectBase.Data.BaseDAL; using ProjectBase.Util; namespace SIASUN.Autopilot.Model { /// /// 权限管理中的用户管理 /// [Serializable] public class MoAuthoryGroup : BaseEntity { public MoAuthoryGroup() { this.CurrentLoginUserId = SysEnvironment.CurrentLoginID; } #region Field Members private string m_GroupId = ""; // 组编码 private string m_ParentGroupId = ""; // 父组编码 private string m_GroupName = ""; // 组名称 private string m_GroupTime = ""; // 创建组时间 #endregion #region Property Members /// /// 组编码 /// public virtual string GroupId { get { return this.m_GroupId; } set { this.m_GroupId = value; } } /// /// 父组编码 /// public virtual string ParentGroupId { get { return this.m_ParentGroupId; } set { this.m_ParentGroupId = value; } } /// /// 组名称 /// public virtual string GroupName { get { return this.m_GroupName; } set { this.m_GroupName = value; } } /// /// 创建组时间 /// public virtual string GroupTime { get { return this.m_GroupTime; } set { this.m_GroupTime = value; } } #endregion } }