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; } } }