using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 酒店资料类 /// public class HotelData : ModelBase { string city; /// /// 所在城市 /// public string City { get { return city; } set { city = value; } } string level; /// /// 酒店星级 /// public string Level { get { return level; } set { level = value; } } string address; /// /// 酒店地址 /// public string Address { get { return address; } set { address = value; } } string tel; /// /// 酒店电话 /// public string Tel { get { return tel; } set { tel = value; } } string fax; /// /// 酒店传真 /// public string Fax { get { return fax; } set { fax = value; } } public string Contact { get; set; } public string ContactPhone { get; set; } string otherInformation; /// /// 酒店其他信息 /// public string OtherInformation { get { return otherInformation; } set { otherInformation = value; } } int operators; /// /// 操作人 /// public int Operators { get { return operators; } set { operators = value; } } string operatorsDate; /// /// 操作时间 /// public string OperatorsDate { get { return operatorsDate; } set { operatorsDate = value; } } int isDel; /// /// 删除标识 /// public int IsDel { get { return isDel; } set { isDel = value; } } } }