Files
Web_PMSApi_Server_V1_Prod/BLWWS_BLL/pmsLog.cs

23 lines
602 B
C#
Raw Normal View History

2025-11-20 15:56:30 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BLWWS_BLL
{
public class pmsLog
{
public int id { get; set; }
public int pmsid { get; set; }
public Nullable<int> step { get; set; }
public Nullable<int> app { get; set; }
public Nullable<System.DateTime> Creationtime { get; set; }
public string message { get; set; }
public string Data { get; set; }
public string HotelCode { get; set; }
public string roomid { get; set; }
public string Ip { get; set; }
}
}