mirror of
https://github.com/BgaSol/sol-cloud
synced 2026-05-23 17:18:44 +00:00
refactor(model-file): Fix access to uploadFile fields in FileCreateDto
This commit is contained in:
parent
4e71250f99
commit
2298fd5084
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ import org.springframework.web.multipart.MultipartFile;
|
|||
public class FileCreateDto extends BaseCreateDto<FileEntity> {
|
||||
@Schema(description = "要上传的文件块")
|
||||
@NotNull(message = "上传文件不能为空")
|
||||
MultipartFile uploadFile;
|
||||
private MultipartFile uploadFile;
|
||||
|
||||
@Override
|
||||
public FileEntity toEntity() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue