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 Hotel
{
///
/// id
///
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int ID { get; set; }
///
/// 酒店code
///
[SugarColumn(ColumnDataType = "varchar(20)")]
public string Code { get; set; }
///
/// 备注
///
[SugarColumn(ColumnDataType = "varchar(50)")]
public string Remark { get; set; }
///
/// 是否使用微信
///
[SugarColumn(ColumnDataType = "bit")]
public bool UserWX { get; set; }
///
/// 酒店ID,跟云端对应
///
[SugarColumn(ColumnDataType = "int")]
public int HotelID { get; set; }
}
}