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

matrix.module.jdbc.entity.FileEntity Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package matrix.module.jdbc.entity;

import lombok.Data;
import lombok.experimental.Accessors;

import java.io.InputStream;
import java.io.Serializable;

/**
 * @author wangcheng
 * date 2020-03-14
 */
@Data
@Accessors(chain = true)
public class FileEntity implements Serializable {

    private String fileName;

    private InputStream inputStream;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy