|
|
@ -5,16 +5,28 @@ import com.lq.code.entity.IdEntity; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
|
|
|
|
* 系统文件 |
|
|
|
* Created by qi_liang on 2018/3/25. |
|
|
|
* Created by qi_liang on 2018/3/25. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public class SysFile extends IdEntity { |
|
|
|
public class SysFile extends IdEntity { |
|
|
|
//文件名
|
|
|
|
/** |
|
|
|
|
|
|
|
* 文件名 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
private String fileName; |
|
|
|
private String fileName; |
|
|
|
//文件路径(相对路径)
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 文件路径(相对路径) |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
private String path; |
|
|
|
private String path; |
|
|
|
//上传时间
|
|
|
|
/** |
|
|
|
|
|
|
|
* 上传时间 |
|
|
|
|
|
|
|
*/ |
|
|
|
private Date createTime; |
|
|
|
private Date createTime; |
|
|
|
//文件类型(image:图片,viedo:视频,other:其他)
|
|
|
|
/** |
|
|
|
|
|
|
|
* 文件类型(image:图片,viedo:视频,other:其他) |
|
|
|
|
|
|
|
*/ |
|
|
|
private String fileType; |
|
|
|
private String fileType; |
|
|
|
|
|
|
|
|
|
|
|
public String getFileName() { |
|
|
|
public String getFileName() { |
|
|
|