diff --git a/src/blazor/admin/BootStarpAdmin.DataAccess.SqlSugar/Models/UserGroup.cs b/src/blazor/admin/BootStarpAdmin.DataAccess.SqlSugar/Models/UserGroup.cs
new file mode 100644
index 00000000..6ddc4884
--- /dev/null
+++ b/src/blazor/admin/BootStarpAdmin.DataAccess.SqlSugar/Models/UserGroup.cs
@@ -0,0 +1,27 @@
+// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
+// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
+// Website: https://admin.blazor.zone
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BootStarpAdmin.DataAccess.SqlSugar.Models;
+
+///
+///
+///
+public class UserGroup
+{
+ ///
+ ///
+ ///
+ public string? UserId { get; set; }
+
+ ///
+ ///
+ ///
+ public string? GroupId { get; set; }
+}
diff --git a/src/blazor/admin/BootStarpAdmin.DataAccess.SqlSugar/Models/UserRole.cs b/src/blazor/admin/BootStarpAdmin.DataAccess.SqlSugar/Models/UserRole.cs
new file mode 100644
index 00000000..e7dade85
--- /dev/null
+++ b/src/blazor/admin/BootStarpAdmin.DataAccess.SqlSugar/Models/UserRole.cs
@@ -0,0 +1,27 @@
+// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
+// Licensed under the LGPL License, Version 3.0. See License.txt in the project root for license information.
+// Website: https://admin.blazor.zone
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BootStarpAdmin.DataAccess.SqlSugar.Models;
+
+///
+///
+///
+public class UserRole
+{
+ ///
+ ///
+ ///
+ public string? RoleId { get; set; }
+
+ ///
+ ///
+ ///
+ public string? UserId { get; set; }
+}