using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Model
|
{
|
/// <summary>
|
/// 页面拥有权限树项
|
/// </summary>
|
public partial class MenuAuthHaveTreeItem:MenuAuthTreeItem
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public MenuAuthHaveTreeItem() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public MenuAuthHaveTreeItem(Model.Menu rhs):base(rhs)
|
{
|
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public MenuAuthHaveTreeItem(MenuAuthTreeItem rhs) : base(rhs)
|
{
|
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public MenuAuthHaveTreeItem(MenuAuthTreeItem rhs, bool have) : base(rhs)
|
{
|
this.Have = have;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public MenuAuthHaveTreeItem(MenuAuthHaveTreeItem rhs) : base(rhs)
|
{
|
this.Have = rhs.Have;
|
}
|
|
/// <summary>
|
/// 拥有
|
/// </summary>
|
public bool Have { get; set; }
|
}
|
}
|