feat: 门店员工与排班管理上线
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using MediatR;
|
||||
|
||||
namespace TakeoutSaaS.Application.App.Stores.Commands;
|
||||
|
||||
/// <summary>
|
||||
/// 删除员工排班命令。
|
||||
/// </summary>
|
||||
public sealed record DeleteStoreEmployeeShiftCommand : IRequest<bool>
|
||||
{
|
||||
/// <summary>
|
||||
/// 门店 ID。
|
||||
/// </summary>
|
||||
public long StoreId { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 排班 ID。
|
||||
/// </summary>
|
||||
public long ShiftId { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user