【开源】发布一个Java课程设计BookManageSystem
2019-02-03 本文已影响7人
画星星高手
JavaBookManageSystem
Github主页:https://github.com/Deali-Axy/JavaBookManageSystem
介绍
使用Java编写的简易图书管理软件,Java课程的课设之一。
依赖
Mybatis 3.4.6
-
QFramework4J
: About QFramework Sqlite-Jdbc 3.23.1
SwingSets3
数据库设计
User
field | type | help_text | constraint | length |
---|---|---|---|---|
id | int | primary-key | ||
name | char | 20 | ||
password | char | 200 | ||
admin | boolean |
Book
field | type | help_text | constraint | length |
---|---|---|---|---|
id | int | primary-key | ||
name | char | 200 | ||
author | char | 200 | ||
publisher | char | 200 | ||
publication_date | datetime | |||
pages | int | |||
ISBN | char | 20 |
Borrowing
field | type | help_text | constraint | length |
---|---|---|---|---|
id | int | primary-key | ||
book_id | int | foregin-key to Book
|
||
user_id | int | foregin-key to User
|
||
date | date |
截图
![](https://img.haomeiwen.com/i8869373/c8b6b92aa54a6ad5.png)
![](https://img.haomeiwen.com/i8869373/923777bb29cc17d3.png)
![](https://img.haomeiwen.com/i8869373/3cc0c3d6f408ac37.png)
![](https://img.haomeiwen.com/i8869373/52bf17cfb859202e.png)