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

io.magician.tcp.codec.impl.http.model.MagicianFileUpLoad Maven / Gradle / Ivy

There is a newer version: 2.0.7
Show newest version
package io.magician.tcp.codec.impl.http.model;

import java.io.InputStream;

/**
 * 文件参数实体类
 * @author yuye
 *
 */
public class MagicianFileUpLoad {

    /**
     * 请求name
     */
    private String name;

    /**
     * 文件名
     */
    private String fileName;

    /**
     * 文件流
     */
    private InputStream inputStream;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public InputStream getInputStream() {
        return inputStream;
    }

    public void setInputStream(InputStream inputStream) {
        this.inputStream = inputStream;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy