把以前的页面全部干掉

This commit is contained in:
yubaolee
2017-12-11 17:49:59 +08:00
parent 5e6445cbc9
commit 8158f6c413
18 changed files with 159 additions and 458 deletions

View File

@@ -10,36 +10,25 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenAuth.Repository.Core;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 功能模块表
/// </summary>
public partial class Module : Entity
public partial class Module : TreeEntity
{
public Module()
{
this.CascadeId= string.Empty;
this.Name= string.Empty;
this.Url= string.Empty;
this.HotKey= string.Empty;
this.IconName= string.Empty;
this.Status= 0;
this.ParentName= string.Empty;
this.Vector= string.Empty;
this.SortNo= 0;
this.ParentId= string.Empty;
}
/// <summary>
/// 节点语义ID
/// </summary>
public string CascadeId { get; set; }
/// <summary>
/// 功能模块名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 主页面URL
/// </summary>
@@ -64,10 +53,7 @@ namespace OpenAuth.Repository.Domain
/// 当前状态
/// </summary>
public int Status { get; set; }
/// <summary>
/// 父节点名称
/// </summary>
public string ParentName { get; set; }
/// <summary>
/// 矢量图标
/// </summary>
@@ -76,10 +62,6 @@ namespace OpenAuth.Repository.Domain
/// 排序号
/// </summary>
public int SortNo { get; set; }
/// <summary>
/// 父节点流水号
/// </summary>
public string ParentId { get; set; }
}
}