您的位置:首页 > 运维架构 > 网站架构

基于SOA架构的医院医疗质控平台的构建,毕业设计java项目

2018-12-20 16:54 447 查看
**基于SOA架构的医院医疗质控平台的构建,毕业设计java项目**

基于SOA架构的医院医疗质控平台的构建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');

工作计划表创建语句如下:

create table t_gzjh(
id int primary key auto_increment comment '主键',
ygId int comment '员工',
title varchar(100) comment '标题',
content varchar(100) comment '内容',
insertDate datetime comment '日期',
code int comment '打分'
) comment '工作计划';

奖励表创建语句如下:

create table t_jl(
id int primary key auto_increment comment '主键',
ygId int comment '员工',
title varchar(100) comment '奖励简单说明',
content varchar(100) comment '具体内容',
showDate varchar(100) comment '得奖日期'
) comment '奖励';

投诉表创建语句如下:

create table t_ts(
id int primary key auto_increment comment '主键',
ygId int comment '员工',
title varchar(100) comment '简略',
content varchar(100) comment '内容',
showDate varchar(100) comment '日期'
) comment '投诉';

通知表创建语句如下:

create table t_tz(
id int primary key auto_increment comment '主键',
title varchar(100) comment '标题',
content varchar(100) comment '内容',
showDate varchar(100) comment '日期'
) comment '通知';

新闻表创建语句如下:

create table t_xw(
id int primary key auto_increment comment '主键',
title varchar(100) comment '标题',
content varchar(100) comment '内容',
pic varchar(100) comment '图片',
showDate varchar(100) comment '日期'
) comment '新闻';

普通员工表创建语句如下:

create table t_yg(
id int primary key auto_increment comment '主键',
username varchar(100) comment '账号',
password varchar(100) comment '密码',
ygName varchar(100) comment '姓名',
age varchar(100) comment '年龄',
sex varchar(100) comment '性别',
phone varchar(100) comment '电话'
) comment '普通员工';

基于SOA架构的医院医疗质控平台的构建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 '超级管理员';

工作计划表创建语句如下:

create table t_gzjh(
id integer,
ygId int,
title varchar(100),
content varchar(100),
insertDate datetime,
code int
);
--工作计划字段加注释
comment on column t_gzjh.id is '主键';
comment on column t_gzjh.ygId is '员工';
comment on column t_gzjh.title is '标题';
comment on column t_gzjh.content is '内容';
comment on column t_gzjh.insertDate is '日期';
comment on column t_gzjh.code is '打分';
--工作计划表加注释
comment on table t_gzjh is '工作计划';

奖励表创建语句如下:

create table t_jl(
id integer,
ygId int,
title varchar(100),
content varchar(100),
showDate varchar(100)
);
--奖励字段加注释
comment on column t_jl.id is '主键';
comment on column t_jl.ygId is '员工';
comment on column t_jl.title is '奖励简单说明';
comment on column t_jl.content is '具体内容';
comment on column t_jl.showDate is '得奖日期';
--奖励表加注释
comment on table t_jl is '奖励';

投诉表创建语句如下:

create table t_ts(
id integer,
ygId int,
title varchar(100),
content varchar(100),
showDate varchar(100)
);
--投诉字段加注释
comment on column t_ts.id is '主键';
comment on column t_ts.ygId is '员工';
comment on column t_ts.title is '简略';
comment on column t_ts.content is '内容';
comment on column t_ts.showDate is '日期';
--投诉表加注释
comment on table t_ts is '投诉';

通知表创建语句如下:

create table t_tz(
id integer,
title varchar(100),
content varchar(100),
showDate varchar(100)
);
--通知字段加注释
comment on column t_tz.id is '主键';
comment on column t_tz.title is '标题';
comment on column t_tz.content is '内容';
comment on column t_tz.showDate is '日期';
--通知表加注释
comment on table t_tz is '通
4000
知';

新闻表创建语句如下:

create table t_xw(
id integer,
title varchar(100),
content varchar(100),
pic varchar(100),
showDate varchar(100)
);
--新闻字段加注释
comment on column t_xw.id is '主键';
comment on column t_xw.title is '标题';
comment on column t_xw.content is '内容';
comment on column t_xw.pic is '图片';
comment on column t_xw.showDate is '日期';
--新闻表加注释
comment on table t_xw is '新闻';

普通员工表创建语句如下:

create table t_yg(
id integer,
username varchar(100),
password varchar(100),
ygName varchar(100),
age varchar(100),
sex varchar(100),
phone varchar(100)
);
--普通员工字段加注释
comment on column t_yg.id is '主键';
comment on column t_yg.username is '账号';
comment on column t_yg.password is '密码';
comment on column t_yg.ygName is '姓名';
comment on column t_yg.age is '年龄';
comment on column t_yg.sex is '性别';
comment on column t_yg.phone is '电话';
--普通员工表加注释
comment on table t_yg is '普通员工';

oracle特有,对应序列如下:

create sequence s_t_gzjh;
create sequence s_t_jl;
create sequence s_t_ts;
create sequence s_t_tz;
create sequence s_t_xw;
create sequence s_t_yg;

基于SOA架构的医院医疗质控平台的构建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');

工作计划表创建语句如下:

--工作计划表注释
create table t_gzjh(
id int identity(1,1) primary key not null,--主键
ygId int,--员工
title varchar(100),--标题
content varchar(100),--内容
insertDate datetime,--日期
code int--打分
);

奖励表创建语句如下:

--奖励表注释
create table t_jl(
id int identity(1,1) primary key not null,--主键
ygId int,--员工
title varchar(100),--奖励简单说明
content varchar(100),--具体内容
showDate varchar(100)--得奖日期
);

投诉表创建语句如下:

--投诉表注释
create table t_ts(
id int identity(1,1) primary key not null,--主键
ygId int,--员工
title varchar(100),--简略
content varchar(100),--内容
showDate varchar(100)--日期
);

通知表创建语句如下:

--通知表注释
create table t_tz(
id int identity(1,1) primary key not null,--主键
title varchar(100),--标题
content varchar(100),--内容
showDate varchar(100)--日期
);

新闻表创建语句如下:

--新闻表注释
create table t_xw(
id int identity(1,1) primary key not null,--主键
title varchar(100),--标题
content varchar(100),--内容
pic varchar(100),--图片
showDate varchar(100)--日期
);

普通员工表创建语句如下:

--普通员工表注释
create table t_yg(
id int identity(1,1) primary key not null,--主键
username varchar(100),--账号
password varchar(100),--密码
ygName varchar(100),--姓名
age varchar(100),--年龄
sex varchar(100),--性别
phone varchar(100)--电话
);

基于SOA架构的医院医疗质控平台的构建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_gzjh")
public class Gzjh {
//主键
@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 ygId;
//标题
private String title;
//内容
private String content;
//日期
private Date insertDate;
//打分
private Integer code;
public Integer getYgId() {return ygId;}
public void setYgId(Integer ygId) {this.ygId = ygId;}
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 getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
}

奖励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_jl")
public class Jl {
//主键
@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 ygId;
//奖励简单说明
private String title;
//具体内容
private String content;
//得奖日期
private String showDate;
public Integer getYgId() {return ygId;}
public void setYgId(Integer ygId) {this.ygId = ygId;}
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 String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

投诉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_ts")
public class Ts {
//主键
@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 ygId;
//简略
private String title;
//内容
private String content;
//日期
private String showDate;
public Integer getYgId() {return ygId;}
public void setYgId(Integer ygId) {this.ygId = ygId;}
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 String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

通知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_tz")
public class Tz {
//主键
@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 String 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 String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

新闻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_xw")
public class Xw {
//主键
@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 String pic;
//日期
private String 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 String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

普通员工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_yg")
public class Yg {
//主键
@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 ygName;
//年龄
private String age;
//性别
private String sex;
//电话
private String phone;
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 getYgName() {return ygName;}
public void setYgName(String ygName) {this.ygName = ygName;}
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 getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
}

基于SOA架构的医院医疗质控平台的构建spring springMVC mybatis框架对象(javaBean,pojo)设计:

工作计划javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//工作计划
public class Gzjh  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer ygId;
//标题
private String title;
//内容
private String content;
//日期
private Date insertDate;
//打分
private Integer code;
public Integer getYgId() {return ygId;}
public void setYgId(Integer ygId) {this.ygId = ygId;}
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 getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public Integer getCode() {return code;}
public void setCode(Integer code) {this.code = code;}
}

奖励javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//奖励
public class Jl  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer ygId;
//奖励简单说明
private String title;
//具体内容
private String content;
//得奖日期
private String showDate;
public Integer getYgId() {return ygId;}
public void setYgId(Integer ygId) {this.ygId = ygId;}
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 String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

投诉javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//投诉
public class Ts  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//员工
private Integer ygId;
//简略
private String title;
//内容
private String content;
//日期
private String showDate;
public Integer getYgId() {return ygId;}
public void setYgId(Integer ygId) {this.ygId = ygId;}
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 String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

通知javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//通知
public class Tz  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 String 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 String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

新闻javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//新闻
public class Xw  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 String pic;
//日期
private String 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;}
publi
2f320
c String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

普通员工javaBean创建语句如下:

package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//普通员工
public class Yg  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 ygName;
//年龄
private String age;
//性别
private String sex;
//电话
private String phone;
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 getYgName() {return ygName;}
public void setYgName(String ygName) {this.ygName = ygName;}
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 getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
}
阅读更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐