mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
26 lines
660 B
C#
26 lines
660 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Model.Query
|
|
{
|
|
public class QueryPageCondition
|
|
{
|
|
public int Index { get; set; }
|
|
public int Size { get; set; }
|
|
|
|
public List<QueryParameter> Parameters { get; set; } = new List<QueryParameter>();
|
|
public List<string> OrderBys { get; set; } = new List<string>();
|
|
|
|
}
|
|
|
|
public class QueryCondition
|
|
{
|
|
public List<QueryParameter> Parameters { get; set; } = new List<QueryParameter>();
|
|
public List<string> OrderBys { get; set; } = new List<string>();
|
|
|
|
}
|
|
}
|