Blame view

Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Config/ConfigGetListOutputDto.cs 1.02 KB
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  using Volo.Abp.Application.Dtos;
  
  namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Config
  {
      public class ConfigGetListOutputDto : EntityDto<Guid>
      {
          public Guid Id { get; set; }
          /// <summary>
          /// 配置名称
          /// </summary>
          public string ConfigName { get; set; } = string.Empty;
  
          /// <summary>
          /// 配置主键
          /// </summary>
          public string ConfigKey { get; set; } = string.Empty;
          /// <summary>
          /// 配置值
          /// </summary>
          public string ConfigValue { get; set; } = string.Empty;
          /// <summary>
          /// 配置类型
          /// </summary>
          public string? ConfigType { get; set; }
          /// <summary>
          /// 排序字段
          /// </summary>
          public int OrderNum { get; set; }
  
          /// <summary>
          /// 备注
          /// </summary>
          public string? Remark { get; set; }
  
          /// <summary>
          /// 创建时间
          /// </summary>
          public DateTime CreationTime { get; set; }
      }
  }