java毕业设计_高校自习室座位管理系统

在这里插入图片描述
高校自习室座位管理系统mysql数据库创建语句
高校自习室座位管理系统oracle数据库创建语句
高校自习室座位管理系统sqlserver数据库创建语句
高校自习室座位管理系统spring+springMVC+hibernate框架对象(javaBean,pojo)设计
高校自习室座位管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计
高校自习室座位管理系统登录注册界面
高校自习室座位管理系统mysql数据库版本源码:
超级管理员表创建语句如下:

create table t_admin(
id int primary key auto_increment comment ‘主键’,
username varchar(100) comment ‘超级管理员账号’,
password varchar(100) comment ‘超级管理员密码’
) comment ‘超级管理员’;
insert into t_admin(username,password) values(‘admin’,‘123456’);
SQLCopy
帮助中心表创建语句如下:

create table t_bzzx(
id int primary key auto_increment comment ‘主键’,
title varchar(100) comment ‘问题’,
content varchar(100) comment ‘答案’,
showDate datetime comment ‘日期’
) comment ‘帮助中心’;
SQLCopy
用户表创建语句如下:

create table t_customer(
id int primary key auto_increment comment ‘主键’,
username varchar(100) comment ‘账号’,
password varchar(100) comment ‘密码’,
customerName varchar(100) comment ‘姓名’,
headPic varchar(100) comment ‘头像’,
phone varchar(100) comment ‘电话’,
age varchar(100) comment ‘年龄’,
sex varchar(100) comment ‘性别’
) comment ‘用户’;
SQLCopy
公告表创建语句如下:

create table t_gonggao(
id int primary key auto_increment comment ‘主键’,
title varchar(100) comment ‘标题’,
pic varchar(100) comment ‘图片’,
content varchar(100) comment ‘内容’,
showDate datetime comment ‘日期’
) comment ‘公告’;
SQLCopy
黑名单表创建语句如下:

create table t_hmd(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘用户’,
back varchar(100) comment ‘说明原因’
) comment ‘黑名单’;
SQLCopy
留言板表创建语句如下:

create table t_lyb(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘用户’,
content varchar(100) comment ‘内容’,
insertDate datetime comment ‘留言日期’,
status varchar(100) comment ‘状态’,
back varchar(100) comment ‘回复’
) comment ‘留言板’;
SQLCopy
座位预约表创建语句如下:

create table t_yy(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘用户’,
zuoweiId int comment ‘座位’,
yyDate datetime comment ‘预约日期’,
backDate datetime comment ‘归还日期’,
sj int comment ‘时长’,
status varchar(100) comment ‘状态’
) comment ‘座位预约’;
SQLCopy
座位表创建语句如下:

create table t_zuowei(
id int primary key auto_increment comment ‘主键’,
zuoweiName varchar(100) comment ‘座位编号’,
wz varchar(100) comment ‘位置’,
status varchar(100) comment ‘状态’
) comment ‘座位’;
SQLCopy
高校自习室座位管理系统oracle数据库版本源码:
超级管理员表创建语句如下:

create table t_admin(
id integer,
username varchar(100),
password varchar(100)
);
insert into t_admin(id,username,password) values(1,‘admin’,‘123456’);
–超级管理员字段加注释
comment on column t_admin.id is ‘主键’;
comment on column t_admin.username is ‘超级管理员账号’;
comment on column t_admin.password is ‘超级管理员密码’;
–超级管理员表加注释
comment on table t_admin is ‘超级管理员’;
SQLCopy
帮助中心表创建语句如下:

create table t_bzzx(
id integer,
title varchar(100),
content varchar(100),
showDate datetime
);
–帮助中心字段加注释
comment on column t_bzzx.id is ‘主键’;
comment on column t_bzzx.title is ‘问题’;
comment on column t_bzzx.content is ‘答案’;
comment on column t_bzzx.showDate is ‘日期’;
–帮助中心表加注释
comment on table t_bzzx is ‘帮助中心’;
SQLCopy
用户表创建语句如下:

create table t_customer(
id integer,
username varchar(100),
password varchar(100),
customerName varchar(100),
headPic varchar(100),
phone varchar(100),
age varchar(100),
sex varchar(100)
);
–用户字段加注释
comment on column t_customer.id is ‘主键’;
comment on column t_customer.username is ‘账号’;
comment on column t_customer.password is ‘密码’;
comment on column t_customer.customerName is ‘姓名’;
comment on column t_customer.headPic is ‘头像’;
comment on column t_customer.phone is ‘电话’;
comment on column t_customer.age is ‘年龄’;
comment on column t_customer.sex is ‘性别’;
–用户表加注释
comment on table t_customer is ‘用户’;
SQLCopy
公告表创建语句如下:

create table t_gonggao(
id integer,
title varchar(100),
pic varchar(100),
content varchar(100),
showDate datetime
);
–公告字段加注释
comment on column t_gonggao.id is ‘主键’;
comment on column t_gonggao.title is ‘标题’;
comment on column t_gonggao.pic is ‘图片’;
comment on column t_gonggao.content is ‘内容’;
comment on column t_gonggao.showDate is ‘日期’;
–公告表加注释
comment on table t_gonggao is ‘公告’;
SQLCopy
黑名单表创建语句如下:

create table t_hmd(
id integer,
customerId int,
back varchar(100)
);
–黑名单字段加注释
comment on column t_hmd.id is ‘主键’;
comment on column t_hmd.customerId is ‘用户’;
comment on column t_hmd.back is ‘说明原因’;
–黑名单表加注释
comment on table t_hmd is ‘黑名单’;
SQLCopy
留言板表创建语句如下:

create table t_lyb(
id integer,
customerId int,
content varchar(100),
insertDate datetime,
status varchar(100),
back varchar(100)
);
–留言板字段加注释
comment on column t_lyb.id is ‘主键’;
comment on column t_lyb.customerId is ‘用户’;
comment on column t_lyb.content is ‘内容’;
comment on column t_lyb.insertDate is ‘留言日期’;
comment on column t_lyb.status is ‘状态’;
comment on column t_lyb.back is ‘回复’;
–留言板表加注释
comment on table t_lyb is ‘留言板’;
SQLCopy
座位预约表创建语句如下:

create table t_yy(
id integer,
customerId int,
zuoweiId int,
yyDate datetime,
backDate datetime,
sj int,
status varchar(100)
);
–座位预约字段加注释
comment on column t_yy.id is ‘主键’;
comment on column t_yy.customerId is ‘用户’;
comment on column t_yy.zuoweiId is ‘座位’;
comment on column t_yy.yyDate is ‘预约日期’;
comment on column t_yy.backDate is ‘归还日期’;
comment on column t_yy.sj is ‘时长’;
comment on column t_yy.status is ‘状态’;
–座位预约表加注释
comment on table t_yy is ‘座位预约’;
SQLCopy
座位表创建语句如下:

create table t_zuowei(
id integer,
zuoweiName varchar(100),
wz varchar(100),
status varchar(100)
);
–座位字段加注释
comment on column t_zuowei.id is ‘主键’;
comment on column t_zuowei.zuoweiName is ‘座位编号’;
comment on column t_zuowei.wz is ‘位置’;
comment on column t_zuowei.status is ‘状态’;
–座位表加注释
comment on table t_zuowei is ‘座位’;
SQLCopy
oracle特有,对应序列如下:

create sequence s_t_bzzx;
create sequence s_t_customer;
create sequence s_t_gonggao;
create sequence s_t_hmd;
create sequence s_t_lyb;
create sequence s_t_yy;
create sequence s_t_zuowei;
SQLCopy
高校自习室座位管理系统sqlserver数据库版本源码:
超级管理员表创建语句如下:

–超级管理员
create table t_admin(
id int identity(1,1) primary key not null,–主键
username varchar(100),–超级管理员账号
password varchar(100)–超级管理员密码
);
insert into t_admin(username,password) values(‘admin’,‘123456’);
SQLCopy
帮助中心表创建语句如下:

–帮助中心表注释
create table t_bzzx(
id int identity(1,1) primary key not null,–主键
title varchar(100),–问题
content varchar(100),–答案
showDate datetime–日期
);
SQLCopy
用户表创建语句如下:

–用户表注释
create table t_customer(
id int identity(1,1) primary key not null,–主键
username varchar(100),–账号
password varchar(100),–密码
customerName varchar(100),–姓名
headPic varchar(100),–头像
phone varchar(100),–电话
age varchar(100),–年龄
sex varchar(100)–性别
);
SQLCopy
公告表创建语句如下:

–公告表注释
create table t_gonggao(
id int identity(1,1) primary key not null,–主键
title varchar(100),–标题
pic varchar(100),–图片
content varchar(100),–内容
showDate datetime–日期
);
SQLCopy
黑名单表创建语句如下:

–黑名单表注释
create table t_hmd(
id int identity(1,1) primary key not null,–主键
customerId int,–用户
back varchar(100)–说明原因
);
SQLCopy
留言板表创建语句如下:

–留言板表注释
create table t_lyb(
id int identity(1,1) primary key not null,–主键
customerId int,–用户
content varchar(100),–内容
insertDate datetime,–留言日期
status varchar(100),–状态
back varchar(100)–回复
);
SQLCopy
座位预约表创建语句如下:

–座位预约表注释
create table t_yy(
id int identity(1,1) primary key not null,–主键
customerId int,–用户
zuoweiId int,–座位
yyDate datetime,–预约日期
backDate datetime,–归还日期
sj int,–时长
status varchar(100)–状态
);
SQLCopy
座位表创建语句如下:

–座位表注释
create table t_zuowei(
id int identity(1,1) primary key not null,–主键
zuoweiName varchar(100),–座位编号
wz varchar(100),–位置
status varchar(100)–状态
);
SQLCopy
高校自习室座位管理系统登录后主页
高校自习室座位管理系统spring+springMVC+hibernate框架对象(javaBean,pojo)设计:
帮助中心javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//帮助中心
@Table(name = “t_bzzx”)
public class Bzzx {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//问题
private String title;
//答案
private String content;
//日期
private Date showDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
JavaCopy
用户javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//用户
@Table(name = “t_customer”)
public class Customer {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//账号
private String username;
//密码
private String password;
//姓名
private String customerName;
//头像
private String headPic;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {this.password = password;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
}
JavaCopy
公告javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//公告
@Table(name = “t_gonggao”)
public class Gonggao {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//图片
private String pic;
//内容
private String content;
//日期
private Date showDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
JavaCopy
黑名单javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//黑名单
@Table(name = “t_hmd”)
public class Hmd {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//说明原因
private String back;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
}
JavaCopy
留言板javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//留言板
@Table(name = “t_lyb”)
public class Lyb {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//内容
private String content;
//留言日期
private Date insertDate;
//状态
private String status;
//回复
private String back;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
}
JavaCopy
座位预约javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//座位预约
@Table(name = “t_yy”)
public class Yy {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//座位
private Integer zuoweiId;
//预约日期
private Date yyDate;
//归还日期
private Date backDate;
//时长
private Integer sj;
//状态
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getZuoweiId() {return zuoweiId;}
public void setZuoweiId(Integer zuoweiId) {this.zuoweiId = zuoweiId;}
public Date getYyDate() {return yyDate;}
public void setYyDate(Date yyDate) {this.yyDate = yyDate;}
public Date getBackDate() {return backDate;}
public void setBackDate(Date backDate) {this.backDate = backDate;}
public Integer getSj() {return sj;}
public void setSj(Integer sj) {this.sj = sj;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
JavaCopy
座位javaBean创建语句如下:

package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//座位
@Table(name = “t_zuowei”)
public class Zuowei {
//主键
@Id
@Column(name = “id”)
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//座位编号
private String zuoweiName;
//位置
private String wz;
//状态
private String status;
public String getZuoweiName() {return zuoweiName;}
public void setZuoweiName(String zuoweiName) {this.zuoweiName = zuoweiName;}
public String getWz() {return wz;}
public void setWz(String wz) {this.wz = wz;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
JavaCopy
高校自习室座位管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:
帮助中心javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//帮助中心
public class Bzzx extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//问题
private String title;
//答案
private String content;
//日期
private Date showDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
JavaCopy
用户javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//用户
public class Customer extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//账号
private String username;
//密码
private String password;
//姓名
private String customerName;
//头像
private String headPic;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {this.password = password;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
}
JavaCopy
公告javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//公告
public class Gonggao extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//图片
private String pic;
//内容
private String content;
//日期
private Date showDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
}
JavaCopy
黑名单javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//黑名单
public class Hmd extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//说明原因
private String back;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
}
JavaCopy
留言板javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//留言板
public class Lyb extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//内容
private String content;
//留言日期
private Date insertDate;
//状态
private String status;
//回复
private String back;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
}
JavaCopy
座位预约javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//座位预约
public class Yy extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//座位
private Integer zuoweiId;
//预约日期
private Date yyDate;
//归还日期
private Date backDate;
//时长
private Integer sj;
//状态
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getZuoweiId() {return zuoweiId;}
public void setZuoweiId(Integer zuoweiId) {this.zuoweiId = zuoweiId;}
public Date getYyDate() {return yyDate;}
public void setYyDate(Date yyDate) {this.yyDate = yyDate;}
public Date getBackDate() {return backDate;}
public void setBackDate(Date backDate) {this.backDate = backDate;}
public Integer getSj() {return sj;}
public void setSj(Integer sj) {this.sj = sj;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
JavaCopy
座位javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;

//座位
public class Zuowei extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//座位编号
private String zuoweiName;
//位置
private String wz;
//状态
private String status;
public String getZuoweiName() {return zuoweiName;}
public void setZuoweiName(String zuoweiName) {this.zuoweiName = zuoweiName;}
public String getWz() {return wz;}
public void setWz(String wz) {this.wz = wz;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}

发布了140 篇原创文章 · 获赞 23 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/biyesheji_/article/details/104574124