Files
Web_BLVLOG_Server_Mvc_Prod/DAL/PGModels/Qingao.cs

20 lines
380 B
C#
Raw Normal View History

2025-12-17 10:20:16 +08:00
using System;
using System.Collections.Generic;
namespace DAL.PGModels;
public partial class Qingao
{
public long Id { get; set; }
public string? RoomNumber { get; set; }
public string? HotelCode { get; set; }
public string? TakeCardStatus { get; set; }
public DateTime? CurrentTime { get; set; }
public bool? IsTriggerWelcomeMsg { get; set; }
}