AutoJobLogParam.cs 408 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace YiSha.Model.Param.SystemManage
  4. {
  5. /// <summary>
  6. /// 创 建:admin
  7. /// 日 期:2021-02-24 16:24
  8. /// 描 述:定时任务日志实体查询类
  9. /// </summary>
  10. public class AutoJobLogListParam
  11. {
  12. /// <summary>
  13. /// 任务名称
  14. /// </summary>
  15. public string JobName { get; set; }
  16. }
  17. }