using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Face.Domain.Application.FaceAll
{
///
/// 入住客人表
///
public class Lodger
{
///
/// id
///
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int LodgerId { get; set; }
///
/// 客户名字
///
[SugarColumn(ColumnDataType = "varchar(20)")]
public string LodgerNmae { get; set; }
///
/// 客户身份证
///
[SugarColumn(ColumnDataType = "varchar(100)")]
public string IDNumber { get; set; }
///
/// 性别 0女 1男
///
[SugarColumn(ColumnDataType = "int",IsNullable =true)]
public Nullable Sex { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDataType = "datetime(3)", IsNullable = true)]
public Nullable CheckInDate { get; set; }
///
/// 信息来源 0是人工 1是pms接口
///
[SugarColumn(ColumnDataType = "int")]
public int Sourcedian { get; set; }
///
/// 电话号码
///
[SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)]
public string phonenumber { get; set; }
///
/// 备注
///
[SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)]
public string remark { get; set; }
}
}