using MediatR; using TakeoutSaaS.Application.App.Inventory.Dto; namespace TakeoutSaaS.Application.App.Inventory.Queries; /// /// 查询库存批次列表。 /// public sealed record GetInventoryBatchesQuery : IRequest> { /// /// 门店 ID。 /// public long StoreId { get; init; } /// /// SKU ID。 /// public long ProductSkuId { get; init; } }