From 376f3de70bfdd7905876123ba5a331c0aa176199 Mon Sep 17 00:00:00 2001
From: 小飞侠 <8277136+liaoxujun@user.noreply.gitee.com>
Date: 星期四, 25 九月 2025 09:10:29 +0800
Subject: [PATCH] 修改注册时可以多模块注册
---
Admin.NET/FZCTB.NET.API.Application/Auth/DTO/CustomerLoginOutput.cs | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 59 insertions(+), 0 deletions(-)
diff --git a/Admin.NET/FZCTB.NET.API.Application/Auth/DTO/CustomerLoginOutput.cs b/Admin.NET/FZCTB.NET.API.Application/Auth/DTO/CustomerLoginOutput.cs
index 1e2d66b..70f1c78 100644
--- a/Admin.NET/FZCTB.NET.API.Application/Auth/DTO/CustomerLoginOutput.cs
+++ b/Admin.NET/FZCTB.NET.API.Application/Auth/DTO/CustomerLoginOutput.cs
@@ -18,6 +18,10 @@
public class CustomerLoginOutput
{
/// <summary>
+ ///
+ /// </summary>
+ public bool TheLastLogo { get; set; }
+ /// <summary>
/// 浠ょ墝Token
/// </summary>
public string AccessToken { get; set; }
@@ -31,6 +35,19 @@
/// 鐢ㄦ埛瑙掕壊鍗冲畬鎴愭儏鍐�
/// </summary>
public List<CustomerExRoleVm>? ExRoles { get; set; }
+
+ /// <summary>
+ /// 鍏宠仈浼佷笟鏈烘瀯
+ /// </summary>
+ public List<CustomerExVm>? CustomerExs { get; set; }
+ /// <summary>
+ /// 涓存椂楠岃瘉鐮�
+ /// </summary>
+ public string? Code { get; set; }
+ /// <summary>
+ /// 鏄惁鏄鐞嗗憳
+ /// </summary>
+ public bool IsManager { get; set; }
}
/// <summary>
@@ -57,9 +74,14 @@
/// </summary>
public bool HasFlsh { get; set; } = false;
+
+
}
+
+
+
public class CustomerLoginPhoneInput
{
@@ -85,5 +107,42 @@
/// </summary>
public string? ExRuleCode { get; set; }
+
+ /// <summary>
+ /// 绗簩娆$櫥闄嗙殑Id
+ /// </summary>
+ public long? Id { get; set; }
+
}
+
+/// <summary>
+/// 浼佷笟鏈烘瀯鍒楄〃
+/// </summary>
+public class CustomerExVm
+{
+ /// <summary>
+ /// 纭鐢ㄦ埛ID
+ /// </summary>
+ public long CustomerUserID { get; set; }
+
+ /// <summary>
+ /// 浼佷笟鍚嶇О
+ /// </summary>
+ [Required(ErrorMessage = "浼佷笟鍚嶇О涓哄繀濉」")]
+ [SugarColumn(ColumnDescription = "浼佷笟鍚嶇О")]
+ public string EnterpriseName { get; set; }
+
+ /// <summary>
+ /// 缁熶竴绀句細淇$敤浠g爜
+ /// </summary>
+ [Required(ErrorMessage = "缁熶竴绀句細淇$敤浠g爜涓哄繀濉」")]
+ [SugarColumn(ColumnDescription = "缁熶竴绀句細淇$敤浠g爜")]
+ public string UnifiedSocialCreditCode { get; set; }
+
+ /// <summary>
+ /// 鏄惁鏄鐞�
+ /// </summary>
+ public bool IsManger { get; set; }
+
+}
\ No newline at end of file
--
Gitblit v1.9.1