using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 机票预订类
///
public class AirTicketReservations
{
int id;
///
/// 主键编号
///
public int Id
{
get { return id; }
set { id = value; }
}
int dIId;
///
/// 团组外键编号
///
public int DIId
{
get { return dIId; }
set { dIId = value; }
}
string edition;
///
/// 版本
///
public string Edition
{
get { return edition; }
set { edition = value; }
}
string flightsCode;
///
/// 航班号
///
public string FlightsCode
{
get { return flightsCode; }
set { flightsCode = value; }
}
string flightsDate;
///
/// 航班日期
///
public string FlightsDate
{
get { return flightsDate; }
set { flightsDate = value; }
}
string flightsTime;
///
/// 航班时间
///
public string FlightsTime
{
get { return flightsTime; }
set { flightsTime = value; }
}
string arrivedTime;
///
/// 抵达时间
///
public string ArrivedTime
{
get { return arrivedTime; }
set { arrivedTime = value; }
}
///
/// 是否值机
///
public string IsCheckIn { get; set; }
///
/// 是否选座
///
public string IsSetSeat { get; set; }
///
/// 是否购买行李服务
///
public string IsPackage { get; set; }
///
/// 是否行李直挂
///
public string IsBagHandle { get; set; }
///
/// 是否火车票出票选座
///
public string IsTrain { get; set; }
string flightsCity;
///
/// 城市A-B
///
public string FlightsCity
{
get { return flightsCity; }
set { flightsCity = value; }
}
///
/// 去程航班描述代码
///
public string LeaveDescription { get; set; }
/// ///
/// 内陆段航班描述
///
public string FlightsDescription
{
get { return flightsDescription; }
set { flightsDescription = value; }
}
///
/// 返程航班描述代码
///
public string ReturnDescription { get; set; }
string flightsDescription;
int clientNum;
///
/// 客户人数
///
public int ClientNum
{
get { return clientNum; }
set { clientNum = value; }
}
string clientName;
///
/// 客人名称
///
public string ClientName
{
get { return clientName; }
set { clientName = value; }
}
float prePrice;
///
/// 出票前报价
///
public float PrePrice
{
get { return prePrice; }
set { prePrice = value; }
}
float preCurrency;
///
/// 出票前报价币种
///
public float PreCurrency
{
get { return preCurrency; }
set { preCurrency = value; }
}
float price;
///
/// 机票全价
///
public float Price
{
get { return price; }
set { price = value; }
}
int currency;
///
/// 币种
///
public int Currency
{
get { return currency; }
set { currency = value; }
}
string priceDescription;
///
/// 报价说明
///
public string PriceDescription
{
get { return priceDescription; }
set { priceDescription = value; }
}
///
/// 机票编号
///
public string TicketNumber { get; set; }
///
/// 机票票号
///
public string TicketCode { get; set; }
string remark;
///
/// 备注
///
public string Remark
{
get { return remark; }
set { remark = 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; }
}
///
/// 舱类型
///
int cType;
public int CType
{
get { return cType; }
set { cType = value; }
}
///
/// 乘客类型
///
public string PassengerType { get; set; }
}
}