namespace Easy.Admin.Application.Config.Dtos; public class CustomConfigPageOutput { /// /// 自定义配置Id /// public long Id { get; set; } /// /// 状态 /// public AvailabilityStatus Status { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 配置名称 /// public string Name { get; set; } /// /// 唯一编码 /// public string Code { get; set; } /// /// 是否是多项配置 /// public bool IsMultiple { get; set; } /// /// 是否允许创建实体 /// public bool AllowCreationEntity { get; set; } /// /// 是否已生成实体 /// public bool IsGenerate { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } }