12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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:Grp_CarTouristGuideGroundReservations
- {
-
-
-
- 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 CurrencyStr { get; set; }
- }
- }
|