|
@@ -1,9 +1,7 @@
|
|
|
using System.Collections.Generic;
|
|
|
-using System.IO;
|
|
|
using System.Threading.Tasks;
|
|
|
using GxPress.Entity;
|
|
|
using GxPress.Repository.Interface;
|
|
|
-using GxPress.Repository.Interface.DepartmentUser;
|
|
|
using GxPress.Result.Department;
|
|
|
using GxPress.Service.Interface.Department;
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
@@ -21,7 +19,7 @@ namespace GxPress.Api.AdminControllers
|
|
|
{
|
|
|
private readonly IDepartmentRepository _departmentRepository;
|
|
|
private readonly IDepartmentService _departmentService;
|
|
|
- public AdminDepartmentController(IDepartmentRepository departmentRepository,IDepartmentService departmentService)
|
|
|
+ public AdminDepartmentController(IDepartmentRepository departmentRepository, IDepartmentService departmentService)
|
|
|
{
|
|
|
_departmentRepository = departmentRepository;
|
|
|
_departmentService = departmentService;
|
|
@@ -33,7 +31,7 @@ namespace GxPress.Api.AdminControllers
|
|
|
/// <param name="request"></param>
|
|
|
/// <returns></returns>
|
|
|
[HttpPost]
|
|
|
- public async Task<Department> Add([FromBody]Department request)
|
|
|
+ public async Task<Department> Add([FromBody] Department request)
|
|
|
{
|
|
|
return await _departmentRepository.AddAsync(request);
|
|
|
}
|
|
@@ -82,6 +80,14 @@ namespace GxPress.Api.AdminControllers
|
|
|
{
|
|
|
return await _departmentRepository.GetTreeAsync(id);
|
|
|
}
|
|
|
-
|
|
|
+ /// <summary>
|
|
|
+ /// 获取全部部门
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("list")]
|
|
|
+ public async Task<List<DepartmentTreeResult>> GetAllDepartmentAsync()
|
|
|
+ {
|
|
|
+ return await _departmentRepository.GetAllDepartmentAsync();
|
|
|
+ }
|
|
|
}
|
|
|
}
|