using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; namespace Himp.TaskScheduling { public class ParamConfigDto : EntityDto { /// /// 参数类别 /// 类 /// 对象 /// 属性 /// public EnumParamType ParamType { get; set; } /// /// 参数编码 /// public string ParamCodg { get; set; } /// /// 参数名称 /// public string ParamName { get; set; } /// /// 属性ID /// public string? PropertyKey { get; set; } /// /// 属性类别 /// public int? PropertyType { get; set; } /// /// 参数值 /// public string? ParamValue { get; set; } /// /// 默认值 /// public string? DefValue { get; set; } /// /// 有效标识 /// public bool ValiFlag { get; set; } /// /// /// public long? ParentId { get; set; } /// /// Topic 路径 /// public string? KeyPath { get; set; } /// /// /// public List Children { get; set; } } }