SysJobDto.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace wms.dto.response.hj
  6. {
  7. public class SysJobDto:SRes
  8. {
  9. public string Id { get; set; }
  10. public string Code { get; set; }
  11. public string Name { get; set; }
  12. public string CronExpression { get; set; }
  13. public string TriggerDescription { get; set; }
  14. public string JobDescription { get; set; }
  15. public string JobGroupName { get; set; }
  16. public string JobType { get; set; }
  17. public string TriggerName { get; set; }
  18. public string TriggerGroupName { get; set; }
  19. public int IsStop { get; set; }
  20. public string Memo { get; set; }
  21. public string AddWho { get; set; } = "";
  22. public string EditWho { get; set; } = "";
  23. public DateTime AddTime { get; set; } = DateTime.Now;
  24. public DateTime EditTime { get; set; } = DateTime.Now;
  25. /// <summary>
  26. /// 运行状态
  27. /// </summary>
  28. [Description("运行状态")]
  29. public string JobExecuteStatus { get; set; }
  30. }
  31. }