mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-11-10 11:24:45 +08:00
转移.net core 3.1,为.NET 5做准备
This commit is contained in:
@@ -7,9 +7,9 @@
|
||||
// Author:Yubao Li
|
||||
// </autogenerated>
|
||||
//------------------------------------------------------------------------------
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using OpenAuth.Repository.Core;
|
||||
|
||||
namespace OpenAuth.Repository.Domain
|
||||
@@ -17,58 +17,78 @@ namespace OpenAuth.Repository.Domain
|
||||
/// <summary>
|
||||
/// 功能模块表
|
||||
/// </summary>
|
||||
[Table("Module")]
|
||||
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.Code = string.Empty;
|
||||
this.ParentId= string.Empty;
|
||||
this.Code= string.Empty;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 主页面URL
|
||||
/// </summary>
|
||||
[Description("主页面URL")]
|
||||
public string Url { get; set; }
|
||||
/// <summary>
|
||||
/// 热键
|
||||
/// </summary>
|
||||
[Description("热键")]
|
||||
public string HotKey { get; set; }
|
||||
/// <summary>
|
||||
/// 是否叶子节点
|
||||
/// </summary>
|
||||
[Description("是否叶子节点")]
|
||||
public bool IsLeaf { get; set; }
|
||||
/// <summary>
|
||||
/// 是否自动展开
|
||||
/// </summary>
|
||||
[Description("是否自动展开")]
|
||||
public bool IsAutoExpand { get; set; }
|
||||
/// <summary>
|
||||
/// 节点图标文件名称
|
||||
/// </summary>
|
||||
[Description("节点图标文件名称")]
|
||||
public string IconName { get; set; }
|
||||
/// <summary>
|
||||
/// 当前状态
|
||||
/// </summary>
|
||||
/// 当前状态,0:正常,-1:隐藏,不在导航列表中显示
|
||||
/// </summary>
|
||||
[Description("当前状态")]
|
||||
public int Status { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 矢量图标
|
||||
/// </summary>
|
||||
[Description("矢量图标")]
|
||||
public string Vector { get; set; }
|
||||
/// <summary>
|
||||
/// 排序号
|
||||
/// </summary>
|
||||
[Description("排序号")]
|
||||
public int SortNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 模块标识
|
||||
/// </summary>
|
||||
/// <value>The code.</value>
|
||||
/// 模块标识
|
||||
/// </summary>
|
||||
[Description("模块标识")]
|
||||
public string Code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否系统模块
|
||||
/// </summary>
|
||||
[Description("是否系统模块")]
|
||||
public bool IsSys { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user