2025-06-06 16:00:39 +08:00

38 lines
1020 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Entity.DomainModels
{
public class PageDataOptions
{
public int Page { get; set; }
public int Rows { get; set; }
public int Total { get; set; }
public string TableName { get; set; }
public string Sort { get; set; }
/// <summary>
/// 排序方式
/// </summary>
public string Order { get; set; }
public string Wheres { get; set; }
public bool Export { get; set; }
public object Value { get; set; }
/// <summary>
/// 查询条件
/// </summary>
public List<SearchParameters> Filter { get; set; }
}
public class SearchParameters
{
public string Name { get; set; }
public string Value { get; set; }
//查询类型LinqExpressionType
public string DisplayType { get; set; }
}
}