- 新增 TenantReviewClaim 和 TenantAuditLog 实体 - 新增 TenantAuditAction 枚举 - 新增审核领取相关接口:GET/POST /review/claim, /review/force-claim, /review/release - 新增审核日志接口:GET /audits - 更新 ITenantRepository 和 EfTenantRepository - 更新 TakeoutAppDbContext 添加 DbSet Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
282 B
C#
10 lines
282 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.Tenants.Contracts;
|
|
|
|
namespace TakeoutSaaS.Application.App.Tenants.Commands;
|
|
|
|
/// <summary>
|
|
/// 领取租户审核命令。
|
|
/// </summary>
|
|
public sealed record ClaimTenantReviewCommand(long TenantId) : IRequest<TenantReviewClaimDto>;
|