新增组织查询调整 ids

This commit is contained in:
chenbowen
2025-10-29 08:51:35 +08:00
parent 10e2637838
commit 744567d999
4 changed files with 73 additions and 8 deletions

View File

@@ -3,6 +3,8 @@ package com.zt.plat.module.system.api.dept.dto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.util.List;
/**
* 部门列表 Request DTO
*
@@ -24,4 +26,7 @@ public class DeptListReqDTO {
@Schema(description = "是否集团", example = "false")
private Boolean isGroup;
@Schema(description = "部门编号集合,支持多部门查询", example = "[\"1001\", \"1002\"]")
private List<String> ids;
}