using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 机票预订费用多表联查类
///
public class ViewAirTicketReservationsPay
{
string flightsDescription;
///
/// 航班描述
///
public string FlightsDescription
{
get { return flightsDescription; }
set { flightsDescription = value; }
}
string flightsCode;
///
/// 航班号
///
public string FlightsCode
{
get { return flightsCode; }
set { flightsCode = value; }
}
string flights;
string flightsCity;
///
/// 城市A-B
///
public string FlightsCity
{
get { return flightsCity; }
set { flightsCity = value; }
}
string flightsDate;
///
/// 航班日期
///
public string FlightsDate
{
get { return flightsDate; }
set { flightsDate = value; }
}
string flightsTime;
///
/// 航班起飞时间
///
public string FlightsTime
{
get { return flightsTime; }
set { flightsTime = value; }
}
string clientName;
///
/// 客人名称
///
public string ClientName
{
get { return clientName; }
set { clientName = value; }
}
string name;
///
/// 币种名
///
public string Name
{
get { return name; }
set { name = value; }
}
float spread;
///
/// 机票预订费用 - RMB;PayMoney
///
public float Spread
{
get { return spread; }
set { spread = value; }
}
string priceDescription;
///
/// 费用说明
///
public string PriceDescription
{
get { return priceDescription; }
set { priceDescription = value; }
}
float prePrice;
///
/// 出票前报价
///
public float PrePrice
{
get { return prePrice; }
set { prePrice = value; }
}
float price;
///
/// 机票总价
///
public float Price
{
get { return price; }
set { price = value; }
}
string dayRate;
///
/// 当时汇率
///
public string DayRate
{
get { return dayRate; }
set { dayRate = value; }
}
string operatorDate;
///
/// 操作时间
///
public string OperatorDate
{
get { return operatorDate; }
set { operatorDate = value; }
}
float rMBPrice;
public float RMBPrice
{
get { return rMBPrice; }
set { rMBPrice = value; }
}
string isPay;
///
/// 付款状态
///
public string IsPay
{
get { return isPay; }
set
{
if (value != null && value != "" && value == "0")
isPay = "未付款";
else if (value != null && value != "" && value == "1")
isPay = "已付款";
else
isPay = "未付款";
}
}
string payee;
///
/// 收款方
///
public string Payee
{
get { return payee; }
set { payee = value; }
}
string orbitalPrivateTransfer;
///
/// 公转私转标识
///
public string OrbitalPrivateTransfer
{
get { return orbitalPrivateTransfer; }
set
{
if (value != null && value != "" && value == "0")
orbitalPrivateTransfer = "公转";
else if (value != null && value != "" && value == "1")
orbitalPrivateTransfer = "私转";
else
orbitalPrivateTransfer = "未知";
}
}
string payDid;
///
/// 支付方式Id
///
public string PayDid
{
get { return payDid; }
set { payDid = value; }
}
string paydName;
///
/// 支付方式名称
///
public string PaydName
{
get { return paydName; }
set { paydName = value; }
}
string auditGMDate;
///
/// 审核日期
///
public string AuditGMDate
{
get { return auditGMDate; }
set { auditGMDate = value; }
}
string operators;
///
/// 操作人
///
public string Operator
{
get { return operators; }
set { operators = value; }
}
///
/// 消费日期
///
string consumptionDate;
public string ConsumptionDate
{
get { return consumptionDate; }
set { consumptionDate = value; }
}
///
/// 付款卡
///
string cTDId;
public string CTDId
{
get { return cTDId; }
set { cTDId = value; }
}
///
/// 舱类型
///
string cType;
public string CType
{
get { return cType; }
set { cType = value; }
}
string arrivedTime;
///
/// 抵达时间
///
public string ArrivedTime
{
get { return arrivedTime; }
set { arrivedTime = value; }
}
int clientNum;
///
/// 客人人数
///
public int ClientNum
{
get { return clientNum; }
set { clientNum = value; }
}
public int IsMatchCreditCard { get; set; }
///
/// 卡类型
///
public string CarType { get; set; }
}
}