嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
基于Java的图书管理系统的设计.DOC
目 录
2 选题的目的和意义 PAGEREF _Toc90241590 \h 3
3 设计方案(架构设计) PAGEREF _Toc90241591 \h 4
3.1 系统的运行环境 PAGEREF _Toc90241592 \h 4
3.1.1 系统运行硬件环境 PAGEREF _Toc90241593 \h 4
3.1.2 系统运行软件环境 PAGEREF _Toc90241594 \h 4
3.2 网络环境 PAGEREF _Toc90241595 \h 4
4 安装与配置 PAGEREF _Toc90241596 \h 5
4.1 安装 PAGEREF _Toc90241597 \h 5
4.2 配置 PAGEREF _Toc90241598 \h 5
5 操作说明 PAGEREF _Toc90241599 \h 6
5.1 进入登录界面 PAGEREF _Toc90241600 \h 6
5.2 进入系统 PAGEREF _Toc90241601 \h 7
5.2.1读者界面 PAGEREF _Toc90241602 \h 7
5.3 图书查询 PAGEREF _Toc90241603 \h 8
5.4 借阅信息 PAGEREF _Toc90241604 \h 9
5.5 借阅历史 PAGEREF _Toc90241605 \h 9
5.6 热门推荐 PAGEREF _Toc90241606 \h 10
5.7 最佳读者 PAGEREF _Toc90241607 \h 10
5.8 问题反馈 PAGEREF _Toc90241608 \h 11
6数据库信息 PAGEREF _Toc90241609 \h 12
6.1 读者 admin表 PAGEREF _Toc90241610 \h 12
6.2 图书 book表 PAGEREF _Toc90241611 \h 12
6.3 图书分类 booktype表 PAGEREF _Toc90241612 \h 13
6.4 历史记录 history表 PAGEREF _Toc90241613 \h 13
6.5 反馈信息 problem表 PAGEREF _Toc90241614 \h 14
7 类图 PAGEREF _Toc90241615 \h 15
7.1 用户管理 PAGEREF _Toc90241616 \h 15
7.2 系统信息 PAGEREF _Toc90241617 \h 15
7.3 操作及反馈信息 PAGEREF _Toc90241618 \h 16
8 课程设计经验与总结 PAGEREF _Toc90241619 \h 17
参考文献 PAGEREF _Toc90241620 \h 18
package com.rain.bean;
public class AdminBean {
/**
* 用户的数据表的bean
*/
private int aid;// id
private int status;// 用来判断是管理员还是读者,读者的值为1,管理员为2
private String username;// 账号
private String name;// 姓名
private String password;// 密码
private String email;// 邮箱
private String phone;// 手机号
private int times;//借阅量
private int lend_num;// 可借阅天数
private int max_num;// 最大可借数
public int getAid() {
return aid;
}
public void setAid(int aid) {
this.aid = aid;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public int getTimes() {
return times;
}
public void setTimes(int times) {
this.times = times;
}
public int getLend_num() {
return lend_num;
}
public void setLend_num(int lend_num) {
this.lend_num = lend_num;
}
public int getMax_num() {
return max_num;
}
public void setMax_num(int max_num) {
this.max_num = max_num;
}
}