添加登录

This commit is contained in:
橙子
2023-01-30 20:07:09 +08:00
parent aec0150a26
commit b7260ed982
277 changed files with 21789 additions and 31 deletions

View File

@@ -12,5 +12,7 @@ namespace Yi.RBAC.Domain.Shared.Identity.ConstClasses
public class UserConst
{
public const string _错误 = "登录失败!用户名或密码错误!";
public const string _不存在 = "登录失败!用户名不存在!";
}
}

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.RBAC.Domain.Shared.Identity.Dtos
{
public class UserRoleMenuDto
{
}
}

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.RBAC.Domain.Shared.Identity.EnumClasses
{
/// <summary>
/// 性别
/// </summary>
public enum SexEnum
{
/// <summary>
/// 男性
/// </summary>
Male = 0,
/// <summary>
/// 女性
/// </summary>
Woman = 1,
/// <summary>
/// 未知
/// </summary>
Unknown = 2
}
}