feat(marketing): implement marketing calendar backend
All checks were successful
Build and Deploy TenantApi + SkuWorker / build-and-deploy (push) Successful in 1m59s

This commit is contained in:
2026-03-03 10:10:41 +08:00
parent decfa4fa12
commit 1b28fa6db4
8 changed files with 1891 additions and 1 deletions

View File

@@ -38,6 +38,14 @@ public interface IPunchCardRepository
IReadOnlyCollection<long> templateIds,
CancellationToken cancellationToken = default);
/// <summary>
/// 查询单门店全部次卡模板。
/// </summary>
Task<IReadOnlyList<PunchCardTemplate>> GetTemplatesByStoreAsync(
long tenantId,
long storeId,
CancellationToken cancellationToken = default);
/// <summary>
/// 按模板批量统计售卖与在用信息。
/// </summary>