mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-12 04:29:28 +08:00
29 lines
684 B
C#
29 lines
684 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Volo.Abp.Domain.Values;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Rbac.Domain.Entities.ValueObjects
|
|||
|
|
{
|
|||
|
|
public class EncryPasswordValueObject : ValueObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 密码
|
|||
|
|
/// </summary>
|
|||
|
|
public string Password { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 加密盐值
|
|||
|
|
/// </summary>
|
|||
|
|
public string Salt { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
protected override IEnumerable<object> GetAtomicValues()
|
|||
|
|
{
|
|||
|
|
yield return Password;
|
|||
|
|
yield return Salt;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|