最新springboot选题推荐-商品物品产品众筹平台(mysql)-JAVA.VUE【数据库设计、论文、毕设源码、开题报告】
摘 要
信息數據從傳統到當代,是一直在變革當中,突如其來的互聯網讓傳統的信息管理看到了革命性的曙光,因為傳統信息管理從時效性,還是安全性,還是可操作性等各個方面來講,遇到了互聯網時代才發現能補上自古以來的短板,有效的提升管理的效率和業務水平。傳統的管理模式,時間越久管理的內容越多,也需要更多的人來對數據進行整理,并且數據的匯總查詢方面效率也是極其的低下,并且數據安全方面永遠不會保證安全性能。結合數據內容管理的種種缺點,在互聯網時代都可以得到有效的補充。結合先進的互聯網技術,開發符合需求的軟件,讓數據內容管理不管是從錄入的及時性,查看的及時性還是匯總分析的及時性,都能讓正確率達到最高,管理更加的科學和便捷。本次開發的善籌網實現了參與的眾籌管理、字典管理、商品管理、商品收藏管理、商品留言管理、用戶管理、眾籌管理、眾籌收藏管理、眾籌留言管理、管理員管理等功能。系統用到了關系型數據庫中王者MySql作為系統的數據庫,有效的對數據進行安全的存儲,有效的備份,對數據可靠性方面得到了保證。并且程序也具備程序需求的所有功能,使得操作性還是安全性都大大提高,讓善籌網更能從理念走到現實,確確實實的讓人們提升信息處理效率。
關鍵字:信息管理,時效性,安全性,MySql
功能介紹
用戶角色有:管理員、用戶
用戶端功能有:首頁、商品信息、眾籌、個人中心、后臺管理
管理端功能有:基礎數據管理、商品管理、用戶管理、眾籌管理、系統管理等
更多功能請看運行截圖!
使用技術
開發語言:Java
使用框架:spring boot
前端技術:JavaScript、VUE.js(2.X)、css3
數據庫:MySQL 5.7
數據庫管理工具:Navicat或sqlyog
開發工具:IDEA或Eclipse均可
項目截圖
數據庫腳本
/* SQLyog Ultimate v11.3 (64 bit) MySQL - 5.7.32-log : Database - shanchouwang ********************************************************************* *//*!40101 SET NAMES utf8 */;/*!40101 SET SQL_MODE=''*/;/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; CREATE DATABASE /*!32312 IF NOT EXISTS*/`shanchouwang` /*!40100 DEFAULT CHARACTER SET utf8 */;USE `shanchouwang`;/*Table structure for table `canyuzhongchou` */DROP TABLE IF EXISTS `canyuzhongchou`;CREATE TABLE `canyuzhongchou` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵 ',`yonghu_id` int(11) DEFAULT NULL COMMENT '用戶',`zhongchou_id` int(11) DEFAULT NULL COMMENT '眾籌',`zizu_money` decimal(10,2) DEFAULT NULL COMMENT '參與金額',`jieshu_time` timestamp NULL DEFAULT NULL COMMENT '參與時間',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='參與的眾籌';/*Data for the table `canyuzhongchou` */insert into `canyuzhongchou`(`id`,`yonghu_id`,`zhongchou_id`,`zizu_money`,`jieshu_time`,`create_time`) values (1,1,2,'200.00','2022-03-26 10:49:26','2022-03-26 10:49:26'),(2,1,2,'100.00','2022-03-26 10:49:36','2022-03-26 10:49:36'),(3,2,2,'200.00','2022-03-26 10:56:41','2022-03-26 10:56:41'),(4,2,2,'50.00','2022-03-26 10:56:46','2022-03-26 10:56:46'),(5,2,2,'100.00','2022-03-26 10:56:51','2022-03-26 10:56:51'),(6,2,2,'200.00','2022-03-26 11:01:33','2022-03-26 11:01:33'),(7,2,2,'1500.00','2022-03-26 11:01:48','2022-03-26 11:01:48'),(8,3,3,'200.00','2022-03-26 11:09:53','2022-03-26 11:09:53'),(9,3,3,'50.00','2022-03-26 11:10:01','2022-03-26 11:10:01'),(10,3,3,'1000.00','2022-03-26 11:10:41','2022-03-26 11:10:41'),(11,3,3,'1000.00','2022-03-26 11:10:56','2022-03-26 11:10:56');/*Table structure for table `config` */DROP TABLE IF EXISTS `config`;CREATE TABLE `config` (`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`name` varchar(100) NOT NULL COMMENT '配置參數名稱',`value` varchar(100) DEFAULT NULL COMMENT '配置參數值',PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='配置文件';/*Data for the table `config` */insert into `config`(`id`,`name`,`value`) values (1,'輪播圖1','http://localhost:8080/shanchouwang/upload/config1.jpg'),(2,'輪播圖2','http://localhost:8080/shanchouwang/upload/config2.jpg'),(3,'輪播圖3','http://localhost:8080/shanchouwang/upload/config3.jpg');/*Table structure for table `dictionary` */DROP TABLE IF EXISTS `dictionary`;CREATE TABLE `dictionary` (`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`dic_code` varchar(200) DEFAULT NULL COMMENT '字段',`dic_name` varchar(200) DEFAULT NULL COMMENT '字段名',`code_index` int(11) DEFAULT NULL COMMENT '編碼',`index_name` varchar(200) DEFAULT NULL COMMENT '編碼名字 Search111 ',`super_id` int(11) DEFAULT NULL COMMENT '父字段id',`beizhu` varchar(200) DEFAULT NULL COMMENT '備注',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='字典';/*Data for the table `dictionary` */insert into `dictionary`(`id`,`dic_code`,`dic_name`,`code_index`,`index_name`,`super_id`,`beizhu`,`create_time`) values (1,'sex_types','性別類型',1,'男',NULL,NULL,'2022-03-25 19:55:53'),(2,'sex_types','性別類型',2,'女',NULL,NULL,'2022-03-25 19:55:53'),(3,'shangxia_types','上下架',1,'上架',NULL,NULL,'2022-03-25 19:55:53'),(4,'shangxia_types','上下架',2,'下架',NULL,NULL,'2022-03-25 19:55:53'),(5,'shangpin_types','商品類型',1,'商品類型1',NULL,NULL,'2022-03-25 19:55:53'),(6,'shangpin_types','商品類型',2,'商品類型2',NULL,NULL,'2022-03-25 19:55:53'),(7,'shangpin_types','商品類型',3,'商品類型3',NULL,NULL,'2022-03-25 19:55:53'),(8,'shangpin_types','商品類型',4,'商品類型4',NULL,NULL,'2022-03-25 19:55:53'),(9,'shangpin_collection_types','收藏表類型',1,'收藏',NULL,NULL,'2022-03-25 19:55:53'),(10,'zhongchou_zhuangtai_types','眾籌狀態',1,'正在眾籌',NULL,NULL,'2022-03-25 19:55:53'),(11,'zhongchou_zhuangtai_types','眾籌狀態',2,'眾籌成功',NULL,NULL,'2022-03-25 19:55:53'),(12,'zhongchou_zhuangtai_types','眾籌狀態',3,'眾籌失敗',NULL,NULL,'2022-03-25 19:55:53'),(14,'zhongchou_kuaidi_types','快遞狀態',2,'已發貨',NULL,NULL,'2022-03-25 19:55:53'),(15,'zhongchou_kuaidi_types','快遞狀態',3,'已收貨',NULL,NULL,'2022-03-25 19:55:53'),(16,'zhongchou_types','眾籌類型',1,'眾籌類型1',NULL,NULL,'2022-03-25 19:55:53'),(17,'zhongchou_types','眾籌類型',2,'眾籌類型2',NULL,NULL,'2022-03-25 19:55:53'),(18,'zhongchou_types','眾籌類型',3,'眾籌類型3',NULL,NULL,'2022-03-25 19:55:53'),(19,'zhongchou_types','眾籌類型',4,'眾籌類型4',NULL,NULL,'2022-03-25 19:55:53'),(20,'zhongchou_collection_types','收藏表類型',1,'收藏',NULL,NULL,'2022-03-25 19:55:53');/*Table structure for table `shangpin` */DROP TABLE IF EXISTS `shangpin`;CREATE TABLE `shangpin` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵 ',`shangpin_uuid_number` varchar(200) DEFAULT NULL COMMENT '商品編號 Search111 ',`shangpin_name` varchar(200) DEFAULT NULL COMMENT '商品名稱 Search111 ',`shangpin_photo` varchar(200) DEFAULT NULL COMMENT '商品照片',`shangpin_types` int(11) DEFAULT NULL COMMENT '商品類型 Search111',`shangpin_old_money` decimal(10,2) DEFAULT NULL COMMENT '商品原價 ',`shangpin_new_money` decimal(10,2) DEFAULT NULL COMMENT '現價',`shangpin_content` text COMMENT '商品介紹 ',`shangxia_types` int(11) DEFAULT NULL COMMENT '是否上架 ',`shangpin_delete` int(11) DEFAULT NULL COMMENT '邏輯刪除',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間 show1 show2 photoShow',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='商品';/*Data for the table `shangpin` */insert into `shangpin`(`id`,`shangpin_uuid_number`,`shangpin_name`,`shangpin_photo`,`shangpin_types`,`shangpin_old_money`,`shangpin_new_money`,`shangpin_content`,`shangxia_types`,`shangpin_delete`,`create_time`) values (1,'16482095989897','商品名稱1','http://localhost:8080/shanchouwang/upload/shangpin1.jpg',4,'817.63','19.28','商品介紹1',1,1,'2022-03-25 19:59:58'),(2,'164820959898913','商品名稱2','http://localhost:8080/shanchouwang/upload/shangpin2.jpg',4,'839.56','355.46','商品介紹2',1,1,'2022-03-25 19:59:58'),(3,'16482095989891','商品名稱3','http://localhost:8080/shanchouwang/upload/shangpin3.jpg',4,'654.19','79.18','商品介紹3',1,1,'2022-03-25 19:59:58'),(4,'164820959898916','商品名稱4','http://localhost:8080/shanchouwang/upload/shangpin4.jpg',1,'712.06','97.55','商品介紹4',1,1,'2022-03-25 19:59:58'),(5,'16482095989895','商品名稱5','http://localhost:8080/shanchouwang/upload/shangpin5.jpg',3,'960.33','213.78','商品介紹5',1,1,'2022-03-25 19:59:58');/*Table structure for table `shangpin_collection` */DROP TABLE IF EXISTS `shangpin_collection`;CREATE TABLE `shangpin_collection` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`shangpin_id` int(11) DEFAULT NULL COMMENT '商品',`yonghu_id` int(11) DEFAULT NULL COMMENT '用戶',`shangpin_collection_types` int(11) DEFAULT NULL COMMENT '類型',`insert_time` timestamp NULL DEFAULT NULL COMMENT '收藏時間',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間 show3 photoShow',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='商品收藏';/*Data for the table `shangpin_collection` */insert into `shangpin_collection`(`id`,`shangpin_id`,`yonghu_id`,`shangpin_collection_types`,`insert_time`,`create_time`) values (1,1,2,1,'2022-03-25 19:59:58','2022-03-25 19:59:58'),(2,2,2,1,'2022-03-25 19:59:58','2022-03-25 19:59:58'),(3,3,1,1,'2022-03-25 19:59:58','2022-03-25 19:59:58'),(4,4,3,1,'2022-03-25 19:59:58','2022-03-25 19:59:58'),(5,5,2,1,'2022-03-25 19:59:58','2022-03-25 19:59:58');/*Table structure for table `shangpin_liuyan` */DROP TABLE IF EXISTS `shangpin_liuyan`;CREATE TABLE `shangpin_liuyan` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`shangpin_id` int(11) DEFAULT NULL COMMENT '商品',`yonghu_id` int(11) DEFAULT NULL COMMENT '用戶',`shangpin_liuyan_text` text COMMENT '留言內容',`insert_time` timestamp NULL DEFAULT NULL COMMENT '留言時間',`reply_text` text COMMENT '回復內容',`update_time` timestamp NULL DEFAULT NULL COMMENT '回復時間',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='商品留言';/*Data for the table `shangpin_liuyan` */insert into `shangpin_liuyan`(`id`,`shangpin_id`,`yonghu_id`,`shangpin_liuyan_text`,`insert_time`,`reply_text`,`update_time`,`create_time`) values (1,1,3,'留言內容1','2022-03-25 19:59:58','回復信息1','2022-03-25 19:59:58','2022-03-25 19:59:58'),(2,2,2,'留言內容2','2022-03-25 19:59:58','回復信息2','2022-03-25 19:59:58','2022-03-25 19:59:58'),(3,3,3,'留言內容3','2022-03-25 19:59:58','回復信息3','2022-03-25 19:59:58','2022-03-25 19:59:58'),(4,4,1,'留言內容4','2022-03-25 19:59:58','回復信息4','2022-03-25 19:59:58','2022-03-25 19:59:58'),(5,5,1,'留言內容5','2022-03-25 19:59:58','回復信息5','2022-03-25 19:59:58','2022-03-25 19:59:58');/*Table structure for table `token` */DROP TABLE IF EXISTS `token`;CREATE TABLE `token` (`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`userid` bigint(20) NOT NULL COMMENT '用戶id',`username` varchar(100) NOT NULL COMMENT '用戶名',`tablename` varchar(100) DEFAULT NULL COMMENT '表名',`role` varchar(100) DEFAULT NULL COMMENT '角色',`token` varchar(200) NOT NULL COMMENT '密碼',`addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '新增時間',`expiratedtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '過期時間',PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='token表';/*Data for the table `token` */insert into `token`(`id`,`userid`,`username`,`tablename`,`role`,`token`,`addtime`,`expiratedtime`) values (1,6,'admin','users','管理員','k09zg79dd6k6yb89r43exst521xac8tm','2022-03-25 20:03:32','2022-03-26 12:20:34'),(2,1,'a1','yonghu','用戶','sny3r195bxd5f3pd4xzkih3q4ts1521i','2022-03-25 20:08:39','2022-03-26 11:49:47'),(3,2,'a2','yonghu','用戶','1bbwhyzs7pcqkxw7thc64ckph6p5kqdr','2022-03-26 09:45:36','2022-03-26 12:12:57'),(4,3,'a3','yonghu','用戶','6otlpzpmc4kswrulk1a7ntx45w2vhmxj','2022-03-26 11:08:35','2022-03-26 12:12:17');/*Table structure for table `users` */DROP TABLE IF EXISTS `users`;CREATE TABLE `users` (`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`username` varchar(100) NOT NULL COMMENT '用戶名',`password` varchar(100) NOT NULL COMMENT '密碼',`role` varchar(100) DEFAULT '管理員' COMMENT '角色',`addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '新增時間',PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='管理員';/*Data for the table `users` */insert into `users`(`id`,`username`,`password`,`role`,`addtime`) values (6,'admin','admin','管理員','2022-05-02 14:51:13');/*Table structure for table `yonghu` */DROP TABLE IF EXISTS `yonghu`;CREATE TABLE `yonghu` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`username` varchar(200) DEFAULT NULL COMMENT '賬戶',`password` varchar(200) DEFAULT NULL COMMENT '密碼',`yonghu_name` varchar(200) DEFAULT NULL COMMENT '用戶姓名 Search111 ',`yonghu_phone` varchar(200) DEFAULT NULL COMMENT '用戶手機號',`yonghu_id_number` varchar(200) DEFAULT NULL COMMENT '用戶身份證號',`yonghu_photo` varchar(200) DEFAULT NULL COMMENT '用戶頭像',`sex_types` int(11) DEFAULT NULL COMMENT '性別',`yonghu_email` varchar(200) DEFAULT NULL COMMENT '電子郵箱',`new_money` decimal(10,2) DEFAULT NULL COMMENT '余額 ',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='用戶';/*Data for the table `yonghu` */insert into `yonghu`(`id`,`username`,`password`,`yonghu_name`,`yonghu_phone`,`yonghu_id_number`,`yonghu_photo`,`sex_types`,`yonghu_email`,`new_money`,`create_time`) values (1,'a1','123456','用戶姓名1','17703786901','410224199610232001','http://localhost:8080/shanchouwang/upload/yonghu1.jpg',1,'1@qq.com','420.33','2022-03-25 19:59:58'),(2,'a2','123456','用戶姓名2','17703786902','410224199610232002','http://localhost:8080/shanchouwang/upload/yonghu2.jpg',2,'2@qq.com','8690.71','2022-03-25 19:59:58'),(3,'a3','123456','用戶姓名3','17703786903','410224199610232003','http://localhost:8080/shanchouwang/upload/yonghu3.jpg',2,'3@qq.com','8216.69','2022-03-25 19:59:58');/*Table structure for table `zhongchou` */DROP TABLE IF EXISTS `zhongchou`;CREATE TABLE `zhongchou` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵 ',`yonghu_id` int(11) DEFAULT NULL COMMENT '用戶',`shangpin_id` int(11) DEFAULT NULL COMMENT '商品',`zhongchou_uuid_number` varchar(200) DEFAULT NULL COMMENT '眾籌編號 Search111 ',`zhongchou_name` varchar(200) DEFAULT NULL COMMENT '眾籌名稱 Search111 ',`zhongchou_types` int(11) DEFAULT NULL COMMENT '眾籌類型 Search111',`zhongchou_kucun_number` int(11) DEFAULT NULL COMMENT '眾籌數量',`yichou_money` decimal(10,2) DEFAULT NULL COMMENT '已籌金額',`zhongchou_money` decimal(10,2) DEFAULT NULL COMMENT '眾籌總額',`zhongchou_clicknum` int(11) DEFAULT NULL COMMENT '熱度 ',`zhongchou_zhuangtai_types` int(11) DEFAULT NULL COMMENT '眾籌狀態 Search111',`zhongchou_chenggong_name` varchar(200) DEFAULT NULL COMMENT '收件人姓名',`zhongchou_chenggong_phone` varchar(200) DEFAULT NULL COMMENT '收件人聯系方式',`zhongchou_chenggong_address` varchar(200) DEFAULT NULL COMMENT '收件人地址',`zhongchou_chenggong_kuaidiname` varchar(200) DEFAULT NULL COMMENT '快遞名稱',`zhongchou_chenggong_kuaidiaddress` varchar(200) DEFAULT NULL COMMENT '快遞地址',`zhongchou_kuaidi_types` int(11) DEFAULT NULL COMMENT '快遞狀態 Search111',`zhongchou_content` text COMMENT '眾籌詳情',`insert_time` timestamp NULL DEFAULT NULL COMMENT '發起時間',`jieshu_time` timestamp NULL DEFAULT NULL COMMENT '眾籌截止時間',`zhongchou_delete` int(11) DEFAULT NULL COMMENT '邏輯刪除',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間 show1 show2 photoShow',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='眾籌';/*Data for the table `zhongchou` */insert into `zhongchou`(`id`,`yonghu_id`,`shangpin_id`,`zhongchou_uuid_number`,`zhongchou_name`,`zhongchou_types`,`zhongchou_kucun_number`,`yichou_money`,`zhongchou_money`,`zhongchou_clicknum`,`zhongchou_zhuangtai_types`,`zhongchou_chenggong_name`,`zhongchou_chenggong_phone`,`zhongchou_chenggong_address`,`zhongchou_chenggong_kuaidiname`,`zhongchou_chenggong_kuaidiaddress`,`zhongchou_kuaidi_types`,`zhongchou_content`,`insert_time`,`jieshu_time`,`zhongchou_delete`,`create_time`) values (1,1,3,'1648211692643','張三發起的眾籌',3,1,'1.00','79.18',32,1,'張安','17703786933','地址33','','',NULL,'<p>張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌張三發起的眾籌</p>','2022-03-25 20:35:43','2022-03-31 00:00:00',1,'2022-03-25 20:35:43'),(2,2,5,'1648259145154','用戶2發起的眾籌商品5',3,10,'2350.00','2137.80',41,2,'用戶2','17703786902','地址2222','順豐快遞','sf1648263709204',3,'<p>待審核第三個號</p>','2022-03-26 09:46:43','2022-03-29 00:00:00',1,'2022-03-26 09:46:43'),(3,2,1,'1648263900182','用戶2發起的商品名稱1的眾籌',4,100,'2250.00','1928.00',9,2,'張1111','17703786909','地址1去11111','順豐快遞','sf1648264256895',2,'<p>都是干濕</p>','2022-03-26 11:07:33','2022-04-01 00:00:00',1,'2022-03-26 11:07:33');/*Table structure for table `zhongchou_collection` */DROP TABLE IF EXISTS `zhongchou_collection`;CREATE TABLE `zhongchou_collection` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`zhongchou_id` int(11) DEFAULT NULL COMMENT '眾籌',`yonghu_id` int(11) DEFAULT NULL COMMENT '用戶',`zhongchou_collection_types` int(11) DEFAULT NULL COMMENT '類型',`insert_time` timestamp NULL DEFAULT NULL COMMENT '收藏時間',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間 show3 photoShow',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='眾籌收藏';/*Data for the table `zhongchou_collection` */insert into `zhongchou_collection`(`id`,`zhongchou_id`,`yonghu_id`,`zhongchou_collection_types`,`insert_time`,`create_time`) values (6,1,1,1,'2022-03-25 21:55:08','2022-03-25 21:55:08');/*Table structure for table `zhongchou_liuyan` */DROP TABLE IF EXISTS `zhongchou_liuyan`;CREATE TABLE `zhongchou_liuyan` (`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵',`zhongchou_id` int(11) DEFAULT NULL COMMENT '眾籌',`yonghu_id` int(11) DEFAULT NULL COMMENT '用戶',`zhongchou_liuyan_text` text COMMENT '留言內容',`insert_time` timestamp NULL DEFAULT NULL COMMENT '留言時間',`reply_text` text COMMENT '回復內容',`update_time` timestamp NULL DEFAULT NULL COMMENT '回復時間',`create_time` timestamp NULL DEFAULT NULL COMMENT '創建時間',PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='眾籌留言';/*Data for the table `zhongchou_liuyan` */insert into `zhongchou_liuyan`(`id`,`zhongchou_id`,`yonghu_id`,`zhongchou_liuyan_text`,`insert_time`,`reply_text`,`update_time`,`create_time`) values (6,1,1,'111','2022-03-25 21:53:55',NULL,NULL,'2022-03-25 21:53:55'),(7,3,3,'2222','2022-03-26 11:12:03','232131321','2022-03-26 11:13:02','2022-03-26 11:12:03');/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;總結
以上是生活随笔為你收集整理的最新springboot选题推荐-商品物品产品众筹平台(mysql)-JAVA.VUE【数据库设计、论文、毕设源码、开题报告】的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: windows下使用waveOut播放音
- 下一篇: 2020年最新开发者调查报告,你不可不知