基于JSP和MySQL的篮球馆管理系统
发布时间
阅读量:
阅读量














#############mysql数据库创建语句###################
create table t_admin(
id int primary key auto_increment comment '主键',
username varchar(100) comment '超级管理员账号',
password varchar(100) comment '超级管理员密码'
) comment '超级管理员';
insert into t_admin(username,password) values('admin','123456');
create table t_cggly(
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 '手机',
status varchar(100) comment '',
jf varchar(100) comment ''
) comment '收银员';
create table t_changguan(
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(11) comment '',
oldPrice int(11) comment '',
content text comment '内容',
nums int(11) comment '数量',
tjxj varchar(50) comment '',
status varchar(50) comment '状态',
typesId int(11) comment '分类',
jf int(11) comment '',
userId int(11) comment '商家',
bqId int(11) comment '标签',
djl int(11) comment '点击量'
) comment '场馆';
create table t_changguanclick(
id int primary key auto_increment comment '主键',
productId int(11) comment '场馆',
customerId int(11) comment '用户',
insertDate datetime comment '日期'
) comment '场馆点击';
create table t_contact(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
phone varchar(100) comment '联系方式',
content text 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(11) comment '账户',
jf int(11) comment '积分',
headPic varchar(50) comment '头像',
status varchar(50) comment ''
) comment '用户';
create table t_lbt(
id int primary key auto_increment comment '主键',
pic varchar(100) comment '图片',
url varchar(1000) comment ''
) comment '轮播图';
create table t_plchangguan(
id int primary key auto_increment comment '主键',
productId int(11) comment '评论信息',
customerId int(11) comment '评论人',
content text comment '评论内容',
insertDate datetime comment '评论日期'
) comment '评论';
create table t_sc(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
productId int(11) comment '产品',
insertDate datetime comment '日期'
) comment '收藏';
create table t_temp1(
id int primary key auto_increment comment '主键',
title varchar(100) comment '备用表1标题',
pic varchar(100) comment '备用表1图片',
fileUrl varchar(100) comment '备用表1附件',
content text comment '备用表1内容',
insertDate datetime comment '入库时间',
v1 varchar(100) comment '备用表1v1',
v2 varchar(100) comment '备用表1v2',
v3 varchar(100) comment '备用表1v3',
v4 varchar(100) comment '备用表1v4',
v5 varchar(100) comment '备用表1v5',
status varchar(100) comment '状态'
) comment '教练管理';
create table t_temp2(
id int primary key auto_increment comment '主键',
title varchar(100) comment '备用表2标题',
pic varchar(100) comment '备用表2图片',
fileUrl varchar(100) comment '备用表2附件',
content text comment '备用表2内容',
insertDate datetime comment '入库时间',
v1 varchar(100) comment '备用表2v1',
v2 varchar(100) comment '备用表2v2',
v3 varchar(100) comment '备用表2v3',
v4 varchar(100) comment '备用表2v4',
v5 varchar(100) comment '备用表2v5',
status varchar(100) comment '状态'
) comment '篮球器材管理';
create table t_types(
id int primary key auto_increment comment '主键',
typesName varchar(1000) comment '分类'
) comment '分类';
create table t_xiaoxi(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
title varchar(100) comment '标题',
content text comment '内容',
insertDate datetime comment '日期'
) comment '消息';
create table t_yuding(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
status varchar(100) comment '状态',
orderNum varchar(100) comment '订单编号',
pl text comment '备注信息',
insertDate datetime comment '日期',
userId int(11) comment '',
orderDate varchar(50) comment '',
productId int(11) comment '',
zw varchar(50) comment '',
showDate datetime comment '',
sjd varchar(50) comment '时间段',
endTime datetime comment ''
) comment '预定订单';
create table t_zw(
id int primary key auto_increment comment '主键',
zwName varchar(100) comment '座位编号'
) comment '座位';
create table t_zx(
id int primary key auto_increment comment '主键',
title varchar(100) comment '标题',
content longtext comment '内容',
pic varchar(100) comment '图片'
) comment '资讯';
#############oracle数据库创建语句###################
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_cggly(
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 '手机',
status varchar(100) comment '',
jf varchar(100) comment ''
) comment '收银员';
create table t_changguan(
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(11) comment '',
oldPrice int(11) comment '',
content text comment '内容',
nums int(11) comment '数量',
tjxj varchar(50) comment '',
status varchar(50) comment '状态',
typesId int(11) comment '分类',
jf int(11) comment '',
userId int(11) comment '商家',
bqId int(11) comment '标签',
djl int(11) comment '点击量'
) comment '场馆';
create table t_changguanclick(
id int primary key auto_increment comment '主键',
productId int(11) comment '场馆',
customerId int(11) comment '用户',
insertDate datetime comment '日期'
) comment '场馆点击';
create table t_contact(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
phone varchar(100) comment '联系方式',
content text 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(11) comment '账户',
jf int(11) comment '积分',
headPic varchar(50) comment '头像',
status varchar(50) comment ''
) comment '用户';
create table t_lbt(
id int primary key auto_increment comment '主键',
pic varchar(100) comment '图片',
url varchar(1000) comment ''
) comment '轮播图';
create table t_plchangguan(
id int primary key auto_increment comment '主键',
productId int(11) comment '评论信息',
customerId int(11) comment '评论人',
content text comment '评论内容',
insertDate datetime comment '评论日期'
) comment '评论';
create table t_sc(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
productId int(11) comment '产品',
insertDate datetime comment '日期'
) comment '收藏';
create table t_temp1(
id int primary key auto_increment comment '主键',
title varchar(100) comment '备用表1标题',
pic varchar(100) comment '备用表1图片',
fileUrl varchar(100) comment '备用表1附件',
content text comment '备用表1内容',
insertDate datetime comment '入库时间',
v1 varchar(100) comment '备用表1v1',
v2 varchar(100) comment '备用表1v2',
v3 varchar(100) comment '备用表1v3',
v4 varchar(100) comment '备用表1v4',
v5 varchar(100) comment '备用表1v5',
status varchar(100) comment '状态'
) comment '教练管理';
create table t_temp2(
id int primary key auto_increment comment '主键',
title varchar(100) comment '备用表2标题',
pic varchar(100) comment '备用表2图片',
fileUrl varchar(100) comment '备用表2附件',
content text comment '备用表2内容',
insertDate datetime comment '入库时间',
v1 varchar(100) comment '备用表2v1',
v2 varchar(100) comment '备用表2v2',
v3 varchar(100) comment '备用表2v3',
v4 varchar(100) comment '备用表2v4',
v5 varchar(100) comment '备用表2v5',
status varchar(100) comment '状态'
) comment '篮球器材管理';
create table t_types(
id int primary key auto_increment comment '主键',
typesName varchar(1000) comment '分类'
) comment '分类';
create table t_xiaoxi(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
title varchar(100) comment '标题',
content text comment '内容',
insertDate datetime comment '日期'
) comment '消息';
create table t_yuding(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
status varchar(100) comment '状态',
orderNum varchar(100) comment '订单编号',
pl text comment '备注信息',
insertDate datetime comment '日期',
userId int(11) comment '',
orderDate varchar(50) comment '',
productId int(11) comment '',
zw varchar(50) comment '',
showDate datetime comment '',
sjd varchar(50) comment '时间段',
endTime datetime comment ''
) comment '预定订单';
create table t_zw(
id int primary key auto_increment comment '主键',
zwName varchar(100) comment '座位编号'
) comment '座位';
create table t_zx(
id int primary key auto_increment comment '主键',
title varchar(100) comment '标题',
content longtext comment '内容',
pic varchar(100) comment '图片'
) comment '资讯';
create table t_cggly(
id integer,
username varchar(100),
password varchar(100),
name varchar(100),
gh varchar(100),
mobile varchar(100),
status varchar(100),
jf varchar(100)
);
--收银员字段加注释
comment on column t_cggly.id is '主键';
comment on column t_cggly.id is '主键唯一ID';
comment on column t_cggly.username is '账号';
comment on column t_cggly.password is '密码';
comment on column t_cggly.name is '场馆名称';
comment on column t_cggly.gh is '工号';
comment on column t_cggly.mobile is '手机';
comment on column t_cggly.status is '';
comment on column t_cggly.jf is '';
--收银员表加注释
comment on table t_cggly is '收银员';
create table t_changguan(
id integer,
productName varchar(100),
productPic1 varchar(100),
productPic2 varchar(100),
productPic3 varchar(100),
productPic4 varchar(100),
price int(11),
oldPrice int(11),
content text,
nums int(11),
tjxj varchar(50),
status varchar(50),
typesId int(11),
jf int(11),
userId int(11),
bqId int(11),
djl int(11)
);
--场馆字段加注释
comment on column t_changguan.id is '主键';
comment on column t_changguan.id is '主键唯一ID';
comment on column t_changguan.productName is '名称';
comment on column t_changguan.productPic1 is '图片1';
comment on column t_changguan.productPic2 is '图片2';
comment on column t_changguan.productPic3 is '图片3';
comment on column t_changguan.productPic4 is '图片4';
comment on column t_changguan.price is '';
comment on column t_changguan.oldPrice is '';
comment on column t_changguan.content is '内容';
comment on column t_changguan.nums is '数量';
comment on column t_changguan.tjxj is '';
comment on column t_changguan.status is '状态';
comment on column t_changguan.typesId is '分类';
comment on column t_changguan.jf is '';
comment on column t_changguan.userId is '商家';
comment on column t_changguan.bqId is '标签';
comment on column t_changguan.djl is '点击量';
--场馆表加注释
comment on table t_changguan is '场馆';
create table t_changguanclick(
id integer,
productId int(11),
customerId int(11),
insertDate datetime
);
--场馆点击字段加注释
comment on column t_changguanclick.id is '主键';
comment on column t_changguanclick.id is '主键唯一ID';
comment on column t_changguanclick.productId is '场馆';
comment on column t_changguanclick.customerId is '用户';
comment on column t_changguanclick.insertDate is '日期';
--场馆点击表加注释
comment on table t_changguanclick is '场馆点击';
create table t_contact(
id integer,
customerId int(11),
phone varchar(100),
content text,
insertDate datetime
);
--建议字段加注释
comment on column t_contact.id is '主键';
comment on column t_contact.id is '主键唯一ID';
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(11),
jf int(11),
headPic varchar(50),
status varchar(50)
);
--用户字段加注释
comment on column t_customer.id is '主键';
comment on column t_customer.id is '主键唯一ID';
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.headPic is '头像';
comment on column t_customer.status is '';
--用户表加注释
comment on table t_customer is '用户';
create table t_lbt(
id integer,
pic varchar(100),
url varchar(1000)
);
--轮播图字段加注释
comment on column t_lbt.id is '主键';
comment on column t_lbt.id is '主键唯一ID';
comment on column t_lbt.pic is '图片';
comment on column t_lbt.url is '';
--轮播图表加注释
comment on table t_lbt is '轮播图';
create table t_plchangguan(
id integer,
productId int(11),
customerId int(11),
content text,
insertDate datetime
);
--评论字段加注释
comment on column t_plchangguan.id is '主键';
comment on column t_plchangguan.id is '主键唯一ID';
comment on column t_plchangguan.productId is '评论信息';
comment on column t_plchangguan.customerId is '评论人';
comment on column t_plchangguan.content is '评论内容';
comment on column t_plchangguan.insertDate is '评论日期';
--评论表加注释
comment on table t_plchangguan is '评论';
create table t_sc(
id integer,
customerId int(11),
productId int(11),
insertDate datetime
);
--收藏字段加注释
comment on column t_sc.id is '主键';
comment on column t_sc.id is '主键唯一ID';
comment on column t_sc.customerId is '用户';
comment on column t_sc.productId is '产品';
comment on column t_sc.insertDate is '日期';
--收藏表加注释
comment on table t_sc is '收藏';
create table t_temp1(
id integer,
title varchar(100),
pic varchar(100),
fileUrl varchar(100),
content text,
insertDate datetime,
v1 varchar(100),
v2 varchar(100),
v3 varchar(100),
v4 varchar(100),
v5 varchar(100),
status varchar(100)
);
--教练管理字段加注释
comment on column t_temp1.id is '主键';
comment on column t_temp1.id is '主键唯一ID';
comment on column t_temp1.title is '备用表1标题';
comment on column t_temp1.pic is '备用表1图片';
comment on column t_temp1.fileUrl is '备用表1附件';
comment on column t_temp1.content is '备用表1内容';
comment on column t_temp1.insertDate is '入库时间';
comment on column t_temp1.v1 is '备用表1v1';
comment on column t_temp1.v2 is '备用表1v2';
comment on column t_temp1.v3 is '备用表1v3';
comment on column t_temp1.v4 is '备用表1v4';
comment on column t_temp1.v5 is '备用表1v5';
comment on column t_temp1.status is '状态';
--教练管理表加注释
comment on table t_temp1 is '教练管理';
create table t_temp2(
id integer,
title varchar(100),
pic varchar(100),
fileUrl varchar(100),
content text,
insertDate datetime,
v1 varchar(100),
v2 varchar(100),
v3 varchar(100),
v4 varchar(100),
v5 varchar(100),
status varchar(100)
);
--篮球器材管理字段加注释
comment on column t_temp2.id is '主键';
comment on column t_temp2.id is '主键唯一ID';
comment on column t_temp2.title is '备用表2标题';
comment on column t_temp2.pic is '备用表2图片';
comment on column t_temp2.fileUrl is '备用表2附件';
comment on column t_temp2.content is '备用表2内容';
comment on column t_temp2.insertDate is '入库时间';
comment on column t_temp2.v1 is '备用表2v1';
comment on column t_temp2.v2 is '备用表2v2';
comment on column t_temp2.v3 is '备用表2v3';
comment on column t_temp2.v4 is '备用表2v4';
comment on column t_temp2.v5 is '备用表2v5';
comment on column t_temp2.status is '状态';
--篮球器材管理表加注释
comment on table t_temp2 is '篮球器材管理';
create table t_types(
id integer,
typesName varchar(1000)
);
--分类字段加注释
comment on column t_types.id is '主键';
comment on column t_types.id is '主键唯一ID';
comment on column t_types.typesName is '分类';
--分类表加注释
comment on table t_types is '分类';
create table t_xiaoxi(
id integer,
customerId int(11),
title varchar(100),
content text,
insertDate datetime
);
--消息字段加注释
comment on column t_xiaoxi.id is '主键';
comment on column t_xiaoxi.id is '主键唯一ID';
comment on column t_xiaoxi.customerId is '用户';
comment on column t_xiaoxi.title is '标题';
comment on column t_xiaoxi.content is '内容';
comment on column t_xiaoxi.insertDate is '日期';
--消息表加注释
comment on table t_xiaoxi is '消息';
create table t_yuding(
id integer,
customerId int(11),
status varchar(100),
orderNum varchar(100),
pl text,
insertDate datetime,
userId int(11),
orderDate varchar(50),
productId int(11),
zw varchar(50),
showDate datetime,
sjd varchar(50),
endTime datetime
);
--预定订单字段加注释
comment on column t_yuding.id is '主键';
comment on column t_yuding.id is '主键唯一ID';
comment on column t_yuding.customerId is '用户';
comment on column t_yuding.status is '状态';
comment on column t_yuding.orderNum is '订单编号';
comment on column t_yuding.pl is '备注信息';
comment on column t_yuding.insertDate is '日期';
comment on column t_yuding.userId is '';
comment on column t_yuding.orderDate is '';
comment on column t_yuding.productId is '';
comment on column t_yuding.zw is '';
comment on column t_yuding.showDate is '';
comment on column t_yuding.sjd is '时间段';
comment on column t_yuding.endTime is '';
--预定订单表加注释
comment on table t_yuding is '预定订单';
create table t_zw(
id integer,
zwName varchar(100)
);
--座位字段加注释
comment on column t_zw.id is '主键';
comment on column t_zw.id is '主键唯一ID';
comment on column t_zw.zwName is '座位编号';
--座位表加注释
comment on table t_zw is '座位';
create table t_zx(
id integer,
title varchar(100),
content longtext,
pic varchar(100)
);
--资讯字段加注释
comment on column t_zx.id is '主键';
comment on column t_zx.id is '主键唯一ID';
comment on column t_zx.title is '标题';
comment on column t_zx.content is '内容';
comment on column t_zx.pic is '图片';
--资讯表加注释
comment on table t_zx is '资讯';
#############sqlserver数据库创建语句###################
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_cggly(
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 '手机',
status varchar(100) comment '',
jf varchar(100) comment ''
) comment '收银员';
create table t_changguan(
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(11) comment '',
oldPrice int(11) comment '',
content text comment '内容',
nums int(11) comment '数量',
tjxj varchar(50) comment '',
status varchar(50) comment '状态',
typesId int(11) comment '分类',
jf int(11) comment '',
userId int(11) comment '商家',
bqId int(11) comment '标签',
djl int(11) comment '点击量'
) comment '场馆';
create table t_changguanclick(
id int primary key auto_increment comment '主键',
productId int(11) comment '场馆',
customerId int(11) comment '用户',
insertDate datetime comment '日期'
) comment '场馆点击';
create table t_contact(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
phone varchar(100) comment '联系方式',
content text 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(11) comment '账户',
jf int(11) comment '积分',
headPic varchar(50) comment '头像',
status varchar(50) comment ''
) comment '用户';
create table t_lbt(
id int primary key auto_increment comment '主键',
pic varchar(100) comment '图片',
url varchar(1000) comment ''
) comment '轮播图';
create table t_plchangguan(
id int primary key auto_increment comment '主键',
productId int(11) comment '评论信息',
customerId int(11) comment '评论人',
content text comment '评论内容',
insertDate datetime comment '评论日期'
) comment '评论';
create table t_sc(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
productId int(11) comment '产品',
insertDate datetime comment '日期'
) comment '收藏';
create table t_temp1(
id int primary key auto_increment comment '主键',
title varchar(100) comment '备用表1标题',
pic varchar(100) comment '备用表1图片',
fileUrl varchar(100) comment '备用表1附件',
content text comment '备用表1内容',
insertDate datetime comment '入库时间',
v1 varchar(100) comment '备用表1v1',
v2 varchar(100) comment '备用表1v2',
v3 varchar(100) comment '备用表1v3',
v4 varchar(100) comment '备用表1v4',
v5 varchar(100) comment '备用表1v5',
status varchar(100) comment '状态'
) comment '教练管理';
create table t_temp2(
id int primary key auto_increment comment '主键',
title varchar(100) comment '备用表2标题',
pic varchar(100) comment '备用表2图片',
fileUrl varchar(100) comment '备用表2附件',
content text comment '备用表2内容',
insertDate datetime comment '入库时间',
v1 varchar(100) comment '备用表2v1',
v2 varchar(100) comment '备用表2v2',
v3 varchar(100) comment '备用表2v3',
v4 varchar(100) comment '备用表2v4',
v5 varchar(100) comment '备用表2v5',
status varchar(100) comment '状态'
) comment '篮球器材管理';
create table t_types(
id int primary key auto_increment comment '主键',
typesName varchar(1000) comment '分类'
) comment '分类';
create table t_xiaoxi(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
title varchar(100) comment '标题',
content text comment '内容',
insertDate datetime comment '日期'
) comment '消息';
create table t_yuding(
id int primary key auto_increment comment '主键',
customerId int(11) comment '用户',
status varchar(100) comment '状态',
orderNum varchar(100) comment '订单编号',
pl text comment '备注信息',
insertDate datetime comment '日期',
userId int(11) comment '',
orderDate varchar(50) comment '',
productId int(11) comment '',
zw varchar(50) comment '',
showDate datetime comment '',
sjd varchar(50) comment '时间段',
endTime datetime comment ''
) comment '预定订单';
create table t_zw(
id int primary key auto_increment comment '主键',
zwName varchar(100) comment '座位编号'
) comment '座位';
create table t_zx(
id int primary key auto_increment comment '主键',
title varchar(100) comment '标题',
content longtext comment '内容',
pic varchar(100) comment '图片'
) comment '资讯';
create table t_cggly(
id integer,
username varchar(100),
password varchar(100),
name varchar(100),
gh varchar(100),
mobile varchar(100),
status varchar(100),
jf varchar(100)
);
--收银员字段加注释
comment on column t_cggly.id is '主键';
comment on column t_cggly.id is '主键唯一ID';
comment on column t_cggly.username is '账号';
comment on column t_cggly.password is '密码';
comment on column t_cggly.name is '场馆名称';
comment on column t_cggly.gh is '工号';
comment on column t_cggly.mobile is '手机';
comment on column t_cggly.status is '';
comment on column t_cggly.jf is '';
--收银员表加注释
comment on table t_cggly is '收银员';
create table t_changguan(
id integer,
productName varchar(100),
productPic1 varchar(100),
productPic2 varchar(100),
productPic3 varchar(100),
productPic4 varchar(100),
price int(11),
oldPrice int(11),
content text,
nums int(11),
tjxj varchar(50),
status varchar(50),
typesId int(11),
jf int(11),
userId int(11),
bqId int(11),
djl int(11)
);
--场馆字段加注释
comment on column t_changguan.id is '主键';
comment on column t_changguan.id is '主键唯一ID';
comment on column t_changguan.productName is '名称';
comment on column t_changguan.productPic1 is '图片1';
comment on column t_changguan.productPic2 is '图片2';
comment on column t_changguan.productPic3 is '图片3';
comment on column t_changguan.productPic4 is '图片4';
comment on column t_changguan.price is '';
comment on column t_changguan.oldPrice is '';
comment on column t_changguan.content is '内容';
comment on column t_changguan.nums is '数量';
comment on column t_changguan.tjxj is '';
comment on column t_changguan.status is '状态';
comment on column t_changguan.typesId is '分类';
comment on column t_changguan.jf is '';
comment on column t_changguan.userId is '商家';
comment on column t_changguan.bqId is '标签';
comment on column t_changguan.djl is '点击量';
--场馆表加注释
comment on table t_changguan is '场馆';
create table t_changguanclick(
id integer,
productId int(11),
customerId int(11),
insertDate datetime
);
--场馆点击字段加注释
comment on column t_changguanclick.id is '主键';
comment on column t_changguanclick.id is '主键唯一ID';
comment on column t_changguanclick.productId is '场馆';
comment on column t_changguanclick.customerId is '用户';
comment on column t_changguanclick.insertDate is '日期';
--场馆点击表加注释
comment on table t_changguanclick is '场馆点击';
create table t_contact(
id integer,
customerId int(11),
phone varchar(100),
content text,
insertDate datetime
);
--建议字段加注释
comment on column t_contact.id is '主键';
comment on column t_contact.id is '主键唯一ID';
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(11),
jf int(11),
headPic varchar(50),
status varchar(50)
);
--用户字段加注释
comment on column t_customer.id is '主键';
comment on column t_customer.id is '主键唯一ID';
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.headPic is '头像';
comment on column t_customer.status is '';
--用户表加注释
comment on table t_customer is '用户';
create table t_lbt(
id integer,
pic varchar(100),
url varchar(1000)
);
--轮播图字段加注释
comment on column t_lbt.id is '主键';
comment on column t_lbt.id is '主键唯一ID';
comment on column t_lbt.pic is '图片';
comment on column t_lbt.url is '';
--轮播图表加注释
comment on table t_lbt is '轮播图';
create table t_plchangguan(
id integer,
productId int(11),
customerId int(11),
content text,
insertDate datetime
);
--评论字段加注释
comment on column t_plchangguan.id is '主键';
comment on column t_plchangguan.id is '主键唯一ID';
comment on column t_plchangguan.productId is '评论信息';
comment on column t_plchangguan.customerId is '评论人';
comment on column t_plchangguan.content is '评论内容';
comment on column t_plchangguan.insertDate is '评论日期';
--评论表加注释
comment on table t_plchangguan is '评论';
create table t_sc(
id integer,
customerId int(11),
productId int(11),
insertDate datetime
);
--收藏字段加注释
comment on column t_sc.id is '主键';
comment on column t_sc.id is '主键唯一ID';
comment on column t_sc.customerId is '用户';
comment on column t_sc.productId is '产品';
comment on column t_sc.insertDate is '日期';
--收藏表加注释
comment on table t_sc is '收藏';
create table t_temp1(
id integer,
title varchar(100),
pic varchar(100),
fileUrl varchar(100),
content text,
insertDate datetime,
v1 varchar(100),
v2 varchar(100),
v3 varchar(100),
v4 varchar(100),
v5 varchar(100),
status varchar(100)
);
--教练管理字段加注释
comment on column t_temp1.id is '主键';
comment on column t_temp1.id is '主键唯一ID';
comment on column t_temp1.title is '备用表1标题';
comment on column t_temp1.pic is '备用表1图片';
comment on column t_temp1.fileUrl is '备用表1附件';
comment on column t_temp1.content is '备用表1内容';
comment on column t_temp1.insertDate is '入库时间';
comment on column t_temp1.v1 is '备用表1v1';
comment on column t_temp1.v2 is '备用表1v2';
comment on column t_temp1.v3 is '备用表1v3';
comment on column t_temp1.v4 is '备用表1v4';
comment on column t_temp1.v5 is '备用表1v5';
comment on column t_temp1.status is '状态';
--教练管理表加注释
comment on table t_temp1 is '教练管理';
create table t_temp2(
id integer,
title varchar(100),
pic varchar(100),
fileUrl varchar(100),
content text,
insertDate datetime,
v1 varchar(100),
v2 varchar(100),
v3 varchar(100),
v4 varchar(100),
v5 varchar(100),
status varchar(100)
);
--篮球器材管理字段加注释
comment on column t_temp2.id is '主键';
comment on column t_temp2.id is '主键唯一ID';
comment on column t_temp2.title is '备用表2标题';
comment on column t_temp2.pic is '备用表2图片';
comment on column t_temp2.fileUrl is '备用表2附件';
comment on column t_temp2.content is '备用表2内容';
comment on column t_temp2.insertDate is '入库时间';
comment on column t_temp2.v1 is '备用表2v1';
comment on column t_temp2.v2 is '备用表2v2';
comment on column t_temp2.v3 is '备用表2v3';
comment on column t_temp2.v4 is '备用表2v4';
comment on column t_temp2.v5 is '备用表2v5';
comment on column t_temp2.status is '状态';
--篮球器材管理表加注释
comment on table t_temp2 is '篮球器材管理';
create table t_types(
id integer,
typesName varchar(1000)
);
--分类字段加注释
comment on column t_types.id is '主键';
comment on column t_types.id is '主键唯一ID';
comment on column t_types.typesName is '分类';
--分类表加注释
comment on table t_types is '分类';
create table t_xiaoxi(
id integer,
customerId int(11),
title varchar(100),
content text,
insertDate datetime
);
--消息字段加注释
comment on column t_xiaoxi.id is '主键';
comment on column t_xiaoxi.id is '主键唯一ID';
comment on column t_xiaoxi.customerId is '用户';
comment on column t_xiaoxi.title is '标题';
comment on column t_xiaoxi.content is '内容';
comment on column t_xiaoxi.insertDate is '日期';
--消息表加注释
comment on table t_xiaoxi is '消息';
create table t_yuding(
id integer,
customerId int(11),
status varchar(100),
orderNum varchar(100),
pl text,
insertDate datetime,
userId int(11),
orderDate varchar(50),
productId int(11),
zw varchar(50),
showDate datetime,
sjd varchar(50),
endTime datetime
);
--预定订单字段加注释
comment on column t_yuding.id is '主键';
comment on column t_yuding.id is '主键唯一ID';
comment on column t_yuding.customerId is '用户';
comment on column t_yuding.status is '状态';
comment on column t_yuding.orderNum is '订单编号';
comment on column t_yuding.pl is '备注信息';
comment on column t_yuding.insertDate is '日期';
comment on column t_yuding.userId is '';
comment on column t_yuding.orderDate is '';
comment on column t_yuding.productId is '';
comment on column t_yuding.zw is '';
comment on column t_yuding.showDate is '';
comment on column t_yuding.sjd is '时间段';
comment on column t_yuding.endTime is '';
--预定订单表加注释
comment on table t_yuding is '预定订单';
create table t_zw(
id integer,
zwName varchar(100)
);
--座位字段加注释
comment on column t_zw.id is '主键';
comment on column t_zw.id is '主键唯一ID';
comment on column t_zw.zwName is '座位编号';
--座位表加注释
comment on table t_zw is '座位';
create table t_zx(
id integer,
title varchar(100),
content longtext,
pic varchar(100)
);
--资讯字段加注释
comment on column t_zx.id is '主键';
comment on column t_zx.id is '主键唯一ID';
comment on column t_zx.title is '标题';
comment on column t_zx.content is '内容';
comment on column t_zx.pic is '图片';
--资讯表加注释
comment on table t_zx is '资讯';
--收银员表注释
create table t_cggly(
id int identity(1,1) primary key not null,--主键
username varchar(100),--账号
password varchar(100),--密码
name varchar(100),--场馆名称
gh varchar(100),--工号
mobile varchar(100),--手机
status varchar(100),--
jf varchar(100)--
);
--场馆表注释
create table t_changguan(
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(11),--
oldPrice int(11),--
content text,--内容
nums int(11),--数量
tjxj varchar(50),--
status varchar(50),--状态
typesId int(11),--分类
jf int(11),--
userId int(11),--商家
bqId int(11),--标签
djl int(11)--点击量
);
--场馆点击表注释
create table t_changguanclick(
id int identity(1,1) primary key not null,--主键
productId int(11),--场馆
customerId int(11),--用户
insertDate datetime--日期
);
--建议表注释
create table t_contact(
id int identity(1,1) primary key not null,--主键
customerId int(11),--用户
phone varchar(100),--联系方式
content text,--内容
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(11),--账户
jf int(11),--积分
headPic varchar(50),--头像
status varchar(50)--
);
--轮播图表注释
create table t_lbt(
id int identity(1,1) primary key not null,--主键
pic varchar(100),--图片
url varchar(1000)--
);
--评论表注释
create table t_plchangguan(
id int identity(1,1) primary key not null,--主键
productId int(11),--评论信息
customerId int(11),--评论人
content text,--评论内容
insertDate datetime--评论日期
);
--收藏表注释
create table t_sc(
id int identity(1,1) primary key not null,--主键
customerId int(11),--用户
productId int(11),--产品
insertDate datetime--日期
);
--教练管理表注释
create table t_temp1(
id int identity(1,1) primary key not null,--主键
title varchar(100),--备用表1标题
pic varchar(100),--备用表1图片
fileUrl varchar(100),--备用表1附件
content text,--备用表1内容
insertDate datetime,--入库时间
v1 varchar(100),--备用表1v1
v2 varchar(100),--备用表1v2
v3 varchar(100),--备用表1v3
v4 varchar(100),--备用表1v4
v5 varchar(100),--备用表1v5
status varchar(100)--状态
);
--篮球器材管理表注释
create table t_temp2(
id int identity(1,1) primary key not null,--主键
title varchar(100),--备用表2标题
pic varchar(100),--备用表2图片
fileUrl varchar(100),--备用表2附件
content text,--备用表2内容
insertDate datetime,--入库时间
v1 varchar(100),--备用表2v1
v2 varchar(100),--备用表2v2
v3 varchar(100),--备用表2v3
v4 varchar(100),--备用表2v4
v5 varchar(100),--备用表2v5
status varchar(100)--状态
);
--分类表注释
create table t_types(
id int identity(1,1) primary key not null,--主键
typesName varchar(1000)--分类
);
--消息表注释
create table t_xiaoxi(
id int identity(1,1) primary key not null,--主键
customerId int(11),--用户
title varchar(100),--标题
content text,--内容
insertDate datetime--日期
);
--预定订单表注释
create table t_yuding(
id int identity(1,1) primary key not null,--主键
customerId int(11),--用户
status varchar(100),--状态
orderNum varchar(100),--订单编号
pl text,--备注信息
insertDate datetime,--日期
userId int(11),--
orderDate varchar(50),--
productId int(11),--
zw varchar(50),--
showDate datetime,--
sjd varchar(50),--时间段
endTime datetime--
);
--座位表注释
create table t_zw(
id int identity(1,1) primary key not null,--主键
zwName varchar(100)--座位编号
);
--资讯表注释
create table t_zx(
id int identity(1,1) primary key not null,--主键
title varchar(100),--标题
content longtext,--内容
pic varchar(100)--图片
);
AI助手
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//收银员
public class Cggly extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//账号
private String username;
//密码
private String password;
//场馆名称
private String name;
//工号
private String gh;
//手机
private String mobile;
//
private String status;
//
private String jf;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
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;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
public String getJf() {return jf;}
public void setJf(String jf) {this.jf = jf;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//场馆
public class Changguan extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//名称
private String productName;
//图片1
private String productPic1;
//图片2
private String productPic2;
//图片3
private String productPic3;
//图片4
private String productPic4;
//
private int price;
//
private int oldPrice;
//内容
private String content;
//数量
private int nums;
//
private String tjxj;
//状态
private String status;
//分类
private int typesId;
//
private int jf;
//商家
private int userId;
//标签
private int bqId;
//点击量
private int djl;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
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 int getPrice() {return price;}
public void setPrice(int price) {this.price = price;}
public int getOldPrice() {return oldPrice;}
public void setOldPrice(int oldPrice) {this.oldPrice = oldPrice;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public int getNums() {return nums;}
public void setNums(int 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 int getTypesId() {return typesId;}
public void setTypesId(int typesId) {this.typesId = typesId;}
public int getJf() {return jf;}
public void setJf(int jf) {this.jf = jf;}
public int getUserId() {return userId;}
public void setUserId(int userId) {this.userId = userId;}
public int getBqId() {return bqId;}
public void setBqId(int bqId) {this.bqId = bqId;}
public int getDjl() {return djl;}
public void setDjl(int djl) {this.djl = djl;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//场馆点击
public class Changguanclick extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//场馆
private int productId;
//用户
private int customerId;
//日期
private Date insertDate;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public int getProductId() {return productId;}
public void setProductId(int productId) {this.productId = productId;}
public int getCustomerId() {return customerId;}
public void setCustomerId(int customerId) {this.customerId = customerId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}
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;}
//主键唯一ID
private int id;
//用户
private int customerId;
//联系方式
private String phone;
//内容
private String content;
//日期
private Date insertDate;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public int getCustomerId() {return customerId;}
public void setCustomerId(int 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;}
}
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;}
//主键唯一ID
private int id;
//账号
private String username;
//密码
private String password;
//姓名
private String customerName;
//性别
private String sex;
//地址
private String address;
//手机
private String phone;
//账户
private int account;
//积分
private int jf;
//头像
private String headPic;
//
private String status;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
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 int getAccount() {return account;}
public void setAccount(int account) {this.account = account;}
public int getJf() {return jf;}
public void setJf(int jf) {this.jf = jf;}
public String getHeadPic() {return headPic;}
public void setHeadPic(String headPic) {this.headPic = headPic;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
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;}
//主键唯一ID
private int id;
//图片
private String pic;
//
private String url;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public String getPic() {return pic;}
public void setPic(String pic) {this.pic = pic;}
public String getUrl() {return url;}
public void setUrl(String url) {this.url = url;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//评论
public class Plchangguan extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//评论信息
private int productId;
//评论人
private int customerId;
//评论内容
private String content;
//评论日期
private Date insertDate;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public int getProductId() {return productId;}
public void setProductId(int productId) {this.productId = productId;}
public int getCustomerId() {return customerId;}
public void setCustomerId(int 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;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//收藏
public class Sc extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//用户
private int customerId;
//产品
private int productId;
//日期
private Date insertDate;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public int getCustomerId() {return customerId;}
public void setCustomerId(int customerId) {this.customerId = customerId;}
public int getProductId() {return productId;}
public void setProductId(int productId) {this.productId = productId;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//教练管理
public class Temp1 extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//备用表1标题
private String title;
//备用表1图片
private String pic;
//备用表1附件
private String fileUrl;
//备用表1内容
private String content;
//入库时间
private Date insertDate;
//备用表1v1
private String v1;
//备用表1v2
private String v2;
//备用表1v3
private String v3;
//备用表1v4
private String v4;
//备用表1v5
private String v5;
//状态
private String status;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
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 getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
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 getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//篮球器材管理
public class Temp2 extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//备用表2标题
private String title;
//备用表2图片
private String pic;
//备用表2附件
private String fileUrl;
//备用表2内容
private String content;
//入库时间
private Date insertDate;
//备用表2v1
private String v1;
//备用表2v2
private String v2;
//备用表2v3
private String v3;
//备用表2v4
private String v4;
//备用表2v5
private String v5;
//状态
private String status;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
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 getFileUrl() {return fileUrl;}
public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl;}
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 getV1() {return v1;}
public void setV1(String v1) {this.v1 = v1;}
public String getV2() {return v2;}
public void setV2(String v2) {this.v2 = v2;}
public String getV3() {return v3;}
public void setV3(String v3) {this.v3 = v3;}
public String getV4() {return v4;}
public void setV4(String v4) {this.v4 = v4;}
public String getV5() {return v5;}
public void setV5(String v5) {this.v5 = v5;}
public String getStatus() {return status;}
public void setStatus(String status) {this.status = status;}
}
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;}
//主键唯一ID
private int id;
//分类
private String typesName;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public String getTypesName() {return typesName;}
public void setTypesName(String typesName) {this.typesName = typesName;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//消息
public class Xiaoxi extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//用户
private int customerId;
//标题
private String title;
//内容
private String content;
//日期
private Date insertDate;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public int getCustomerId() {return customerId;}
public void setCustomerId(int customerId) {this.customerId = customerId;}
public String getTitle() {return title;}
public void setTitle(String title) {this.title = title;}
public String getContent() {return content;}
public void setContent(String content) {this.content = content;}
public Date getInsertDate() {return insertDate;}
public void setInsertDate(Date insertDate) {this.insertDate = insertDate;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//预定订单
public class Yuding extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//用户
private int customerId;
//状态
private String status;
//订单编号
private String orderNum;
//备注信息
private String pl;
//日期
private Date insertDate;
//
private int userId;
//
private String orderDate;
//
private int productId;
//
private String zw;
//
private Date showDate;
//时间段
private String sjd;
//
private Date endTime;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public int getCustomerId() {return customerId;}
public void setCustomerId(int customerId) {this.customerId = customerId;}
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 int getUserId() {return userId;}
public void setUserId(int userId) {this.userId = userId;}
public String getOrderDate() {return orderDate;}
public void setOrderDate(String orderDate) {this.orderDate = orderDate;}
public int getProductId() {return productId;}
public void setProductId(int productId) {this.productId = productId;}
public String getZw() {return zw;}
public void setZw(String zw) {this.zw = zw;}
public Date getShowDate() {return showDate;}
public void setShowDate(Date showDate) {this.showDate = showDate;}
public String getSjd() {return sjd;}
public void setSjd(String sjd) {this.sjd = sjd;}
public Date getEndTime() {return endTime;}
public void setEndTime(Date endTime) {this.endTime = endTime;}
}
package project.model;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
//座位
public class Zw extends BaseBean{
//主键
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
//主键唯一ID
private int id;
//座位编号
private String zwName;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
public String getZwName() {return zwName;}
public void setZwName(String zwName) {this.zwName = zwName;}
}
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;}
//主键唯一ID
private int id;
//标题
private String title;
//内容
private String content;
//图片
private String pic;
public int getId() {return id;}
public void setId(int id) {this.id = id;}
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;}
}
AI助手
全部评论 (0)
还没有任何评论哟~
