初始化

This commit is contained in:
2025-11-21 08:48:01 +08:00
commit b4d684a84c
202 changed files with 28585 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbAlarmSetting
{
public int HotelId { get; set; }
public string Type { get; set; } = null!;
public string Code { get; set; } = null!;
public string Name { get; set; } = null!;
public string? Ename { get; set; }
public string Value { get; set; } = null!;
public int Sort { get; set; }
public string? Color { get; set; }
public int? ModalTypeId { get; set; }
/// <summary>
/// 声音提示
/// </summary>
public bool? Beep { get; set; }
/// <summary>
/// 是否移动端上应用
/// </summary>
public bool? AppApply { get; set; }
}