【开源】发布一个Java课程设计BookManageSystem
作者:
画星星高手 | 来源:发表于
2019-02-03 11:53 被阅读7次
JavaBookManageSystem
Github主页:https://github.com/Deali-Axy/JavaBookManageSystem
介绍
使用Java编写的简易图书管理软件,Java课程的课设之一。
依赖
数据库设计
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)
图书信息编辑
本文标题:【开源】发布一个Java课程设计BookManageSystem
本文链接:https://www.haomeiwen.com/subject/thnlcqtx.html
网友评论