1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-10-14 19:55:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

建立项目与数据库

This commit is contained in:
2022-03-12 18:49:17 +08:00
commit fe5bd2080d
24 changed files with 972 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
package plus.bookshelf.Service.Model.Book;
import plus.bookshelf.Common.Enum.Language;
import plus.bookshelf.Service.Model.Category.CategoryModel;
public class BookModel {
// 书籍id
Integer id;
// 书名
String bookName;
// 书籍简介
String description;
// 作者姓名
AuthorModel[] author;
//书籍所属分类
CategoryModel category;
// 出版社
PublishingHouseModel publishingHouse;
// 语言
Language language;
// 来源(版权)信息
String copyright;
// 是否删除
Boolean isDelete;
}