【开源】发布一个Java课程设计BookManageSystem

2019-02-03  本文已影响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

截图

登录界面 用户中心 藏书列表 图书信息编辑
上一篇 下一篇

猜你喜欢

热点阅读