Files
Web_BLSKafka_Server_Prod/DAL/New_Models/TbAppMenu.cs

39 lines
718 B
C#
Raw Normal View History

2025-11-21 08:48:01 +08:00
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; }
}