fix:删除文件夹,重命名文件夹需要添加跳过权限校验功能
This commit is contained in:
@@ -31,4 +31,7 @@ public class DelDirReq {
|
||||
@Schema(description = "审批模板名称")
|
||||
private String templateName;
|
||||
|
||||
@Schema(description = "是否跳过权限校验,默认为false", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
|
||||
private Boolean skipPermissionCheck = false;
|
||||
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user