基于ssm java jsp电器商城商城
项目描述
基于ssm振华电器商城商城,前后他都有,一套完整的购物流程。
后台:类目管理,用户管理,商品管理,订单管理,公告管理,留言管理
运行环境
jdk + eclipse + tomcat + myslq 项目技术
spring+springmvc+mybatis
数据库表: CREATE TABLE car ( id int(11) NOT NULL AUTO_INCREMENT, item_id int(11) DEFAULT NULL, user_id int(11) DEFAULT NULL, num int(11) DEFAULT NULL, price decimal(10,2) DEFAULT NULL, total varchar(255) DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
– Records of car
INSERT INTO car VALUES (‘6’, ‘46’, ‘3’, ‘1’, ‘4139.11’, ‘4139.11’); INSERT INTO car VALUES (‘8’, ‘40’, ‘3’, ‘1’, ‘2069.10’, ‘2069.1’);
– Table structure for comment
DROP TABLE IF EXISTS comment; CREATE TABLE comment ( id int(11) NOT NULL AUTO_INCREMENT, user_id int(11) DEFAULT NULL, item_id int(11) DEFAULT NULL, content varchar(255) DEFAULT NULL, addTime datetime DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
– Records of comment
– Table structure for item
