1. 优化用户部门选择部门时的支持接口

2. 完善 e 办同步接口重跑和定时重跑任务

(cherry picked from commit f8c984d627)
This commit is contained in:
chenbowen
2025-09-18 21:20:43 +08:00
committed by chenbowen
parent bddd004269
commit 4bcd599ccc
13 changed files with 403 additions and 11 deletions

View File

@@ -13,6 +13,9 @@ public class DeptRespDTO {
@Schema(description = "部门名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "研发部")
private String name;
@Schema(description = "部门编码", example = "XXXXXXX")
private String code;
@Schema(description = "父部门编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
private Long parentId;