1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-01 22:53:29 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

删除文件列表缩略图字段;样式小调整

This commit is contained in:
2022-04-10 17:36:07 +08:00
parent 2912c09098
commit 413411ddb6
8 changed files with 44 additions and 65 deletions

View File

@@ -34,9 +34,6 @@ public class FileVO {
// 文件来源 电子版/扫描版
String bookOrigin;
// 缩略图
private String thumbnail;
// 文件创建时间
long fileCreateAt;

View File

@@ -84,15 +84,6 @@ public class FileDO {
*/
private String bookOrigin;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column file_info.thumbnail
*
* @mbg.generated
*/
private String thumbnail;
/**
*
* This field was generated by MyBatis Generator.
@@ -345,30 +336,6 @@ public class FileDO {
this.bookOrigin = bookOrigin == null ? null : bookOrigin.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_info.thumbnail
*
* @return the value of file_info.thumbnail
*
* @mbg.generated
*/
public String getThumbnail() {
return thumbnail;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column file_info.thumbnail
*
* @param thumbnail the value for file_info.thumbnail
*
* @mbg.generated
*/
public void setThumbnail(String thumbnail) {
this.thumbnail = thumbnail == null ? null : thumbnail.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column file_info.file_create_at

View File

@@ -34,9 +34,6 @@ public class FileModel {
// 文件来源 电子版/扫描版
String bookOrigin;
// 缩略图
private String thumbnail;
// 文件创建时间
Date fileCreateAt;