This commit is contained in:
he
2022-10-31 11:31:13 +08:00
parent 32ce9f938f
commit c3f489ece7
8 changed files with 15 additions and 10 deletions
@@ -13,7 +13,7 @@ namespace IRaCIS.Application.ViewModels
public string FullPath => SystemConfig.RootUrl + Path;
public string FileName { get; set; } = string.Empty;
public DateTime? CreateTime { get; set; }
public int Language { get; set; }
}
public class ReviewerAckDTO
@@ -25,7 +25,7 @@ namespace IRaCIS.Application.ViewModels.Pay
public decimal PaymentUSD { get; set; }
public decimal PaymentCNY { get; set; }
public bool? IsNewTrial { get; set; }
//public bool? IsNewTrial { get; set; }
//public decimal? NewPersonalAdditional { get; set; }
@@ -101,14 +101,14 @@ namespace IRaCIS.Application.ViewModels
{
get
{
return this.Row.Sum(x => x.PaymentUSD);
return this.Row.Sum(x => x.TotalPaymentUSD);
}
}
public decimal SumPaymentCNY {
get
{
return this.Row.Sum(x => x.PaymentCNY);
return this.Row.Sum(x => x.TotalPaymentCNY);
}
}
}