Merge remote-tracking branch 'base-version/main' into dev

This commit is contained in:
chenbowen
2025-09-18 16:41:01 +08:00
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)