Browse Source

契约层封装

Dto、应用接口等
ECL142 11 months ago
parent
commit
5be938137f
34 changed files with 1035 additions and 33 deletions
  1. 28 0
      src/Electric/Electric.Application.Contracts/AppService/Identity/IAccountAppService.cs
  2. 17 0
      src/Electric/Electric.Application.Contracts/AppService/Identity/IAuthAppService.cs
  3. 35 0
      src/Electric/Electric.Application.Contracts/AppService/Identity/IPermissionAppService.cs
  4. 56 0
      src/Electric/Electric.Application.Contracts/AppService/Identity/IRoleAppService.cs
  5. 43 0
      src/Electric/Electric.Application.Contracts/AppService/Identity/IUserAppService.cs
  6. 24 0
      src/Electric/Electric.Application.Contracts/Dto/Common/PageRequestDto.cs
  7. 29 0
      src/Electric/Electric.Application.Contracts/Dto/Common/PageResponseDto.cs
  8. 28 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Accounts/AccountDto.cs
  9. 62 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Accounts/AccountPermissionsDto.cs
  10. 23 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Accounts/AccountUpdatePasswordDto.cs
  11. 21 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Auths/AuthLoginDto.cs
  12. 76 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Permissions/PermissionCreateDto.cs
  13. 80 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Permissions/PermissionDto.cs
  14. 81 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Permissions/PermissionUpdateDto.cs
  15. 30 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleCreateDto.cs
  16. 41 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleDto.cs
  17. 25 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleGetPermissionDto.cs
  18. 15 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RolePageRequestDto.cs
  19. 14 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RolePageResponseDto.cs
  20. 19 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleSavePermissionDto.cs
  21. 35 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleUpdateDto.cs
  22. 43 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserCreateDto.cs
  23. 109 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserDto.cs
  24. 15 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserPageRequestDto.cs
  25. 15 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserPageResponseDto.cs
  26. 46 0
      src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserUpdateDto.cs
  27. 5 1
      src/Electric/Electric.Application.Contracts/Electric.Application.Contracts.csproj
  28. 1 1
      src/Electric/Electric.Domain/Electric.Domain.csproj
  29. 1 1
      src/Electric/Electric.Domain/Entities/Commons/CreationAuditedEntity.cs
  30. 5 5
      src/Electric/Electric.Domain/Entities/Identity/ElePermission.cs
  31. 1 4
      src/Electric/Electric.Domain/Entities/Identity/EleRole.cs
  32. 5 11
      src/Electric/Electric.Domain/Entities/Identity/EleUser.cs
  33. 3 0
      src/Electric/Electric.Domain/Entities/Identity/EleUserToken.cs
  34. 4 10
      src/Electric/Electric.Domain/Manager/Identity/UserStore.cs

+ 28 - 0
src/Electric/Electric.Application.Contracts/AppService/Identity/IAccountAppService.cs

@@ -0,0 +1,28 @@
+using Electric.Application.Contracts.Dto.Identity.Accounts;
+
+namespace Electric.Application.Contracts.AppService.Identity
+{
+    /// <summary>
+    /// 账号应用接口
+    /// </summary>
+    public interface IAccountAppService
+    {
+        /// <summary>
+        /// 获取当前登录用户的账号信息
+        /// </summary>
+        /// <returns></returns>
+        public Task<AccountDto> GetAsync();
+
+        /// <summary>
+        /// 获取当前登录用户的权限列表
+        /// </summary>
+        /// <returns></returns>
+        public Task<List<AccountPermissionsDto>> GetPermissionsAsync();
+
+        /// <summary>
+        /// 修改密码
+        /// </summary>
+        /// <param name="accountUpdatePassword"></param>
+        public Task UpdatePasswordAnsync(AccountUpdatePasswordDto accountUpdatePassword);
+    }
+}

+ 17 - 0
src/Electric/Electric.Application.Contracts/AppService/Identity/IAuthAppService.cs

@@ -0,0 +1,17 @@
+using Electric.Application.Contracts.Dto.Identity.Auths;
+
+namespace Electric.Application.Contracts.AppService.Identity
+{
+    /// <summary>
+    /// 认证应用接口
+    /// </summary>
+    public interface IAuthAppService
+    {
+        /// <summary>
+        /// 登录
+        /// </summary>
+        /// <param name="authLoginDto"></param>
+        /// <returns></returns>
+        public Task<string> LoginAsync(AuthLoginDto authLoginDto);
+    }
+}

+ 35 - 0
src/Electric/Electric.Application.Contracts/AppService/Identity/IPermissionAppService.cs

@@ -0,0 +1,35 @@
+using Electric.Application.Contracts.Dto.Identity.Permissions;
+
+namespace Electric.Application.Contracts.AppService.Identity
+{
+    /// <summary>
+    /// 权限应用接口
+    /// </summary>
+    public interface IPermissionAppService
+    {
+        /// <summary>
+        /// 获取所有权限
+        /// </summary>
+        /// <returns></returns>
+        public Task<List<PermissionDto>> GetAllAsync();
+
+        /// <summary>
+        /// 添加权限
+        /// </summary>
+        /// <param name="permissionCreateDto"></param>
+        public Task<PermissionDto> InsertAsync(PermissionCreateDto permissionCreateDto);
+
+        /// <summary>
+        /// 修改权限
+        /// </summary>
+        /// <param name="id"></param>
+        /// <param name="permissionUpdateDto"></param>
+        public Task<PermissionDto> UpdateAsync(Guid id, PermissionUpdateDto permissionUpdateDto);
+
+        /// <summary>
+        /// 删除权限
+        /// </summary>
+        /// <param name="id"></param>
+        public Task DeleteAsync(Guid id);
+    }
+}

+ 56 - 0
src/Electric/Electric.Application.Contracts/AppService/Identity/IRoleAppService.cs

@@ -0,0 +1,56 @@
+using Electric.Application.Contracts.Dto.Identity.Roles;
+
+namespace Electric.Application.Contracts.AppService.Identity
+{
+    /// <summary>
+    /// 角色应用接口
+    /// </summary>
+    public interface IRoleAppService
+    {
+        /// <summary>
+        /// 根据角色名称,分页返回角色列表
+        /// </summary>
+        /// <param name="rolePageRequestDto"></param>
+        /// <returns></returns>
+        public Task<RolePageResponseDto> GetPagedListAsync(RolePageRequestDto rolePageRequestDto);
+
+        /// <summary>
+        /// 获取所有角色列表
+        /// </summary>
+        /// <returns></returns>
+        public Task<List<RoleDto>> GetAllAsync();
+
+        /// <summary>
+        /// 保存角色的权限列表
+        /// </summary>
+        /// <param name="id">角色Id</param>
+        /// <param name="roleSavePermissionDto">以,分割权限Id</param>
+        /// <returns></returns>
+        public Task SavePermissionsAsync(Guid id, RoleSavePermissionDto roleSavePermissionDto);
+
+        /// <summary>
+        /// 获取角色的权限列表
+        /// </summary>
+        /// <returns></returns>
+        public Task<List<RoleGetPermissionDto>> GetPermissionsAsync(Guid id);
+
+        /// <summary>
+        /// 添加角色
+        /// </summary>
+        /// <param name="roleCreateDto"></param>
+        public Task<RoleDto> InsertAsync(RoleCreateDto roleCreateDto);
+
+        /// <summary>
+        /// 修改角色
+        /// </summary>
+        /// <param name="id"></param>
+        /// <param name="roleUpdateDto"></param>
+        public Task<RoleDto> UpdateAsync(Guid id, RoleUpdateDto roleUpdateDto);
+
+        /// <summary>
+        /// 删除角色
+        /// </summary>
+        /// <param name="id"></param>
+        public Task DeleteAsync(Guid id);
+    }
+}

+ 43 - 0
src/Electric/Electric.Application.Contracts/AppService/Identity/IUserAppService.cs

@@ -0,0 +1,43 @@
+using Electric.Application.Contracts.Dto.Identity.Users;
+
+namespace Electric.Application.Contracts.AppService.Identity
+{
+    /// <summary>
+    /// 用户应用接口
+    /// </summary>
+    public interface IUserAppService
+    {
+        /// <summary>
+        /// 获取用户
+        /// </summary>
+        /// <param name="id"></param>
+        /// <returns></returns>
+        public Task<UserDto> GetAsync(Guid id);
+
+        /// <summary>
+        /// 根据用户名搜索,分页返回用户列表
+        /// </summary>
+        /// <param name="userPageRequestDto"></param>
+        /// <returns></returns>
+        public Task<UserPageResponseDto> GetPagedListAsync(UserPageRequestDto userPageRequestDto);
+
+        /// <summary>
+        /// 添加用户
+        /// </summary>
+        /// <param name="userCreateDto"></param>
+        public Task<UserDto> InsertAsync(UserCreateDto userCreateDto);
+
+        /// <summary>
+        /// 修改用户
+        /// </summary>
+        /// <param name="id"></param>
+        /// <param name="userUpdateDto"></param>
+        public Task<UserDto> UpdateAsync(Guid id, UserUpdateDto userUpdateDto);
+
+        /// <summary>
+        /// 删除用户
+        /// </summary>
+        /// <param name="id"></param>
+        public Task DeleteAsync(Guid id);
+    }
+}

+ 24 - 0
src/Electric/Electric.Application.Contracts/Dto/Common/PageRequestDto.cs

@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Electric.Application.Contracts.Dto.Common
+{
+    /// <summary>
+    /// 分页请求对象
+    /// </summary>
+    public class PageRequestDto
+    {
+        /// <summary>
+        /// 每页记录数量
+        /// </summary>
+        public int PrePage { get; set; }
+
+        /// <summary>
+        /// 当前页码
+        /// </summary>
+        public int Page { get; set; }
+    }
+}

+ 29 - 0
src/Electric/Electric.Application.Contracts/Dto/Common/PageResponseDto.cs

@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Electric.Application.Contracts.Dto.Common
+{
+    /// <summary>
+    /// 分页响应实体
+    /// </summary>
+    public class PageResponseDto
+    {
+        /// <summary>
+        /// 每页记录数量
+        /// </summary>
+        public int PrePage { get; set; }
+
+        /// <summary>
+        /// 当前页码
+        /// </summary>
+        public int Page { get; set; }
+
+        /// <summary>
+        /// 总数
+        /// </summary>
+        public long Total { get; set; }
+    }
+}

+ 28 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Accounts/AccountDto.cs

@@ -0,0 +1,28 @@
+namespace Electric.Application.Contracts.Dto.Identity.Accounts
+{
+    /// <summary>
+    /// 登录账号信息
+    /// </summary>
+    public class AccountDto
+    {
+        /// <summary>
+        /// 角色列表
+        /// </summary>
+        public string[] Roles { get; set; }
+
+        /// <summary>
+        /// 用户名
+        /// </summary>
+        public string Name { get; set; }
+
+        /// <summary>
+        /// 头像
+        /// </summary>
+        public string Avatar { get; set; }
+
+        /// <summary>
+        /// 介绍
+        /// </summary>
+        public string Introduction { get; set; }
+    }
+}

+ 62 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Accounts/AccountPermissionsDto.cs

@@ -0,0 +1,62 @@
+using Electric.Domain.Shared.Entities;
+
+namespace Electric.Application.Contracts.Dto.Identity.Accounts
+{
+    /// <summary>
+    /// 登录账号的权限
+    /// </summary>
+    public class AccountPermissionsDto
+    {
+        public Guid Id { get; set; }
+
+        /// <summary>
+        /// 权限名称
+        /// </summary>
+        public string Name { get; set; }
+
+        /// <summary>
+        /// 权限编码
+        /// </summary>
+        public string Code { get; set; }
+
+        /// <summary>
+        /// Url地址
+        /// </summary>
+        public string Url { get; set; }
+
+        /// <summary>
+        /// Vue页面组件
+        /// </summary>
+        public string Component { get; set; }
+
+        /// <summary>
+        /// 图标
+        /// </summary>
+        public string Icon { get; set; }
+
+        /// <summary>
+        /// 菜单类型:菜单权限、元素权限、Api权限、数据权限
+        /// </summary>
+        public PermissionType PermissionType { get; set; }
+
+        /// <summary>
+        /// API方法
+        /// </summary>
+        public string ApiMethod { get; set; } = string.Empty;
+
+        /// <summary>
+        /// 排序
+        /// </summary>
+        public int Sort { get; set; }
+
+        /// <summary>
+        /// 父菜单Id
+        /// </summary>
+        public Guid? ParentId { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        public string Remark { get; set; }
+    }
+}

+ 23 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Accounts/AccountUpdatePasswordDto.cs

@@ -0,0 +1,23 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace Electric.Application.Contracts.Dto.Identity.Accounts
+{ /// <summary>
+  /// 登录账号密码修改
+  /// </summary>
+    public class AccountUpdatePasswordDto
+    {
+        /// <summary>
+        /// 原本密码
+        /// </summary>
+        [Required]
+        [StringLength(20, MinimumLength = 6)]
+        public string OldPassword { get; set; }
+
+        /// <summary>
+        /// 新密码
+        /// </summary>
+        [Required]
+        [StringLength(20, MinimumLength = 6)]
+        public string NewPassword { get; set; }
+    }
+}

+ 21 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Auths/AuthLoginDto.cs

@@ -0,0 +1,21 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace Electric.Application.Contracts.Dto.Identity.Auths
+{
+    public class AuthLoginDto
+    {
+        /// <summary>
+        /// 用户名
+        /// </summary>
+        [Required]
+        [StringLength(20, MinimumLength = 3)]
+        public string UserName { get; set; }
+
+        /// <summary>
+        /// 密码
+        /// </summary>
+        [Required]
+        [StringLength(20, MinimumLength = 6)]
+        public string Password { get; set; }
+    }
+}

+ 76 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Permissions/PermissionCreateDto.cs

@@ -0,0 +1,76 @@
+using Electric.Domain.Shared.Entities;
+
+using System.ComponentModel.DataAnnotations;
+
+namespace Electric.Application.Contracts.Dto.Identity.Permissions
+{
+    /// <summary>
+    /// 创建权限对象
+    /// </summary>
+    public class PermissionCreateDto
+    {
+        /// <summary>
+        /// 权限名称
+        /// </summary>
+        [Required]
+        [MaxLength(20)]
+        public string Name { get; set; } = string.Empty;
+
+        /// <summary>
+        /// 权限编码
+        /// </summary>
+        [Required]
+        [MaxLength(100)]
+        public string Code { get; set; } = string.Empty;
+
+        /// <summary>
+        /// Url地址
+        /// </summary>
+        [MaxLength(200)]
+        public string Url { get; set; }
+
+        /// <summary>
+        /// Vue页面组件
+        /// </summary>
+        [MaxLength(200)]
+        public string Component { get; set; }
+
+        /// <summary>
+        /// 图标
+        /// </summary>
+        [MaxLength(100)]
+        public string Icon { get; set; }
+
+        /// <summary>
+        /// 菜单类型:菜单权限、元素权限、Api权限、数据权限
+        /// </summary>
+        public PermissionType PermissionType { get; set; }
+
+        /// <summary>
+        /// API方法
+        /// </summary>
+        [MaxLength(50)]
+        public string ApiMethod { get; set; } = string.Empty;
+
+        /// <summary>
+        /// 排序
+        /// </summary>
+        public int Sort { get; set; }
+
+        /// <summary>
+        /// 父菜单Id
+        /// </summary>
+        public Guid? ParentId { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        public PermissionStatus Status { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [MaxLength(500)]
+        public string Remark { get; set; }
+    }
+}

+ 80 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Permissions/PermissionDto.cs

@@ -0,0 +1,80 @@
+using Electric.Domain.Shared.Entities;
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Electric.Application.Contracts.Dto.Identity.Permissions
+{
+    /// <summary>
+    /// 菜单权限信息
+    /// </summary>
+    public class PermissionDto
+    {
+        public Guid Id { get; set; }
+
+        public Guid? CreatorId { get; set; }
+
+        public DateTime CreationTime { get; set; }
+
+        public DateTime? LastModificationTime { get; set; }
+        public Guid? LastModifierId { get; set; }
+
+        /// <summary>
+        /// 权限名称
+        /// </summary>
+        public string Name { get; set; } = string.Empty;
+
+        /// <summary>
+        /// 权限编码
+        /// </summary>
+        public string Code { get; set; } = string.Empty;
+
+        /// <summary>
+        /// Url地址
+        /// </summary>
+        public string Url { get; set; }
+
+        /// <summary>
+        /// Vue页面组件
+        /// </summary>
+        public string Component { get; set; }
+
+        /// <summary>
+        /// 图标
+        /// </summary>
+        public string Icon { get; set; }
+
+        /// <summary>
+        /// 菜单类型:菜单权限、元素权限、Api权限、数据权限
+        /// </summary>
+        public PermissionType PermissionType { get; set; }
+
+        /// <summary>
+        /// API方法
+        /// </summary>
+        public string ApiMethod { get; set; } = string.Empty;
+
+        /// <summary>
+        /// 排序
+        /// </summary>
+        public int Sort { get; set; }
+
+        /// <summary>
+        /// 父菜单Id
+        /// </summary>
+        public Guid? ParentId { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        public PermissionStatus Status { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        public string Remark { get; set; }
+    }
+}

+ 81 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Permissions/PermissionUpdateDto.cs

@@ -0,0 +1,81 @@
+using Electric.Domain.Shared.Entities;
+
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Electric.Application.Contracts.Dto.Identity.Permissions
+{
+    /// <summary>
+    /// 更新权限信息
+    /// </summary>
+    public class PermissionUpdateDto
+    {
+        /// <summary>
+        /// 权限名称
+        /// </summary>
+        [Required]
+        [MaxLength(20)]
+        public string Name { get; set; } = string.Empty;
+
+        /// <summary>
+        /// 权限编码
+        /// </summary>
+        [Required]
+        [MaxLength(100)]
+        public string Code { get; set; } = string.Empty;
+
+        /// <summary>
+        /// Url地址
+        /// </summary>
+        [MaxLength(200)]
+        public string Url { get; set; }
+
+        /// <summary>
+        /// Vue页面组件
+        /// </summary>
+        [MaxLength(200)]
+        public string Component { get; set; }
+
+        /// <summary>
+        /// 图标
+        /// </summary>
+        [MaxLength(100)]
+        public string Icon { get; set; }
+
+        /// <summary>
+        /// 菜单类型:菜单权限、元素权限、Api权限、数据权限
+        /// </summary>
+        public PermissionType PermissionType { get; set; }
+
+        /// <summary>
+        /// API方法
+        /// </summary>
+        [MaxLength(50)]
+        public string ApiMethod { get; set; } = string.Empty;
+
+        /// <summary>
+        /// 排序
+        /// </summary>
+        public int Sort { get; set; }
+
+        /// <summary>
+        /// 父菜单Id
+        /// </summary>
+        public Guid? ParentId { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        public PermissionStatus Status { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [MaxLength(500)]
+        public string Remark { get; set; }
+    }
+}

+ 30 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleCreateDto.cs

@@ -0,0 +1,30 @@
+using Electric.Domain.Shared.Entities;
+
+using System.ComponentModel.DataAnnotations;
+
+namespace Electric.Application.Contracts.Dto.Identity.Roles
+{
+    /// <summary>
+    /// 角色创建
+    /// </summary>
+    public class RoleCreateDto
+    {
+        /// <summary>
+        /// 角色名称
+        /// </summary>
+        [Required]
+        [MaxLength(50)]
+        public string Name { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        public RoleStatus Status { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [MaxLength(500)]
+        public string Remark { get; set; }
+    }
+}

+ 41 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleDto.cs

@@ -0,0 +1,41 @@
+using Electric.Domain.Shared.Entities;
+
+using System.ComponentModel.DataAnnotations;
+
+namespace Electric.Application.Contracts.Dto.Identity.Roles
+{
+    /// <summary>
+    /// 角色信息
+    /// </summary>
+    public class RoleDto
+    {
+        public Guid? Id { get; set; }
+
+        /// <summary>
+        /// 创建者
+        /// </summary>
+        public string Creator { get; set; }
+
+        public DateTime CreationTime { get; set; }
+
+        public DateTime LastModificationTime { get; set; }
+
+        /// <summary>
+        /// 角色名称
+        /// </summary>
+        [Required]
+        [MaxLength(50)]
+        public string Name { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        public RoleStatus Status { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [MaxLength(500)]
+        public string Remark { get; set; }
+    }
+}

+ 25 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleGetPermissionDto.cs

@@ -0,0 +1,25 @@
+using Electric.Domain.Shared.Entities;
+
+namespace Electric.Application.Contracts.Dto.Identity.Roles
+{
+    /// <summary>
+    /// 角色的权限列表
+    /// </summary>
+    public class RoleGetPermissionDto
+    {
+        /// <summary>
+        /// 权限Id列表
+        /// </summary>
+        public Guid Id { get; set; }
+
+        /// <summary>
+        /// 菜单类型:菜单权限、元素权限、Api权限、数据权限
+        /// </summary>
+        public PermissionType PermissionType { get; set; }
+
+        /// <summary>
+        /// 父菜单Id
+        /// </summary>
+        public Guid? ParentId { get; set; }
+    }
+}

+ 15 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RolePageRequestDto.cs

@@ -0,0 +1,15 @@
+using Electric.Application.Contracts.Dto.Common;
+
+namespace Electric.Application.Contracts.Dto.Identity.Roles
+{
+    /// <summary>
+    /// 角色翻页查询
+    /// </summary>
+    public class RolePageRequestDto : PageRequestDto
+    {
+        /// <summary>
+        /// 用户昵称
+        /// </summary>
+        public string Name { get; set; }
+    }
+}

+ 14 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RolePageResponseDto.cs

@@ -0,0 +1,14 @@
+using Electric.Application.Contracts.Dto.Common;
+
+namespace Electric.Application.Contracts.Dto.Identity.Roles
+{  /// <summary>
+   /// 角色翻页响应对象
+   /// </summary>
+    public class RolePageResponseDto : PageResponseDto
+    {
+        /// <summary>
+        /// 角色列表
+        /// </summary>
+        public List<RoleDto> Roles { get; set; }
+    }
+}

+ 19 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleSavePermissionDto.cs

@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Electric.Application.Contracts.Dto.Identity.Roles
+{
+    /// <summary>
+    /// 角色分配权限
+    /// </summary>
+    public class RoleSavePermissionDto
+    {
+        /// <summary>
+        /// 权限Id列表
+        /// </summary>
+        public List<Guid> PermissionIds { get; set; }
+    }
+}

+ 35 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Roles/RoleUpdateDto.cs

@@ -0,0 +1,35 @@
+using Electric.Domain.Shared.Entities;
+
+using System;
+using System.Collections.Generic;
+using System.ComponentModel.DataAnnotations;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Electric.Application.Contracts.Dto.Identity.Roles
+{
+    /// <summary>
+    /// 角色更新
+    /// </summary>
+    public class RoleUpdateDto
+    {
+        /// <summary>
+        /// 角色名称
+        /// </summary>
+        [Required]
+        [MaxLength(50)]
+        public string Name { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        public RoleStatus Status { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [MaxLength(500)]
+        public string mark { get; set; }
+    }
+}

+ 43 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserCreateDto.cs

@@ -0,0 +1,43 @@
+using Electric.Domain.Shared.Entities;
+
+using System.ComponentModel.DataAnnotations;
+
+namespace Electric.Application.Contracts.Dto.Identity.Users
+{
+    public class UserCreateDto
+    {
+        /// <summary>
+        /// 密码
+        /// </summary>
+        [Required]
+        [StringLength(20, MinimumLength = 6)]
+        public string Password { get; set; }
+
+        /// <summary>
+        /// 用户名
+        /// </summary>
+        [Required]
+        [StringLength(20, MinimumLength = 3)]
+        public string UserName { get; set; }
+
+        public string Email { get; set; }
+
+        /// <summary>
+        /// 全名:姓名
+        /// </summary>
+        [MaxLength(20)]
+        public string FullName { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        [Required]
+        public UserStatus Status { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [MaxLength(500)]
+        public string Remark { get; set; }
+    }
+}

+ 109 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserDto.cs

@@ -0,0 +1,109 @@
+using Electric.Domain.Shared.Entities;
+
+namespace Electric.Application.Contracts.Dto.Identity.Users
+{
+    public class UserDto
+    {
+        public Guid Id { get; set; }
+
+        /// <summary>
+        /// 创建时间
+        /// </summary>
+        public DateTime CreationTime { get; set; }
+
+        /// <summary>
+        /// 创建者
+        /// </summary>
+        public string Creator { get; set; }
+
+        /// <summary>
+        /// 用户名
+        /// </summary>
+        public string UserName { get; set; }
+
+        /// <summary>
+        /// 标准化用户名
+        /// </summary>
+        public string NormalizedUserName { get; set; }
+
+        /// <summary>
+        /// Email
+        /// </summary>
+        public string Email { get; set; }
+
+        /// <summary>
+        /// 标准化Email
+        /// </summary>
+        public string NormalizedEmail { get; set; }
+
+        /// <summary>
+        /// 邮箱是否确认
+        /// </summary>
+        public bool EmailConfirmed { get; set; }
+
+        /// <summary>
+        /// 密码哈希
+        /// </summary>
+        public string PasswordHash { get; set; }
+
+        /// <summary>
+        /// 一个随机值,每当用户凭据更改时(密码更改、登录删除),该值都必须更改
+        /// </summary>
+        public string SecurityStamp { get; set; }
+
+        /// <summary>
+        /// 一个随机值,每当用户被持久化到存储时,该值必须更改
+        /// </summary>
+        public string ConcurrencyStamp { get; set; }
+
+        /// <summary>
+        /// 获取或设置用户的电话号码。
+        /// </summary>
+        public string PhoneNumber { get; set; }
+
+        /// <summary>
+        /// 获取或设置一个标志,该标志指示用户是否已确认其电话地址。
+        /// </summary>
+        public bool PhoneNumberConfirmed { get; set; }
+
+        /// <summary>
+        /// 获取或设置一个标志,该标志指示是否为此用户启用了双因素身份验证。
+        /// </summary>
+        public bool TwoFactorEnabled { get; set; }
+
+        /// <summary>
+        /// 获取或设置任何用户锁定结束的日期和时间(以UTC为单位)。
+        /// </summary>
+        public DateTimeOffset? LockoutEnd { get; set; }
+
+        /// <summary>
+        /// 获取或设置一个标志,该标志指示用户是否可以被锁定。
+        /// </summary>
+        public bool LockoutEnabled { get; set; }
+
+        /// <summary>
+        /// 获取或设置当前用户登录尝试失败的次数。
+        /// </summary>
+        public int AccessFailedCount { get; set; }
+
+        /// <summary>
+        /// 全名:姓名
+        /// </summary>
+        public string FullName { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        public UserStatus Status { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        public string Remark { get; set; }
+
+        /// <summary>
+        /// 角色列表
+        /// </summary>
+        public ICollection<string> Roles { get; set; }
+    }
+}

+ 15 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserPageRequestDto.cs

@@ -0,0 +1,15 @@
+using Electric.Application.Contracts.Dto.Common;
+
+namespace Electric.Application.Contracts.Dto.Identity.Users
+{
+    /// <summary>
+    /// 用户翻页查询
+    /// </summary>
+    public class UserPageRequestDto : PageRequestDto
+    {
+        /// <summary>
+        /// 用户昵称
+        /// </summary>
+        public string UserName { get; set; }
+    }
+}

+ 15 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserPageResponseDto.cs

@@ -0,0 +1,15 @@
+using Electric.Application.Contracts.Dto.Common;
+
+namespace Electric.Application.Contracts.Dto.Identity.Users
+{
+    /// <summary>
+    /// 用户翻页响应对象
+    /// </summary>
+    public class UserPageResponseDto : PageResponseDto
+    {
+        /// <summary>
+        /// 用户列表
+        /// </summary>
+        public List<UserDto> Users { get; set; }
+    }
+}

+ 46 - 0
src/Electric/Electric.Application.Contracts/Dto/Identity/Users/UserUpdateDto.cs

@@ -0,0 +1,46 @@
+using Electric.Domain.Shared.Entities;
+
+using System.ComponentModel.DataAnnotations;
+
+namespace Electric.Application.Contracts.Dto.Identity.Users
+{
+    public class UserUpdateDto
+    {
+        /// <summary>
+        /// 密码
+        /// </summary>
+        [StringLength(20)]
+        public string Password { get; set; }
+
+        /// <summary>
+        /// 用户名
+        /// </summary>
+        [Required]
+        [StringLength(20, MinimumLength = 3)]
+        public string UserName { get; set; }
+
+        /// <summary>
+        /// 全名:姓名
+        /// </summary>
+        [MaxLength(20)]
+        public string FullName { get; set; }
+
+        /// <summary>
+        /// 状态,0:禁用,1:正常
+        /// </summary>
+        [Required]
+        public UserStatus Status { get; set; }
+
+        /// <summary>
+        /// 角色列表
+        /// </summary>
+        [Required]
+        public List<string> RoleNames { get; set; }
+
+        /// <summary>
+        /// 备注
+        /// </summary>
+        [MaxLength(500)]
+        public string Remark { get; set; }
+    }
+}

+ 5 - 1
src/Electric/Electric.Application.Contracts/Electric.Application.Contracts.csproj

@@ -3,11 +3,15 @@
   <PropertyGroup>
     <TargetFramework>net8.0</TargetFramework>
     <ImplicitUsings>enable</ImplicitUsings>
-    <Nullable>enable</Nullable>
+    <Nullable>disable</Nullable>
   </PropertyGroup>
 
   <ItemGroup>
     <None Include="..\.editorconfig" Link=".editorconfig" />
   </ItemGroup>
 
+  <ItemGroup>
+    <ProjectReference Include="..\Electric.Domain.Shared\Electric.Domain.Shared.csproj" />
+  </ItemGroup>
+
 </Project>

+ 1 - 1
src/Electric/Electric.Domain/Electric.Domain.csproj

@@ -3,7 +3,7 @@
   <PropertyGroup>
     <TargetFramework>net8.0</TargetFramework>
     <ImplicitUsings>enable</ImplicitUsings>
-    <Nullable>enable</Nullable>
+    <Nullable>disable</Nullable>
   </PropertyGroup>
 
   <ItemGroup>

+ 1 - 1
src/Electric/Electric.Domain/Entities/Commons/CreationAuditedEntity.cs

@@ -15,7 +15,7 @@
         /// 创建者
         /// </summary>
 
-        public TKey? CreatorId { get; set; }
+        public TKey CreatorId { get; set; }
 
         protected CreationAuditedEntity()
         {

+ 5 - 5
src/Electric/Electric.Domain/Entities/Identity/ElePermission.cs

@@ -20,17 +20,17 @@ namespace Electric.Domain.Entities.Identity
         /// <summary>
         /// Url地址
         /// </summary>
-        public string? Url { get; set; }
+        public string Url { get; set; }
 
         /// <summary>
         /// Vue页面组件
         /// </summary>
-        public string? Component { get; set; }
+        public string Component { get; set; }
 
         /// <summary>
         /// 图标
         /// </summary>
-        public string? Icon { get; set; }
+        public string Icon { get; set; }
 
         /// <summary>
         /// 菜单类型:菜单权限、元素权限、Api权限、数据权限
@@ -60,7 +60,7 @@ namespace Electric.Domain.Entities.Identity
         /// <summary>
         /// 备注
         /// </summary>
-        public string? Remark { get; set; }
+        public string Remark { get; set; }
 
 #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
 
@@ -70,7 +70,7 @@ namespace Electric.Domain.Entities.Identity
         }
 
         public ElePermission(Guid id, Guid? parentId, string name, string code, PermissionType permissionType, PermissionApiMethod apiMethod,
-            PermissionStatus permissionStatus, string? icon = null, string? url = null, string? remark = null) : base(id)
+            PermissionStatus permissionStatus, string icon = null, string url = null, string remark = null) : base(id)
         {
             Check.NotNull(name, nameof(name));
             Check.NotNull(code, nameof(code));

+ 1 - 4
src/Electric/Electric.Domain/Entities/Identity/EleRole.cs

@@ -32,7 +32,7 @@ namespace Electric.Domain.Entities.Identity
         /// <summary>
         /// 备注
         /// </summary>
-        public string? Remark { get; set; }
+        public string Remark { get; set; }
 
         /// <summary>
         /// 声明列表
@@ -44,10 +44,7 @@ namespace Electric.Domain.Entities.Identity
         /// </summary>
         public List<EleRolePermission> Permissions { get; protected set; }
 
-#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
-
         protected EleRole()
-#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
         {
         }
 

+ 5 - 11
src/Electric/Electric.Domain/Entities/Identity/EleUser.cs

@@ -29,7 +29,7 @@ namespace Electric.Domain.Entities.Identity
         /// <summary>
         /// 标准化Email
         /// </summary>
-        public string? NormalizedEmail { get; protected set; }
+        public string NormalizedEmail { get; protected set; }
 
         /// <summary>
         /// 邮箱是否确认
@@ -54,7 +54,7 @@ namespace Electric.Domain.Entities.Identity
         /// <summary>
         /// 获取或设置用户的电话号码。
         /// </summary>
-        public string? PhoneNumber { get; set; }
+        public string PhoneNumber { get; set; }
 
         /// <summary>
         /// 获取或设置一个标志,该标志指示用户是否已确认其电话地址。
@@ -84,7 +84,7 @@ namespace Electric.Domain.Entities.Identity
         /// <summary>
         /// 全名:姓名
         /// </summary>
-        public string? FullName { get; set; }
+        public string FullName { get; set; }
 
         /// <summary>
         /// 状态,0:禁用,1:正常
@@ -94,7 +94,7 @@ namespace Electric.Domain.Entities.Identity
         /// <summary>
         /// 备注
         /// </summary>
-        public string? Remark { get; set; }
+        public string Remark { get; set; }
 
         /// <summary>
         /// 角色列表
@@ -116,17 +116,11 @@ namespace Electric.Domain.Entities.Identity
         /// </summary>
         public List<EleUserToken> Tokens { get; protected set; }
 
-#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
-
         protected EleUser()
-#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
         {
         }
 
-#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
-
-        public EleUser(Guid id, string userName, string? email = null, string? fullName = null, string? remark = null) : base(id)
-#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
+        public EleUser(Guid id, string userName, string email = null, string fullName = null, string remark = null) : base(id)
         {
             Check.NotNull(userName, nameof(userName));
 

+ 3 - 0
src/Electric/Electric.Domain/Entities/Identity/EleUserToken.cs

@@ -3,6 +3,9 @@ using Electric.Domain.Entities.Commons;
 
 namespace Electric.Domain.Entities.Identity
 {
+    /// <summary>
+    /// 用户凭证
+    /// </summary>
     public class EleUserToken : Entity
     {
         /// <summary>

+ 4 - 10
src/Electric/Electric.Domain/Manager/Identity/UserStore.cs

@@ -123,15 +123,13 @@ namespace Electric.Domain.Manager.Identity
         /// <param name="user"></param>
         /// <param name="cancellationToken"></param>
         /// <returns></returns>
-        public Task<string?> GetPasswordHashAsync(EleUser user, CancellationToken cancellationToken)
+        public Task<string> GetPasswordHashAsync(EleUser user, CancellationToken cancellationToken)
         {
             cancellationToken.ThrowIfCancellationRequested();
 
             Check.NotNull(user, nameof(user));
 
-#pragma warning disable CS8619 // 值中的引用类型的为 Null 性与目标类型不匹配。
             return Task.FromResult(user.PasswordHash);
-#pragma warning restore CS8619 // 值中的引用类型的为 Null 性与目标类型不匹配。
         }
 
         /// <summary>
@@ -155,10 +153,8 @@ namespace Electric.Domain.Manager.Identity
         /// <param name="user"></param>
         /// <param name="cancellationToken"></param>
         /// <returns></returns>
-#pragma warning disable CS8613 // 返回类型中引用类型的为 Null 性与隐式实现的成员不匹配。
 
         public Task<string> GetUserNameAsync(EleUser user, CancellationToken cancellationToken)
-#pragma warning restore CS8613 // 返回类型中引用类型的为 Null 性与隐式实现的成员不匹配。
         {
             cancellationToken.ThrowIfCancellationRequested();
 
@@ -189,7 +185,7 @@ namespace Electric.Domain.Manager.Identity
         /// <param name="normalizedName"></param>
         /// <param name="cancellationToken"></param>
         /// <returns></returns>
-        public Task SetNormalizedUserNameAsync(EleUser user, string? normalizedName, CancellationToken cancellationToken)
+        public Task SetNormalizedUserNameAsync(EleUser user, string normalizedName, CancellationToken cancellationToken)
         {
             cancellationToken.ThrowIfCancellationRequested();
 
@@ -207,14 +203,12 @@ namespace Electric.Domain.Manager.Identity
         /// <param name="passwordHash"></param>
         /// <param name="cancellationToken"></param>
         /// <returns></returns>
-        public Task SetPasswordHashAsync(EleUser user, string? passwordHash, CancellationToken cancellationToken)
+        public Task SetPasswordHashAsync(EleUser user, string passwordHash, CancellationToken cancellationToken)
         {
             cancellationToken.ThrowIfCancellationRequested();
 
             Check.NotNull(user, nameof(user));
-#pragma warning disable CS8604 // 引用类型参数可能为 null。
             user.SetPasswordHash(passwordHash);
-#pragma warning restore CS8604 // 引用类型参数可能为 null。
 
             return Task.CompletedTask;
         }
@@ -226,7 +220,7 @@ namespace Electric.Domain.Manager.Identity
         /// <param name="userName"></param>
         /// <param name="cancellationToken"></param>
         /// <returns></returns>
-        public Task SetUserNameAsync(EleUser user, string? userName, CancellationToken cancellationToken)
+        public Task SetUserNameAsync(EleUser user, string userName, CancellationToken cancellationToken)
         {
             cancellationToken.ThrowIfCancellationRequested();