using OASystem.Domain.Attributes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Resource { /// /// 酒店数据表 /// [SugarTable("Res_HotelData")] public class Res_HotelData:EntityBase { /// /// 所在城市 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string City { get; set; } /// /// 酒店名称 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string Name { get; set; } /// /// 酒店星级 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string Level { get; set; } /// /// 酒店地址 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")] public string Address { get; set; } /// /// 酒店电话 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Tel { get; set; } /// /// 酒店传真 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Fax { get; set; } /// /// 联系人 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string Contact { get; set; } /// /// 联系方式 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string ContactPhone { get; set; } /// /// 酒店其他信息 /// [Encrypted] [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string OtherInformation { get; set; } } }