using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; namespace ZKLT.Hadoop.Model { public class HDP_Task { public const string HTTPTASK = "http"; public const string SQLTASK = "sql"; public const int LOGOPEN = 1; public const int LOGCLOSE = 0; public const int ACTIVE = 1; public const int NOTACTIVE = 0; private string _Id; private string? _Title; private int? _IsActive; private string? _Type; private string? _CronTime; private int _IsLog; private List? _TaskConfigs; public string Id { get => _Id; set => _Id = value; } public string? Title { get => _Title; set => _Title = value; } public int? IsActive { get => _IsActive; set => _IsActive = value; } public string? Type { get => _Type; set => _Type = value; } public string? CronTime { get => _CronTime; set => _CronTime = value; } public int IsLog { get => _IsLog; set => _IsLog = value; } public List? TaskConfigs { get => _TaskConfigs; set => _TaskConfigs = value; } } }