using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { /// /// 酒店提前询价录入类 /// public class HotelAdvanceInquiry { /// /// 编号 /// public int Id { get; set; } /// /// 团组编号 /// public int Diid { get; set; } /// /// 地区域 /// public string Area { get; set; } /// ///酒店名称 /// public string HotelName { get; set; } /// /// 房间类型 /// public string RoomType { get; set; } /// /// 查询时间 /// public string SelectTime { get; set; } /// /// 最低价格 /// public float LowestPrice { get; set; } /// /// 描述 /// public string Remark { get; set; } /// /// 操作人 /// public int Oper { get; set; } /// /// 操作时间 /// public string OperDate { get; set; } /// /// 删除标识 /// public int Isdel { get; set; } } }