feat: 添加配置管理模块
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
using JetBrains.Annotations;
|
||||
using Volo.Abp;
|
||||
using Volo.Abp.Domain.Entities;
|
||||
|
||||
namespace Yi.Framework.SettingManagement.Domain;
|
||||
|
||||
public class SettingEntity : Entity<Guid>, IAggregateRoot<Guid>
|
||||
{
|
||||
[NotNull]
|
||||
public virtual string Name { get; protected set; }
|
||||
|
||||
[NotNull]
|
||||
public virtual string Value { get; internal set; }
|
||||
|
||||
[CanBeNull]
|
||||
public virtual string ProviderName { get; protected set; }
|
||||
|
||||
[CanBeNull]
|
||||
public virtual string ProviderKey { get; protected set; }
|
||||
|
||||
public SettingEntity()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public SettingEntity(
|
||||
Guid id,
|
||||
[NotNull] string name,
|
||||
[NotNull] string value,
|
||||
[CanBeNull] string providerName = null,
|
||||
[CanBeNull] string providerKey = null)
|
||||
{
|
||||
Check.NotNull(name, nameof(name));
|
||||
Check.NotNull(value, nameof(value));
|
||||
|
||||
Id = id;
|
||||
Name = name;
|
||||
Value = value;
|
||||
ProviderName = providerName;
|
||||
ProviderKey = providerKey;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"{base.ToString()}, Name = {Name}, Value = {Value}, ProviderName = {ProviderName}, ProviderKey = {ProviderKey}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user