using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbRoomService
{
public long Id { get; set; }
public int HostId { get; set; }
public string? AlarmType { get; set; }
///
/// 服务类型
///
public string AlarmCode { get; set; } = null!;
///
/// 状态
///
public bool? Status { get; set; }
///
/// 操作时间
///
public DateTime? StartTime { get; set; }
public virtual TbHost Host { get; set; } = null!;
}