com.gitee.cliveyuan.tools.bean.FileUploadResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-tools Show documentation
Show all versions of java-tools Show documentation
Some commonly used methods in java
package com.gitee.cliveyuan.tools.bean;
import lombok.Builder;
import lombok.Data;
/**
* 文件上传响应
* @author clive
* Created on 2018/07/27
* @since 1.0
*/
@Data
@Builder
public class FileUploadResponse {
/**
* 文件的绝对路径
*/
private String fileRealPath;
/**
* 文件的web相对路径
*/
private String webRelativePath;
/**
* 文件名
*/
private String fileName;
/**
* 扩展名
*/
private String extension;
/**
* 文件大小 (单位byte)
*/
private Long length;
}