forked from wuguolin/smartbi2
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
251 B
Java
15 lines
251 B
Java
4 years ago
|
package io.dataease.base.domain;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
@Data
|
||
|
public class FileContent implements Serializable {
|
||
|
private String fileId;
|
||
|
|
||
|
private byte[] file;
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
}
|