feat: 新增Oauth鉴权模块,支持qq登录、gitee登录

This commit is contained in:
橙子
2024-01-07 13:34:50 +08:00
parent ebad623032
commit add374f0a7
43 changed files with 1318 additions and 173 deletions

View File

@@ -0,0 +1,13 @@
using Yi.Framework.Ddd.Application.Contracts;
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
{
public class AuthGetListInput:PagedAllResultRequestDto
{
public Guid? UserId { get; set; }
public string? OpenId { get; set; }
public string? AuthType { get; set; }
}
}

View File

@@ -0,0 +1,17 @@
using Volo.Abp.Application.Dtos;
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
{
public class AuthOutputDto:EntityDto<Guid>
{
public Guid UserId { get; set; }
public string OpenId { get; set; }
public string Name { get; set; }
public string AuthType { get; set; }
public DateTime CreationTime { get; set; }
}
}