1. 程式人生 > >基於雲端儲存的個人部落格網站的設計與實現

基於雲端儲存的個人部落格網站的設計與實現

**基於雲端儲存的個人部落格網站的設計與實現** 基於雲端儲存的個人部落格網站的設計與實現登入註冊介面

基於雲端儲存的個人部落格網站的設計與實現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_bk(
	id int primary key auto_increment comment '主鍵',
	bkName varchar(100) comment '部落格分類'
) comment '部落格分類';

使用者表建立語句如下:


create table t_customer(
	id int primary key auto_increment comment '主鍵',
	username varchar(100) comment '賬號',
	password varchar(100) comment '密碼',
	name varchar(100) comment '姓名',
	phone varchar(100) comment '手機',
	sex varchar(100) comment '性別',
	age varchar(100) comment '年齡',
	address varchar(100) comment '家庭住址',
	idcard varchar(100) comment '身份證',
	insertDate datetime comment '入庫日期',
	headPic varchar(100) comment '頭像',
	level varchar(100) comment '層級',
	isft varchar(100) comment '發帖許可權',
	ispl varchar(100) comment '評論許可權',
	mb1 varchar(100) comment '密保1',
	mb2 varchar(100) comment '密保2',
	mb3 varchar(100) comment '密保3'
) comment '使用者';

表建立語句如下:


create table t_liuyan(
	id int primary key auto_increment comment '主鍵',
	customerId int comment '',
	toId int comment '',
	content varchar(100) comment '',
	insertDate datetime comment '',
	status varchar(100) comment '',
	batch varchar(100) comment ''
) comment '';

論壇說明表建立語句如下:


create table t_ltsm(
	id int primary key auto_increment comment '主鍵',
	title varchar(100) comment '論壇說明'
) comment '論壇說明';

敏感詞表建立語句如下:


create table t_mgc(
	id int primary key auto_increment comment '主鍵',
	mgc varchar(100) comment '敏感詞'
) comment '敏感詞';

評論表建立語句如下:


create table t_pinglun(
	id int primary key auto_increment comment '主鍵',
	wdxxId int comment '評論資訊',
	customerId int comment '評論人',
	content varchar(100) comment '評論內容',
	insertDate datetime comment '評論日期'
) comment '評論';

資源申請表建立語句如下:


create table t_sq(
	id int primary key auto_increment comment '主鍵',
	customerId int comment '使用者',
	wdxxId int comment '資源',
	insertDate datetime comment '申請時間'
) comment '資源申請';

訪問記錄表建立語句如下:


create table t_view(
	id int primary key auto_increment comment '主鍵',
	customerId int comment '使用者',
	toCustomerId int comment '被訪問者',
	insertDate datetime comment '日期'
) comment '訪問記錄';

我的好友表建立語句如下:


create table t_wdhy(
	id int primary key auto_increment comment '主鍵',
	customerId int comment '我',
	hhId int comment '好友',
	insertDate datetime comment '關注日期'
) comment '我的好友';

我的訊息表建立語句如下:


create table t_wdxx(
	id int primary key auto_increment comment '主鍵',
	customerId int comment '我',
	title varchar(100) comment '標題',
	pic varchar(100) comment '圖片',
	content varchar(100) comment '內容',
	zan int comment '贊',
	insertDate datetime comment '釋出日期',
	nologin varchar(100) comment '遊客是否可見',
	bkId int comment '',
	days int comment '可以使用天數',
	money int comment '每天金額'
) comment '我的訊息';

表建立語句如下:


create table t_zp(
	id int primary key auto_increment comment '主鍵',
	customerId int comment '使用者',
	pic varchar(100) comment '圖片',
	insertDate datetime comment '日期'
) comment '';

基於雲端儲存的個人部落格網站的設計與實現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_bk(
	id integer,
	bkName varchar(100)
);
--部落格分類欄位加註釋
comment on column t_bk.id is '主鍵';
comment on column t_bk.bkName is '部落格分類';
--部落格分類表加註釋
comment on table t_bk is '部落格分類';

使用者表建立語句如下:


create table t_customer(
	id integer,
	username varchar(100),
	password varchar(100),
	name varchar(100),
	phone varchar(100),
	sex varchar(100),
	age varchar(100),
	address varchar(100),
	idcard varchar(100),
	insertDate datetime,
	headPic varchar(100),
	level varchar(100),
	isft varchar(100),
	ispl varchar(100),
	mb1 varchar(100),
	mb2 varchar(100),
	mb3 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.name is '姓名';
comment on column t_customer.phone is '手機';
comment on column t_customer.sex is '性別';
comment on column t_customer.age is '年齡';
comment on column t_customer.address is '家庭住址';
comment on column t_customer.idcard is '身份證';
comment on column t_customer.insertDate is '入庫日期';
comment on column t_customer.headPic is '頭像';
comment on column t_customer.level is '層級';
comment on column t_customer.isft is '發帖許可權';
comment on column t_customer.ispl is '評論許可權';
comment on column t_customer.mb1 is '密保1';
comment on column t_customer.mb2 is '密保2';
comment on column t_customer.mb3 is '密保3';
--使用者表加註釋
comment on table t_customer is '使用者';

表建立語句如下:


create table t_liuyan(
	id integer,
	customerId int,
	toId int,
	content varchar(100),
	insertDate datetime,
	status varchar(100),
	batch varchar(100)
);
--欄位加註釋
comment on column t_liuyan.id is '主鍵';
comment on column t_liuyan.customerId is '';
comment on column t_liuyan.toId is '';
comment on column t_liuyan.content is '';
comment on column t_liuyan.insertDate is '';
comment on column t_liuyan.status is '';
comment on column t_liuyan.batch is '';
--表加註釋
comment on table t_liuyan is '';

論壇說明表建立語句如下:


create table t_ltsm(
	id integer,
	title varchar(100)
);
--論壇說明欄位加註釋
comment on column t_ltsm.id is '主鍵';
comment on column t_ltsm.title is '論壇說明';
--論壇說明表加註釋
comment on table t_ltsm is '論壇說明';

敏感詞表建立語句如下:


create table t_mgc(
	id integer,
	mgc varchar(100)
);
--敏感詞欄位加註釋
comment on column t_mgc.id is '主鍵';
comment on column t_mgc.mgc is '敏感詞';
--敏感詞表加註釋
comment on table t_mgc is '敏感詞';

評論表建立語句如下:


create table t_pinglun(
	id integer,
	wdxxId int,
	customerId int,
	content varchar(100),
	insertDate datetime
);
--評論欄位加註釋
comment on column t_pinglun.id is '主鍵';
comment on column t_pinglun.wdxxId is '評論資訊';
comment on column t_pinglun.customerId is '評論人';
comment on column t_pinglun.content is '評論內容';
comment on column t_pinglun.insertDate is '評論日期';
--評論表加註釋
comment on table t_pinglun is '評論';

資源申請表建立語句如下:


create table t_sq(
	id integer,
	customerId int,
	wdxxId int,
	insertDate datetime
);
--資源申請欄位加註釋
comment on column t_sq.id is '主鍵';
comment on column t_sq.customerId is '使用者';
comment on column t_sq.wdxxId is '資源';
comment on column t_sq.insertDate is '申請時間';
--資源申請表加註釋
comment on table t_sq is '資源申請';

訪問記錄表建立語句如下:


create table t_view(
	id integer,
	customerId int,
	toCustomerId int,
	insertDate datetime
);
--訪問記錄欄位加註釋
comment on column t_view.id is '主鍵';
comment on column t_view.customerId is '使用者';
comment on column t_view.toCustomerId is '被訪問者';
comment on column t_view.insertDate is '日期';
--訪問記錄表加註釋
comment on table t_view is '訪問記錄';

我的好友表建立語句如下:


create table t_wdhy(
	id integer,
	customerId int,
	hhId int,
	insertDate datetime
);
--我的好友欄位加註釋
comment on column t_wdhy.id is '主鍵';
comment on column t_wdhy.customerId is '我';
comment on column t_wdhy.hhId is '好友';
comment on column t_wdhy.insertDate is '關注日期';
--我的好友表加註釋
comment on table t_wdhy is '我的好友';

我的訊息表建立語句如下:


create table t_wdxx(
	id integer,
	customerId int,
	title varchar(100),
	pic varchar(100),
	content varchar(100),
	zan int,
	insertDate datetime,
	nologin varchar(100),
	bkId int,
	days int,
	money int
);
--我的訊息欄位加註釋
comment on column t_wdxx.id is '主鍵';
comment on column t_wdxx.customerId is '我';
comment on column t_wdxx.title is '標題';
comment on column t_wdxx.pic is '圖片';
comment on column t_wdxx.content is '內容';
comment on column t_wdxx.zan is '贊';
comment on column t_wdxx.insertDate is '釋出日期';
comment on column t_wdxx.nologin is '遊客是否可見';
comment on column t_wdxx.bkId is '';
comment on column t_wdxx.days is '可以使用天數';
comment on column t_wdxx.money is '每天金額';
--我的訊息表加註釋
comment on table t_wdxx is '我的訊息';

表建立語句如下:


create table t_zp(
	id integer,
	customerId int,
	pic varchar(100),
	insertDate datetime
);
--欄位加註釋
comment on column t_zp.id is '主鍵';
comment on column t_zp.customerId is '使用者';
comment on column t_zp.pic is '圖片';
comment on column t_zp.insertDate is '日期';
--表加註釋
comment on table t_zp is '';

oracle特有,對應序列如下:


create sequence s_t_bk;
create sequence s_t_customer;
create sequence s_t_liuyan;
create sequence s_t_ltsm;
create sequence s_t_mgc;
create sequence s_t_pinglun;
create sequence s_t_sq;
create sequence s_t_view;
create sequence s_t_wdhy;
create sequence s_t_wdxx;
create sequence s_t_zp;

基於雲端儲存的個人部落格網站的設計與實現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_bk(
	id int identity(1,1) primary key not null,--主鍵
	bkName varchar(100)--部落格分類
);

使用者表建立語句如下:


--使用者表註釋
create table t_customer(
	id int identity(1,1) primary key not null,--主鍵
	username varchar(100),--賬號
	password varchar(100),--密碼
	name varchar(100),--姓名
	phone varchar(100),--手機
	sex varchar(100),--性別
	age varchar(100),--年齡
	address varchar(100),--家庭住址
	idcard varchar(100),--身份證
	insertDate datetime,--入庫日期
	headPic varchar(100),--頭像
	level varchar(100),--層級
	isft varchar(100),--發帖許可權
	ispl varchar(100),--評論許可權
	mb1 varchar(100),--密保1
	mb2 varchar(100),--密保2
	mb3 varchar(100)--密保3
);

表建立語句如下:


--表註釋
create table t_liuyan(
	id int identity(1,1) primary key not null,--主鍵
	customerId int,--
	toId int,--
	content varchar(100),--
	insertDate datetime,--
	status varchar(100),--
	batch varchar(100)--
);

論壇說明表建立語句如下:


--論壇說明表註釋
create table t_ltsm(
	id int identity(1,1) primary key not null,--主鍵
	title varchar(100)--論壇說明
);

敏感詞表建立語句如下:


--敏感詞表註釋
create table t_mgc(
	id int identity(1,1) primary key not null,--主鍵
	mgc varchar(100)--敏感詞
);

評論表建立語句如下:


--評論表註釋
create table t_pinglun(
	id int identity(1,1) primary key not null,--主鍵
	wdxxId int,--評論資訊
	customerId int,--評論人
	content varchar(100),--評論內容
	insertDate datetime--評論日期
);

資源申請表建立語句如下:


--資源申請表註釋
create table t_sq(
	id int identity(1,1) primary key not null,--主鍵
	customerId int,--使用者
	wdxxId int,--資源
	insertDate datetime--申請時間
);

訪問記錄表建立語句如下:


--訪問記錄表註釋
create table t_view(
	id int identity(1,1) primary key not null,--主鍵
	customerId int,--使用者
	toCustomerId int,--被訪問者
	insertDate datetime--日期
);

我的好友表建立語句如下:


--我的好友表註釋
create table t_wdhy(
	id int identity(1,1) primary key not null,--主鍵
	customerId int,--我
	hhId int,--好友
	insertDate datetime--關注日期
);

我的訊息表建立語句如下:


--我的訊息表註釋
create table t_wdxx(
	id int identity(1,1) primary key not null,--主鍵
	customerId int,--我
	title varchar(100),--標題
	pic varchar(100),--圖片
	content varchar(100),--內容
	zan int,--贊
	insertDate datetime,--釋出日期
	nologin varchar(100),--遊客是否可見
	bkId int,--
	days int,--可以使用天數
	money int--每天金額
);

表建立語句如下:


--表註釋
create table t_zp(
	id int identity(1,1) primary key not null,--主鍵
	customerId int,--使用者
	pic varchar(100),--圖片
	insertDate datetime--日期
);

基於雲端儲存的個人部落格網站的設計與實現登入後主頁

基於雲端儲存的個人部落格網站的設計與實現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_bk")
public class Bk {
//主鍵
@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 bkName;
public String getBkName() {return bkName;}
public void setBkName(String bkName) {this.bkName = bkName;}
}

使用者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 name;
//手機
private String phone;
//性別
private String sex;
//年齡
private String age;
//家庭住址
private String address;
//身份證
private String idcard;
//入庫日期
private Date insertDate;
//頭像
private String headPic;
//層級
private String level;
//發帖許可權
private String isft;
//評論許可權
private String ispl;
//密保1
private String mb1;
//密保2
private String mb2;
//密保3
private String mb3;
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 getName() {return name;}
public void setName(String name) {this.name = name;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getIdcard() {return idcard;}
public void setIdcard(String idcard) {this.idcard = idcard;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getLevel() {return level;}
public void setLevel(String level) {this.level = level;}
public String getIsft() {return isft;}
public void setIsft(String isft) {this.isft = isft;}
public String getIspl() {return ispl;}
public void setIspl(String ispl) {this.ispl = ispl;}
public String getMb1() {return mb1;}
public void setMb1(String mb1) {this.mb1 = mb1;}
public String getMb2() {return mb2;}
public void setMb2(String mb2) {this.mb2 = mb2;}
public String getMb3() {return mb3;}
public void setMb3(String mb3) {this.mb3 = mb3;}
}

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_liuyan")
public class Liuyan {
//主鍵
@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 toId;
//
private String content;
//
private Date insertDate;
//
private String status;
//
private String batch;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getToId() {return toId;}
public void setToId(Integer toId) {this.toId = toId;}
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 getBatch() {return batch;}
public void setBatch(String batch) {this.batch = batch;}
}

論壇說明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_ltsm")
public class Ltsm {
//主鍵
@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;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
}

敏感詞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_mgc")
public class Mgc {
//主鍵
@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 mgc;
public String getMgc() {return mgc;}
public void setMgc(String mgc) {this.mgc = mgc;}
}

評論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_pinglun")
public class Pinglun {
//主鍵
@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 wdxxId;
//評論人
private Integer customerId;
//評論內容
private String content;
//評論日期
private Date insertDate;
public Integer getWdxxId() {return wdxxId;}
public void setWdxxId(Integer wdxxId) {this.wdxxId = wdxxId;}
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;}
}

資源申請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_sq")
public class Sq {
//主鍵
@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 wdxxId;
//申請時間
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getWdxxId() {return wdxxId;}
public void setWdxxId(Integer wdxxId) {this.wdxxId = wdxxId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

訪問記錄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_view")
public class View {
//主鍵
@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 toCustomerId;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getToCustomerId() {return toCustomerId;}
public void setToCustomerId(Integer toCustomerId) {this.toCustomerId = toCustomerId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

我的好友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_wdhy")
public class Wdhy {
//主鍵
@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 hhId;
//關注日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getHhId() {return hhId;}
public void setHhId(Integer hhId) {this.hhId = hhId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

我的訊息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_wdxx")
public class Wdxx {
//主鍵
@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 title;
//圖片
private String pic;
//內容
private String content;
//贊
private Integer zan;
//釋出日期
private Date insertDate;
//遊客是否可見
private String nologin;
//
private Integer bkId;
//可以使用天數
private Integer days;
//每天金額
private Integer money;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
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 Integer getZan() {return zan;}
public void setZan(Integer zan) {this.zan = zan;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getNologin() {return nologin;}
public void setNologin(String nologin) {this.nologin = nologin;}
public Integer getBkId() {return bkId;}
public void setBkId(Integer bkId) {this.bkId = bkId;}
public Integer getDays() {return days;}
public void setDays(Integer days) {this.days = days;}
public Integer getMoney() {return money;}
public void setMoney(Integer money) {this.money = money;}
}

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_zp")
public class Zp {
//主鍵
@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 pic;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

基於雲端儲存的個人部落格網站的設計與實現spring springMVC mybatis框架物件(javaBean,pojo)設計:

部落格分類javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//部落格分類
public class Bk  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//部落格分類
private String bkName;
public String getBkName() {return bkName;}
public void setBkName(String bkName) {this.bkName = bkName;}
}

使用者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 name;
//手機
private String phone;
//性別
private String sex;
//年齡
private String age;
//家庭住址
private String address;
//身份證
private String idcard;
//入庫日期
private Date insertDate;
//頭像
private String headPic;
//層級
private String level;
//發帖許可權
private String isft;
//評論許可權
private String ispl;
//密保1
private String mb1;
//密保2
private String mb2;
//密保3
private String mb3;
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 getName() {return name;}
public void setName(String name) {this.name = name;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAge() {return age;}
public void setAge(String age) {this.age = age;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getIdcard() {return idcard;}
public void setIdcard(String idcard) {this.idcard = idcard;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getLevel() {return level;}
public void setLevel(String level) {this.level = level;}
public String getIsft() {return isft;}
public void setIsft(String isft) {this.isft = isft;}
public String getIspl() {return ispl;}
public void setIspl(String ispl) {this.ispl = ispl;}
public String getMb1() {return mb1;}
public void setMb1(String mb1) {this.mb1 = mb1;}
public String getMb2() {return mb2;}
public void setMb2(String mb2) {this.mb2 = mb2;}
public String getMb3() {return mb3;}
public void setMb3(String mb3) {this.mb3 = mb3;}
}

javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//
public class Liuyan  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//
private Integer customerId;
//
private Integer toId;
//
private String content;
//
private Date insertDate;
//
private String status;
//
private String batch;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getToId() {return toId;}
public void setToId(Integer toId) {this.toId = toId;}
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 getBatch() {return batch;}
public void setBatch(String batch) {this.batch = batch;}
}

論壇說明javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//論壇說明
public class Ltsm  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//論壇說明
private String title;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
}

敏感詞javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//敏感詞
public class Mgc  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//敏感詞
private String mgc;
public String getMgc() {return mgc;}
public void setMgc(String mgc) {this.mgc = mgc;}
}

評論javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//評論
public class Pinglun  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//評論資訊
private Integer wdxxId;
//評論人
private Integer customerId;
//評論內容
private String content;
//評論日期
private Date insertDate;
public Integer getWdxxId() {return wdxxId;}
public void setWdxxId(Integer wdxxId) {this.wdxxId = wdxxId;}
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;}
}

資源申請javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//資源申請
public class Sq  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//使用者
private Integer customerId;
//資源
private Integer wdxxId;
//申請時間
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getWdxxId() {return wdxxId;}
public void setWdxxId(Integer wdxxId) {this.wdxxId = wdxxId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

訪問記錄javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//訪問記錄
public class View  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//使用者
private Integer customerId;
//被訪問者
private Integer toCustomerId;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getToCustomerId() {return toCustomerId;}
public void setToCustomerId(Integer toCustomerId) {this.toCustomerId = toCustomerId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

我的好友javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//我的好友
public class Wdhy  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//我
private Integer customerId;
//好友
private Integer hhId;
//關注日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getHhId() {return hhId;}
public void setHhId(Integer hhId) {this.hhId = hhId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

我的訊息javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//我的訊息
public class Wdxx  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//我
private Integer customerId;
//標題
private String title;
//圖片
private String pic;
//內容
private String content;
//贊
private Integer zan;
//釋出日期
private Date insertDate;
//遊客是否可見
private String nologin;
//
private Integer bkId;
//可以使用天數
private Integer days;
//每天金額
private Integer money;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
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 Integer getZan() {return zan;}
public void setZan(Integer zan) {this.zan = zan;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getNologin() {return nologin;}
public void setNologin(String nologin) {this.nologin = nologin;}
public Integer getBkId() {return bkId;}
public void setBkId(Integer bkId) {this.bkId = bkId;}
public Integer getDays() {return days;}
public void setDays(Integer days) {this.days = days;}
public Integer getMoney() {return money;}
public void setMoney(Integer money) {this.money = money;}
}

javaBean建立語句如下:


package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//
public class Zp  extends BaseBean{
//主鍵
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//使用者
private Integer customerId;
//圖片
private String pic;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}