DataDictionaryDetail.cs 738 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using Volo.Abp;
  3. using Volo.Abp.Domain.Entities.Auditing;
  4. using Volo.Abp.MultiTenancy;
  5. namespace BaseService.BaseData
  6. {
  7. public class DataDictionaryDetail : AuditedAggregateRoot<Guid>, ISoftDelete,IMultiTenant
  8. {
  9. public Guid? TenantId { get; set; }
  10. public Guid Pid { get; set; }
  11. public string Label { get; set; }
  12. public string Value { get; set; }
  13. public short Sort { get; set; }
  14. public bool IsDeleted { get; set; }
  15. public DataDictionaryDetail(Guid id, Guid pid, string label, string value, short sort)
  16. {
  17. Id = id;
  18. Pid = pid;
  19. Label = label;
  20. Value = value;
  21. Sort = sort;
  22. }
  23. }
  24. }