feat: 商品上架/下架与全量详情支持

This commit is contained in:
2025-12-04 10:03:42 +08:00
parent 9220e0ca36
commit de5f13ec83
25 changed files with 785 additions and 36 deletions

View File

@@ -19,7 +19,7 @@ public interface IProductRepository
/// <summary>
/// 按分类与状态筛选商品列表。
/// </summary>
Task<IReadOnlyList<Product>> SearchAsync(long tenantId, long? categoryId, ProductStatus? status, CancellationToken cancellationToken = default);
Task<IReadOnlyList<Product>> SearchAsync(long tenantId, long? storeId, long? categoryId, ProductStatus? status, CancellationToken cancellationToken = default);
/// <summary>
/// 获取租户下的商品分类。