【开源】发布一个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 |
|
|
|
截图

登录界面

用户中心

藏书列表

图书信息编辑
本文标题:【开源】发布一个Java课程设计BookManageSystem
本文链接:https://www.haomeiwen.com/subject/thnlcqtx.html
网友评论