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
47e4d978
Commit
47e4d978
authored
Dec 24, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
206ed886
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
80 additions
and
33 deletions
+80
-33
RB_Post_ViewModel.cs
Edu.Model/ViewModel/User/RB_Post_ViewModel.cs
+5
-0
DepartmentModule.cs
Edu.Module.User/DepartmentModule.cs
+33
-33
RB_PostRepository.cs
Edu.Repository/User/RB_PostRepository.cs
+42
-0
No files found.
Edu.Model/ViewModel/User/RB_Post_ViewModel.cs
View file @
47e4d978
...
@@ -57,5 +57,10 @@ namespace Edu.Model.ViewModel.User
...
@@ -57,5 +57,10 @@ namespace Edu.Model.ViewModel.User
/// 部门查询
/// 部门查询
/// </summary>
/// </summary>
public
string
QDeptIds
{
get
;
set
;
}
public
string
QDeptIds
{
get
;
set
;
}
/// <summary>
/// 部门编号
/// </summary>
public
int
Dept_Id
{
get
;
set
;
}
}
}
}
}
Edu.Module.User/DepartmentModule.cs
View file @
47e4d978
...
@@ -173,7 +173,7 @@ namespace Edu.Module.User
...
@@ -173,7 +173,7 @@ namespace Edu.Module.User
}
}
if
(
isQueryPost
)
if
(
isQueryPost
)
{
{
postList
=
postRepository
.
GetPostListRepository
(
new
RB_Post_ViewModel
()
postList
=
postRepository
.
GetPostList
Ext
Repository
(
new
RB_Post_ViewModel
()
{
{
Group_Id
=
query
.
Group_Id
,
Group_Id
=
query
.
Group_Id
,
});
});
...
@@ -229,22 +229,22 @@ namespace Edu.Module.User
...
@@ -229,22 +229,22 @@ namespace Edu.Module.User
#
region
添加岗位
#
region
添加岗位
if
(
isQueryPost
)
if
(
isQueryPost
)
{
{
//var tempPostList = postList?.Where(qitem => qitem.RB_
Dept_Id == fItem.DeptId)?.ToList();
var
tempPostList
=
postList
?.
Where
(
qitem
=>
qitem
.
Dept_Id
==
fItem
.
DeptId
)?.
ToList
();
//
if (tempPostList != null && tempPostList.Count > 0)
if
(
tempPostList
!=
null
&&
tempPostList
.
Count
>
0
)
//
{
{
//
foreach (var pItem in tempPostList)
foreach
(
var
pItem
in
tempPostList
)
//
{
{
//
tModel.ChildList.Add(new DepartmentTree_ViewModel()
tModel
.
ChildList
.
Add
(
new
DepartmentTree_ViewModel
()
//
{
{
//
DeptId = pItem.PostId,
DeptId
=
pItem
.
PostId
,
//
DeptName = pItem.PostName,
DeptName
=
pItem
.
PostName
,
//
ParentId = 0,
ParentId
=
0
,
//
ChildList = new List<DepartmentTree_ViewModel>(),
ChildList
=
new
List
<
DepartmentTree_ViewModel
>(),
//
School_Id = fItem.School_Id,
School_Id
=
fItem
.
School_Id
,
//
DataType = 3,
DataType
=
3
,
//
});
});
//
}
}
//
}
}
}
}
#
endregion
#
endregion
...
@@ -308,22 +308,22 @@ namespace Edu.Module.User
...
@@ -308,22 +308,22 @@ namespace Edu.Module.User
#
region
添加岗位
#
region
添加岗位
if
(
postList
!=
null
&&
postList
.
Count
>
0
)
if
(
postList
!=
null
&&
postList
.
Count
>
0
)
{
{
//var tempPostList = postList?.Where(qitem => qitem.RB_
Dept_Id == item.DeptId)?.ToList();
var
tempPostList
=
postList
?.
Where
(
qitem
=>
qitem
.
Dept_Id
==
item
.
DeptId
)?.
ToList
();
//
if (tempPostList != null && tempPostList.Count > 0)
if
(
tempPostList
!=
null
&&
tempPostList
.
Count
>
0
)
//
{
{
//
foreach (var pItem in tempPostList)
foreach
(
var
pItem
in
tempPostList
)
//
{
{
//
model.ChildList.Add(new DepartmentTree_ViewModel()
model
.
ChildList
.
Add
(
new
DepartmentTree_ViewModel
()
//
{
{
//
DeptId = pItem.PostId,
DeptId
=
pItem
.
PostId
,
//
DeptName = pItem.PostName,
DeptName
=
pItem
.
PostName
,
//
ParentId = 0,
ParentId
=
0
,
//
ChildList = new List<DepartmentTree_ViewModel>(),
ChildList
=
new
List
<
DepartmentTree_ViewModel
>(),
//
School_Id = item.School_Id,
School_Id
=
item
.
School_Id
,
//
DataType = 3,
DataType
=
3
,
//
});
});
//
}
}
//
}
}
}
}
#
endregion
#
endregion
...
...
Edu.Repository/User/RB_PostRepository.cs
View file @
47e4d978
...
@@ -100,6 +100,48 @@ WHERE 1=1
...
@@ -100,6 +100,48 @@ WHERE 1=1
}
}
}
}
/// <summary>
/// 获取部门岗位管理列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Post_ViewModel
>
GetPostListExtRepository
(
RB_Post_ViewModel
query
)
{
DynamicParameters
parameters
=
new
DynamicParameters
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT A.*,B.Dept_Id
FROM rb_post AS A INNER JOIN rb_department_post AS B ON A.PostId=B.PostId
WHERE 1=1
"
);
builder
.
Append
(
$" AND A.
{
nameof
(
RB_Post_ViewModel
.
Status
)}
=
{(
int
)
DateStateEnum
.
Normal
}
"
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
Append
(
$" AND A.
{
nameof
(
RB_Post_ViewModel
.
Group_Id
)}
=
{
query
.
Group_Id
}
"
);
}
if
(
query
.
PostId
>
0
)
{
builder
.
Append
(
$" AND A.
{
nameof
(
RB_Post_ViewModel
.
PostId
)}
=
{
query
.
PostId
}
"
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
QPostIds
))
{
builder
.
Append
(
$" AND A.
{
nameof
(
RB_Post_ViewModel
.
PostId
)}
IN(
{
query
.
QPostIds
}
) "
);
}
if
(!
string
.
IsNullOrEmpty
(
query
.
PostName
))
{
builder
.
Append
(
$" AND A.
{
nameof
(
RB_Post_ViewModel
.
PostName
)}
LIKE @PostName "
);
parameters
.
Add
(
"PostName"
,
"%"
+
query
.
PostName
.
Trim
()
+
"%"
);
}
return
Get
<
RB_Post_ViewModel
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
else
{
return
new
List
<
RB_Post_ViewModel
>();
}
}
/// <summary>
/// <summary>
/// 根据部门编号获取岗位列表
/// 根据部门编号获取岗位列表
/// </summary>
/// </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