手机银行app

手机银行app登录注册界面

手机银行appmysql数据库版本源码:

超级管理员表创建语句如下:


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_account(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	accountName varchar(100) comment '账号',
	phone varchar(100) comment '绑定手机号',
	fee int comment '金额',
	zfed int comment '额度',
	status varchar(100) comment '状态',
	iswkqx varchar(100) comment '是否可以无卡取现'
) comment '账户';

地址表创建语句如下:


create table t_address(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	phone varchar(100) comment '电话',
	addressVal varchar(100) comment '地址',
	addressName varchar(100) comment '姓名',
	ismoren varchar(100) comment '是否默认',
	province varchar(100) comment '',
	city varchar(100) comment '',
	area varchar(100) comment ''
) comment '地址';

分类表创建语句如下:


create table t_bk(
	id int primary key auto_increment comment '主键',
	bkName varchar(100) comment '分类名称'
) comment '分类';

标签表创建语句如下:


create table t_bq(
	id int primary key auto_increment comment '主键',
	bqName varchar(100) comment '标签'
) comment '标签';

建议表创建语句如下:


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 '密码',
	customerName varchar(100) comment '姓名',
	sex varchar(100) comment '性别',
	address varchar(100) comment '地址',
	phone varchar(100) comment '手机',
	account int comment '账户',
	jf int comment '积分',
	dzqb int comment '电子钱包',
	gjj int comment '公积金'
) comment '客户';

贷款表创建语句如下:


create table t_daikuan(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	fee int comment '贷款金额',
	dkll double comment '贷款利率',
	qs int comment '期数',
	insertDate datetime comment '贷款日期'
) comment '贷款';

贷款还款表创建语句如下:


create table t_daikuanlist(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	daikuanId int comment '贷款',
	fee int comment '还款金额',
	showDate varchar(100) comment '还款日期',
	status varchar(100) comment '待还款'
) comment '贷款还款';

电子钱包表创建语句如下:


create table t_dzqb(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	accountName varchar(100) comment '账号',
	phone varchar(100) comment '绑定手机号',
	types varchar(100) comment '充值还是取现',
	fee int comment '金额',
	insertDate datetime comment '日期'
) comment '电子钱包';

公积金表创建语句如下:


create table t_gjj(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	fee int comment '金额'
) comment '公积金';

公积金汇缴表创建语句如下:


create table t_gjjlist(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	fee int comment '金额',
	insertDate datetime comment '日期'
) comment '公积金汇缴';

公交卡充值表创建语句如下:


create table t_gjk(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	accountName varchar(100) comment '账号',
	phone varchar(100) comment '绑定手机号',
	fee int comment '充值金额',
	kahao varchar(100) comment '充值卡号',
	insertDate datetime comment '充值日期'
) comment '公交卡充值';

积分兑换产品表创建语句如下:


create table t_jfdh(
	id int primary key auto_increment comment '主键',
	jfName varchar(100) comment '积分产品名称',
	jfCost int comment '积分数量',
	jfPic varchar(100) comment '产品图片'
) comment '积分兑换产品';

库存表创建语句如下:


create table t_kc(
	id int primary key auto_increment comment '主键',
	productId int comment '产品',
	kcNum int comment '库存数量',
	insertDate datetime comment '日期'
) comment '库存';

轮播图表创建语句如下:


create table t_lbt(
	id int primary key auto_increment comment '主键',
	pic varchar(100) comment '图片'
) comment '轮播图';

留言表创建语句如下:


create table t_liuyan(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	content varchar(100) comment '内容',
	insertDate datetime comment '日期',
	back varchar(100) comment '回复',
	status varchar(100) comment '状态'
) comment '留言';

信息交流表创建语句如下:


create table t_message(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	messageContent varchar(100) comment '内容',
	types int comment '',
	insertDate datetime 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 '日期',
	userId int comment '',
	orderDate varchar(100) comment '',
	address varchar(100) comment '',
	xj varchar(100) comment '',
	pic varchar(100) comment '',
	content varchar(100) comment '',
	plDate datetime comment '',
	plr varchar(100) comment ''
) comment '订单';

订单详情表创建语句如下:


create table t_orderlist(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	orderId int comment '订单',
	productId int comment '菜品',
	sl int comment '',
	productName varchar(100) comment '',
	price int comment '',
	productPic1 varchar(100) comment '',
	xj varchar(100) comment '',
	content varchar(100) comment '',
	plDate datetime comment '',
	pic varchar(100) comment '',
	customerName 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_pinglun_product(
	id int primary key auto_increment comment '主键',
	productId int comment '评论信息',
	customerId int comment '评论人',
	content varchar(100) comment '评论内容',
	insertDate datetime comment '评论日期',
	xj varchar(100) comment '星级',
	pic varchar(100) comment ''
) comment '';

产品表创建语句如下:


create table t_product(
	id int primary key auto_increment comment '主键',
	productName varchar(100) comment '产品名称',
	productPic1 varchar(100) comment '图片1',
	productPic2 varchar(100) comment '图片2',
	productPic3 varchar(100) comment '图片3',
	productPic4 varchar(100) comment '图片4',
	price int comment '价格',
	oldPrice int comment '原价',
	content varchar(100) comment '内容',
	nums int comment '数量',
	tjxj varchar(100) comment '推荐星级',
	status varchar(100) comment '状态',
	typesId int comment '分类',
	jf int comment '积分',
	userId int comment '商家',
	bqId int comment '标签'
) comment '产品';

浏览记录表创建语句如下:


create table t_productview(
	id int primary key auto_increment comment '主键',
	productId 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_shoucang(
	id int primary key auto_increment comment '主键',
	productId int comment '产品',
	customerId int comment '用户',
	insertDate datetime comment '日期'
) comment '收藏';

分类表创建语句如下:


create table t_types(
	id int primary key auto_increment comment '主键',
	typesName varchar(100) 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_wdxx(
	id int primary key auto_increment comment '主键',
	customerId int comment '我',
	title varchar(100) comment '标题',
	pic varchar(100) comment '图片',
	content varchar(100) comment '内容',
	zan int comment '赞',
	insertDate datetime comment '发布日期',
	nologin varchar(100) comment '游客是否可见',
	bkId int comment ''
) comment '我的消息';

无卡取现预约表创建语句如下:


create table t_yy(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	accountName varchar(100) comment '账号',
	phone varchar(100) comment '绑定手机号',
	fee int comment '预约金额',
	showDate varchar(100) comment '取现日期',
	status varchar(100) comment '状态'
) comment '无卡取现预约';

作业表创建语句如下:


create table t_zuoye(
	id int primary key auto_increment comment '主键',
	customerId int comment '用户',
	content varchar(100) comment '说明',
	fileUrl varchar(100) comment '附件',
	insertDate datetime comment '日期',
	back varchar(100) comment '回复',
	pf int comment '评分',
	status varchar(100) comment '状态'
) comment '作业';

资讯表创建语句如下:


create table t_zx(
	id int primary key auto_increment comment '主键',
	title varchar(100) comment '标题',
	content varchar(100) comment '内容',
	pic varchar(100) comment '图片',
	showDate varchar(100) comment ''
) comment '资讯';

转账表创建语句如下:


create table t_zz(
	id int primary key auto_increment comment '主键',
	zzNum varchar(100) comment '转账编号',
	customerId int comment '用户',
	accountName varchar(100) comment '账号',
	phone varchar(100) comment '绑定手机号',
	toaccountName varchar(100) comment '对方账号',
	fee int comment '转账金额',
	insertDate datetime comment '转账时间'
) comment '转账';

手机银行apporacle数据库版本源码:

超级管理员表创建语句如下:


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_account(
	id integer,
	customerId int,
	accountName varchar(100),
	phone varchar(100),
	fee int,
	zfed int,
	status varchar(100),
	iswkqx varchar(100)
);
--账户字段加注释
comment on column t_account.id is '主键';
comment on column t_account.customerId is '用户';
comment on column t_account.accountName is '账号';
comment on column t_account.phone is '绑定手机号';
comment on column t_account.fee is '金额';
comment on column t_account.zfed is '额度';
comment on column t_account.status is '状态';
comment on column t_account.iswkqx is '是否可以无卡取现';
--账户表加注释
comment on table t_account is '账户';

地址表创建语句如下:


create table t_address(
	id integer,
	customerId int,
	phone varchar(100),
	addressVal varchar(100),
	addressName varchar(100),
	ismoren varchar(100),
	province varchar(100),
	city varchar(100),
	area varchar(100)
);
--地址字段加注释
comment on column t_address.id is '主键';
comment on column t_address.customerId is '用户';
comment on column t_address.phone is '电话';
comment on column t_address.addressVal is '地址';
comment on column t_address.addressName is '姓名';
comment on column t_address.ismoren is '是否默认';
comment on column t_address.province is '';
comment on column t_address.city is '';
comment on column t_address.area is '';
--地址表加注释
comment on table t_address is '地址';

分类表创建语句如下:


create table t_bk(
	id integer,
	bkName varchar(100)
);
--分类字段加注释
comment on column t_bk.id is '主键';
comment on column t_bk.bkName is '分类名称';
--分类表加注释
comment on table t_bk is '分类';

标签表创建语句如下:


create table t_bq(
	id integer,
	bqName varchar(100)
);
--标签字段加注释
comment on column t_bq.id is '主键';
comment on column t_bq.bqName is '标签';
--标签表加注释
comment on table t_bq 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),
	customerName varchar(100),
	sex varchar(100),
	address varchar(100),
	phone varchar(100),
	account int,
	jf int,
	dzqb int,
	gjj int
);
--客户字段加注释
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.customerName is '姓名';
comment on column t_customer.sex is '性别';
comment on column t_customer.address is '地址';
comment on column t_customer.phone is '手机';
comment on column t_customer.account is '账户';
comment on column t_customer.jf is '积分';
comment on column t_customer.dzqb is '电子钱包';
comment on column t_customer.gjj is '公积金';
--客户表加注释
comment on table t_customer is '客户';

贷款表创建语句如下:


create table t_daikuan(
	id integer,
	customerId int,
	fee int,
	dkll double,
	qs int,
	insertDate datetime
);
--贷款字段加注释
comment on column t_daikuan.id is '主键';
comment on column t_daikuan.customerId is '用户';
comment on column t_daikuan.fee is '贷款金额';
comment on column t_daikuan.dkll is '贷款利率';
comment on column t_daikuan.qs is '期数';
comment on column t_daikuan.insertDate is '贷款日期';
--贷款表加注释
comment on table t_daikuan is '贷款';

贷款还款表创建语句如下:


create table t_daikuanlist(
	id integer,
	customerId int,
	daikuanId int,
	fee int,
	showDate varchar(100),
	status varchar(100)
);
--贷款还款字段加注释
comment on column t_daikuanlist.id is '主键';
comment on column t_daikuanlist.customerId is '用户';
comment on column t_daikuanlist.daikuanId is '贷款';
comment on column t_daikuanlist.fee is '还款金额';
comment on column t_daikuanlist.showDate is '还款日期';
comment on column t_daikuanlist.status is '待还款';
--贷款还款表加注释
comment on table t_daikuanlist is '贷款还款';

电子钱包表创建语句如下:


create table t_dzqb(
	id integer,
	customerId int,
	accountName varchar(100),
	phone varchar(100),
	types varchar(100),
	fee int,
	insertDate datetime
);
--电子钱包字段加注释
comment on column t_dzqb.id is '主键';
comment on column t_dzqb.customerId is '用户';
comment on column t_dzqb.accountName is '账号';
comment on column t_dzqb.phone is '绑定手机号';
comment on column t_dzqb.types is '充值还是取现';
comment on column t_dzqb.fee is '金额';
comment on column t_dzqb.insertDate is '日期';
--电子钱包表加注释
comment on table t_dzqb is '电子钱包';

公积金表创建语句如下:


create table t_gjj(
	id integer,
	customerId int,
	fee int
);
--公积金字段加注释
comment on column t_gjj.id is '主键';
comment on column t_gjj.customerId is '用户';
comment on column t_gjj.fee is '金额';
--公积金表加注释
comment on table t_gjj is '公积金';

公积金汇缴表创建语句如下:


create table t_gjjlist(
	id integer,
	customerId int,
	fee int,
	insertDate datetime
);
--公积金汇缴字段加注释
comment on column t_gjjlist.id is '主键';
comment on column t_gjjlist.customerId is '用户';
comment on column t_gjjlist.fee is '金额';
comment on column t_gjjlist.insertDate is '日期';
--公积金汇缴表加注释
comment on table t_gjjlist is '公积金汇缴';

公交卡充值表创建语句如下:


create table t_gjk(
	id integer,
	customerId int,
	accountName varchar(100),
	phone varchar(100),
	fee int,
	kahao varchar(100),
	insertDate datetime
);
--公交卡充值字段加注释
comment on column t_gjk.id is '主键';
comment on column t_gjk.customerId is '用户';
comment on column t_gjk.accountName is '账号';
comment on column t_gjk.phone is '绑定手机号';
comment on column t_gjk.fee is '充值金额';
comment on column t_gjk.kahao is '充值卡号';
comment on column t_gjk.insertDate is '充值日期';
--公交卡充值表加注释
comment on table t_gjk is '公交卡充值';

积分兑换产品表创建语句如下:


create table t_jfdh(
	id integer,
	jfName varchar(100),
	jfCost int,
	jfPic varchar(100)
);
--积分兑换产品字段加注释
comment on column t_jfdh.id is '主键';
comment on column t_jfdh.jfName is '积分产品名称';
comment on column t_jfdh.jfCost is '积分数量';
comment on column t_jfdh.jfPic is '产品图片';
--积分兑换产品表加注释
comment on table t_jfdh is '积分兑换产品';

库存表创建语句如下:


create table t_kc(
	id integer,
	productId int,
	kcNum int,
	insertDate datetime
);
--库存字段加注释
comment on column t_kc.id is '主键';
comment on column t_kc.productId is '产品';
comment on column t_kc.kcNum is '库存数量';
comment on column t_kc.insertDate is '日期';
--库存表加注释
comment on table t_kc is '库存';

轮播图表创建语句如下:


create table t_lbt(
	id integer,
	pic varchar(100)
);
--轮播图字段加注释
comment on column t_lbt.id is '主键';
comment on column t_lbt.pic is '图片';
--轮播图表加注释
comment on table t_lbt is '轮播图';

留言表创建语句如下:


create table t_liuyan(
	id integer,
	customerId int,
	content varchar(100),
	insertDate datetime,
	back varchar(100),
	status varchar(100)
);
--留言字段加注释
comment on column t_liuyan.id is '主键';
comment on column t_liuyan.customerId is '用户';
comment on column t_liuyan.content is '内容';
comment on column t_liuyan.insertDate is '日期';
comment on column t_liuyan.back is '回复';
comment on column t_liuyan.status is '状态';
--留言表加注释
comment on table t_liuyan is '留言';

信息交流表创建语句如下:


create table t_message(
	id integer,
	customerId int,
	messageContent varchar(100),
	types int,
	insertDate datetime
);
--信息交流字段加注释
comment on column t_message.id is '主键';
comment on column t_message.customerId is '用户';
comment on column t_message.messageContent is '内容';
comment on column t_message.types is '';
comment on column t_message.insertDate is '时间';
--信息交流表加注释
comment on table t_message 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,
	userId int,
	orderDate varchar(100),
	address varchar(100),
	xj varchar(100),
	pic varchar(100),
	content varchar(100),
	plDate datetime,
	plr varchar(100)
);
--订单字段加注释
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 column t_order.userId is '';
comment on column t_order.orderDate is '';
comment on column t_order.address is '';
comment on column t_order.xj is '';
comment on column t_order.pic is '';
comment on column t_order.content is '';
comment on column t_order.plDate is '';
comment on column t_order.plr is '';
--订单表加注释
comment on table t_order is '订单';

订单详情表创建语句如下:


create table t_orderlist(
	id integer,
	customerId int,
	orderId int,
	productId int,
	sl int,
	productName varchar(100),
	price int,
	productPic1 varchar(100),
	xj varchar(100),
	content varchar(100),
	plDate datetime,
	pic varchar(100),
	customerName varchar(100)
);
--订单详情字段加注释
comment on column t_orderlist.id is '主键';
comment on column t_orderlist.customerId is '用户';
comment on column t_orderlist.orderId is '订单';
comment on column t_orderlist.productId is '菜品';
comment on column t_orderlist.sl is '';
comment on column t_orderlist.productName is '';
comment on column t_orderlist.price is '';
comment on column t_orderlist.productPic1 is '';
comment on column t_orderlist.xj is '';
comment on column t_orderlist.content is '';
comment on column t_orderlist.plDate is '';
comment on column t_orderlist.pic is '';
comment on column t_orderlist.customerName is '';
--订单详情表加注释
comment on table t_orderlist 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_pinglun_product(
	id integer,
	productId int,
	customerId int,
	content varchar(100),
	insertDate datetime,
	xj varchar(100),
	pic varchar(100)
);
--字段加注释
comment on column t_pinglun_product.id is '主键';
comment on column t_pinglun_product.productId is '评论信息';
comment on column t_pinglun_product.customerId is '评论人';
comment on column t_pinglun_product.content is '评论内容';
comment on column t_pinglun_product.insertDate is '评论日期';
comment on column t_pinglun_product.xj is '星级';
comment on column t_pinglun_product.pic is '';
--表加注释
comment on table t_pinglun_product is '';

产品表创建语句如下:


create table t_product(
	id integer,
	productName varchar(100),
	productPic1 varchar(100),
	productPic2 varchar(100),
	productPic3 varchar(100),
	productPic4 varchar(100),
	price int,
	oldPrice int,
	content varchar(100),
	nums int,
	tjxj varchar(100),
	status varchar(100),
	typesId int,
	jf int,
	userId int,
	bqId int
);
--产品字段加注释
comment on column t_product.id is '主键';
comment on column t_product.productName is '产品名称';
comment on column t_product.productPic1 is '图片1';
comment on column t_product.productPic2 is '图片2';
comment on column t_product.productPic3 is '图片3';
comment on column t_product.productPic4 is '图片4';
comment on column t_product.price is '价格';
comment on column t_product.oldPrice is '原价';
comment on column t_product.content is '内容';
comment on column t_product.nums is '数量';
comment on column t_product.tjxj is '推荐星级';
comment on column t_product.status is '状态';
comment on column t_product.typesId is '分类';
comment on column t_product.jf is '积分';
comment on column t_product.userId is '商家';
comment on column t_product.bqId is '标签';
--产品表加注释
comment on table t_product is '产品';

浏览记录表创建语句如下:


create table t_productview(
	id integer,
	productId int,
	customerId int,
	insertDate datetime
);
--浏览记录字段加注释
comment on column t_productview.id is '主键';
comment on column t_productview.productId is '产品';
comment on column t_productview.customerId is '用户';
comment on column t_productview.insertDate is '日期';
--浏览记录表加注释
comment on table t_productview 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_shoucang(
	id integer,
	productId int,
	customerId int,
	insertDate datetime
);
--收藏字段加注释
comment on column t_shoucang.id is '主键';
comment on column t_shoucang.productId is '产品';
comment on column t_shoucang.customerId is '用户';
comment on column t_shoucang.insertDate is '日期';
--收藏表加注释
comment on table t_shoucang is '收藏';

分类表创建语句如下:


create table t_types(
	id integer,
	typesName varchar(100)
);
--分类字段加注释
comment on column t_types.id is '主键';
comment on column t_types.typesName is '分类';
--分类表加注释
comment on table t_types 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_wdxx(
	id integer,
	customerId int,
	title varchar(100),
	pic varchar(100),
	content varchar(100),
	zan int,
	insertDate datetime,
	nologin varchar(100),
	bkId int
);
--我的消息字段加注释
comment on column t_wdxx.id is '主键';
comment on column t_wdxx.customerId is '我';
comment on column t_wdxx.title is '标题';
comment on column t_wdxx.pic is '图片';
comment on column t_wdxx.content is '内容';
comment on column t_wdxx.zan is '赞';
comment on column t_wdxx.insertDate is '发布日期';
comment on column t_wdxx.nologin is '游客是否可见';
comment on column t_wdxx.bkId is '';
--我的消息表加注释
comment on table t_wdxx is '我的消息';

无卡取现预约表创建语句如下:


create table t_yy(
	id integer,
	customerId int,
	accountName varchar(100),
	phone varchar(100),
	fee int,
	showDate varchar(100),
	status varchar(100)
);
--无卡取现预约字段加注释
comment on column t_yy.id is '主键';
comment on column t_yy.customerId is '用户';
comment on column t_yy.accountName is '账号';
comment on column t_yy.phone is '绑定手机号';
comment on column t_yy.fee is '预约金额';
comment on column t_yy.showDate is '取现日期';
comment on column t_yy.status is '状态';
--无卡取现预约表加注释
comment on table t_yy is '无卡取现预约';

作业表创建语句如下:


create table t_zuoye(
	id integer,
	customerId int,
	content varchar(100),
	fileUrl varchar(100),
	insertDate datetime,
	back varchar(100),
	pf int,
	status varchar(100)
);
--作业字段加注释
comment on column t_zuoye.id is '主键';
comment on column t_zuoye.customerId is '用户';
comment on column t_zuoye.content is '说明';
comment on column t_zuoye.fileUrl is '附件';
comment on column t_zuoye.insertDate is '日期';
comment on column t_zuoye.back is '回复';
comment on column t_zuoye.pf is '评分';
comment on column t_zuoye.status is '状态';
--作业表加注释
comment on table t_zuoye is '作业';

资讯表创建语句如下:


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

转账表创建语句如下:


create table t_zz(
	id integer,
	zzNum varchar(100),
	customerId int,
	accountName varchar(100),
	phone varchar(100),
	toaccountName varchar(100),
	fee int,
	insertDate datetime
);
--转账字段加注释
comment on column t_zz.id is '主键';
comment on column t_zz.zzNum is '转账编号';
comment on column t_zz.customerId is '用户';
comment on column t_zz.accountName is '账号';
comment on column t_zz.phone is '绑定手机号';
comment on column t_zz.toaccountName is '对方账号';
comment on column t_zz.fee is '转账金额';
comment on column t_zz.insertDate is '转账时间';
--转账表加注释
comment on table t_zz is '转账';

oracle特有,对应序列如下:


create sequence s_t_account;
create sequence s_t_address;
create sequence s_t_bk;
create sequence s_t_bq;
create sequence s_t_contact;
create sequence s_t_customer;
create sequence s_t_daikuan;
create sequence s_t_daikuanlist;
create sequence s_t_dzqb;
create sequence s_t_gjj;
create sequence s_t_gjjlist;
create sequence s_t_gjk;
create sequence s_t_jfdh;
create sequence s_t_kc;
create sequence s_t_lbt;
create sequence s_t_liuyan;
create sequence s_t_message;
create sequence s_t_order;
create sequence s_t_orderlist;
create sequence s_t_pinglun;
create sequence s_t_pinglun_product;
create sequence s_t_product;
create sequence s_t_productview;
create sequence s_t_shopcar;
create sequence s_t_shoucang;
create sequence s_t_types;
create sequence s_t_user;
create sequence s_t_wdxx;
create sequence s_t_yy;
create sequence s_t_zuoye;
create sequence s_t_zx;
create sequence s_t_zz;

手机银行appsqlserver数据库版本源码:

超级管理员表创建语句如下:


--超级管理员
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_account(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	accountName varchar(100),--账号
	phone varchar(100),--绑定手机号
	fee int,--金额
	zfed int,--额度
	status varchar(100),--状态
	iswkqx varchar(100)--是否可以无卡取现
);

地址表创建语句如下:


--地址表注释
create table t_address(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	phone varchar(100),--电话
	addressVal varchar(100),--地址
	addressName varchar(100),--姓名
	ismoren varchar(100),--是否默认
	province varchar(100),--
	city varchar(100),--
	area varchar(100)--
);

分类表创建语句如下:


--分类表注释
create table t_bk(
	id int identity(1,1) primary key not null,--主键
	bkName varchar(100)--分类名称
);

标签表创建语句如下:


--标签表注释
create table t_bq(
	id int identity(1,1) primary key not null,--主键
	bqName varchar(100)--标签
);

建议表创建语句如下:


--建议表注释
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),--密码
	customerName varchar(100),--姓名
	sex varchar(100),--性别
	address varchar(100),--地址
	phone varchar(100),--手机
	account int,--账户
	jf int,--积分
	dzqb int,--电子钱包
	gjj int--公积金
);

贷款表创建语句如下:


--贷款表注释
create table t_daikuan(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	fee int,--贷款金额
	dkll double,--贷款利率
	qs int,--期数
	insertDate datetime--贷款日期
);

贷款还款表创建语句如下:


--贷款还款表注释
create table t_daikuanlist(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	daikuanId int,--贷款
	fee int,--还款金额
	showDate varchar(100),--还款日期
	status varchar(100)--待还款
);

电子钱包表创建语句如下:


--电子钱包表注释
create table t_dzqb(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	accountName varchar(100),--账号
	phone varchar(100),--绑定手机号
	types varchar(100),--充值还是取现
	fee int,--金额
	insertDate datetime--日期
);

公积金表创建语句如下:


--公积金表注释
create table t_gjj(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	fee int--金额
);

公积金汇缴表创建语句如下:


--公积金汇缴表注释
create table t_gjjlist(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	fee int,--金额
	insertDate datetime--日期
);

公交卡充值表创建语句如下:


--公交卡充值表注释
create table t_gjk(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	accountName varchar(100),--账号
	phone varchar(100),--绑定手机号
	fee int,--充值金额
	kahao varchar(100),--充值卡号
	insertDate datetime--充值日期
);

积分兑换产品表创建语句如下:


--积分兑换产品表注释
create table t_jfdh(
	id int identity(1,1) primary key not null,--主键
	jfName varchar(100),--积分产品名称
	jfCost int,--积分数量
	jfPic varchar(100)--产品图片
);

库存表创建语句如下:


--库存表注释
create table t_kc(
	id int identity(1,1) primary key not null,--主键
	productId int,--产品
	kcNum int,--库存数量
	insertDate datetime--日期
);

轮播图表创建语句如下:


--轮播图表注释
create table t_lbt(
	id int identity(1,1) primary key not null,--主键
	pic varchar(100)--图片
);

留言表创建语句如下:


--留言表注释
create table t_liuyan(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	content varchar(100),--内容
	insertDate datetime,--日期
	back varchar(100),--回复
	status varchar(100)--状态
);

信息交流表创建语句如下:


--信息交流表注释
create table t_message(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	messageContent varchar(100),--内容
	types int,--
	insertDate datetime--时间
);

订单表创建语句如下:


--订单表注释
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,--日期
	userId int,--
	orderDate varchar(100),--
	address varchar(100),--
	xj varchar(100),--
	pic varchar(100),--
	content varchar(100),--
	plDate datetime,--
	plr varchar(100)--
);

订单详情表创建语句如下:


--订单详情表注释
create table t_orderlist(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	orderId int,--订单
	productId int,--菜品
	sl int,--
	productName varchar(100),--
	price int,--
	productPic1 varchar(100),--
	xj varchar(100),--
	content varchar(100),--
	plDate datetime,--
	pic varchar(100),--
	customerName 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_pinglun_product(
	id int identity(1,1) primary key not null,--主键
	productId int,--评论信息
	customerId int,--评论人
	content varchar(100),--评论内容
	insertDate datetime,--评论日期
	xj varchar(100),--星级
	pic varchar(100)--
);

产品表创建语句如下:


--产品表注释
create table t_product(
	id int identity(1,1) primary key not null,--主键
	productName varchar(100),--产品名称
	productPic1 varchar(100),--图片1
	productPic2 varchar(100),--图片2
	productPic3 varchar(100),--图片3
	productPic4 varchar(100),--图片4
	price int,--价格
	oldPrice int,--原价
	content varchar(100),--内容
	nums int,--数量
	tjxj varchar(100),--推荐星级
	status varchar(100),--状态
	typesId int,--分类
	jf int,--积分
	userId int,--商家
	bqId int--标签
);

浏览记录表创建语句如下:


--浏览记录表注释
create table t_productview(
	id int identity(1,1) primary key not null,--主键
	productId 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_shoucang(
	id int identity(1,1) primary key not null,--主键
	productId int,--产品
	customerId int,--用户
	insertDate datetime--日期
);

分类表创建语句如下:


--分类表注释
create table t_types(
	id int identity(1,1) primary key not null,--主键
	typesName varchar(100)--分类
);

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


--普通员工表注释
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_wdxx(
	id int identity(1,1) primary key not null,--主键
	customerId int,--我
	title varchar(100),--标题
	pic varchar(100),--图片
	content varchar(100),--内容
	zan int,--赞
	insertDate datetime,--发布日期
	nologin varchar(100),--游客是否可见
	bkId int--
);

无卡取现预约表创建语句如下:


--无卡取现预约表注释
create table t_yy(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	accountName varchar(100),--账号
	phone varchar(100),--绑定手机号
	fee int,--预约金额
	showDate varchar(100),--取现日期
	status varchar(100)--状态
);

作业表创建语句如下:


--作业表注释
create table t_zuoye(
	id int identity(1,1) primary key not null,--主键
	customerId int,--用户
	content varchar(100),--说明
	fileUrl varchar(100),--附件
	insertDate datetime,--日期
	back varchar(100),--回复
	pf int,--评分
	status varchar(100)--状态
);

资讯表创建语句如下:


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

转账表创建语句如下:


--转账表注释
create table t_zz(
	id int identity(1,1) primary key not null,--主键
	zzNum varchar(100),--转账编号
	customerId int,--用户
	accountName varchar(100),--账号
	phone varchar(100),--绑定手机号
	toaccountName varchar(100),--对方账号
	fee int,--转账金额
	insertDate datetime--转账时间
);

手机银行app登录后主页

手机银行appspring+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_account")
public class Account {
//主键
@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 accountName;
//绑定手机号
private String phone;
//金额
private Integer fee;
//额度
private Integer zfed;
//状态
private String status;
//是否可以无卡取现
private String iswkqx;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Integer getZfed() {return zfed;}
public void setZfed(Integer zfed) {this.zfed = zfed;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getIswkqx() {return iswkqx;}
public void setIswkqx(String iswkqx) {this.iswkqx = iswkqx;}
}

地址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_address")
public class Address {
//主键
@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 addressVal;
//姓名
private String addressName;
//是否默认
private String ismoren;
//
private String province;
//
private String city;
//
private String area;
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 getAddressVal() {return addressVal;}
public void setAddressVal(String addressVal) {this.addressVal = addressVal;}
public String getAddressName() {return addressName;}
public void setAddressName(String addressName) {this.addressName = addressName;}
public String getIsmoren() {return ismoren;}
public void setIsmoren(String ismoren) {this.ismoren = ismoren;}
public String getProvince() {return province;}
public void setProvince(String province) {this.province = province;}
public String getCity() {return city;}
public void setCity(String city) {this.city = city;}
public String getArea() {return area;}
public void setArea(String area) {this.area = area;}
}

分类javaBean创建语句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//分类
@Table(name = "t_bk")
public class Bk {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分类名称
private String bkName;
public String getBkName() {return bkName;}
public void setBkName(String bkName) {this.bkName = bkName;}
}

标签javaBean创建语句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//标签
@Table(name = "t_bq")
public class Bq {
//主键
@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 bqName;
public String getBqName() {return bqName;}
public void setBqName(String bqName) {this.bqName = bqName;}
}

建议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 customerName;
//性别
private String sex;
//地址
private String address;
//手机
private String phone;
//账户
private Integer account;
//积分
private Integer jf;
//电子钱包
private Integer dzqb;
//公积金
private Integer gjj;
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 getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
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 getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getAccount() {return account;}
public void setAccount(Integer account) {this.account = account;}
public Integer getJf() {return jf;}
public void setJf(Integer jf) {this.jf = jf;}
public Integer getDzqb() {return dzqb;}
public void setDzqb(Integer dzqb) {this.dzqb = dzqb;}
public Integer getGjj() {return gjj;}
public void setGjj(Integer gjj) {this.gjj = gjj;}
}

贷款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_daikuan")
public class Daikuan {
//主键
@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 fee;
//贷款利率
private Double dkll;
//期数
private Integer qs;
//贷款日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Double getDkll() {return dkll;}
public void setDkll(Double dkll) {this.dkll = dkll;}
public Integer getQs() {return qs;}
public void setQs(Integer qs) {this.qs = qs;}
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_daikuanlist")
public class Daikuanlist {
//主键
@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 daikuanId;
//还款金额
private Integer fee;
//还款日期
private String showDate;
//待还款
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getDaikuanId() {return daikuanId;}
public void setDaikuanId(Integer daikuanId) {this.daikuanId = daikuanId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
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_dzqb")
public class Dzqb {
//主键
@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 accountName;
//绑定手机号
private String phone;
//充值还是取现
private String types;
//金额
private Integer fee;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getTypes() {return types;}
public void setTypes(String types) {this.types = types;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
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_gjj")
public class Gjj {
//主键
@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 fee;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
}

公积金汇缴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_gjjlist")
public class Gjjlist {
//主键
@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 fee;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
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_gjk")
public class Gjk {
//主键
@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 accountName;
//绑定手机号
private String phone;
//充值金额
private Integer fee;
//充值卡号
private String kahao;
//充值日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getKahao() {return kahao;}
public void setKahao(String kahao) {this.kahao = kahao;}
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_jfdh")
public class Jfdh {
//主键
@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 jfName;
//积分数量
private Integer jfCost;
//产品图片
private String jfPic;
public String getJfName() {return jfName;}
public void setJfName(String jfName) {this.jfName = jfName;}
public Integer getJfCost() {return jfCost;}
public void setJfCost(Integer jfCost) {this.jfCost = jfCost;}
public String getJfPic() {return jfPic;}
public void setJfPic(String jfPic) {this.jfPic = jfPic;}
}

库存javaBean创建语句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//库存
@Table(name = "t_kc")
public class Kc {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//产品
private Integer productId;
//库存数量
private Integer kcNum;
//日期
private Date insertDate;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
public Integer getKcNum() {return kcNum;}
public void setKcNum(Integer kcNum) {this.kcNum = kcNum;}
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_lbt")
public class Lbt {
//主键
@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 pic;
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
}

留言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 String content;
//日期
private Date insertDate;
//回复
private String back;
//状态
private String status;
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;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
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_message")
public class Message {
//主键
@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 messageContent;
//
private Integer types;
//时间
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getMessageContent() {return messageContent;}
public void setMessageContent(String messageContent) {this.messageContent = messageContent;}
public Integer getTypes() {return types;}
public void setTypes(Integer types) {this.types = types;}
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_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;
//
private Integer userId;
//
private String orderDate;
//
private String address;
//
private String xj;
//
private String pic;
//
private String content;
//
private Date plDate;
//
private String plr;
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;}
public Integer getUserId() {return userId;}
public void setUserId(Integer userId) {this.userId = userId;}
public String getOrderDate() {return orderDate;}
public void setOrderDate(String orderDate) {this.orderDate = orderDate;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getXj() {return xj;}
public void setXj(String xj) {this.xj = xj;}
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 Date getPlDate() {return plDate;}
public void setPlDate(Date plDate) {this.plDate = plDate;}
public String getPlr() {return plr;}
public void setPlr(String plr) {this.plr = plr;}
}

订单详情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_orderlist")
public class Orderlist {
//主键
@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 orderId;
//菜品
private Integer productId;
//
private Integer sl;
//
private String productName;
//
private Integer price;
//
private String productPic1;
//
private String xj;
//
private String content;
//
private Date plDate;
//
private String pic;
//
private String customerName;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getOrderId() {return orderId;}
public void setOrderId(Integer orderId) {this.orderId = orderId;}
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
public Integer getSl() {return sl;}
public void setSl(Integer sl) {this.sl = sl;}
public String getProductName() {return productName;}
public void setProductName(String productName) {this.productName = productName;}
public Integer getPrice() {return price;}
public void setPrice(Integer price) {this.price = price;}
public String getProductPic1() {return productPic1;}
public void setProductPic1(String productPic1) {this.productPic1 = productPic1;}
public String getXj() {return xj;}
public void setXj(String xj) {this.xj = xj;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getPlDate() {return plDate;}
public void setPlDate(Date plDate) {this.plDate = plDate;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
}

评论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_pinglun_product")
public class Pinglun_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 Integer productId;
//评论人
private Integer customerId;
//评论内容
private String content;
//评论日期
private Date insertDate;
//星级
private String xj;
//
private String pic;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
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;}
public String getXj() {return xj;}
public void setXj(String xj) {this.xj = xj;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
}

产品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;
//图片1
private String productPic1;
//图片2
private String productPic2;
//图片3
private String productPic3;
//图片4
private String productPic4;
//价格
private Integer price;
//原价
private Integer oldPrice;
//内容
private String content;
//数量
private Integer nums;
//推荐星级
private String tjxj;
//状态
private String status;
//分类
private Integer typesId;
//积分
private Integer jf;
//商家
private Integer userId;
//标签
private Integer bqId;
public String getProductName() {return productName;}
public void setProductName(String productName) {this.productName = productName;}
public String getProductPic1() {return productPic1;}
public void setProductPic1(String productPic1) {this.productPic1 = productPic1;}
public String getProductPic2() {return productPic2;}
public void setProductPic2(String productPic2) {this.productPic2 = productPic2;}
public String getProductPic3() {return productPic3;}
public void setProductPic3(String productPic3) {this.productPic3 = productPic3;}
public String getProductPic4() {return productPic4;}
public void setProductPic4(String productPic4) {this.productPic4 = productPic4;}
public Integer getPrice() {return price;}
public void setPrice(Integer price) {this.price = price;}
public Integer getOldPrice() {return oldPrice;}
public void setOldPrice(Integer oldPrice) {this.oldPrice = oldPrice;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Integer getNums() {return nums;}
public void setNums(Integer nums) {this.nums = nums;}
public String getTjxj() {return tjxj;}
public void setTjxj(String tjxj) {this.tjxj = tjxj;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public Integer getTypesId() {return typesId;}
public void setTypesId(Integer typesId) {this.typesId = typesId;}
public Integer getJf() {return jf;}
public void setJf(Integer jf) {this.jf = jf;}
public Integer getUserId() {return userId;}
public void setUserId(Integer userId) {this.userId = userId;}
public Integer getBqId() {return bqId;}
public void setBqId(Integer bqId) {this.bqId = bqId;}
}

浏览记录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_productview")
public class Productview {
//主键
@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 customerId;
//日期
private Date insertDate;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
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_shoucang")
public class Shoucang {
//主键
@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 customerId;
//日期
private Date insertDate;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
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_types")
public class Types {
//主键
@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 typesName;
public String getTypesName() {return typesName;}
public void setTypesName(String typesName) {this.typesName = typesName;}
}

普通员工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_wdxx")
public class Wdxx {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//我
private Integer customerId;
//标题
private String title;
//图片
private String pic;
//内容
private String content;
//赞
private Integer zan;
//发布日期
private Date insertDate;
//游客是否可见
private String nologin;
//
private Integer bkId;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Integer getZan() {return zan;}
public void setZan(Integer zan) {this.zan = zan;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getNologin() {return nologin;}
public void setNologin(String nologin) {this.nologin = nologin;}
public Integer getBkId() {return bkId;}
public void setBkId(Integer bkId) {this.bkId = bkId;}
}

无卡取现预约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_yy")
public class Yy {
//主键
@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 accountName;
//绑定手机号
private String phone;
//预约金额
private Integer fee;
//取现日期
private String showDate;
//状态
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
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_zuoye")
public class Zuoye {
//主键
@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 content;
//附件
private String fileUrl;
//日期
private Date insertDate;
//回复
private String back;
//评分
private Integer pf;
//状态
private String status;
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 String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
public Integer getPf() {return pf;}
public void setPf(Integer pf) {this.pf = pf;}
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_zx")
public class Zx {
//主键
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//内容
private String content;
//图片
private String pic;
//
private String showDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

转账javaBean创建语句如下:


package project.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import java.util.Date;
@Entity

//转账
@Table(name = "t_zz")
public class Zz {
//主键
@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 zzNum;
//用户
private Integer customerId;
//账号
private String accountName;
//绑定手机号
private String phone;
//对方账号
private String toaccountName;
//转账金额
private Integer fee;
//转账时间
private Date insertDate;
public String getZzNum() {return zzNum;}
public void setZzNum(String zzNum) {this.zzNum = zzNum;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getToaccountName() {return toaccountName;}
public void setToaccountName(String toaccountName) {this.toaccountName = toaccountName;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

手机银行appspring+springMVC+mybatis框架对象(javaBean,pojo)设计:

账户javaBean创建语句如下:


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

//账户
public class Account  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//账号
private String accountName;
//绑定手机号
private String phone;
//金额
private Integer fee;
//额度
private Integer zfed;
//状态
private String status;
//是否可以无卡取现
private String iswkqx;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Integer getZfed() {return zfed;}
public void setZfed(Integer zfed) {this.zfed = zfed;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getIswkqx() {return iswkqx;}
public void setIswkqx(String iswkqx) {this.iswkqx = iswkqx;}
}

地址javaBean创建语句如下:


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

//地址
public class Address  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 addressVal;
//姓名
private String addressName;
//是否默认
private String ismoren;
//
private String province;
//
private String city;
//
private String area;
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 getAddressVal() {return addressVal;}
public void setAddressVal(String addressVal) {this.addressVal = addressVal;}
public String getAddressName() {return addressName;}
public void setAddressName(String addressName) {this.addressName = addressName;}
public String getIsmoren() {return ismoren;}
public void setIsmoren(String ismoren) {this.ismoren = ismoren;}
public String getProvince() {return province;}
public void setProvince(String province) {this.province = province;}
public String getCity() {return city;}
public void setCity(String city) {this.city = city;}
public String getArea() {return area;}
public void setArea(String area) {this.area = area;}
}

分类javaBean创建语句如下:


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

//分类
public class Bk  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分类名称
private String bkName;
public String getBkName() {return bkName;}
public void setBkName(String bkName) {this.bkName = bkName;}
}

标签javaBean创建语句如下:


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

//标签
public class Bq  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标签
private String bqName;
public String getBqName() {return bqName;}
public void setBqName(String bqName) {this.bqName = bqName;}
}

建议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 customerName;
//性别
private String sex;
//地址
private String address;
//手机
private String phone;
//账户
private Integer account;
//积分
private Integer jf;
//电子钱包
private Integer dzqb;
//公积金
private Integer gjj;
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 getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
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 getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getAccount() {return account;}
public void setAccount(Integer account) {this.account = account;}
public Integer getJf() {return jf;}
public void setJf(Integer jf) {this.jf = jf;}
public Integer getDzqb() {return dzqb;}
public void setDzqb(Integer dzqb) {this.dzqb = dzqb;}
public Integer getGjj() {return gjj;}
public void setGjj(Integer gjj) {this.gjj = gjj;}
}

贷款javaBean创建语句如下:


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

//贷款
public class Daikuan  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//贷款金额
private Integer fee;
//贷款利率
private Double dkll;
//期数
private Integer qs;
//贷款日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Double getDkll() {return dkll;}
public void setDkll(Double dkll) {this.dkll = dkll;}
public Integer getQs() {return qs;}
public void setQs(Integer qs) {this.qs = qs;}
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 Daikuanlist  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//贷款
private Integer daikuanId;
//还款金额
private Integer fee;
//还款日期
private String showDate;
//待还款
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getDaikuanId() {return daikuanId;}
public void setDaikuanId(Integer daikuanId) {this.daikuanId = daikuanId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
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 Dzqb  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//账号
private String accountName;
//绑定手机号
private String phone;
//充值还是取现
private String types;
//金额
private Integer fee;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getTypes() {return types;}
public void setTypes(String types) {this.types = types;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
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 Gjj  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//金额
private Integer fee;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
}

公积金汇缴javaBean创建语句如下:


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

//公积金汇缴
public class Gjjlist  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//金额
private Integer fee;
//日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
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 Gjk  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//账号
private String accountName;
//绑定手机号
private String phone;
//充值金额
private Integer fee;
//充值卡号
private String kahao;
//充值日期
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getKahao() {return kahao;}
public void setKahao(String kahao) {this.kahao = kahao;}
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 Jfdh  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//积分产品名称
private String jfName;
//积分数量
private Integer jfCost;
//产品图片
private String jfPic;
public String getJfName() {return jfName;}
public void setJfName(String jfName) {this.jfName = jfName;}
public Integer getJfCost() {return jfCost;}
public void setJfCost(Integer jfCost) {this.jfCost = jfCost;}
public String getJfPic() {return jfPic;}
public void setJfPic(String jfPic) {this.jfPic = jfPic;}
}

库存javaBean创建语句如下:


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

//库存
public class Kc  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//产品
private Integer productId;
//库存数量
private Integer kcNum;
//日期
private Date insertDate;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
public Integer getKcNum() {return kcNum;}
public void setKcNum(Integer kcNum) {this.kcNum = kcNum;}
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 Lbt  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//图片
private String pic;
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
}

留言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 String content;
//日期
private Date insertDate;
//回复
private String back;
//状态
private String status;
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;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
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 Message  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//内容
private String messageContent;
//
private Integer types;
//时间
private Date insertDate;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getMessageContent() {return messageContent;}
public void setMessageContent(String messageContent) {this.messageContent = messageContent;}
public Integer getTypes() {return types;}
public void setTypes(Integer types) {this.types = types;}
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 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;
//
private Integer userId;
//
private String orderDate;
//
private String address;
//
private String xj;
//
private String pic;
//
private String content;
//
private Date plDate;
//
private String plr;
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;}
public Integer getUserId() {return userId;}
public void setUserId(Integer userId) {this.userId = userId;}
public String getOrderDate() {return orderDate;}
public void setOrderDate(String orderDate) {this.orderDate = orderDate;}
public String getAddress() {return address;}
public void setAddress(String address) {this.address = address;}
public String getXj() {return xj;}
public void setXj(String xj) {this.xj = xj;}
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 Date getPlDate() {return plDate;}
public void setPlDate(Date plDate) {this.plDate = plDate;}
public String getPlr() {return plr;}
public void setPlr(String plr) {this.plr = plr;}
}

订单详情javaBean创建语句如下:


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

//订单详情
public class Orderlist  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//订单
private Integer orderId;
//菜品
private Integer productId;
//
private Integer sl;
//
private String productName;
//
private Integer price;
//
private String productPic1;
//
private String xj;
//
private String content;
//
private Date plDate;
//
private String pic;
//
private String customerName;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public Integer getOrderId() {return orderId;}
public void setOrderId(Integer orderId) {this.orderId = orderId;}
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
public Integer getSl() {return sl;}
public void setSl(Integer sl) {this.sl = sl;}
public String getProductName() {return productName;}
public void setProductName(String productName) {this.productName = productName;}
public Integer getPrice() {return price;}
public void setPrice(Integer price) {this.price = price;}
public String getProductPic1() {return productPic1;}
public void setProductPic1(String productPic1) {this.productPic1 = productPic1;}
public String getXj() {return xj;}
public void setXj(String xj) {this.xj = xj;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getPlDate() {return plDate;}
public void setPlDate(Date plDate) {this.plDate = plDate;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getCustomerName() {return customerName;}
public void setCustomerName(String customerName) {this.customerName = customerName;}
}

评论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 Pinglun_product  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//评论信息
private Integer productId;
//评论人
private Integer customerId;
//评论内容
private String content;
//评论日期
private Date insertDate;
//星级
private String xj;
//
private String pic;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
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;}
public String getXj() {return xj;}
public void setXj(String xj) {this.xj = xj;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
}

产品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;
//图片1
private String productPic1;
//图片2
private String productPic2;
//图片3
private String productPic3;
//图片4
private String productPic4;
//价格
private Integer price;
//原价
private Integer oldPrice;
//内容
private String content;
//数量
private Integer nums;
//推荐星级
private String tjxj;
//状态
private String status;
//分类
private Integer typesId;
//积分
private Integer jf;
//商家
private Integer userId;
//标签
private Integer bqId;
public String getProductName() {return productName;}
public void setProductName(String productName) {this.productName = productName;}
public String getProductPic1() {return productPic1;}
public void setProductPic1(String productPic1) {this.productPic1 = productPic1;}
public String getProductPic2() {return productPic2;}
public void setProductPic2(String productPic2) {this.productPic2 = productPic2;}
public String getProductPic3() {return productPic3;}
public void setProductPic3(String productPic3) {this.productPic3 = productPic3;}
public String getProductPic4() {return productPic4;}
public void setProductPic4(String productPic4) {this.productPic4 = productPic4;}
public Integer getPrice() {return price;}
public void setPrice(Integer price) {this.price = price;}
public Integer getOldPrice() {return oldPrice;}
public void setOldPrice(Integer oldPrice) {this.oldPrice = oldPrice;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Integer getNums() {return nums;}
public void setNums(Integer nums) {this.nums = nums;}
public String getTjxj() {return tjxj;}
public void setTjxj(String tjxj) {this.tjxj = tjxj;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public Integer getTypesId() {return typesId;}
public void setTypesId(Integer typesId) {this.typesId = typesId;}
public Integer getJf() {return jf;}
public void setJf(Integer jf) {this.jf = jf;}
public Integer getUserId() {return userId;}
public void setUserId(Integer userId) {this.userId = userId;}
public Integer getBqId() {return bqId;}
public void setBqId(Integer bqId) {this.bqId = bqId;}
}

浏览记录javaBean创建语句如下:


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

//浏览记录
public class Productview  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//产品
private Integer productId;
//用户
private Integer customerId;
//日期
private Date insertDate;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
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 Shoucang  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//产品
private Integer productId;
//用户
private Integer customerId;
//日期
private Date insertDate;
public Integer getProductId() {return productId;}
public void setProductId(Integer productId) {this.productId = productId;}
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 Types  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//分类
private String typesName;
public String getTypesName() {return typesName;}
public void setTypesName(String typesName) {this.typesName = typesName;}
}

普通员工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 Wdxx  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//我
private Integer customerId;
//标题
private String title;
//图片
private String pic;
//内容
private String content;
//赞
private Integer zan;
//发布日期
private Date insertDate;
//游客是否可见
private String nologin;
//
private Integer bkId;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Integer getZan() {return zan;}
public void setZan(Integer zan) {this.zan = zan;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getNologin() {return nologin;}
public void setNologin(String nologin) {this.nologin = nologin;}
public Integer getBkId() {return bkId;}
public void setBkId(Integer bkId) {this.bkId = bkId;}
}

无卡取现预约javaBean创建语句如下:


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

//无卡取现预约
public class Yy  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//账号
private String accountName;
//绑定手机号
private String phone;
//预约金额
private Integer fee;
//取现日期
private String showDate;
//状态
private String status;
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
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 Zuoye  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//用户
private Integer customerId;
//说明
private String content;
//附件
private String fileUrl;
//日期
private Date insertDate;
//回复
private String back;
//评分
private Integer pf;
//状态
private String status;
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 String getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
public String getBack() {return back;}
public void setBack(String back) {this.back = back;}
public Integer getPf() {return pf;}
public void setPf(Integer pf) {this.pf = pf;}
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 Zx  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//标题
private String title;
//内容
private String content;
//图片
private String pic;
//
private String showDate;
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getShowDate() {return showDate;}
public void setShowDate(String showDate) {this.showDate = showDate;}
}

转账javaBean创建语句如下:


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

//转账
public class Zz  extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//转账编号
private String zzNum;
//用户
private Integer customerId;
//账号
private String accountName;
//绑定手机号
private String phone;
//对方账号
private String toaccountName;
//转账金额
private Integer fee;
//转账时间
private Date insertDate;
public String getZzNum() {return zzNum;}
public void setZzNum(String zzNum) {this.zzNum = zzNum;}
public Integer getCustomerId() {return customerId;}
public void setCustomerId(Integer customerId) {this.customerId = customerId;}
public String getAccountName() {return accountName;}
public void setAccountName(String accountName) {this.accountName = accountName;}
public String getPhone() {return phone;}
public void setPhone(String phone) {this.phone = phone;}
public String getToaccountName() {return toaccountName;}
public void setToaccountName(String toaccountName) {this.toaccountName = toaccountName;}
public Integer getFee() {return fee;}
public void setFee(Integer fee) {this.fee = fee;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}

相关毕业设计源码

党建APP民主生活

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

基于Android的传统文化App的设计与实现

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

淮安大媒婆征婚交友APP

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

基于HTML5的票圈vlog分享APP的设计与实现

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

基于Android的教官团App的设计与实现

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

银行大客户关系维护系统(xaa34)_mysql_oracle代码分享

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

基于安卓的校园商城app的设计与实现

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

校园活动APP的设计与实现

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

在线民宿预订APP的设计与开发

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

炒股咨询app

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

高校学生会APP _部分源代码分享

学生会简介,规章制度简介,职能简介,学生会成员通讯录,部门列表,部门简介,部门职责介绍及部门成员列表,日历,日程事务编辑个人资料编辑。

基于Android的一周穿搭APP的设计与实现

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

评论