Blame view

Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Dictionary/DictionaryGetOutputDto.cs 720 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  using Volo.Abp.Application.Dtos;
  
  namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Dictionary
  {
      public class DictionaryGetOutputDto : EntityDto<Guid>
      {
          public int OrderNum { get; set; }
          public DateTime CreationTime { get; set; } = DateTime.Now;
          public Guid? CreatorId { get; set; }
          public string? Remark { get; set; }
          public string? ListClass { get; set; }
          public string? CssClass { get; set; }
          public string DictType { get; set; } = string.Empty;
          public string? DictLabel { get; set; }
          public string DictValue { get; set; } = string.Empty;
          public bool IsDefault { get; set; }
  
          public bool State { get; set; }
      }
  }