添加登录
This commit is contained in:
@@ -12,5 +12,7 @@ namespace Yi.RBAC.Domain.Shared.Identity.ConstClasses
|
||||
|
||||
public class UserConst
|
||||
{
|
||||
public const string 登录失败_错误 = "登录失败!用户名或密码错误!";
|
||||
public const string 登录失败_不存在 = "登录失败!用户名不存在!";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user