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_bj(
id int primary key auto_increment comment ‘主键’,
bjName varchar(100) comment ‘班级’,
xyId int comment ‘学院’
) comment ‘班级’;
SQLCopy
班级表创建语句如下:

create table t_kc(
id int primary key auto_increment comment ‘主键’,
kcName varchar(100) comment ‘课程名称’,
bjId int comment ‘班级’,
teacherId int comment ‘老师’
) comment ‘班级’;
SQLCopy
留言表创建语句如下:

create table t_ly(
id int primary key auto_increment comment ‘主键’,
studentId int comment ‘学生’,
teacherId int comment ‘老师’,
content varchar(100) comment ‘留言’,
back varchar(100) comment ‘回复’,
insertDate datetime comment ‘发送日期’,
status varchar(100) comment ‘状态’
) comment ‘留言’;
SQLCopy
评价指标表创建语句如下:

create table t_pjzb(
id int primary key auto_increment comment ‘主键’,
v1 varchar(100) comment ‘指标名称’,
zb int comment ‘指标占比’
) comment ‘评价指标’;
SQLCopy
老师评价指标表创建语句如下:

create table t_pjzbls(
id int primary key auto_increment comment ‘主键’,
fromId int comment ‘老师’,
teacherId int comment ‘被评老师’,
batchId varchar(100) comment ‘批次’,
v1 varchar(100) comment ‘指标名称’,
zb int comment ‘指标占比’,
fs int comment ‘评分’,
jg int comment ‘’
) comment ‘老师评价指标’;
SQLCopy
学生评价指标表创建语句如下:

create table t_pjzbxs(
id int primary key auto_increment comment ‘主键’,
studentId int comment ‘学生’,
teacherId int comment ‘被评老师’,
batchId varchar(100) comment ‘批次’,
v1 varchar(100) comment ‘指标名称’,
zb int comment ‘指标占比’,
fs int comment ‘评分’,
jg int comment ‘’
) comment ‘学生评价指标’;
SQLCopy
学生表创建语句如下:

create table t_student(
id int primary key auto_increment comment ‘主键’,
username varchar(100) comment ‘账号’,
password varchar(100) comment ‘密码’,
studentName varchar(100) comment ‘姓名’,
bjId int comment ‘班级’,
phone varchar(100) comment ‘电话’,
age varchar(100) comment ‘年龄’,
sex varchar(100) comment ‘性别’,
xh varchar(100) comment ‘学号’
) comment ‘学生’;
SQLCopy
老师表创建语句如下:

create table t_teacher(
id int primary key auto_increment comment ‘主键’,
username varchar(100) comment ‘账号’,
password varchar(100) comment ‘密码’,
teacherName varchar(100) comment ‘姓名’,
xyId int comment ‘学院’,
phone varchar(100) comment ‘电话’,
age varchar(100) comment ‘年龄’,
sex varchar(100) comment ‘性别’,
xh varchar(100) comment ‘工号’
) comment ‘老师’;
SQLCopy
学院表创建语句如下:

create table t_xy(
id int primary key auto_increment comment ‘主键’,
xyName 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_bj(
id integer,
bjName varchar(100),
xyId int
);
–班级字段加注释
comment on column t_bj.id is ‘主键’;
comment on column t_bj.bjName is ‘班级’;
comment on column t_bj.xyId is ‘学院’;
–班级表加注释
comment on table t_bj is ‘班级’;
SQLCopy
班级表创建语句如下:

create table t_kc(
id integer,
kcName varchar(100),
bjId int,
teacherId int
);
–班级字段加注释
comment on column t_kc.id is ‘主键’;
comment on column t_kc.kcName is ‘课程名称’;
comment on column t_kc.bjId is ‘班级’;
comment on column t_kc.teacherId is ‘老师’;
–班级表加注释
comment on table t_kc is ‘班级’;
SQLCopy
留言表创建语句如下:

create table t_ly(
id integer,
studentId int,
teacherId int,
content varchar(100),
back varchar(100),
insertDate datetime,
status varchar(100)
);
–留言字段加注释
comment on column t_ly.id is ‘主键’;
comment on column t_ly.studentId is ‘学生’;
comment on column t_ly.teacherId is ‘老师’;
comment on column t_ly.content is ‘留言’;
comment on column t_ly.back is ‘回复’;
comment on column t_ly.insertDate is ‘发送日期’;
comment on column t_ly.status is ‘状态’;
–留言表加注释
comment on table t_ly is ‘留言’;
SQLCopy
评价指标表创建语句如下:

create table t_pjzb(
id integer,
v1 varchar(100),
zb int
);
–评价指标字段加注释
comment on column t_pjzb.id is ‘主键’;
comment on column t_pjzb.v1 is ‘指标名称’;
comment on column t_pjzb.zb is ‘指标占比’;
–评价指标表加注释
comment on table t_pjzb is ‘评价指标’;
SQLCopy
老师评价指标表创建语句如下:

create table t_pjzbls(
id integer,
fromId int,
teacherId int,
batchId varchar(100),
v1 varchar(100),
zb int,
fs int,
jg int
);
–老师评价指标字段加注释
comment on column t_pjzbls.id is ‘主键’;
comment on column t_pjzbls.fromId is ‘老师’;
comment on column t_pjzbls.teacherId is ‘被评老师’;
comment on column t_pjzbls.batchId is ‘批次’;
comment on column t_pjzbls.v1 is ‘指标名称’;
comment on column t_pjzbls.zb is ‘指标占比’;
comment on column t_pjzbls.fs is ‘评分’;
comment on column t_pjzbls.jg is ‘’;
–老师评价指标表加注释
comment on table t_pjzbls is ‘老师评价指标’;
SQLCopy
学生评价指标表创建语句如下:

create table t_pjzbxs(
id integer,
studentId int,
teacherId int,
batchId varchar(100),
v1 varchar(100),
zb int,
fs int,
jg int
);
–学生评价指标字段加注释
comment on column t_pjzbxs.id is ‘主键’;
comment on column t_pjzbxs.studentId is ‘学生’;
comment on column t_pjzbxs.teacherId is ‘被评老师’;
comment on column t_pjzbxs.batchId is ‘批次’;
comment on column t_pjzbxs.v1 is ‘指标名称’;
comment on column t_pjzbxs.zb is ‘指标占比’;
comment on column t_pjzbxs.fs is ‘评分’;
comment on column t_pjzbxs.jg is ‘’;
–学生评价指标表加注释
comment on table t_pjzbxs is ‘学生评价指标’;
SQLCopy
学生表创建语句如下:

create table t_student(
id integer,
username varchar(100),
password varchar(100),
studentName varchar(100),
bjId int,
phone varchar(100),
age varchar(100),
sex varchar(100),
xh varchar(100)
);
–学生字段加注释
comment on column t_student.id is ‘主键’;
comment on column t_student.username is ‘账号’;
comment on column t_student.password is ‘密码’;
comment on column t_student.studentName is ‘姓名’;
comment on column t_student.bjId is ‘班级’;
comment on column t_student.phone is ‘电话’;
comment on column t_student.age is ‘年龄’;
comment on column t_student.sex is ‘性别’;
comment on column t_student.xh is ‘学号’;
–学生表加注释
comment on table t_student is ‘学生’;
SQLCopy
老师表创建语句如下:

create table t_teacher(
id integer,
username varchar(100),
password varchar(100),
teacherName varchar(100),
xyId int,
phone varchar(100),
age varchar(100),
sex varchar(100),
xh varchar(100)
);
–老师字段加注释
comment on column t_teacher.id is ‘主键’;
comment on column t_teacher.username is ‘账号’;
comment on column t_teacher.password is ‘密码’;
comment on column t_teacher.teacherName is ‘姓名’;
comment on column t_teacher.xyId is ‘学院’;
comment on column t_teacher.phone is ‘电话’;
comment on column t_teacher.age is ‘年龄’;
comment on column t_teacher.sex is ‘性别’;
comment on column t_teacher.xh is ‘工号’;
–老师表加注释
comment on table t_teacher is ‘老师’;
SQLCopy
学院表创建语句如下:

create table t_xy(
id integer,
xyName varchar(100)
);
–学院字段加注释
comment on column t_xy.id is ‘主键’;
comment on column t_xy.xyName is ‘学院’;
–学院表加注释
comment on table t_xy is ‘学院’;
SQLCopy
oracle特有,对应序列如下:

create sequence s_t_bj;
create sequence s_t_kc;
create sequence s_t_ly;
create sequence s_t_pjzb;
create sequence s_t_pjzbls;
create sequence s_t_pjzbxs;
create sequence s_t_student;
create sequence s_t_teacher;
create sequence s_t_xy;
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_bj(
id int identity(1,1) primary key not null,–主键
bjName varchar(100),–班级
xyId int–学院
);
SQLCopy
班级表创建语句如下:

–班级表注释
create table t_kc(
id int identity(1,1) primary key not null,–主键
kcName varchar(100),–课程名称
bjId int,–班级
teacherId int–老师
);
SQLCopy
留言表创建语句如下:

–留言表注释
create table t_ly(
id int identity(1,1) primary key not null,–主键
studentId int,–学生
teacherId int,–老师
content varchar(100),–留言
back varchar(100),–回复
insertDate datetime,–发送日期
status varchar(100)–状态
);
SQLCopy
评价指标表创建语句如下:

–评价指标表注释
create table t_pjzb(
id int identity(1,1) primary key not null,–主键
v1 varchar(100),–指标名称
zb int–指标占比
);
SQLCopy
老师评价指标表创建语句如下:

–老师评价指标表注释
create table t_pjzbls(
id int identity(1,1) primary key not null,–主键
fromId int,–老师
teacherId int,–被评老师
batchId varchar(100),–批次
v1 varchar(100),–指标名称
zb int,–指标占比
fs int,–评分
jg int–
);
SQLCopy
学生评价指标表创建语句如下:

–学生评价指标表注释
create table t_pjzbxs(
id int identity(1,1) primary key not null,–主键
studentId int,–学生
teacherId int,–被评老师
batchId varchar(100),–批次
v1 varchar(100),–指标名称
zb int,–指标占比
fs int,–评分
jg int–
);
SQLCopy
学生表创建语句如下:

–学生表注释
create table t_student(
id int identity(1,1) primary key not null,–主键
username varchar(100),–账号
password varchar(100),–密码
studentName varchar(100),–姓名
bjId int,–班级
phone varchar(100),–电话
age varchar(100),–年龄
sex varchar(100),–性别
xh varchar(100)–学号
);
SQLCopy
老师表创建语句如下:

–老师表注释
create table t_teacher(
id int identity(1,1) primary key not null,–主键
username varchar(100),–账号
password varchar(100),–密码
teacherName varchar(100),–姓名
xyId int,–学院
phone varchar(100),–电话
age varchar(100),–年龄
sex varchar(100),–性别
xh varchar(100)–工号
);
SQLCopy
学院表创建语句如下:

–学院表注释
create table t_xy(
id int identity(1,1) primary key not null,–主键
xyName 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_bj”)
public class Bj {
//主键
@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 bjName;
//学院
private Integer xyId;
public String getBjName() {return bjName;}
public void setBjName(String bjName) {this.bjName = bjName;}
public Integer getXyId() {return xyId;}
public void setXyId(Integer xyId) {this.xyId = xyId;}
}
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_kc”)
public class Kc {
//主键
@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 kcName;
//班级
private Integer bjId;
//老师
private Integer teacherId;
public String getKcName() {return kcName;}
public void setKcName(String kcName) {this.kcName = kcName;}
public Integer getBjId() {return bjId;}
public void setBjId(Integer bjId) {this.bjId = bjId;}
public Integer getTeacherId() {return teacherId;}
public void setTeacherId(Integer teacherId) {this.teacherId = teacherId;}
}
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_ly”)
public class Ly {
//主键
@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 studentId;
//老师
private Integer teacherId;
//留言
private String content;
//回复
private String back;
//发送日期
private Date insertDate;
//状态
private String status;
public Integer getStudentId() {return studentId;}
public void setStudentId(Integer studentId) {this.studentId = studentId;}
public Integer getTeacherId() {return teacherId;}
public void setTeacherId(Integer teacherId) {this.teacherId = teacherId;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
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;}
}
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_pjzb”)
public class Pjzb {
//主键
@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 v1;
//指标占比
private Integer zb;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public Integer getZb() {return zb;}
public void setZb(Integer zb) {this.zb = zb;}
}
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_pjzbls”)
public class Pjzbls {
//主键
@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 fromId;
//被评老师
private Integer teacherId;
//批次
private String batchId;
//指标名称
private String v1;
//指标占比
private Integer zb;
//评分
private Integer fs;
//
private Integer jg;
public Integer getFromId() {return fromId;}
public void setFromId(Integer fromId) {this.fromId = fromId;}
public Integer getTeacherId() {return teacherId;}
public void setTeacherId(Integer teacherId) {this.teacherId = teacherId;}
public String getBatchId() {return batchId;}
public void setBatchId(String batchId) {this.batchId = batchId;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public Integer getZb() {return zb;}
public void setZb(Integer zb) {this.zb = zb;}
public Integer getFs() {return fs;}
public void setFs(Integer fs) {this.fs = fs;}
public Integer getJg() {return jg;}
public void setJg(Integer jg) {this.jg = jg;}
}
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_pjzbxs”)
public class Pjzbxs {
//主键
@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 studentId;
//被评老师
private Integer teacherId;
//批次
private String batchId;
//指标名称
private String v1;
//指标占比
private Integer zb;
//评分
private Integer fs;
//
private Integer jg;
public Integer getStudentId() {return studentId;}
public void setStudentId(Integer studentId) {this.studentId = studentId;}
public Integer getTeacherId() {return teacherId;}
public void setTeacherId(Integer teacherId) {this.teacherId = teacherId;}
public String getBatchId() {return batchId;}
public void setBatchId(String batchId) {this.batchId = batchId;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public Integer getZb() {return zb;}
public void setZb(Integer zb) {this.zb = zb;}
public Integer getFs() {return fs;}
public void setFs(Integer fs) {this.fs = fs;}
public Integer getJg() {return jg;}
public void setJg(Integer jg) {this.jg = jg;}
}
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_student”)
public class Student {
//主键
@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 studentName;
//班级
private Integer bjId;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//学号
private String xh;
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 getStudentName() {return studentName;}
public void setStudentName(String studentName) {this.studentName = studentName;}
public Integer getBjId() {return bjId;}
public void setBjId(Integer bjId) {this.bjId = bjId;}
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 getXh() {return xh;}
public void setXh(String xh) {this.xh = xh;}
}
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_teacher”)
public class Teacher {
//主键
@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 teacherName;
//学院
private Integer xyId;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//工号
private String xh;
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 getTeacherName() {return teacherName;}
public void setTeacherName(String teacherName) {this.teacherName = teacherName;}
public Integer getXyId() {return xyId;}
public void setXyId(Integer xyId) {this.xyId = xyId;}
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 getXh() {return xh;}
public void setXh(String xh) {this.xh = xh;}
}
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_xy”)
public class Xy {
//主键
@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 xyName;
public String getXyName() {return xyName;}
public void setXyName(String xyName) {this.xyName = xyName;}
}
JavaCopy
教学质量评价系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:
班级javaBean创建语句如下:

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

//班级
public class Bj extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//班级
private String bjName;
//学院
private Integer xyId;
public String getBjName() {return bjName;}
public void setBjName(String bjName) {this.bjName = bjName;}
public Integer getXyId() {return xyId;}
public void setXyId(Integer xyId) {this.xyId = xyId;}
}
JavaCopy
班级javaBean创建语句如下:

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

//班级
public class Kc extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//课程名称
private String kcName;
//班级
private Integer bjId;
//老师
private Integer teacherId;
public String getKcName() {return kcName;}
public void setKcName(String kcName) {this.kcName = kcName;}
public Integer getBjId() {return bjId;}
public void setBjId(Integer bjId) {this.bjId = bjId;}
public Integer getTeacherId() {return teacherId;}
public void setTeacherId(Integer teacherId) {this.teacherId = teacherId;}
}
JavaCopy
留言javaBean创建语句如下:

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

//留言
public class Ly extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//学生
private Integer studentId;
//老师
private Integer teacherId;
//留言
private String content;
//回复
private String back;
//发送日期
private Date insertDate;
//状态
private String status;
public Integer getStudentId() {return studentId;}
public void setStudentId(Integer studentId) {this.studentId = studentId;}
public Integer getTeacherId() {return teacherId;}
public void setTeacherId(Integer teacherId) {this.teacherId = teacherId;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
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;}
}
JavaCopy
评价指标javaBean创建语句如下:

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

//评价指标
public class Pjzb extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//指标名称
private String v1;
//指标占比
private Integer zb;
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public Integer getZb() {return zb;}
public void setZb(Integer zb) {this.zb = zb;}
}
JavaCopy
老师评价指标javaBean创建语句如下:

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

//老师评价指标
public class Pjzbls extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//老师
private Integer fromId;
//被评老师
private Integer teacherId;
//批次
private String batchId;
//指标名称
private String v1;
//指标占比
private Integer zb;
//评分
private Integer fs;
//
private Integer jg;
public Integer getFromId() {return fromId;}
public void setFromId(Integer fromId) {this.fromId = fromId;}
public Integer getTeacherId() {return teacherId;}
public void setTeacherId(Integer teacherId) {this.teacherId = teacherId;}
public String getBatchId() {return batchId;}
public void setBatchId(String batchId) {this.batchId = batchId;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public Integer getZb() {return zb;}
public void setZb(Integer zb) {this.zb = zb;}
public Integer getFs() {return fs;}
public void setFs(Integer fs) {this.fs = fs;}
public Integer getJg() {return jg;}
public void setJg(Integer jg) {this.jg = jg;}
}
JavaCopy
学生评价指标javaBean创建语句如下:

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

//学生评价指标
public class Pjzbxs extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//学生
private Integer studentId;
//被评老师
private Integer teacherId;
//批次
private String batchId;
//指标名称
private String v1;
//指标占比
private Integer zb;
//评分
private Integer fs;
//
private Integer jg;
public Integer getStudentId() {return studentId;}
public void setStudentId(Integer studentId) {this.studentId = studentId;}
public Integer getTeacherId() {return teacherId;}
public void setTeacherId(Integer teacherId) {this.teacherId = teacherId;}
public String getBatchId() {return batchId;}
public void setBatchId(String batchId) {this.batchId = batchId;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public Integer getZb() {return zb;}
public void setZb(Integer zb) {this.zb = zb;}
public Integer getFs() {return fs;}
public void setFs(Integer fs) {this.fs = fs;}
public Integer getJg() {return jg;}
public void setJg(Integer jg) {this.jg = jg;}
}
JavaCopy
学生javaBean创建语句如下:

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

//学生
public class Student 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 studentName;
//班级
private Integer bjId;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//学号
private String xh;
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 getStudentName() {return studentName;}
public void setStudentName(String studentName) {this.studentName = studentName;}
public Integer getBjId() {return bjId;}
public void setBjId(Integer bjId) {this.bjId = bjId;}
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 getXh() {return xh;}
public void setXh(String xh) {this.xh = xh;}
}
JavaCopy
老师javaBean创建语句如下:

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

//老师
public class Teacher 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 teacherName;
//学院
private Integer xyId;
//电话
private String phone;
//年龄
private String age;
//性别
private String sex;
//工号
private String xh;
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 getTeacherName() {return teacherName;}
public void setTeacherName(String teacherName) {this.teacherName = teacherName;}
public Integer getXyId() {return xyId;}
public void setXyId(Integer xyId) {this.xyId = xyId;}
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 getXh() {return xh;}
public void setXh(String xh) {this.xh = xh;}
}
JavaCopy
学院javaBean创建语句如下:

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

//学院
public class Xy extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//学院
private String xyName;
public String getXyName() {return xyName;}
public void setXyName(String xyName) {this.xyName = xyName;}
}

发布了58 篇原创文章 · 获赞 19 · 访问量 8941

猜你喜欢

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