using OASystem.Domain.Entities.Groups;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.ViewModels.Groups
{
public class AirTicketReservationsView:Grp_AirTicketReservations
{
///
/// 总经理是否审核
///
public int IsAuditGM { get; set; }
///
/// 舱类型
///
public string CTypeName { get; set; }
public string PreCurrencyStr { get; set; }
public string CurrencyStr { get; set; }
public string FlightDescription { get; set; }
}
public class AirGroupCostParameterView
{
///
/// 经济舱成本
///
public decimal JJCCB { get; set; }
///
/// 经济舱系数
///
public decimal JJCXS { get; set; }
///
/// 经济舱人数
///
public int JJCRS { get; set; }
///
/// 公务舱成本
///
public decimal GWCCB { get; set; }
///
/// 公务舱系数
///
public decimal GWCXS { get; set; }
///
/// 公务舱人数
///
public int GWCRS { get; set; }
}
}