基于Android平台的图书借阅管理系统,毕业设计java项目

基于Android平台的图书借阅管理系统登录注册界面

基于Android平台的图书借阅管理系统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_bktype(
	id int primary key auto_increment comment '主键',
	bktypeName varchar(100) comment '书类型'
) comment '书类型';

图书表创建语句如下:


create table t_book(
	id int primary key auto_increment comment '主键',
	bktypeId int comment '图书类型',
	bookNum varchar(100) comment '图书编号',
	bookName varchar(100) comment '图书名称',
	bookPic varchar(100) comment '图书图片',
	wz varchar(100) comment '图书位置',
	status varchar(100) comment '状态',
	v1 varchar(100) comment '新书推荐',
	v2 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 '姓名',
	sex varchar(100) comment '性别',
	address varchar(100) comment '地址',
	mobile varchar(100) comment '手机',
	jyz varchar(100) comment ''
) comment '客户';

到期提醒表创建语句如下:


create table t_dqtx(
	id int primary key auto_increment comment '主键',
	customerId int comment '读者',
	bookId int comment '书',
	content varchar(100) comment '内容'
) comment '到期提醒';

罚款表创建语句如下:


create table t_fakuan(
	id int primary key auto_increment comment '主键',
	customerId int comment '罚款人',
	fkContent varchar(100) comment '罚款原因',
	insertDate datetime comment '罚款日期'
) comment '罚款';

用户反馈表创建语句如下:


create table t_fk(
	id int primary key auto_increment comment '主键',
	fkContent varchar(100) comment '反馈内容',
	fkDate datetime comment '反馈日期',
	customerId int comment '反馈人',
	phone varchar(100) comment '反馈人联系电话'
) comment '用户反馈';

借书表创建语句如下:


create table t_js(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	bookId int comment '书',
	bookDate datetime comment '借书日期',
	status varchar(100) comment '状态',
	backDate datetime comment '归还日期',
	needBack datetime comment ''
) comment '借书';

借书卡表创建语句如下:


create table t_jsz(
	id int primary key auto_increment comment '主键',
	customerId int comment '读者',
	v1 varchar(100) comment '卡号',
	v2 varchar(100) comment '备注',
	v3 varchar(100) comment '注册日期',
	v4 varchar(100) comment '状态'
) comment '借书卡';

订单表创建语句如下:


create table t_order(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	productDetail varchar(100) comment '订单详细',
	allPrice varchar(100) comment '订单总价格',
	status varchar(100) comment '状态',
	orderNum varchar(100) comment '',
	pl varchar(100) comment '',
	insertDate datetime comment ''
) comment '订单';

产品表创建语句如下:


create table t_product(
	id int primary key auto_increment comment '主键',
	productName varchar(100) comment '产品名称',
	productPic varchar(100) comment '图片',
	price varchar(100) comment '价格',
	content varchar(100) comment '内容'
) comment '产品';

收藏表创建语句如下:


create table t_sc(
	id int primary key auto_increment comment '主键',
	xwId int comment '新闻',
	customerId int comment '用户',
	insertDate datetime comment '收藏日期'
) comment '收藏';

购物车表创建语句如下:


create table t_shopcar(
	id int primary key auto_increment comment '主键',
	productId int comment '产品',
	num int comment '数量',
	customerId int comment ''
) comment '购物车';

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


create table t_user(
	id int primary key auto_increment comment '主键',
	username varchar(100) comment '账号',
	password varchar(100) comment '密码',
	name varchar(100) comment '姓名',
	gh varchar(100) comment '工号',
	mobile varchar(100) comment '手机'
) comment '普通员工';

新闻表创建语句如下:


create table t_xw(
	id int primary key auto_increment comment '主键',
	xwlxId int comment '新闻类型',
	xwTitle varchar(100) comment '新闻标题',
	xwPicOne varchar(100) comment '新闻图片一',
	xwPicTwo varchar(100) comment '新闻图片二',
	xwPicThree varchar(100) comment '新闻图片三',
	swsp varchar(100) comment '新闻视频',
	xwContent varchar(100) comment '新闻内容',
	xwDay varchar(100) comment '新闻日期'
) comment '新闻';

新闻类型表创建语句如下:


create table t_xwlx(
	id int primary key auto_increment comment '主键',
	xwlxName varchar(100) comment '新闻类型'
) comment '新闻类型';

基于Android平台的图书借阅管理系统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_bktype(
	id integer,
	bktypeName varchar(100)
);
--书类型字段加注释
comment on column t_bktype.id is '主键';
comment on column t_bktype.bktypeName is '书类型';
--书类型表加注释
comment on table t_bktype is '书类型';

图书表创建语句如下:


create table t_book(
	id integer,
	bktypeId int,
	bookNum varchar(100),
	bookName varchar(100),
	bookPic varchar(100),
	wz varchar(100),
	status varchar(100),
	v1 varchar(100),
	v2 varchar(100)
);
--图书字段加注释
comment on column t_book.id is '主键';
comment on column t_book.bktypeId is '图书类型';
comment on column t_book.bookNum is '图书编号';
comment on column t_book.bookName is '图书名称';
comment on column t_book.bookPic is '图书图片';
comment on column t_book.wz is '图书位置';
comment on column t_book.status is '状态';
comment on column t_book.v1 is '新书推荐';
comment on column t_book.v2 is '热门推荐';
--图书表加注释
comment on table t_book is '图书';

客户表创建语句如下:


create table t_customer(
	id integer,
	username varchar(100),
	password varchar(100),
	name varchar(100),
	sex varchar(100),
	address varchar(100),
	mobile varchar(100),
	jyz 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.sex is '性别';
comment on column t_customer.address is '地址';
comment on column t_customer.mobile is '手机';
comment on column t_customer.jyz is '';
--客户表加注释
comment on table t_customer is '客户';

到期提醒表创建语句如下:


create table t_dqtx(
	id integer,
	customerId int,
	bookId int,
	content varchar(100)
);
--到期提醒字段加注释
comment on column t_dqtx.id is '主键';
comment on column t_dqtx.customerId is '读者';
comment on column t_dqtx.bookId is '书';
comment on column t_dqtx.content is '内容';
--到期提醒表加注释
comment on table t_dqtx is '到期提醒';

罚款表创建语句如下:


create table t_fakuan(
	id integer,
	customerId int,
	fkContent varchar(100),
	insertDate datetime
);
--罚款字段加注释
comment on column t_fakuan.id is '主键';
comment on column t_fakuan.customerId is '罚款人';
comment on column t_fakuan.fkContent is '罚款原因';
comment on column t_fakuan.insertDate is '罚款日期';
--罚款表加注释
comment on table t_fakuan is '罚款';

用户反馈表创建语句如下:


create table t_fk(
	id integer,
	fkContent varchar(100),
	fkDate datetime,
	customerId int,
	phone varchar(100)
);
--用户反馈字段加注释
comment on column t_fk.id is '主键';
comment on column t_fk.fkContent is '反馈内容';
comment on column t_fk.fkDate is '反馈日期';
comment on column t_fk.customerId is '反馈人';
comment on column t_fk.phone is '反馈人联系电话';
--用户反馈表加注释
comment on table t_fk is '用户反馈';

借书表创建语句如下:


create table t_js(
	id integer,
	customerId int,
	bookId int,
	bookDate datetime,
	status varchar(100),
	backDate datetime,
	needBack datetime
);
--借书字段加注释
comment on column t_js.id is '主键';
comment on column t_js.customerId is '用户';
comment on column t_js.bookId is '书';
comment on column t_js.bookDate is '借书日期';
comment on column t_js.status is '状态';
comment on column t_js.backDate is '归还日期';
comment on column t_js.needBack is '';
--借书表加注释
comment on table t_js is '借书';

借书卡表创建语句如下:


create table t_jsz(
	id integer,
	customerId int,
	v1 varchar(100),
	v2 varchar(100),
	v3 varchar(100),
	v4 varchar(100)
);
--借书卡字段加注释
comment on column t_jsz.id is '主键';
comment on column t_jsz.customerId is '读者';
comment on column t_jsz.v1 is '卡号';
comment on column t_jsz.v2 is '备注';
comment on column t_jsz.v3 is '注册日期';
comment on column t_jsz.v4 is '状态';
--借书卡表加注释
comment on table t_jsz is '借书卡';

订单表创建语句如下:


create table t_order(
	id integer,
	customerId int,
	productDetail varchar(100),
	allPrice varchar(100),
	status varchar(100),
	orderNum varchar(100),
	pl varchar(100),
	insertDate datetime
);
--订单字段加注释
comment on column t_order.id is '主键';
comment on column t_order.customerId is '用户';
comment on column t_order.productDetail is '订单详细';
comment on column t_order.allPrice is '订单总价格';
comment on column t_order.status is '状态';
comment on column t_order.orderNum is '';
comment on column t_order.pl is '';
comment on column t_order.insertDate is '';
--订单表加注释
comment on table t_order is '订单';

产品表创建语句如下:


create table t_product(
	id integer,
	productName varchar(100),
	productPic varchar(100),
	price varchar(100),
	content varchar(100)
);
--产品字段加注释
comment on column t_product.id is '主键';
comment on column t_product.productName is '产品名称';
comment on column t_product.productPic is '图片';
comment on column t_product.price is '价格';
comment on column t_product.content is '内容';
--产品表加注释
comment on table t_product is '产品';

收藏表创建语句如下:


create table t_sc(
	id integer,
	xwId int,
	customerId int,
	insertDate datetime
);
--收藏字段加注释
comment on column t_sc.id is '主键';
comment on column t_sc.xwId is '新闻';
comment on column t_sc.customerId is '用户';
comment on column t_sc.insertDate is '收藏日期';
--收藏表加注释
comment on table t_sc is '收藏';

购物车表创建语句如下:


create table t_shopcar(
	id integer,
	productId int,
	num int,
	customerId int
);
--购物车字段加注释
comment on column t_shopcar.id is '主键';
comment on column t_shopcar.productId is '产品';
comment on column t_shopcar.num is '数量';
comment on column t_shopcar.customerId is '';
--购物车表加注释
comment on table t_shopcar is '购物车';

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


create table t_user(
	id integer,
	username varchar(100),
	password varchar(100),
	name varchar(100),
	gh varchar(100),
	mobile varchar(100)
);
--普通员工字段加注释
comment on column t_user.id is '主键';
comment on column t_user.username is '账号';
comment on column t_user.password is '密码';
comment on column t_user.name is '姓名';
comment on column t_user.gh is '工号';
comment on column t_user.mobile is '手机';
--普通员工表加注释
comment on table t_user is '普通员工';

新闻表创建语句如下:


create table t_xw(
	id integer,
	xwlxId int,
	xwTitle varchar(100),
	xwPicOne varchar(100),
	xwPicTwo varchar(100),
	xwPicThree varchar(100),
	swsp varchar(100),
	xwContent varchar(100),
	xwDay varchar(100)
);
--新闻字段加注释
comment on column t_xw.id is '主键';
comment on column t_xw.xwlxId is '新闻类型';
comment on column t_xw.xwTitle is '新闻标题';
comment on column t_xw.xwPicOne is '新闻图片一';
comment on column t_xw.xwPicTwo is '新闻图片二';
comment on column t_xw.xwPicThree is '新闻图片三';
comment on column t_xw.swsp is '新闻视频';
comment on column t_xw.xwContent is '新闻内容';
comment on column t_xw.xwDay is '新闻日期';
--新闻表加注释
comment on table t_xw is '新闻';

新闻类型表创建语句如下:


create table t_xwlx(
	id integer,
	xwlxName varchar(100)
);
--新闻类型字段加注释
comment on column t_xwlx.id is '主键';
comment on column t_xwlx.xwlxName is '新闻类型';
--新闻类型表加注释
comment on table t_xwlx is '新闻类型';

oracle特有,对应序列如下:


create sequence s_t_bktype;
create sequence s_t_book;
create sequence s_t_customer;
create sequence s_t_dqtx;
create sequence s_t_fakuan;
create sequence s_t_fk;
create sequence s_t_js;
create sequence s_t_jsz;
create sequence s_t_order;
create sequence s_t_product;
create sequence s_t_sc;
create sequence s_t_shopcar;
create sequence s_t_user;
create sequence s_t_xw;
create sequence s_t_xwlx;

基于Android平台的图书借阅管理系统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_bktype(
	id int identity(1,1) primary key not null,--主键
	bktypeName varchar(100)--书类型
);

图书表创建语句如下:


--图书表注释
create table t_book(
	id int identity(1,1) primary key not null,--主键
	bktypeId int,--图书类型
	bookNum varchar(100),--图书编号
	bookName varchar(100),--图书名称
	bookPic varchar(100),--图书图片
	wz varchar(100),--图书位置
	status varchar(100),--状态
	v1 varchar(100),--新书推荐
	v2 varchar(100)--热门推荐
);

客户表创建语句如下:


--客户表注释
create table t_customer(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	name varchar(100),--姓名
	sex varchar(100),--性别
	address varchar(100),--地址
	mobile varchar(100),--手机
	jyz varchar(100)--
);

到期提醒表创建语句如下:


--到期提醒表注释
create table t_dqtx(
	id int identity(1,1) primary key not null,--主键
	customerId int,--读者
	bookId int,--书
	content varchar(100)--内容
);

罚款表创建语句如下:


--罚款表注释
create table t_fakuan(
	id int identity(1,1) primary key not null,--主键
	customerId int,--罚款人
	fkContent varchar(100),--罚款原因
	insertDate datetime--罚款日期
);

用户反馈表创建语句如下:


--用户反馈表注释
create table t_fk(
	id int identity(1,1) primary key not null,--主键
	fkContent varchar(100),--反馈内容
	fkDate datetime,--反馈日期
	customerId int,--反馈人
	phone varchar(100)--反馈人联系电话
);

借书表创建语句如下:


--借书表注释
create table t_js(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	bookId int,--书
	bookDate datetime,--借书日期
	status varchar(100),--状态
	backDate datetime,--归还日期
	needBack datetime--
);

借书卡表创建语句如下:


--借书卡表注释
create table t_jsz(
	id int identity(1,1) primary key not null,--主键
	customerId int,--读者
	v1 varchar(100),--卡号
	v2 varchar(100),--备注
	v3 varchar(100),--注册日期
	v4 varchar(100)--状态
);

订单表创建语句如下:


--订单表注释
create table t_order(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	productDetail varchar(100),--订单详细
	allPrice varchar(100),--订单总价格
	status varchar(100),--状态
	orderNum varchar(100),--
	pl varchar(100),--
	insertDate datetime--
);

产品表创建语句如下:


--产品表注释
create table t_product(
	id int identity(1,1) primary key not null,--主键
	productName varchar(100),--产品名称
	productPic varchar(100),--图片
	price varchar(100),--价格
	content varchar(100)--内容
);

收藏表创建语句如下:


--收藏表注释
create table t_sc(
	id int identity(1,1) primary key not null,--主键
	xwId int,--新闻
	customerId int,--用户
	insertDate datetime--收藏日期
);

购物车表创建语句如下:


--购物车表注释
create table t_shopcar(
	id int identity(1,1) primary key not null,--主键
	productId int,--产品
	num int,--数量
	customerId int--
);

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


--普通员工表注释
create table t_user(
	id int identity(1,1) primary key not null,--主键
	username varchar(100),--账号
	password varchar(100),--密码
	name varchar(100),--姓名
	gh varchar(100),--工号
	mobile varchar(100)--手机
);

新闻表创建语句如下:


--新闻表注释
create table t_xw(
	id int identity(1,1) primary key not null,--主键
	xwlxId int,--新闻类型
	xwTitle varchar(100),--新闻标题
	xwPicOne varchar(100),--新闻图片一
	xwPicTwo varchar(100),--新闻图片二
	xwPicThree varchar(100),--新闻图片三
	swsp varchar(100),--新闻视频
	xwContent varchar(100),--新闻内容
	xwDay varchar(100)--新闻日期
);

新闻类型表创建语句如下:


--新闻类型表注释
create table t_xwlx(
	id int identity(1,1) primary key not null,--主键
	xwlxName varchar(100)--新闻类型
);

基于Android平台的图书借阅管理系统登录后主页

基于Android平台的图书借阅管理系统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_bktype")
public class Bktype {
//主键
@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 bktypeName;
public String getBktypeName() {return bktypeName;}
public void setBktypeName(String bktypeName) {this.bktypeName = bktypeName;}
}

图书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_book")
public class Book {
//主键
@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 bktypeId;
//图书编号
private String bookNum;
//图书名称
private String bookName;
//图书图片
private String bookPic;
//图书位置
private String wz;
//状态
private String status;
//新书推荐
private String v1;
//热门推荐
private String v2;
public Integer getBktypeId() {return bktypeId;}
public void setBktypeId(Integer bktypeId) {this.bktypeId = bktypeId;}
public String getBookNum() {return bookNum;}
public void setBookNum(String bookNum) {this.bookNum = bookNum;}
public String getBookName() {return bookName;}
public void setBookName(String bookName) {this.bookName = bookName;}
public String getBookPic() {return bookPic;}
public void setBookPic(String bookPic) {this.bookPic = bookPic;}
public String getWz() {return wz;}
public void setWz(String wz) {this.wz = wz;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
}

客户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 sex;
//地址
private String address;
//手机
private String mobile;
//
private String jyz;
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 getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getMobile() {return mobile;}
public void setMobile(String mobile) {this.mobile = mobile;}
public String getJyz() {return jyz;}
public void setJyz(String jyz) {this.jyz = jyz;}
}

到期提醒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_dqtx")
public class Dqtx {
//主键
@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 bookId;
//内容
private String content;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getBookId() {return bookId;}
public void setBookId(Integer bookId) {this.bookId = bookId;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}

罚款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_fakuan")
public class Fakuan {
//主键
@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 fkContent;
//罚款日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getFkContent() {return fkContent;}
public void setFkContent(String fkContent) {this.fkContent = fkContent;}
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_fk")
public class Fk {
//主键
@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 fkContent;
//反馈日期
private Date fkDate;
//反馈人
private Integer customerId;
//反馈人联系电话
private String phone;
public String getFkContent() {return fkContent;}
public void setFkContent(String fkContent) {this.fkContent = fkContent;}
public Date getFkDate() {return fkDate;}
public void setFkDate(Date fkDate) {this.fkDate = fkDate;}
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;}
}

借书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_js")
public class Js {
//主键
@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 bookId;
//借书日期
private Date bookDate;
//状态
private String status;
//归还日期
private Date backDate;
//
private Date needBack;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getBookId() {return bookId;}
public void setBookId(Integer bookId) {this.bookId = bookId;}
public Date getBookDate() {return bookDate;}
public void setBookDate(Date bookDate) {this.bookDate = bookDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public Date getBackDate() {return backDate;}
public void setBackDate(Date backDate) {this.backDate = backDate;}
public Date getNeedBack() {return needBack;}
public void setNeedBack(Date needBack) {this.needBack = needBack;}
}

借书卡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_jsz")
public class Jsz {
//主键
@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 v1;
//备注
private String v2;
//注册日期
private String v3;
//状态
private String v4;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
}

订单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_order")
public class Order {
//主键
@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 productDetail;
//订单总价格
private String allPrice;
//状态
private String status;
//
private String orderNum;
//
private String pl;
//
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getProductDetail() {return productDetail;}
public void setProductDetail(String productDetail) {this.productDetail = productDetail;}
public String getAllPrice() {return allPrice;}
public void setAllPrice(String allPrice) {this.allPrice = allPrice;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getOrderNum() {return orderNum;}
public void setOrderNum(String orderNum) {this.orderNum = orderNum;}
public String getPl() {return pl;}
public void setPl(String pl) {this.pl = pl;}
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_product")
public class Product {
//主键
@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 productName;
//图片
private String productPic;
//价格
private String price;
//内容
private String content;
public String getProductName() {return productName;}
public void setProductName(String productName) {this.productName = productName;}
public String getProductPic() {return productPic;}
public void setProductPic(String productPic) {this.productPic = productPic;}
public String getPrice() {return price;}
public void setPrice(String price) {this.price = price;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}

收藏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_sc")
public class Sc {
//主键
@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 xwId;
//用户
private Integer customerId;
//收藏日期
private Date insertDate;
public Integer getXwId() {return xwId;}
public void setXwId(Integer xwId) {this.xwId = xwId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
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_shopcar")
public class Shopcar {
//主键
@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 productId;
//数量
private Integer num;
//
private Integer customerId;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
public Integer getNum() {return num;}
public void setNum(Integer num) {this.num = num;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
}

普通员工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_user")
public class User {
//主键
@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 gh;
//手机
private String mobile;
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 getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
public String getMobile() {return mobile;}
public void setMobile(String mobile) {this.mobile = mobile;}
}

新闻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 Integer xwlxId;
//新闻标题
private String xwTitle;
//新闻图片一
private String xwPicOne;
//新闻图片二
private String xwPicTwo;
//新闻图片三
private String xwPicThree;
//新闻视频
private String swsp;
//新闻内容
private String xwContent;
//新闻日期
private String xwDay;
public Integer getXwlxId() {return xwlxId;}
public void setXwlxId(Integer xwlxId) {this.xwlxId = xwlxId;}
public String getXwTitle() {return xwTitle;}
public void setXwTitle(String xwTitle) {this.xwTitle = xwTitle;}
public String getXwPicOne() {return xwPicOne;}
public void setXwPicOne(String xwPicOne) {this.xwPicOne = xwPicOne;}
public String getXwPicTwo() {return xwPicTwo;}
public void setXwPicTwo(String xwPicTwo) {this.xwPicTwo = xwPicTwo;}
public String getXwPicThree() {return xwPicThree;}
public void setXwPicThree(String xwPicThree) {this.xwPicThree = xwPicThree;}
public String getSwsp() {return swsp;}
public void setSwsp(String swsp) {this.swsp = swsp;}
public String getXwContent() {return xwContent;}
public void setXwContent(String xwContent) {this.xwContent = xwContent;}
public String getXwDay() {return xwDay;}
public void setXwDay(String xwDay) {this.xwDay = xwDay;}
}

新闻类型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_xwlx")
public class Xwlx {
//主键
@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 xwlxName;
public String getXwlxName() {return xwlxName;}
public void setXwlxName(String xwlxName) {this.xwlxName = xwlxName;}
}

基于Android平台的图书借阅管理系统spring+springMVC+mybatis框架对象(javaBean,pojo)设计:

书类型javaBean创建语句如下:


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

//书类型
public class Bktype  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//书类型
private String bktypeName;
public String getBktypeName() {return bktypeName;}
public void setBktypeName(String bktypeName) {this.bktypeName = bktypeName;}
}

图书javaBean创建语句如下:


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

//图书
public class Book  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//图书类型
private Integer bktypeId;
//图书编号
private String bookNum;
//图书名称
private String bookName;
//图书图片
private String bookPic;
//图书位置
private String wz;
//状态
private String status;
//新书推荐
private String v1;
//热门推荐
private String v2;
public Integer getBktypeId() {return bktypeId;}
public void setBktypeId(Integer bktypeId) {this.bktypeId = bktypeId;}
public String getBookNum() {return bookNum;}
public void setBookNum(String bookNum) {this.bookNum = bookNum;}
public String getBookName() {return bookName;}
public void setBookName(String bookName) {this.bookName = bookName;}
public String getBookPic() {return bookPic;}
public void setBookPic(String bookPic) {this.bookPic = bookPic;}
public String getWz() {return wz;}
public void setWz(String wz) {this.wz = wz;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
}

客户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 sex;
//地址
private String address;
//手机
private String mobile;
//
private String jyz;
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 getSex() {return sex;}
public void setSex(String sex) {this.sex = sex;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getMobile() {return mobile;}
public void setMobile(String mobile) {this.mobile = mobile;}
public String getJyz() {return jyz;}
public void setJyz(String jyz) {this.jyz = jyz;}
}

到期提醒javaBean创建语句如下:


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

//到期提醒
public class Dqtx  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//读者
private Integer customerId;
//书
private Integer bookId;
//内容
private String content;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getBookId() {return bookId;}
public void setBookId(Integer bookId) {this.bookId = bookId;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}

罚款javaBean创建语句如下:


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

//罚款
public class Fakuan  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//罚款人
private Integer customerId;
//罚款原因
private String fkContent;
//罚款日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getFkContent() {return fkContent;}
public void setFkContent(String fkContent) {this.fkContent = fkContent;}
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 Fk  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//反馈内容
private String fkContent;
//反馈日期
private Date fkDate;
//反馈人
private Integer customerId;
//反馈人联系电话
private String phone;
public String getFkContent() {return fkContent;}
public void setFkContent(String fkContent) {this.fkContent = fkContent;}
public Date getFkDate() {return fkDate;}
public void setFkDate(Date fkDate) {this.fkDate = fkDate;}
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;}
}

借书javaBean创建语句如下:


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

//借书
public class Js  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//书
private Integer bookId;
//借书日期
private Date bookDate;
//状态
private String status;
//归还日期
private Date backDate;
//
private Date needBack;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getBookId() {return bookId;}
public void setBookId(Integer bookId) {this.bookId = bookId;}
public Date getBookDate() {return bookDate;}
public void setBookDate(Date bookDate) {this.bookDate = bookDate;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public Date getBackDate() {return backDate;}
public void setBackDate(Date backDate) {this.backDate = backDate;}
public Date getNeedBack() {return needBack;}
public void setNeedBack(Date needBack) {this.needBack = needBack;}
}

借书卡javaBean创建语句如下:


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

//借书卡
public class Jsz  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//读者
private Integer customerId;
//卡号
private String v1;
//备注
private String v2;
//注册日期
private String v3;
//状态
private String v4;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
}

订单javaBean创建语句如下:


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

//订单
public class Order  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//订单详细
private String productDetail;
//订单总价格
private String allPrice;
//状态
private String status;
//
private String orderNum;
//
private String pl;
//
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getProductDetail() {return productDetail;}
public void setProductDetail(String productDetail) {this.productDetail = productDetail;}
public String getAllPrice() {return allPrice;}
public void setAllPrice(String allPrice) {this.allPrice = allPrice;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getOrderNum() {return orderNum;}
public void setOrderNum(String orderNum) {this.orderNum = orderNum;}
public String getPl() {return pl;}
public void setPl(String pl) {this.pl = pl;}
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 Product  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//产品名称
private String productName;
//图片
private String productPic;
//价格
private String price;
//内容
private String content;
public String getProductName() {return productName;}
public void setProductName(String productName) {this.productName = productName;}
public String getProductPic() {return productPic;}
public void setProductPic(String productPic) {this.productPic = productPic;}
public String getPrice() {return price;}
public void setPrice(String price) {this.price = price;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
}

收藏javaBean创建语句如下:


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

//收藏
public class Sc  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//新闻
private Integer xwId;
//用户
private Integer customerId;
//收藏日期
private Date insertDate;
public Integer getXwId() {return xwId;}
public void setXwId(Integer xwId) {this.xwId = xwId;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
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 Shopcar  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//产品
private Integer productId;
//数量
private Integer num;
//
private Integer customerId;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
public Integer getNum() {return num;}
public void setNum(Integer num) {this.num = num;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
}

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


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

//普通员工
public class User  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 gh;
//手机
private String mobile;
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 getGh() {return gh;}
public void setGh(String gh) {this.gh = gh;}
public String getMobile() {return mobile;}
public void setMobile(String mobile) {this.mobile = mobile;}
}

新闻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 Integer xwlxId;
//新闻标题
private String xwTitle;
//新闻图片一
private String xwPicOne;
//新闻图片二
private String xwPicTwo;
//新闻图片三
private String xwPicThree;
//新闻视频
private String swsp;
//新闻内容
private String xwContent;
//新闻日期
private String xwDay;
public Integer getXwlxId() {return xwlxId;}
public void setXwlxId(Integer xwlxId) {this.xwlxId = xwlxId;}
public String getXwTitle() {return xwTitle;}
public void setXwTitle(String xwTitle) {this.xwTitle = xwTitle;}
public String getXwPicOne() {return xwPicOne;}
public void setXwPicOne(String xwPicOne) {this.xwPicOne = xwPicOne;}
public String getXwPicTwo() {return xwPicTwo;}
public void setXwPicTwo(String xwPicTwo) {this.xwPicTwo = xwPicTwo;}
public String getXwPicThree() {return xwPicThree;}
public void setXwPicThree(String xwPicThree) {this.xwPicThree = xwPicThree;}
public String getSwsp() {return swsp;}
public void setSwsp(String swsp) {this.swsp = swsp;}
public String getXwContent() {return xwContent;}
public void setXwContent(String xwContent) {this.xwContent = xwContent;}
public String getXwDay() {return xwDay;}
public void setXwDay(String xwDay) {this.xwDay = xwDay;}
}

新闻类型javaBean创建语句如下:


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

//新闻类型
public class Xwlx  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//新闻类型
private String xwlxName;
public String getXwlxName() {return xwlxName;}
public void setXwlxName(String xwlxName) {this.xwlxName = xwlxName;}
}

相关毕业设计源码

e律通管理系统

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

宏泰公司网上车辆租赁管理系统 _部分源代码分享

宏泰公司网上车辆租赁管理系统(cheliangzulin),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于Android平台的邮箱客户端的设计与实现

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

社区生活服务信息管理系统

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

基于JavaWeb技术的名师一对一课程预约系统的设计与实现

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

房屋租赁资源共享平台的设计和实现

房屋租赁资源共享平台的设计和实现,提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于springmvc的智能家居产品网站,javaweb课程设计

基于springmvc的智能家居产品网站(zhinengjiaju),提供三种数据库: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,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

基于二维码的固定资产管理系统(xfa99)_mysql_oracle代码分享

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

基于ssm的企业人事管理,java毕业设计项目

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

同城体育资源共享系统(sport_city_system),java程序毕业设计

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

基于WEB的英语考试信息搜索引擎(爬虫),java网站毕业设计

基于WEB的英语考试信息搜索引擎(爬虫)(englishsystem),提供三种数据库:mysql,oracle,sqlserver,对应三种框架源码:springMVC/spring+springMVC+hibernate/spring+springMVC+mybatis,开发工具是myeclipse,提供基本增删改查,后台分页,图片上传,附件上传,富文本编辑器,时间选择器等功能。

评论