using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace wms.dto.response.hj { public class SysJobDto:SRes { public string Id { get; set; } public string Code { get; set; } public string Name { get; set; } public string CronExpression { get; set; } public string TriggerDescription { get; set; } public string JobDescription { get; set; } public string JobGroupName { get; set; } public string JobType { get; set; } public string TriggerName { get; set; } public string TriggerGroupName { get; set; } public int IsStop { get; set; } public string Memo { get; set; } public string AddWho { get; set; } = ""; public string EditWho { get; set; } = ""; public DateTime AddTime { get; set; } = DateTime.Now; public DateTime EditTime { get; set; } = DateTime.Now; /// /// 运行状态 /// [Description("运行状态")] public string JobExecuteStatus { get; set; } } }