| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | 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{    /// <summary>    /// 酒店数据表    /// </summary>    [SugarTable("Res_HotelData")]    public class Res_HotelData:EntityBase    {        /// <summary>        /// 所在城市        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]        public string City { get; set; }        /// <summary>        /// 酒店名称        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]        public string Name { get; set; }        /// <summary>        /// 酒店星级        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]        public string Level { get; set; }        /// <summary>        /// 酒店地址        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]        public string Address { get; set; }        /// <summary>        /// 酒店电话        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]        public string Tel { get; set; }        /// <summary>        /// 酒店传真        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]        public string Fax { get; set; }        /// <summary>        /// 联系人        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]        public string Contact { get; set; }        /// <summary>        /// 联系方式        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]        public string ContactPhone { get; set; }        /// <summary>        /// 酒店其他信息        /// </summary>        [Encrypted]        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]        public string OtherInformation { get; set; }    }}
 |