24 lines
437 B
C#
24 lines
437 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DAL.New_Models;
|
|
|
|
public partial class TbWxmessage
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int? HotelId { get; set; }
|
|
|
|
public string? RoomNumber { get; set; }
|
|
|
|
public string? Message { get; set; }
|
|
|
|
public string? Contact { get; set; }
|
|
|
|
public DateTime? Time { get; set; }
|
|
|
|
public bool? IsRead { get; set; }
|
|
|
|
public string? Remark { get; set; }
|
|
}
|