更新20260316
This commit is contained in:
9
PetWashControl/Models/CreateOrderResponse.cs
Normal file
9
PetWashControl/Models/CreateOrderResponse.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace PetWashControl.Models;
|
||||
|
||||
public sealed class CreateOrderResponse
|
||||
{
|
||||
public Order? Order { get; set; }
|
||||
public string CodeUrl { get; set; } = string.Empty;
|
||||
public string OutTradeNo { get; set; } = string.Empty;
|
||||
public DateTimeOffset? ExpiresAt { get; set; }
|
||||
}
|
||||
11
PetWashControl/Models/PaymentStatusResponse.cs
Normal file
11
PetWashControl/Models/PaymentStatusResponse.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace PetWashControl.Models;
|
||||
|
||||
public sealed class PaymentStatusResponse
|
||||
{
|
||||
public Order? Order { get; set; }
|
||||
public bool IsPaid { get; set; }
|
||||
public string TradeState { get; set; } = string.Empty;
|
||||
public string OutTradeNo { get; set; } = string.Empty;
|
||||
public string TransactionId { get; set; } = string.Empty;
|
||||
public string Message { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user