From 7912941b7ab3917f91657689b1c8dd01e5cd93f3 Mon Sep 17 00:00:00 2001
From: sunpengfei <i@angelzzz.com>
Date: 星期五, 08 八月 2025 14:11:28 +0800
Subject: [PATCH] fix:bug

---
 FlexJobApi.UserServer.Application/Auths/Commands/VerifyCodeCommandHandler.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/FlexJobApi.UserServer.Application/Auths/Commands/VerifyCodeCommandHandler.cs b/FlexJobApi.UserServer.Application/Auths/Commands/VerifyCodeCommandHandler.cs
index 00c5761..53f1941 100644
--- a/FlexJobApi.UserServer.Application/Auths/Commands/VerifyCodeCommandHandler.cs
+++ b/FlexJobApi.UserServer.Application/Auths/Commands/VerifyCodeCommandHandler.cs
@@ -13,7 +13,7 @@
     /// 楠岃瘉鐮佸懡浠ゅ鐞嗗櫒
     /// </summary>
     public class VerifyCodeCommandHandler
-        : IRequestHandler<SendVerifyCodeCommand>
+        : IRequestHandler<SendVerifyCodeCommand, Guid>
     {
         /// <summary>
         /// 鍙戦�侀獙璇佺爜
@@ -21,7 +21,7 @@
         /// <param name="request"></param>
         /// <param name="cancellationToken"></param>
         /// <returns></returns>
-        public Task Handle(SendVerifyCodeCommand request, CancellationToken cancellationToken)
+        public Task<Guid> Handle(SendVerifyCodeCommand request, CancellationToken cancellationToken)
         {
             throw new Exception();
             //var callback = new FriendlyEmptyCallback();

--
Gitblit v1.9.1