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.

32 lines
753 B

using FactorySystemModel.ResponseModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FactorySystemModel.RequestModel
{
public class FormulaQuery : FormulaRow
{
public FormulaQuery()
{
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; }
}
}