wiki附件展示大小,用户名展示,其他展示优化

This commit is contained in:
暮光:城中城
2020-12-27 14:25:38 +08:00
parent bd2d08c9ff
commit 64572e52ef
13 changed files with 66 additions and 10 deletions

View File

@@ -84,6 +84,11 @@ public class WikiPageFile implements Serializable {
*/
private Integer downloadNum;
/**
* 文件大小
*/
private Long fileSize;
public Long getId() {
return id;
}
@@ -194,4 +199,12 @@ public class WikiPageFile implements Serializable {
public void setDownloadNum(Integer downloadNum) {
this.downloadNum = downloadNum;
}
public Long getFileSize() {
return fileSize;
}
public void setFileSize(Long fileSize) {
this.fileSize = fileSize;
}
}