yuan
2026-04-24 b4a9e12e00b78e1aef8acda070434de9ffd0d66a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.ruoyi.common.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class FileVo {
 
    @Schema(description = "文件名称")
    private String name;
 
    @Schema(description = "文件路径")
    private String url;
 
    @Schema(description = "文件大小")
    private int fileSize;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
    @Schema(description = "修改时间")
    private LocalDateTime updateTime;
 
    @Schema(description = "创建用户")
    private Integer createUser;
 
    @Schema(description = "修改用户")
    private Integer updateUser;
 
    private Long id;
}