using JNPF.DependencyInjection; namespace JNPF.TaskScheduler.Entitys.Dto.TaskScheduler; [SuppressSniffer] public class TimeTaskInfoOutput { /// /// 任务名称. /// public string fullName { get; set; } /// /// 任务类型(1-请求接口,2-存储过程). /// public string executeType { get; set; } /// /// 功能描述. /// public string description { get; set; } /// /// 执行内容. /// public string executeContent { get; set; } /// /// 排序. /// public long? sortCode { get; set; } /// /// 编码. /// public string enCode { get; set; } /// /// id. /// public string id { get; set; } /// /// 执行状态(1-正常,0-异常). /// public int? enabledMark { get; set; } }