Files

36 lines
709 B
C#
Raw Permalink Normal View History

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