You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
658 B
27 lines
658 B
using System.Collections.Generic;
|
|
using FactorySystemModel.ResponseModel;
|
|
|
|
namespace FactorySystemModel.RequestModel
|
|
{
|
|
public class TaskQuery : TaskRow
|
|
{
|
|
public TaskQuery()
|
|
{
|
|
FIsUser = true;
|
|
}
|
|
/// <summary>
|
|
/// Desc:发起时间的时间段
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public List<string> FDateRange { get; set; }
|
|
|
|
public int FPageIndex { get; set; }
|
|
|
|
public int FPageSize { get; set; }
|
|
/// <summary>
|
|
/// 是否根据全选出数据
|
|
/// </summary>
|
|
public bool FIsUser { get; set; }
|
|
}
|
|
} |