1234567891011121314151617181920212223242526272829303132333435363738 |
- 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 RemainingBalance { get; set; }
-
-
-
- public int IsAuditGM { get; set; }
-
-
-
- public string CurrencyStr { get; set; }
- }
- }
|