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; } /// /// 声音提示 /// public bool? Beep { get; set; } /// /// 是否移动端上应用 /// public bool? AppApply { get; set; } }