fix:删除文件夹,重命名文件夹需要添加跳过权限校验功能

This commit is contained in:
2026-02-03 14:25:26 +08:00
parent 1de12ece95
commit 14fff831b8
3 changed files with 17 additions and 7 deletions

View File

@@ -31,4 +31,7 @@ public class DelDirReq {
@Schema(description = "审批模板名称")
private String templateName;
@Schema(description = "是否跳过权限校验默认为false", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
private Boolean skipPermissionCheck = false;
}

View File

@@ -29,4 +29,7 @@ public class RenameDirReq {
// 0相对路径1绝对路径
@Schema(description = "路径类型: 0相对路径, 1绝对路径", defaultValue = "0")
private Integer type = 0;
@Schema(description = "是否跳过权限校验默认为false", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
private Boolean skipPermissionCheck = false;
}