using Volo.Abp.Application.Dtos; namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Config { public class ConfigGetListOutputDto : EntityDto { public Guid Id { get; set; } /// /// 配置名称 /// public string ConfigName { get; set; } = string.Empty; /// /// 配置主键 /// public string ConfigKey { get; set; } = string.Empty; /// /// 配置值 /// public string ConfigValue { get; set; } = string.Empty; /// /// 配置类型 /// public string? ConfigType { get; set; } /// /// 排序字段 /// public int OrderNum { get; set; } /// /// 备注 /// public string? Remark { get; set; } /// /// 创建时间 /// public DateTime CreationTime { get; set; } } }