上传或者下载时,加上文件名称参数开关

This commit is contained in:
xudawei 2024-05-15 15:43:16 +08:00
parent 5e05799c3e
commit 69746d5883
2 changed files with 10 additions and 0 deletions

View File

@ -37,4 +37,9 @@ public class ApiSignUrlDownloadRequest {
*/
private String style;
/**
* 是否带上文件名称
*/
private Boolean hasFileName = true;
}

View File

@ -56,4 +56,9 @@ public class ApiSignUrlUploadRequest {
* 过期时间
*/
private Long expiration;
/**
* 是否带上文件名称
*/
private Boolean hasFileName = true;
}