您的位置:首页 > 编程语言 > Java开发

java毕业设计_基于SSH框架开发的学生评奖评优管理系统

2020-03-29 13:09 585 查看

基于SSH框架开发的学生评奖评优管理系统设计与实现mysql数据库创建语句
基于SSH框架开发的学生评奖评优管理系统设计与实现oracle数据库创建语句
基于SSH框架开发的学生评奖评优管理系统设计与实现sqlserver数据库创建语句
基于SSH框架开发的学生评奖评优管理系统设计与实现spring+springMVC+hibernate框架对象(javaBean,pojo)设计
基于SSH框架开发的学生评奖评优管理系统设计与实现spring+springMVC+mybatis框架对象(javaBean,pojo)设计
基于SSH框架开发的学生评奖评优管理系统设计与实现登录注册界面
基于SSH框架开发的学生评奖评优管理系统设计与实现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_cj(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘学生’,
cjName varchar(100) comment ‘课程’,
fs int comment ‘分数’,
rq 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 ‘姓名’,
phone varchar(100) comment ‘电话’,
age varchar(100) comment ‘年龄’,
sex varchar(100) comment ‘性别’,
pic varchar(100) comment ‘头像’
) comment ‘学生’;
SQLCopy
公告表创建语句如下:

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

create table t_hd(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘学生’,
hdName varchar(100) comment ‘活动名称’,
fs int comment ‘获奖分数’,
rq datetime comment ‘评奖日期’,
content varchar(100) comment ‘说明’
) comment ‘活动’;
SQLCopy
荣誉表创建语句如下:

create table t_ry(
id int primary key auto_increment comment ‘主键’,
customerId int comment ‘学生’,
ryName varchar(100) comment ‘荣誉名称’,
pic varchar(100) comment ‘图片’,
showDat datetime comment ‘获奖日期’
) comment ‘荣誉’;
SQLCopy
基于SSH框架开发的学生评奖评优管理系统设计与实现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_cj(
id integer,
customerId int,
cjName varchar(100),
fs int,
rq datetime
);
–成绩字段加注释
comment on column t_cj.id is ‘主键’;
comment on column t_cj.customerId is ‘学生’;
comment on column t_cj.cjName is ‘课程’;
comment on column t_cj.fs is ‘分数’;
comment on column t_cj.rq is ‘成绩日期’;
–成绩表加注释
comment on table t_cj is ‘成绩’;
SQLCopy
学生表创建语句如下:

create table t_customer(
id integer,
username varchar(100),
password varchar(100),
customerName varchar(100),
phone varchar(100),
age varchar(100),
sex varchar(100),
pic 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.phone is ‘电话’;
comment on column t_customer.age is ‘年龄’;
comment on column t_customer.sex is ‘性别’;
comment on column t_customer.pic is ‘头像’;
–学生表加注释
comment on table t_customer is ‘学生’;
SQLCopy
公告表创建语句如下:

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

create table t_hd(
id integer,
customerId int,
hdName varchar(100),
fs int,
rq datetime,
content varchar(100)
);
–活动字段加注释
comment on column t_hd.id is ‘主键’;
comment on column t_hd.customerId is ‘学生’;
comment on column t_hd.hdName is ‘活动名称’;
comment on column t_hd.fs is ‘获奖分数’;
comment on column t_hd.rq is ‘评奖日期’;
comment on column t_hd.content is ‘说明’;
–活动表加注释
comment on table t_hd is ‘活动’;
SQLCopy
荣誉表创建语句如下:

create table t_ry(
id integer,
customerId int,
ryName varchar(100),
pic varchar(100),
showDat datetime
);
–荣誉字段加注释
comment on column t_ry.id is ‘主键’;
comment on column t_ry.customerId is ‘学生’;
comment on column t_ry.ryName is ‘荣誉名称’;
comment on column t_ry.pic is ‘图片’;
comment on column t_ry.showDat is ‘获奖日期’;
–荣誉表加注释
comment on table t_ry is ‘荣誉’;
SQLCopy
oracle特有,对应序列如下:

create sequence s_t_cj;
create sequence s_t_customer;
create sequence s_t_gg;
create sequence s_t_hd;
create sequence s_t_ry;
SQLCopy
基于SSH框架开发的学生评奖评优管理系统设计与实现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_cj(
id int identity(1,1) primary key not null,–主键
customerId int,–学生
cjName varchar(100),–课程
fs int,–分数
rq datetime–成绩日期
);
SQLCopy
学生表创建语句如下:

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

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

–活动表注释
create table t_hd(
id int identity(1,1) primary key not null,–主键
customerId int,–学生
hdName varchar(100),–活动名称
fs int,–获奖分数
rq datetime,–评奖日期
content varchar(100)–说明
);
SQLCopy
荣誉表创建语句如下:

–荣誉表注释
create table t_ry(
id int identity(1,1) primary key not null,–主键
customerId int,–学生
ryName varchar(100),–荣誉名称
pic varchar(100),–图片
showDat datetime–获奖日期
);
SQLCopy
基于SSH框架开发的学生评奖评优管理系统设计与实现登录后主页
基于SSH框架开发的学生评奖评优管理系统设计与实现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_cj”)
public class Cj {
//主键
@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 cjName;
//分数
private Integer fs;
//成绩日期
private Date rq;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getCjName() {return cjName;}
public void setCjName(String cjName) {this.cjName = cjName;}
public Integer getFs() {return fs;}
public void setFs(Integer fs) {this.fs = fs;}
public Date getRq() {return rq;}
public void setRq(Date rq) {this.rq = rq;}
}
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 phone;
//年龄
private String age;
//性别
private String sex;
//头像
private String pic;
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 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;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
}
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_gg”)
public class Gg {
//主键
@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 cotnent;
//日期
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 getCotnent() {return cotnent;}
public void setCotnent(String cotnent) {this.cotnent = cotnent;}
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_hd”)
public class Hd {
//主键
@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 hdName;
//获奖分数
private Integer fs;
//评奖日期
private Date rq;
//说明
private String content;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getHdName() {return hdName;}
public void setHdName(String hdName) {this.hdName = hdName;}
public Integer getFs() {return fs;}
public void setFs(Integer fs) {this.fs = fs;}
public Date getRq() {return rq;}
public void setRq(Date rq) {this.rq = rq;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}
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_ry”)
public class Ry {
//主键
@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 ryName;
//图片
private String pic;
//获奖日期
private Date showDat;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getRyName() {return ryName;}
public void setRyName(String ryName) {this.ryName = ryName;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public Date getShowDat() {return showDat;}
public void setShowDat(Date showDat) {this.showDat = showDat;}
}
JavaCopy
基于SSH框架开发的学生评奖评优管理系统设计与实现spring+springMVC+mybatis框架对象(javaBean,pojo)设计:
成绩javaBean创建语句如下:

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

//成绩
public class Cj extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//学生
private Integer customerId;
//课程
private String cjName;
//分数
private Integer fs;
//成绩日期
private Date rq;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getCjName() {return cjName;}
public void setCjName(String cjName) {this.cjName = cjName;}
public Integer getFs() {return fs;}
public void setFs(Integer fs) {this.fs = fs;}
public Date getRq() {return rq;}
public void setRq(Date rq) {this.rq = rq;}
}
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 phone;
//年龄
private String age;
//性别
private String sex;
//头像
private String pic;
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 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;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
}
JavaCopy
公告javaBean创建语句如下:

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

//公告
public class Gg 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 cotnent;
//日期
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 getCotnent() {return cotnent;}
public void setCotnent(String cotnent) {this.cotnent = cotnent;}
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 Hd extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//学生
private Integer customerId;
//活动名称
private String hdName;
//获奖分数
private Integer fs;
//评奖日期
private Date rq;
//说明
private String content;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getHdName() {return hdName;}
public void setHdName(String hdName) {this.hdName = hdName;}
public Integer getFs() {return fs;}
public void setFs(Integer fs) {this.fs = fs;}
public Date getRq() {return rq;}
public void setRq(Date rq) {this.rq = rq;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}
JavaCopy
荣誉javaBean创建语句如下:

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

//荣誉
public class Ry extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//学生
private Integer customerId;
//荣誉名称
private String ryName;
//图片
private String pic;
//获奖日期
private Date showDat;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getRyName() {return ryName;}
public void setRyName(String ryName) {this.ryName = ryName;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public Date getShowDat() {return showDat;}
public void setShowDat(Date showDat) {this.showDat = showDat;}
}

  • 点赞
  • 收藏
  • 分享
  • 文章举报
bishe_teacher 发布了17 篇原创文章 · 获赞 0 · 访问量 453 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: