master
he 2022-09-29 09:44:15 +08:00
parent f17bc98345
commit 534e229fad
2 changed files with 8 additions and 0 deletions

View File

@ -64,6 +64,14 @@ namespace IRaCIS.Application.ViewModels
public decimal TotalPaymentUSD { get; set; }
public PaymentMethod PaymentMethod { get; set; }
public string Paymethod
{
get
{
return PaymentMethod == PaymentMethod.CloudPayment ? "云账户" : "Direct";
}
}
}
public class PaymentCommand