21 lines
476 B
C#
21 lines
476 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Inventory.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.Inventory.Queries;
|
|
|
|
/// <summary>
|
|
/// 查询库存批次列表。
|
|
/// </summary>
|
|
public sealed record GetInventoryBatchesQuery : IRequest<IReadOnlyList<InventoryBatchDto>>
|
|
{
|
|
/// <summary>
|
|
/// 门店 ID。
|
|
/// </summary>
|
|
public long StoreId { get; init; }
|
|
|
|
/// <summary>
|
|
/// SKU ID。
|
|
/// </summary>
|
|
public long ProductSkuId { get; init; }
|
|
}
|