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,31 @@
package plus.bookshelf.Service.Model.Category;
public class CategoryModel {
// 分类名称
Integer id;
// 分类名称
Integer name;
// 分类简介
Integer description;
Boolean isShow;
// 分类显示顺序
Integer order;
// 分类级别 0为一级分类, 1为二级分类...
Integer level;
// 所属父分类Id
Integer parentId;
// 父分类
CategoryModel parent;
// 子分类集合
CategoryModel[] children;
}