123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- using OASystem.Domain.Entities.Groups;
- using SqlSugar.Extensions;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
- public class CarTouristCreditCardPaymentView
- {
-
-
-
- public int PayDId { get; set; }
-
-
-
- public string PayName { get; set; }
-
-
-
- public decimal PayMoney { get; set; }
-
-
-
- public int PaymentCurrency { get; set; }
-
-
-
- public string PaymentCurrencyName { get; set; }
-
-
-
- public decimal PayPercentage { get; set; }
-
-
-
- public string Payee { get; set; }
-
-
-
- public int OrbitalPrivateTransfer { get; set; }
-
-
-
- public string OrbitalPrivateTransferStr { get; set; }
-
-
-
- public int IsAuditGM { get; set; }
- public string ConsumptionPatterns { get; set; }
- public int Ctdid { get; set; }
- public string BankNo { get; set; }
- public string CardholderName { get; set; }
- public string ConsumptionDate { get; set; }
- public string CompanyBankNo { get; set; }
- public string OtherBankName { get; set; }
- public string OtherSideNo { get; set; }
- public string OtherSideName { get; set; }
- }
- public class CarTouristGuideGroundReservationsContentView
- {
- public int Id { get; set; }
-
-
-
- public int SId { get; set; }
-
-
-
- public string SidName { 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 Grp_CarTouristGuideGroundReservationsContentExtend: Grp_CarTouristGuideGroundReservationsContent
- {
- public string SidName { get; set; }
- public string DataPriceStr { get {
- return this.DatePrice.ObjToDate().ToString("M月d日");
- } }
- public decimal Subtotal { get {
- return this.Count * this.Price;
- } }
- }
- public class CarCompare
- {
- public int Sid { get; set; }
- public DateTime DataPrice { get; set; }
-
- }
- }
|