using MediatR; using TakeoutSaaS.Application.App.Deliveries.Dto; namespace TakeoutSaaS.Application.App.Deliveries.Queries; /// /// 配送单详情查询。 /// public sealed class GetDeliveryOrderByIdQuery : IRequest { /// /// 配送单 ID。 /// public long DeliveryOrderId { get; init; } }