添加高级保存及查询排序方式

This commit is contained in:
chenchun
2022-05-29 16:56:02 +08:00
parent b581c12edb
commit 356f71f13e
3 changed files with 45 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ namespace Yi.Framework.Model.Query
public List<QueryParameter> Parameters { get; set; } = new List<QueryParameter>();
public List<string> OrderBys { get; set; } = new List<string>();
public bool IsAsc { get; set; } = false;
}
public class QueryCondition
@@ -21,5 +22,7 @@ namespace Yi.Framework.Model.Query
public List<QueryParameter> Parameters { get; set; } = new List<QueryParameter>();
public List<string> OrderBys { get; set; } = new List<string>();
public bool IsAsc { get; set; } = false;
}
}