package com.moon.server.entity.ctrl;
|
|
import java.io.Serializable;
|
|
/**
|
* 文件信息
|
* @author WWW
|
*/
|
public class FileInfoEntity implements Serializable {
|
private static final long serialVersionUID = -674723262772248619L;
|
|
private String fileName;
|
|
private Long size;
|
|
private String md5;
|
|
private String path;
|
|
public FileInfoEntity() {
|
}
|
|
public FileInfoEntity(String fileName) {
|
this.fileName = fileName;
|
}
|
|
public String getFileName() {
|
return fileName;
|
}
|
|
public void setFileName(String fileName) {
|
this.fileName = fileName;
|
}
|
|
public Long getSize() {
|
return size;
|
}
|
|
public void setSize(Long size) {
|
this.size = size;
|
}
|
|
public String getMd5() {
|
return md5;
|
}
|
|
public void setMd5(String md5) {
|
this.md5 = md5;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
}
|