123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- 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 string ClientNameStr { get; set; }
- public int IsPay { 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; }
- }
- public class AirTicketReservationsPayView
- {
-
-
-
- public string TourCode { get; set; }
-
-
-
- public string TeamName { get; set; }
-
-
-
- public string FlightsCity { get; set; }
-
-
-
- public string FlightsDescription { get; set; }
-
-
-
- public string FlightsCode { get; set; }
-
-
-
- public string CTypeName { get; set; }
-
-
-
- public string ClientName { get; set; }
-
-
-
- public int ClientNum { get; set; }
-
-
-
- public decimal PrePrice { get; set; }
-
-
-
- public decimal Price { get; set; }
-
-
-
- public string PayType { get; set; }
-
-
-
- public string OrbitalPrivateTransfer { get; set; }
-
-
-
- public string BankNo { get; set; }
-
-
-
- public string BankType { get; set; }
-
-
-
- public DateTime CreateTime { get; set; }
-
-
-
- public string Payee { get; set; }
-
-
-
- public string PriceDescription { get; set; }
-
-
-
- public string CurrencyStr { get; set; }
- }
-
-
-
- public class Itinerary
- {
-
-
-
- public string AirlineRecordCode { get; set; } = "--";
-
-
-
- public string ReservationRecordCode{ get; set; } = "--";
-
-
-
- public string ClientName{ get; set; } = "--";
-
-
-
- public string TicketNumber{ get; set; } = "--";
-
-
-
- public string IdentificationCode{ get; set; } = "--";
-
-
-
- public string JointTicket{ get; set; } = "--";
-
-
-
- public string AirlineCompany{ get; set; } = "--";
-
-
-
- public string TimeIssue{ get; set; } = "--";
-
-
-
- public string DrawingAgent{ get; set; } = "--";
-
-
-
- public string NavigationCode{ get; set; } = "--";
-
-
-
- public string AgentsAddress{ get; set; } = "--";
-
-
-
- public string AgentPhone{ get; set; } = "--";
-
-
-
- public string AgentFacsimile{ get; set; } = "--";
-
-
-
- public List<AirInfo> AirInfo { get;set; } = new List<AirInfo>();
- }
-
-
-
- public class AirInfo
- {
-
-
-
- public string Destination { get; set; }
-
-
-
- public string Flight { get; set; }
-
-
-
- public string SeatingClass { get; set; }
-
-
-
- public string FlightDate { get; set; }
-
-
-
- public string DepartureTime { get; set; }
-
-
-
- public string LandingTime { get; set; }
-
-
-
- public string ValidityPeriod { get; set; }
-
-
-
- public string TicketStatus { get; set; }
-
-
-
- public string Luggage { get; set; }
-
-
-
- public string DepartureTerminal { get; set; }
-
-
-
- public string LandingTerminal { get; set; }
- }
- }
|