Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
23849647
Commit
23849647
authored
Apr 16, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
60c8f373
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
RB_NoticeRepository.cs
Edu.Repository/User/RB_NoticeRepository.cs
+11
-7
No files found.
Edu.Repository/User/RB_NoticeRepository.cs
View file @
23849647
...
...
@@ -25,7 +25,8 @@ namespace Edu.Repository.User
/// <returns></returns>
public
List
<
RB_Notice_ViewModel
>
GetPageList
(
int
pageIndex
,
int
pageSize
,
out
long
count
,
RB_Notice_ViewModel
demodel
)
{
string
where
=
$@" 1=1 and
{
nameof
(
RB_Notice
.
Status
)}
=0 "
;
var
parameters
=
new
DynamicParameters
();
string
where
=
$@" 1=1 AND
{
nameof
(
RB_Notice
.
Status
)}
=0 "
;
if
(
demodel
.
Group_Id
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Notice
.
Group_Id
)}
=
{
demodel
.
Group_Id
}
"
;
...
...
@@ -36,11 +37,13 @@ namespace Edu.Repository.User
}
if
(!
string
.
IsNullOrEmpty
(
demodel
.
Title
))
{
where
+=
$@" and
{
nameof
(
RB_Notice
.
Title
)}
like '%
{
demodel
.
Title
}
%'"
;
where
+=
$@" AND
{
nameof
(
RB_Notice
.
Title
)}
LIKE @Title "
;
parameters
.
Add
(
"Title"
,
"%"
+
demodel
.
Title
.
Trim
()
+
"%"
);
}
if
(!
string
.
IsNullOrEmpty
(
demodel
.
Number
))
{
where
+=
$@" and
{
nameof
(
RB_Notice
.
Number
)}
like '%
{
demodel
.
Number
}
%'"
;
where
+=
$@" and
{
nameof
(
RB_Notice
.
Number
)}
LIKE @Number "
;
parameters
.
Add
(
"Number"
,
"%"
+
demodel
.
Number
.
Trim
()
+
"%"
);
}
if
(
demodel
.
NoticeState
>
0
)
{
...
...
@@ -50,7 +53,8 @@ namespace Edu.Repository.User
{
where
+=
$@" and
{
nameof
(
RB_Notice
.
Is_Top
)}
=
{
demodel
.
Is_Top
}
"
;
}
if
(
demodel
.
UpdateBy
>
0
)
{
if
(
demodel
.
UpdateBy
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Notice
.
UpdateBy
)}
=
{
demodel
.
UpdateBy
}
"
;
}
...
...
@@ -59,12 +63,12 @@ namespace Edu.Repository.User
{
OrderBy
=
" UpdateTime desc"
;
}
else
if
(
demodel
.
OrderBy
==
2
)
{
else
if
(
demodel
.
OrderBy
==
2
)
{
OrderBy
=
" Is_Top asc,UpdateTime desc"
;
}
string
sql
=
$@" select * from RB_Notice where
{
where
}
order by
{
OrderBy
}
"
;
return
GetPage
<
RB_Notice_ViewModel
>(
pageIndex
,
pageSize
,
out
count
,
sql
).
ToList
();
return
GetPage
<
RB_Notice_ViewModel
>(
pageIndex
,
pageSize
,
out
count
,
sql
,
parameters
).
ToList
();
}
/// <summary>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment