52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Face.Domain.Application.FaceAll
|
|
{
|
|
/// <summary>
|
|
/// pms信息
|
|
/// </summary>
|
|
public class pmsInfo
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
|
|
|
|
|
|
public int pmsid { get; set; }
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable =true)]
|
|
|
|
public Nullable<System.DateTime> Creationtime { get; set; }
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "varchar(300)")]
|
|
public string data { get; set; }
|
|
/// <summary>
|
|
/// 信息类型 0是退房 1是开房
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
|
|
|
public Nullable<int> infotype { get; set; }
|
|
/// <summary>
|
|
/// 酒店id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
|
|
|
public Nullable<int> hotelid { get; set; }
|
|
/// <summary>
|
|
/// 房间id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
|
|
public Nullable<int> room { get; set; }
|
|
}
|
|
}
|