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

com.jeesuite.filesystem.FileItem Maven / Gradle / Ivy

There is a newer version: 1.3.6
Show newest version
/**
 * 
 */
package com.jeesuite.filesystem;

/**
 * 
 * @description 
* @author vakin * @date 2017年1月5日 */ public class FileItem { private FileType fileType; private String url; private byte[] datas; public FileType getFileType() { return fileType; } public void setFileType(FileType fileType) { this.fileType = fileType; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public byte[] getDatas() { return datas; } public void setDatas(byte[] datas) { this.datas = datas; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy