From fd1d2c1d5f519ddb4667019d6685ff270ad6716b Mon Sep 17 00:00:00 2001 From: sunpengfei <i@angelzzz.com> Date: 星期四, 11 九月 2025 09:49:42 +0800 Subject: [PATCH] feat:开发 --- FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/StopElectronSignCommand.cs | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/StopElectronSignCommand.cs b/FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/StopElectronSignCommand.cs index 93f5a3c..25b260d 100644 --- a/FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/StopElectronSignCommand.cs +++ b/FlexJobApi.Core/Models/UserServer/EnterpriseEmployees/Commands/StopElectronSignCommand.cs @@ -11,11 +11,16 @@ /// 鐏靛伐瑙g害 /// </summary> [Resource([EnumResourceController.UserServerEnterpriseEmployee])] - public class StopElectronSignCommand : IRequest<Guid> + public class StopElectronSignCommand : IRequest<int> { + public StopElectronSignCommand() + { + Ids = []; + } + /// <summary> /// 鐏靛伐Id /// </summary> - public Guid Id { get; set; } + public List<Guid> Ids { get; set; } } } -- Gitblit v1.9.1