基于JAVA的牧畜溯源系统,java项目设计

基于JAVA的牧畜溯源系统登录注册界面

基于JAVA的牧畜溯源系统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_contact(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	phone varchar(100) comment '联系方式',
	content varchar(100) comment '内容',
	insertDate datetime 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 ''
) comment '用户';

宠物表创建语句如下:


create table t_cw(
	id int primary key auto_increment comment '主键',
	cwName varchar(100) comment '宠物别名',
	zl varchar(100) comment '种类',
	pz varchar(100) comment '品种',
	sex varchar(100) comment '性别',
	ms varchar(100) comment '毛色',
	jkzt varchar(100) comment '健康状态',
	llfw varchar(100) comment '流浪范围',
	hjdz varchar(100) comment '获救地址',
	cwnl varchar(100) comment '宠物年龄',
	status varchar(100) comment '状态',
	customerId int comment '用户',
	syrxm varchar(100) comment '收养人姓名',
	syrsex varchar(100) comment '性别',
	syrsfz varchar(100) comment '身份证',
	ly varchar(100) comment '理由',
	jtzz varchar(100) comment '家庭住址',
	jtcy varchar(100) comment '家庭成员',
	syrdh varchar(100) comment '收养人电话',
	jjdz varchar(100) comment '交接地址'
) comment '宠物';

记事本备忘录表创建语句如下:


create table t_jsb(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	types varchar(100) comment '类型',
	title varchar(100) comment '说明',
	jsbDate varchar(100) comment '日期',
	insertDate datetime comment '日期'
) 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 ''
) 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_rd(
	id int primary key auto_increment comment '主键',
	title varchar(100) comment '标题',
	url varchar(100) comment '连接地址'
) comment '热点';

信息模板表创建语句如下:


create table t_test(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	testName varchar(100) comment '姓名',
	testContent varchar(100) comment '内容',
	testSex varchar(100) comment '性别',
	testDay varchar(100) comment '日期',
	testPic varchar(100) 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 '发布日期'
) comment '我的消息';

相册表创建语句如下:


create table t_xc(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	pic varchar(100) comment '图片',
	title varchar(100) comment '相册标题',
	insertDate datetime comment '日期'
) comment '相册';

心情表创建语句如下:


create table t_xq(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	title varchar(100) comment '心情',
	insertDate datetime comment '日期'
) comment '心情';

基于JAVA的牧畜溯源系统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_contact(
	id integer,
	customerId int,
	phone varchar(100),
	content varchar(100),
	insertDate datetime
);
--建议字段加注释
comment on column t_contact.id is '主键';
comment on column t_contact.customerId is '用户';
comment on column t_contact.phone is '联系方式';
comment on column t_contact.content is '内容';
comment on column t_contact.insertDate is '日期';
--建议表加注释
comment on table t_contact 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)
);
--用户字段加注释
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 table t_customer is '用户';

宠物表创建语句如下:


create table t_cw(
	id integer,
	cwName varchar(100),
	zl varchar(100),
	pz varchar(100),
	sex varchar(100),
	ms varchar(100),
	jkzt varchar(100),
	llfw varchar(100),
	hjdz varchar(100),
	cwnl varchar(100),
	status varchar(100),
	customerId int,
	syrxm varchar(100),
	syrsex varchar(100),
	syrsfz varchar(100),
	ly varchar(100),
	jtzz varchar(100),
	jtcy varchar(100),
	syrdh varchar(100),
	jjdz varchar(100)
);
--宠物字段加注释
comment on column t_cw.id is '主键';
comment on column t_cw.cwName is '宠物别名';
comment on column t_cw.zl is '种类';
comment on column t_cw.pz is '品种';
comment on column t_cw.sex is '性别';
comment on column t_cw.ms is '毛色';
comment on column t_cw.jkzt is '健康状态';
comment on column t_cw.llfw is '流浪范围';
comment on column t_cw.hjdz is '获救地址';
comment on column t_cw.cwnl is '宠物年龄';
comment on column t_cw.status is '状态';
comment on column t_cw.customerId is '用户';
comment on column t_cw.syrxm is '收养人姓名';
comment on column t_cw.syrsex is '性别';
comment on column t_cw.syrsfz is '身份证';
comment on column t_cw.ly is '理由';
comment on column t_cw.jtzz is '家庭住址';
comment on column t_cw.jtcy is '家庭成员';
comment on column t_cw.syrdh is '收养人电话';
comment on column t_cw.jjdz is '交接地址';
--宠物表加注释
comment on table t_cw is '宠物';

记事本备忘录表创建语句如下:


create table t_jsb(
	id integer,
	customerId int,
	types varchar(100),
	title varchar(100),
	jsbDate varchar(100),
	insertDate datetime
);
--记事本备忘录字段加注释
comment on column t_jsb.id is '主键';
comment on column t_jsb.customerId is '用户';
comment on column t_jsb.types is '类型';
comment on column t_jsb.title is '说明';
comment on column t_jsb.jsbDate is '日期';
comment on column t_jsb.insertDate is '日期';
--记事本备忘录表加注释
comment on table t_jsb is '记事本备忘录';

表创建语句如下:


create table t_liuyan(
	id integer,
	customerId int,
	toId int,
	content varchar(100),
	insertDate datetime,
	status 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 table t_liuyan 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_rd(
	id integer,
	title varchar(100),
	url varchar(100)
);
--热点字段加注释
comment on column t_rd.id is '主键';
comment on column t_rd.title is '标题';
comment on column t_rd.url is '连接地址';
--热点表加注释
comment on table t_rd is '热点';

信息模板表创建语句如下:


create table t_test(
	id integer,
	customerId int,
	testName varchar(100),
	testContent varchar(100),
	testSex varchar(100),
	testDay varchar(100),
	testPic varchar(100),
	insertDate datetime
);
--信息模板字段加注释
comment on column t_test.id is '主键';
comment on column t_test.customerId is '用户';
comment on column t_test.testName is '姓名';
comment on column t_test.testContent is '内容';
comment on column t_test.testSex is '性别';
comment on column t_test.testDay is '日期';
comment on column t_test.testPic is '图片';
comment on column t_test.insertDate is '时间';
--信息模板表加注释
comment on table t_test 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
);
--我的消息字段加注释
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 table t_wdxx is '我的消息';

相册表创建语句如下:


create table t_xc(
	id integer,
	customerId int,
	pic varchar(100),
	title varchar(100),
	insertDate datetime
);
--相册字段加注释
comment on column t_xc.id is '主键';
comment on column t_xc.customerId is '用户';
comment on column t_xc.pic is '图片';
comment on column t_xc.title is '相册标题';
comment on column t_xc.insertDate is '日期';
--相册表加注释
comment on table t_xc is '相册';

心情表创建语句如下:


create table t_xq(
	id integer,
	customerId int,
	title varchar(100),
	insertDate datetime
);
--心情字段加注释
comment on column t_xq.id is '主键';
comment on column t_xq.customerId is '用户';
comment on column t_xq.title is '心情';
comment on column t_xq.insertDate is '日期';
--心情表加注释
comment on table t_xq is '心情';

oracle特有,对应序列如下:


create sequence s_t_contact;
create sequence s_t_customer;
create sequence s_t_cw;
create sequence s_t_jsb;
create sequence s_t_liuyan;
create sequence s_t_pinglun;
create sequence s_t_rd;
create sequence s_t_test;
create sequence s_t_wdhy;
create sequence s_t_wdxx;
create sequence s_t_xc;
create sequence s_t_xq;

基于JAVA的牧畜溯源系统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_contact(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	phone varchar(100),--联系方式
	content varchar(100),--内容
	insertDate datetime--日期
);

用户表创建语句如下:


--用户表注释
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)--
);

宠物表创建语句如下:


--宠物表注释
create table t_cw(
	id int identity(1,1) primary key not null,--主键
	cwName varchar(100),--宠物别名
	zl varchar(100),--种类
	pz varchar(100),--品种
	sex varchar(100),--性别
	ms varchar(100),--毛色
	jkzt varchar(100),--健康状态
	llfw varchar(100),--流浪范围
	hjdz varchar(100),--获救地址
	cwnl varchar(100),--宠物年龄
	status varchar(100),--状态
	customerId int,--用户
	syrxm varchar(100),--收养人姓名
	syrsex varchar(100),--性别
	syrsfz varchar(100),--身份证
	ly varchar(100),--理由
	jtzz varchar(100),--家庭住址
	jtcy varchar(100),--家庭成员
	syrdh varchar(100),--收养人电话
	jjdz varchar(100)--交接地址
);

记事本备忘录表创建语句如下:


--记事本备忘录表注释
create table t_jsb(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	types varchar(100),--类型
	title varchar(100),--说明
	jsbDate varchar(100),--日期
	insertDate datetime--日期
);

表创建语句如下:


--表注释
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)--
);

评论表创建语句如下:


--评论表注释
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_rd(
	id int identity(1,1) primary key not null,--主键
	title varchar(100),--标题
	url varchar(100)--连接地址
);

信息模板表创建语句如下:


--信息模板表注释
create table t_test(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	testName varchar(100),--姓名
	testContent varchar(100),--内容
	testSex varchar(100),--性别
	testDay varchar(100),--日期
	testPic varchar(100),--图片
	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--发布日期
);

相册表创建语句如下:


--相册表注释
create table t_xc(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	pic varchar(100),--图片
	title varchar(100),--相册标题
	insertDate datetime--日期
);

心情表创建语句如下:


--心情表注释
create table t_xq(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	title varchar(100),--心情
	insertDate datetime--日期
);

基于JAVA的牧畜溯源系统登录后主页

基于JAVA的牧畜溯源系统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_contact")
public class Contact {
//主键
@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 phone;
//内容
private String content;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
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_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;
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;}
}

宠物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_cw")
public class Cw {
//主键
@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 cwName;
//种类
private String zl;
//品种
private String pz;
//性别
private String sex;
//毛色
private String ms;
//健康状态
private String jkzt;
//流浪范围
private String llfw;
//获救地址
private String hjdz;
//宠物年龄
private String cwnl;
//状态
private String status;
//用户
private Integer customerId;
//收养人姓名
private String syrxm;
//性别
private String syrsex;
//身份证
private String syrsfz;
//理由
private String ly;
//家庭住址
private String jtzz;
//家庭成员
private String jtcy;
//收养人电话
private String syrdh;
//交接地址
private String jjdz;
public String getCwName() {return cwName;}
public void setCwName(String cwName) {this.cwName = cwName;}
public String getZl() {return zl;}
public void setZl(String zl) {this.zl = zl;}
public String getPz() {return pz;}
public void setPz(String pz) {this.pz = pz;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getMs() {return ms;}
public void setMs(String ms) {this.ms = ms;}
public String getJkzt() {return jkzt;}
public void setJkzt(String jkzt) {this.jkzt = jkzt;}
public String getLlfw() {return llfw;}
public void setLlfw(String llfw) {this.llfw = llfw;}
public String getHjdz() {return hjdz;}
public void setHjdz(String hjdz) {this.hjdz = hjdz;}
public String getCwnl() {return cwnl;}
public void setCwnl(String cwnl) {this.cwnl = cwnl;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getSyrxm() {return syrxm;}
public void setSyrxm(String syrxm) {this.syrxm = syrxm;}
public String getSyrsex() {return syrsex;}
public void setSyrsex(String syrsex) {this.syrsex = syrsex;}
public String getSyrsfz() {return syrsfz;}
public void setSyrsfz(String syrsfz) {this.syrsfz = syrsfz;}
public String getLy() {return ly;}
public void setLy(String ly) {this.ly = ly;}
public String getJtzz() {return jtzz;}
public void setJtzz(String jtzz) {this.jtzz = jtzz;}
public String getJtcy() {return jtcy;}
public void setJtcy(String jtcy) {this.jtcy = jtcy;}
public String getSyrdh() {return syrdh;}
public void setSyrdh(String syrdh) {this.syrdh = syrdh;}
public String getJjdz() {return jjdz;}
public void setJjdz(String jjdz) {this.jjdz = jjdz;}
}

记事本备忘录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_jsb")
public class Jsb {
//主键
@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 types;
//说明
private String title;
//日期
private String jsbDate;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTypes() {return types;}
public void setTypes(String types) {this.types = types;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getJsbDate() {return jsbDate;}
public void setJsbDate(String jsbDate) {this.jsbDate = jsbDate;}
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_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;
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;}
}

评论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_rd")
public class Rd {
//主键
@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 url;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getUrl() {return url;}
public void setUrl(String url) {this.url = url;}
}

信息模板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_test")
public class Test {
//主键
@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 testName;
//内容
private String testContent;
//性别
private String testSex;
//日期
private String testDay;
//图片
private String testPic;
//时间
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTestName() {return testName;}
public void setTestName(String testName) {this.testName = testName;}
public String getTestContent() {return testContent;}
public void setTestContent(String testContent) {this.testContent = testContent;}
public String getTestSex() {return testSex;}
public void setTestSex(String testSex) {this.testSex = testSex;}
public String getTestDay() {return testDay;}
public void setTestDay(String testDay) {this.testDay = testDay;}
public String getTestPic() {return testPic;}
public void setTestPic(String testPic) {this.testPic = testPic;}
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;
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;}
}

相册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_xc")
public class Xc {
//主键
@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 String title;
//日期
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 String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
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_xq")
public class Xq {
//主键
@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 Date insertDate;
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 Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

基于JAVA的牧畜溯源系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:

建议javaBean创建语句如下:


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

//建议
public class Contact  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//联系方式
private String phone;
//内容
private String content;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
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 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;
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;}
}

宠物javaBean创建语句如下:


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

//宠物
public class Cw  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//宠物别名
private String cwName;
//种类
private String zl;
//品种
private String pz;
//性别
private String sex;
//毛色
private String ms;
//健康状态
private String jkzt;
//流浪范围
private String llfw;
//获救地址
private String hjdz;
//宠物年龄
private String cwnl;
//状态
private String status;
//用户
private Integer customerId;
//收养人姓名
private String syrxm;
//性别
private String syrsex;
//身份证
private String syrsfz;
//理由
private String ly;
//家庭住址
private String jtzz;
//家庭成员
private String jtcy;
//收养人电话
private String syrdh;
//交接地址
private String jjdz;
public String getCwName() {return cwName;}
public void setCwName(String cwName) {this.cwName = cwName;}
public String getZl() {return zl;}
public void setZl(String zl) {this.zl = zl;}
public String getPz() {return pz;}
public void setPz(String pz) {this.pz = pz;}
public String getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getMs() {return ms;}
public void setMs(String ms) {this.ms = ms;}
public String getJkzt() {return jkzt;}
public void setJkzt(String jkzt) {this.jkzt = jkzt;}
public String getLlfw() {return llfw;}
public void setLlfw(String llfw) {this.llfw = llfw;}
public String getHjdz() {return hjdz;}
public void setHjdz(String hjdz) {this.hjdz = hjdz;}
public String getCwnl() {return cwnl;}
public void setCwnl(String cwnl) {this.cwnl = cwnl;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getSyrxm() {return syrxm;}
public void setSyrxm(String syrxm) {this.syrxm = syrxm;}
public String getSyrsex() {return syrsex;}
public void setSyrsex(String syrsex) {this.syrsex = syrsex;}
public String getSyrsfz() {return syrsfz;}
public void setSyrsfz(String syrsfz) {this.syrsfz = syrsfz;}
public String getLy() {return ly;}
public void setLy(String ly) {this.ly = ly;}
public String getJtzz() {return jtzz;}
public void setJtzz(String jtzz) {this.jtzz = jtzz;}
public String getJtcy() {return jtcy;}
public void setJtcy(String jtcy) {this.jtcy = jtcy;}
public String getSyrdh() {return syrdh;}
public void setSyrdh(String syrdh) {this.syrdh = syrdh;}
public String getJjdz() {return jjdz;}
public void setJjdz(String jjdz) {this.jjdz = jjdz;}
}

记事本备忘录javaBean创建语句如下:


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

//记事本备忘录
public class Jsb  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//类型
private String types;
//说明
private String title;
//日期
private String jsbDate;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTypes() {return types;}
public void setTypes(String types) {this.types = types;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getJsbDate() {return jsbDate;}
public void setJsbDate(String jsbDate) {this.jsbDate = jsbDate;}
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 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;
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;}
}

评论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 Rd  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//连接地址
private String url;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getUrl() {return url;}
public void setUrl(String url) {this.url = url;}
}

信息模板javaBean创建语句如下:


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

//信息模板
public class Test  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//姓名
private String testName;
//内容
private String testContent;
//性别
private String testSex;
//日期
private String testDay;
//图片
private String testPic;
//时间
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTestName() {return testName;}
public void setTestName(String testName) {this.testName = testName;}
public String getTestContent() {return testContent;}
public void setTestContent(String testContent) {this.testContent = testContent;}
public String getTestSex() {return testSex;}
public void setTestSex(String testSex) {this.testSex = testSex;}
public String getTestDay() {return testDay;}
public void setTestDay(String testDay) {this.testDay = testDay;}
public String getTestPic() {return testPic;}
public void setTestPic(String testPic) {this.testPic = testPic;}
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;
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;}
}

相册javaBean创建语句如下:


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

//相册
public class Xc  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 String title;
//日期
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 String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
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 Xq  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 Date insertDate;
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 Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

相关毕业设计源码

社区服务管理系统

社区服务管理系统,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于WEB的体育竞赛信息综合管理系统设计与实现

基于WEB的体育竞赛信息综合管理系统设计与实现(tiyujingsai),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于java实现的食品销售系统

基于java实现的食品销售系统,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

图书馆自习室选座系统

图书馆自习室选座系统,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于安卓的四级英语学习软件,基于java毕业设计

基于安卓的四级英语学习软件(sijiyingyu),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

旅游图文数据库系统

旅游图文数据库系统,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

医药配送服务系统(zb18ncoogl)_mysql_oracle代码分享

医药配送服务系统,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于JavaWeb的二手房交易系统的设计与实现

基于JavaWeb的二手房交易系统的设计与实现,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于Web的问卷调查系统的设计与实现

基于Web的问卷调查系统的设计与实现(webwenjuan),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

少数民族婚庆习俗展示系统

少数民族婚庆习俗展示系统,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

高校后勤在线报修系统的设计与研发

高校后勤在线报修系统的设计与研发,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于JSP的外教网站,优秀java设计

基于JSP的外教网站(waijiao),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

评论