初始化
This commit is contained in:
35
DAL/New_Models/TbAlarmSetting.cs
Normal file
35
DAL/New_Models/TbAlarmSetting.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user