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
9c4c4082
Commit
9c4c4082
authored
Oct 12, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
b13beee4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
RB_Menu_ViewModel.cs
Edu.Model/ViewModel/System/RB_Menu_ViewModel.cs
+25
-0
MenuModule.cs
Edu.Module.System/MenuModule.cs
+1
-0
RB_MenuRepository.cs
Edu.Repository/System/RB_MenuRepository.cs
+2
-0
No files found.
Edu.Model/ViewModel/System/RB_Menu_ViewModel.cs
View file @
9c4c4082
...
...
@@ -5,6 +5,31 @@
/// </summary>
public
class
RB_Menu_ViewModel
:
Model
.
Entity
.
System
.
RB_Menu
{
/// <summary>
/// 菜单类型字符串
/// </summary>
public
string
MenuTypeStr
{
get
{
string
str
=
""
;
if
(
this
.
MenuType
>
0
)
{
switch
(
this
.
MenuType
)
{
case
1
:
str
=
"管理端"
;
break
;
case
2
:
str
=
"教师端"
;
break
;
case
3
:
str
=
"助教端"
;
break
;
case
4
:
str
=
"学生端"
;
break
;
}
}
return
str
;
}
}
/// <summary>
/// 创建时间字符串
/// </summary>
public
string
CreateTimeStr
{
get
{
return
Common
.
ConvertHelper
.
FormatTime
(
this
.
CreateTime
);
}
}
}
}
\ No newline at end of file
Edu.Module.System/MenuModule.cs
View file @
9c4c4082
...
...
@@ -58,6 +58,7 @@ namespace Edu.Module.System
{
nameof
(
RB_Menu_ViewModel
.
MenuLevel
),
model
.
MenuLevel
},
{
nameof
(
RB_Menu_ViewModel
.
MenuType
),
model
.
MenuType
},
{
nameof
(
RB_Menu_ViewModel
.
SortNum
),
model
.
SortNum
},
{
nameof
(
RB_Menu_ViewModel
.
Status
),
model
.
Status
},
};
flag
=
menuRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Menu_ViewModel
.
MenuId
),
model
.
MenuId
));
}
...
...
Edu.Repository/System/RB_MenuRepository.cs
View file @
9c4c4082
using
Edu.Common.Enum
;
using
Edu.Model.Entity.System
;
using
Edu.Model.ViewModel.System
;
using
System.Collections.Generic
;
using
System.Linq
;
...
...
@@ -107,6 +108,7 @@ WHERE 1=1
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
Status
),
(
int
)
query
.
Status
);
}
}
builder
.
AppendFormat
(
" ORDER BY {0} DESC "
,
nameof
(
RB_Menu_ViewModel
.
MenuId
));
return
GetPage
<
RB_Menu_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
}
...
...
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