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

This commit is contained in:
chenbowen
2025-10-29 09:00:57 +08:00
9 changed files with 100 additions and 12 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;
}