完成门店管理后端接口与任务
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
namespace TakeoutSaaS.Domain.Stores.Events;
|
||||
|
||||
/// <summary>
|
||||
/// 门店强制关闭事件。
|
||||
/// </summary>
|
||||
public sealed class StoreForceClosedEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// 门店 ID。
|
||||
/// </summary>
|
||||
public long StoreId { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 租户 ID。
|
||||
/// </summary>
|
||||
public long TenantId { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 强制关闭原因。
|
||||
/// </summary>
|
||||
public string? Reason { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 强制关闭时间(UTC)。
|
||||
/// </summary>
|
||||
public DateTime ForceClosedAt { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user