初始化

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

20
BLWWS_BLL/PmsInterface.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BLWWS_BLL
{
public class PmsInterface
{
public int pmsId { get; set; }
public System.DateTime DateTime { get; set; }
public string pmsContent { get; set; }
public int hotelid { get; set; }
public Nullable<int> room { get; set; }
public string faceSN { get; set; }
public Nullable<int> issueresult { get; set; }
public Nullable<int> pmstype { get; set; }
public string messageid { get; set; }
}
}