refactor(文件服务): 接口修改返回值

This commit is contained in:
禾几海
2020-10-15 22:46:55 +08:00
parent 3d0253a35a
commit 19068ff14d
7 changed files with 95 additions and 43 deletions

View File

@@ -0,0 +1,25 @@
package cn.celess.blog.entity.model;
/**
* @author : xiaohai
* @date : 2020/10/15 22:16
* @desc :
*/
public class FileInfo {
/**
* 文件名
*/
public String key;
/**
* 文件hash值
*/
public String hash;
/**
* 文件大小,单位:字节
*/
public long size;
/**
* 文件上传时间单位为100纳秒
*/
public long uploadTime;
}