add @NoArgsConstructor PDFFile

This commit is contained in:
Ludy87 2025-04-23 17:52:06 +02:00
parent 62602ceab1
commit 6736fc07d2
No known key found for this signature in database
GPG Key ID: 92696155E0220F94

View File

@ -6,10 +6,12 @@ import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@EqualsAndHashCode
public class PDFFile {
@Schema(description = "The input PDF file")
@Schema(description = "The input PDF file", format = "binary")
private MultipartFile fileInput;
}