You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
774 B
33 lines
774 B
1 year ago
|
using System;
|
||
|
using System.Diagnostics.CodeAnalysis;
|
||
|
using Volo.Abp;
|
||
|
using Volo.Abp.Domain.Entities.Auditing;
|
||
|
using Volo.Abp.MultiTenancy;
|
||
|
|
||
|
namespace BaseService.BaseData
|
||
|
{
|
||
|
public class DataDictionary : AuditedAggregateRoot<Guid>, ISoftDelete, IMultiTenant
|
||
|
{
|
||
|
public Guid? TenantId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 描述
|
||
|
/// </summary>
|
||
|
public string Description { get; set; }
|
||
|
|
||
|
public bool IsDeleted { get; set; }
|
||
|
|
||
|
public DataDictionary(Guid id, [NotNull] string name, string description)
|
||
|
{
|
||
|
Id = id;
|
||
|
Name = name;
|
||
|
Description = description;
|
||
|
}
|
||
|
}
|
||
|
}
|