优化任务查询

This commit is contained in:
不做码农
2023-07-06 21:54:57 +08:00
parent 861cfded06
commit de1768d59d
4 changed files with 33 additions and 16 deletions

View File

@@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
namespace ZR.Model.System.Dto
{
public class TasksQueryDto
public class TasksQueryDto : PagerInfo
{
/// <summary>
/// 查询字符串
@@ -12,6 +12,7 @@ namespace ZR.Model.System.Dto
public string QueryText { get; set; }
public int? TaskType { get; set; }
public int? TriggerType { get; set; }
public int? IsStart { get; set; }
}
/// <summary>