| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | @TableName("temp_file") |
| | | public class TempFile { |
| | | public class TempFile implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId |
| | |
| | | private String originalName; // 原始文件名 |
| | | private String tempPath; // 临时存储路径 |
| | | private LocalDateTime expireTime; // 过期时间 |
| | | private String type; // 关联表类型 |
| | | private Integer type; // 关联表类型 |
| | | private Long fileSize; // 文件大小 |
| | | } |