完成门店管理后端接口与任务
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using MediatR;
|
||||
using TakeoutSaaS.Application.App.StoreAudits.Dto;
|
||||
|
||||
namespace TakeoutSaaS.Application.App.StoreAudits.Commands;
|
||||
|
||||
/// <summary>
|
||||
/// 解除强制关闭命令。
|
||||
/// </summary>
|
||||
public sealed record ReopenStoreCommand : IRequest<StoreAuditActionResultDto>
|
||||
{
|
||||
/// <summary>
|
||||
/// 门店 ID。
|
||||
/// </summary>
|
||||
public long StoreId { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注。
|
||||
/// </summary>
|
||||
public string? Remark { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user