All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.luues.util.upload.ue.UEFileInfo Maven / Gradle / Ivy

There is a newer version: 1.3.0.5.RELEASE
Show newest version
package com.luues.util.upload.ue;

import lombok.Data;
import java.util.HashMap;

@Data
public class UEFileInfo {

    // 输出文件地址
    private String url = "";
    // 上传文件名
    private String fileName = "";
    // 状态
    private String state = "";
    // 文件类型
    private String type = "";
    // 原始文件名
    private String originalName = "";
    // 文件大小
    private long size = 0;
    private String title = "";
    // 保存路径
    private String savePath = "upload";
    // 文件允许格式
    private String[] allowFiles = {".rar", ".doc", ".docx", ".zip", ".pdf", ".txt", ".swf", ".wmv", ".gif", ".png", ".jpg", ".jpeg", ".bmp"};
    // 文件大小限制,单位KB
    private int maxSize = 10000;
    private HashMap errorInfo = new HashMap();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy