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
aa549f38
Commit
aa549f38
authored
4 years ago
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交代码
parent
33902769
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
452 additions
and
0 deletions
+452
-0
DepartmentModule.cs
Edu.Module.User/DepartmentModule.cs
+275
-0
EmployeeModule.cs
Edu.Module.User/EmployeeModule.cs
+81
-0
PostModule.cs
Edu.Module.User/PostModule.cs
+96
-0
No files found.
Edu.Module.User/DepartmentModule.cs
0 → 100644
View file @
aa549f38
This diff is collapsed.
Click to expand it.
Edu.Module.User/EmployeeModule.cs
0 → 100644
View file @
aa549f38
using
Edu.Model.ViewModel.User
;
using
Edu.Repository.User
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
namespace
Edu.Module.User
{
/// <summary>
/// 员工处理类
/// </summary>
public
class
EmployeeModule
{
/// <summary>
/// 账号管理处理类对象
/// </summary>
private
readonly
RB_AccountRepository
accountRepository
=
new
RB_AccountRepository
();
/// <summary>
/// 部门仓储层对象
/// </summary>
private
readonly
RB_DepartmentRepository
departmentRepository
=
new
RB_DepartmentRepository
();
/// <summary>
/// 获取员工列表【管理者、讲师、助教】
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
Employee_ViewModel
>
GetEmployeeListModule
(
Employee_ViewModel
query
)
{
return
accountRepository
.
GetEmployeeListRepository
(
query
);
}
/// <summary>
/// 根据员工部门获取员工列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
Employee_ViewModel
>
GetEmployeeByDeptTierModule
(
Employee_ViewModel
query
)
{
List
<
Employee_ViewModel
>
employeeList
=
new
List
<
Employee_ViewModel
>();
//获取当前部门所有的上级部门
if
(
query
.
DeptTier
==
1
)
{
var
currentDeptModel
=
departmentRepository
.
GetEntity
<
RB_Department_ViewModel
>(
query
.
Dept_Id
);
if
(
currentDeptModel
!=
null
&&
!
string
.
IsNullOrEmpty
(
currentDeptModel
.
ManagerIds
))
{
employeeList
=
accountRepository
.
GetEmployeeListRepository
(
new
Employee_ViewModel
()
{
QIds
=
currentDeptModel
.
ManagerIds
});
}
}
else
{
var
allDeptList
=
departmentRepository
.
GetAllSuperiorDepartmentListRepository
(
query
.
Dept_Id
);
var
subList
=
allDeptList
.
Where
(
qitem
=>
qitem
.
DeptTier
==
(
query
.
DeptTier
-
1
));
if
(
subList
!=
null
&&
subList
.
Count
()
>
0
)
{
string
managerIds
=
"0"
;
foreach
(
var
item
in
subList
)
{
if
(!
string
.
IsNullOrEmpty
(
item
.
ManagerIds
))
{
managerIds
+=
","
+
item
.
ManagerIds
;
}
}
if
(!
string
.
IsNullOrEmpty
(
managerIds
))
{
employeeList
=
accountRepository
.
GetEmployeeListRepository
(
new
Employee_ViewModel
()
{
QIds
=
managerIds
});
}
}
}
return
employeeList
;
}
}
}
This diff is collapsed.
Click to expand it.
Edu.Module.User/PostModule.cs
0 → 100644
View file @
aa549f38
using
Edu.Model.ViewModel.User
;
using
Edu.Repository.User
;
using
System.Collections.Generic
;
using
VT.FW.DB
;
namespace
Edu.Module.User
{
/// <summary>
/// 岗位处理类
/// </summary>
public
class
PostModule
{
/// <summary>
/// 岗位仓储层对象
/// </summary>
private
readonly
RB_PostRepository
postRepository
=
new
RB_PostRepository
();
/// <summary>
/// 获取岗位分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Post_ViewModel
>
GetPostPageListModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Post_ViewModel
query
)
{
var
list
=
postRepository
.
GetPostPageListRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
string
st
=
""
;
return
list
;
}
/// <summary>
/// 获取岗位列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Post_ViewModel
>
GetPostListModule
(
RB_Post_ViewModel
query
)
{
return
postRepository
.
GetPostListRepository
(
query
);
}
/// <summary>
/// 新增修改岗位
/// </summary>
/// <param name="extModel"></param>
/// <returns></returns>
public
bool
SetPostModule
(
RB_Post_ViewModel
extModel
)
{
bool
flag
;
if
(
extModel
.
PostId
>
0
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Post_ViewModel
.
PostName
),
extModel
.
PostName
},
{
nameof
(
RB_Post_ViewModel
.
RB_Dept_Id
),
extModel
.
RB_Dept_Id
},
{
nameof
(
RB_Post_ViewModel
.
UpdateBy
),
extModel
.
UpdateBy
},
{
nameof
(
RB_Post_ViewModel
.
UpdateTime
),
extModel
.
UpdateTime
},
};
flag
=
postRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Post_ViewModel
.
PostId
),
extModel
.
PostId
));
}
else
{
var
newId
=
postRepository
.
Insert
(
extModel
);
extModel
.
PostId
=
newId
;
flag
=
newId
>
0
;
}
return
flag
;
}
/// <summary>
/// 根据岗位编号获取部门岗位
/// </summary>
/// <param name="DeptId"></param>
/// <returns></returns>
public
RB_Post_ViewModel
GetPostModule
(
object
PostId
)
{
return
postRepository
.
GetEntity
<
RB_Post_ViewModel
>(
PostId
);
}
/// <summary>
/// 修改岗位状态
/// </summary>
/// <param name="PostId">岗位编号</param>
/// <param name="Status">状态</param>
/// <returns></returns>
public
bool
RemovePostModule
(
int
PostId
,
int
Status
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Post_ViewModel
.
Status
),
Status
}
};
return
postRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Post_ViewModel
.
PostId
),
PostId
));
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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