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;
|
}
|