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

30 lines
580 B
C#

using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class KongTiaoTimer
{
public int Id { get; set; }
public int? HotelId { get; set; }
public string? HotelCode { get; set; }
public int? HostId { get; set; }
public string? RoomNo { get; set; }
public string MissonKey { get; set; } = null!;
public int? IsCancel { get; set; }
public string? StartTime { get; set; }
public string? EndTime { get; set; }
public string? CreateTime { get; set; }
public string? CreateDate { get; set; }
}