53 lines
1.7 KiB
C#
53 lines
1.7 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
using Yi.Framework.Common.Helper;
|
||
|
||
namespace Yi.Framework.Model.Models
|
||
{
|
||
public partial class UserEntity
|
||
{
|
||
/// <summary>
|
||
/// 看好啦!ORM精髓,导航属性
|
||
///</summary>
|
||
[Navigate(typeof(UserRoleEntity), nameof(UserRoleEntity.UserId), nameof(UserRoleEntity.RoleId))]
|
||
public List<RoleEntity>? Roles { get; set; }
|
||
|
||
[Navigate(typeof(UserPostEntity), nameof(UserPostEntity.UserId), nameof(UserPostEntity.PostId))]
|
||
public List<PostEntity>? Posts { get; set; }
|
||
|
||
[Navigate( NavigateType.OneToOne,nameof(DeptId))]
|
||
public DeptEntity? Dept { get; set; }
|
||
|
||
/// <summary>
|
||
/// 构建密码,MD5盐值加密
|
||
/// </summary>
|
||
public void BuildPassword(string password = null)
|
||
{
|
||
//如果不传值,那就把自己的password当作传进来的password
|
||
if (password == null)
|
||
{
|
||
password = this.Password;
|
||
}
|
||
this.Salt = Common.Helper.MD5Helper.GenerateSalt();
|
||
this.Password = Common.Helper.MD5Helper.SHA2Encode(password, this.Salt);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 判断密码和加密后的密码是否相同
|
||
/// </summary>
|
||
/// <param name="password"></param>
|
||
/// <returns></returns>
|
||
public bool JudgePassword(string password)
|
||
{
|
||
var p = MD5Helper.SHA2Encode(password, this.Salt);
|
||
if (this.Password == MD5Helper.SHA2Encode(password, this.Salt))
|
||
{
|
||
return true;
|
||
}
|
||
return false;
|
||
}
|
||
}
|
||
}
|