修改
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user