From bbd4b2cecc2d8b9b141ffdf45ef5db51a0a0f53e Mon Sep 17 00:00:00 2001 From: sunpengfei <i@angelzzz.com> Date: 星期一, 11 八月 2025 14:49:26 +0800 Subject: [PATCH] feat:开发 --- FlexJobApi.Core/Models/UserServer/Auths/Commands/PasswordLoginCommand.cs | 18 ++++++++++++++++-- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/FlexJobApi.Core/Models/UserServer/Auths/Commands/PasswordLoginCommand.cs b/FlexJobApi.Core/Models/UserServer/Auths/Commands/PasswordLoginCommand.cs index 06b7e12..44167d7 100644 --- a/FlexJobApi.Core/Models/UserServer/Auths/Commands/PasswordLoginCommand.cs +++ b/FlexJobApi.Core/Models/UserServer/Auths/Commands/PasswordLoginCommand.cs @@ -13,7 +13,7 @@ /// 瀵嗙爜鐧诲綍 /// </summary> [Resource([EnumResourceController.Auth], AllowAnonymous = true)] - public class PasswordLoginCommand : IRequest<PasswordLoginCommandCallback> + public class PasswordLoginCommand : IRequest<LoginCommandCallback> { /// <summary> /// 璐﹀彿 @@ -41,8 +41,13 @@ /// <summary> /// 瀵嗙爜鐧诲綍缁撴灉 /// </summary> - public class PasswordLoginCommandCallback + public class LoginCommandCallback { + /// <summary> + /// 鐢ㄦ埛Id + /// </summary> + public Guid Id { get; set; } + /// <summary> /// 鐢ㄦ埛璁块棶浠ょ墝 /// </summary> @@ -53,5 +58,14 @@ /// </summary> public string RefreshToken { get; set; } + /// <summary> + /// 浼氳瘽绉橀挜锛堜粎鐢ㄤ簬寰俊灏忕▼搴忔巿鏉冪櫥褰曪級 + /// </summary> + public string SessionKey { get; set; } + + /// <summary> + /// 鏄惁宸茬粦瀹氭墜鏈哄彿锛堜粎鐢ㄤ簬寰俊灏忕▼搴忔巿鏉冪櫥褰曪級 + /// </summary> + public bool IsBindPhoneNumber { get; set; } } } -- Gitblit v1.9.1