mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
12 lines
265 B
C#
12 lines
265 B
C#
|
|
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Pay;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 查询订单状态输入DTO
|
||
|
|
/// </summary>
|
||
|
|
public class QueryOrderStatusInput
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 商家订单号
|
||
|
|
/// </summary>
|
||
|
|
public string OutTradeNo { get; set; }
|
||
|
|
}
|