using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Models { /// /// 酒店提前询价录入 /// public class AirAdvanceInquiry { /// /// 编号 /// public int Id { get; set; } /// /// 团组编号 /// public int Diid { get; set; } /// /// 地区域 /// public string Area { get; set; } /// /// 航空公司 /// public string Airlines { get; set; } /// /// 航空公司 班次 /// public string Shift { get; set; } /// /// 航班起飞时间 /// public string StartTime { get; set; } /// /// 航班结束时间 /// public string EndTime { get; set; } /// /// 舱位类型 /// public string SpaceType { 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; } /// /// 全价 /// public float FullPrice { get; set; } /// /// 即时票价 /// public float InstantPrice { get; set; } } }