更新基类控制器

This commit is contained in:
chenchun
2022-04-06 18:05:00 +08:00
parent f82d520512
commit 5fcf5bd583
11 changed files with 152 additions and 342 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Model.Query
{
public class QueryCondition
{
public int Index { get; set; }
public int Size { get; set; }
public int Count { get; set; }
public List<QueryParameter> Parameters { get; set; } = new List<QueryParameter>();
public List<string> OrderBys { get; set; } = new List<string>();
}
}