21 lines
580 B
C#
21 lines
580 B
C#
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; }
|
|
}
|
|
}
|