- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.request.hj
- {
- public class GetSysJobListRequest:BaseRequest
- {
- public string Code { get; set; } = "";
- public string Name { get; set; } = "";
- public string JobGroupName { get; set; } = "";
- public string JobType { get; set; } = "";
- public string TriggerName { get; set; } = "";
- public string CronExpression { get; set; } = "";
- }
- }
|