FindFileUrlReques调整

This commit is contained in:
tianliyong 2022-11-17 16:28:36 +08:00
parent 4e517e51c8
commit f3a9caf797

View File

@ -3,6 +3,7 @@ package cn.axzo.oss.http.model;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.List;
/**
@ -16,6 +17,6 @@ public class FindFileUrlRequest {
@NotBlank(message = "appCode must not be null")
private String appCode;
@NotBlank(message = "fileKey must not be null")
@NotNull(message = "fileKey must not be null")
private List<String> fileKey;
}