初始化

This commit is contained in:
2025-11-20 15:56:30 +08:00
commit ab6e620f8e
154 changed files with 29677 additions and 0 deletions

22
BLWWS_BLL/pmsLog.cs Normal file
View File

@@ -0,0 +1,22 @@
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; }
}
}