123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- 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_Fin_CreditCardPaymentView:Grp_CreditCardPayment
- { }
- public class Grp_CreditCardPaymentView
- {
-
-
-
- public int DiId { get; set; }
-
-
-
- public string TeamName { get; set; }
-
-
-
- public string ClientName { get; set; }
-
-
-
- public string VisitCountry { get; set; }
-
-
-
- public string VisitDate { get; set; }
-
-
-
- public int VisitDays { get; set; }
-
-
-
- public int VisitPNumber { get; set; }
-
-
-
- public List<Grp_CreditCardPaymentDetailView> DetailList { get; set; }
- public string TotalStr1 { get; set; }
- public string TotalStr2 { get; set; }
- public string TotalStr3 { get; set; }
- public string TotalStr4 { get; set; }
- }
- public class Grp_CreditCardPaymentDetailView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string PriceNameContent { get; set; }
-
-
-
- public string PriceMsgContent { get; set; }
-
-
-
- public string PriceName { get; set; }
-
-
-
- public string BusName { get; set; }
-
-
-
- public string WaitPay { get; set; }
-
-
-
- public string CurrPay { get; set; }
-
-
-
- public string Balance { get; set; }
-
-
-
- public string OperatorName { get; set; }
-
-
-
- public string AuditOperatorName { get; set; }
-
-
-
- public int IsAuditGM { get; set; }
-
-
-
- public string OverBudget { get; set; }
-
- }
- }
|