GetSysJobListRequest.cs 476 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.hj
  5. {
  6. public class GetSysJobListRequest:BaseRequest
  7. {
  8. public string Code { get; set; } = "";
  9. public string Name { get; set; } = "";
  10. public string JobGroupName { get; set; } = "";
  11. public string JobType { get; set; } = "";
  12. public string TriggerName { get; set; } = "";
  13. public string CronExpression { get; set; } = "";
  14. }
  15. }