123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Groups
- {
-
-
-
- public class CarTouristGuideGroundDto: DtoBase
- {
-
-
-
- public int DiId { get; set; }
- public int IsPaySign { get; set; } = -1;
- }
-
-
-
- public class CarTouristGuideGroundIdDto
- {
- public int Id { get; set; }
- }
-
-
-
- public class OpCarTouristGuideGroundDto
- {
-
-
-
-
-
- public int Status { get; set; }
-
-
-
- public int Id { get; set; }
-
-
-
- public int DiId { get; set; }
-
-
-
- public string Area { get; set; }
-
-
-
- public string ServiceCompany { get; set; }
-
-
-
- public string ServiceGuide { get; set; }
-
-
-
- public string ServiceTel { get; set; }
-
-
-
- public string BusName { get; set; }
-
-
-
- public string BusDescription { get; set; }
-
-
-
- public string BusTel { get; set; }
-
-
-
- public string ServiceStartTime { get; set; }
-
-
-
- public string ServiceEndTime { get; set; }
-
-
-
- public string ServiceDescription { get; set; }
-
-
-
-
- public int OrbitalPrivateTransfer { get; set; }
-
-
-
- public int CreateUserId { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public int PriceType { get; set; }
-
-
-
- public string PriceName { get; set; }
- }
- public class CarTouristGuideGroundContentDto : PortDtoBase
- {
- public int UserId { get; set; }
- public int Id { get; set; }
- }
- public class OpCarTouristGuideGroundContentDto
- {
-
-
-
- public int DiId { get; set; }
-
-
-
- public int CTGGRId { get; set; }
-
-
-
- public int OrbitalPrivateTransfer { get; set; }
-
-
-
- public decimal PayPercentage { get; set; }
-
-
-
- public string Payee { get; set; }
-
-
-
- public int PayDId { get; set; }
-
-
-
- public int Currency { get; set; }
-
-
-
- public List<OPContentList> OPContentList { get; set; }
-
-
-
- public int CreateUserId { get; set; }
-
-
-
- public List<string> SelectCheck { get; set; }
-
-
-
- public int toCurr { get; set; }
-
-
-
- public decimal Rate { get; set; }
- }
- public class OPContentList
- {
-
-
-
-
- public int Id { get; set; }
-
-
-
- public int SId { get; set; }
-
-
-
- public decimal Price { get; set; }
-
-
-
- public string priceContent { get; set; }
-
-
-
- public DateTime? DatePrice { get; set; }
-
-
-
- public int Count { get; set; }
-
-
-
- public int Units { get; set; }
-
-
-
-
- }
- public class InitOpTravelDto
- {
- public int Diid { get; set;}
- }
- public class ExportTravelDto
- {
- public int Diid { get; set; }
- public int IsPDF { get; set; } = 0;
- }
- public class DelOpTravelDto
- {
- public int Diid { get; set; }
- public int UserId { get; set; }
- }
- public class TravelSaveDto
- {
- public List<TravelArrView> Arr { get; set; }
- }
- public class TravelArrView
- {
- public int Id { get; set; }
-
-
-
- public int Diid { get; set; }
-
-
-
- public int Days { get; set; }
-
-
-
- public string Date { get; set; }
-
-
-
- public string WeekDay { get; set; }
-
-
-
- public string Traffic_First { get; set; }
-
-
-
- public string Traffic_Second { get; set; }
-
-
-
- public string Trip { get; set; }
-
-
-
- public int Diffgroup { get; set; }
- }
- public class ExportLocalGuidePriceDetailDto
- {
- public int Diid { get; set; }
- }
- }
|