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; }
///
/// 关联菜单ID
///
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; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 启用
///
public bool ActiveIndicator { get; set; }
}