1. 新增查询所有本人加下属公司列表接口

This commit is contained in:
chenbowen
2025-09-18 16:37:20 +08:00
parent 377f5d7494
commit 79c1d5e6a4
8 changed files with 72 additions and 3 deletions

View File

@@ -46,6 +46,10 @@ public interface DeptApi {
@Operation(summary = "获得公司精简信息列表")
CommonResult<List<DeptSimpleRespDTO>> getSimpleCompanyList();
@GetMapping(PREFIX + "/all-company-list")
@Operation(summary = "获得所有公司精简信息列表")
CommonResult<List<DeptSimpleRespDTO>> getAllCompanyList();
@GetMapping(PREFIX + "/get")
@Operation(summary = "获得部门信息")
@Parameter(name = "id", description = "部门编号", example = "1024", required = true)