123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- 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 Grp_CarTouristGuideGroundView
- {
- 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 decimal ServiceQuotedPrice { get; set; }
-
-
-
- public int OrbitalPrivateTransfer { get; set; }
-
-
-
- public string ServiceDescription { get; set; }
-
-
-
- public string OrbitalPrivateTransferStr { get; set; }
-
-
-
- public int CId { get; set; }
-
-
-
-
- public string Remark { get; set; }
-
-
-
- public int RowNumber { get; set; }
-
-
-
- public decimal PayPercentage { get; set; }
-
-
-
- public decimal PayThenMoney { get; set; }
- public decimal PayMoney { get; set; }
-
-
-
- public decimal RemainingBalance { get; set; }
-
-
-
- public int IsAuditGM { get; set; }
-
-
-
- public string IsAuditGMStr { get; set; }
-
-
-
- public string CurrencyStr { get; set; }
-
-
-
- public int PayDid { get; set; }
-
-
-
- public string PayStrd { get; set; }
-
-
-
- public string priceTypeStr { get; set; }
- public int IsPay { get; set; }
-
-
-
- public string priceName { get; set; }
- }
- }
|