FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Blog.Core/Blog.Core.Model/PaginationModel.cs at master · BaseCoreVueProject/Blog.Core · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
BaseCoreVueProject
/
Blog.Core
Public
forked from
anjoy8/Blog.Core
Notifications
You must be signed in to change notification settings
Fork
16
Star
62
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Blog.Core
/
Blog.Core.Model
/
PaginationModel.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (30 loc) · 806 Bytes
Breadcrumbs
Blog.Core
/
Blog.Core.Model
/
PaginationModel.cs
Copy path
File metadata and controls
31 lines (30 loc) · 806 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using
System
;
using
System
.
Collections
.
Generic
;
using
System
.
Text
;
namespace
Blog
.
Core
.
Model
{
/// <summary>
/// 所需分页参数
/// 作者:胡丁文
/// 时间:2020-4-3 20:31:26
/// </summary>
public
class
PaginationModel
{
/// <summary>
/// 当前页
/// </summary>
public
int
intPageIndex
{
get
;
set
;
}
=
1
;
/// <summary>
/// 每页大小
/// </summary>
public
int
intPageSize
{
get
;
set
;
}
=
10
;
/// <summary>
/// 排序字段(例如:id desc,time asc)
/// </summary>
public
string
strOrderByFileds
{
get
;
set
;
}
/// <summary>
/// 查询条件( 例如:id = 1 and name = 小明)
/// </summary>
public
string
conditions
{
get
;
set
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL