初始化
This commit is contained in:
38
DAL/New_Models/TbAppMenu.cs
Normal file
38
DAL/New_Models/TbAppMenu.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DAL.New_Models;
|
||||
|
||||
public partial class TbAppMenu
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int? HotelId { get; set; }
|
||||
|
||||
public short? Type { get; set; }
|
||||
|
||||
public string? Code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 关联菜单ID
|
||||
/// </summary>
|
||||
public string Name { get; set; } = null!;
|
||||
|
||||
public string? EnglishName { get; set; }
|
||||
|
||||
public string? Icon { get; set; }
|
||||
|
||||
public string? Url { get; set; }
|
||||
|
||||
public string? Class { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序
|
||||
/// </summary>
|
||||
public int Sort { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 启用
|
||||
/// </summary>
|
||||
public bool ActiveIndicator { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user