Files
Web_BLSKafka_Server_Prod/DAL/New_Models/TbHostTimingControl.cs
2025-11-21 08:48:01 +08:00

72 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbHostTimingControl
{
public long Id { get; set; }
/// <summary>
/// 酒店ID
/// </summary>
public int HotelId { get; set; }
/// <summary>
/// 主机ID以逗号隔开
/// </summary>
public string? HostIds { get; set; }
/// <summary>
/// 楼层ID
/// </summary>
public int? GroupId { get; set; }
/// <summary>
/// 房型ID
/// </summary>
public int? RoomTypeId { get; set; }
/// <summary>
/// 房态ID
/// </summary>
public int? RoomStatusId { get; set; }
/// <summary>
/// 房卡类型ID
/// </summary>
public int? RoomCardTypeId { get; set; }
/// <summary>
/// 场景ID
/// </summary>
public int? RoomTypeSceneId { get; set; }
/// <summary>
/// 定时类型0每天1每周2每月
/// </summary>
public short? TimingType { get; set; }
/// <summary>
/// 具体星期几或几号
/// </summary>
public string? TimingDay { get; set; }
/// <summary>
/// 定时时间(时:分)
/// </summary>
public string? Timing { get; set; }
/// <summary>
/// 执行状态0未执行1已执行
/// </summary>
public bool? ExecStatus { get; set; }
/// <summary>
/// 执行时间
/// </summary>
public DateTime? ExecTime { get; set; }
public bool? ActiveIndicator { get; set; }
}