123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- 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 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 class CarTouristGuideGroundContentDto
- {
- public int UserId { 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 class OPContentList
- {
-
-
-
-
- public int Id { get; set; }
-
-
-
- public int SId { get; set; }
-
-
-
- public decimal Price { get; set; }
-
-
-
- public string priceContent { get; set; }
-
-
-
-
- }
- }
|