23 lines
602 B
C#
23 lines
602 B
C#
|
|
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; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|