基于微信小程序的知識題庫系統(tǒng)設計與實現(xiàn)-計算機畢業(yè)設計源碼+LW文檔
小程序開發(fā)說明
開發(fā)語言:Java
框架:ssm
JDK版本:JDK1.8
服務器:tomcat7
數(shù)據(jù)庫:mysql 5.7(一定要5.7版本)
數(shù)據(jù)庫工具:Navicat11
開發(fā)軟件:eclipse/myeclipse/idea
Maven包:Maven3.3.9
瀏覽器:谷歌瀏覽器
小程序框架:uniapp
小程序開發(fā)軟件:HBuilder X
小程序運行軟件:微信開發(fā)者
關(guān)鍵代碼:
?
DROP TABLE IF EXISTS `config`;
/*!40101 SET @saved_cs_client? ? ?= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `config` (
? `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',
? `name` varchar(100) NOT NULL COMMENT '配置參數(shù)名稱',
? `value` varchar(100) DEFAULT NULL COMMENT '配置參數(shù)值',
? PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='配置文件';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `config`
--
LOCK TABLES `config` WRITE;
/*!40000 ALTER TABLE `config` DISABLE KEYS */;
INSERT INTO `config` VALUES (1,'picture1','upload/picture1.jpg'),(2,'picture2','upload/picture2.jpg'),(3,'picture3','upload/picture3.jpg');
/*!40000 ALTER TABLE `config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `discussshipinkecheng`
--
DROP TABLE IF EXISTS `discussshipinkecheng`;
/*!40101 SET @saved_cs_client? ? ?= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `discussshipinkecheng` (
? `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',
? `addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創(chuàng)建時間',
? `refid` bigint(20) NOT NULL COMMENT '關(guān)聯(lián)表id',
? `userid` bigint(20) NOT NULL COMMENT '用戶id',
? `nickname` varchar(200) DEFAULT NULL COMMENT '用戶名',
? `content` longtext NOT NULL COMMENT '評論內(nèi)容',
? `reply` longtext COMMENT '回復內(nèi)容',
? PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=117 DEFAULT CHARSET=utf8 COMMENT='視頻課程評論表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `discussshipinkecheng`
--
LOCK TABLES `discussshipinkecheng` WRITE;
/*!40000 ALTER TABLE `discussshipinkecheng` DISABLE KEYS */;
INSERT INTO `discussshipinkecheng` VALUES (111,'2022-02-21 08:35:17',1,1,'用戶名1','評論內(nèi)容1','回復內(nèi)容1'),(112,'2022-02-21 08:35:17',2,2,'用戶名2','評論內(nèi)容2','回復內(nèi)容2'),(113,'2022-02-21 08:35:17',3,3,'用戶名3','評論內(nèi)容3','回復內(nèi)容3'),(114,'2022-02-21 08:35:17',4,4,'用戶名4','評論內(nèi)容4','回復內(nèi)容4'),(115,'2022-02-21 08:35:17',5,5,'用戶名5','評論內(nèi)容5','回復內(nèi)容5'),(116,'2022-02-21 08:35:17',6,6,'用戶名6','評論內(nèi)容6','回復內(nèi)容6');
/*!40000 ALTER TABLE `discussshipinkecheng` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exampaper`
--
DROP TABLE IF EXISTS `exampaper`;
/*!40101 SET @saved_cs_client? ? ?= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exampaper` (
? `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',
? `addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創(chuàng)建時間',
? `name` varchar(200) NOT NULL COMMENT '知識測卷名稱',
? `time` int(11) NOT NULL COMMENT '考試時長(分鐘)',
? `status` int(11) NOT NULL DEFAULT '0' COMMENT '知識測卷狀態(tài)',
? PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='知識測卷表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exampaper`
--
LOCK TABLES `exampaper` WRITE;
/*!40000 ALTER TABLE `exampaper` DISABLE KEYS */;
INSERT INTO `exampaper` VALUES (1,'2022-02-21 08:35:17','十萬個為什么',60,1);
/*!40000 ALTER TABLE `exampaper` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `examquestion`
--
DROP TABLE IF EXISTS `examquestion`;
/*!40101 SET @saved_cs_client? ? ?= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `examquestion` (
? `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',
? `addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創(chuàng)建時間',
? `paperid` bigint(20) NOT NULL COMMENT '所屬知識測卷id(外鍵)',
? `papername` varchar(200) NOT NULL COMMENT '知識測卷名稱',
? `questionname` varchar(200) NOT NULL COMMENT '試題名稱',
? `options` longtext COMMENT '選項,json字符串',
? `score` bigint(20) DEFAULT '0' COMMENT '分值',
? `answer` varchar(200) DEFAULT NULL COMMENT '正確答案',
? `analysis` longtext COMMENT '答案解析',
? `type` bigint(20) DEFAULT '0' COMMENT '試題類型,0:單選題 1:多選題 2:判斷題 3:填空題(暫不考慮多項填空)',
? `sequence` bigint(20) DEFAULT '100' COMMENT '試題排序,值越大排越前面',
? PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='試題表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `examquestion`
--
LOCK TABLES `examquestion` WRITE;
/*!40000 ALTER TABLE `examquestion` DISABLE KEYS */;
INSERT INTO `examquestion` VALUES (1,'2022-02-21 08:35:17',1,'十萬個為什么','下面動物不屬于昆蟲的是()。','[{\"text\":\"A.蒼蠅\",\"code\":\"A\"},{\"text\":\"B.蜜蜂\",\"code\":\"B\"},{\"text\":\"C.蜂鳥\",\"code\":\"C\"}]',20,'C','蜂鳥',0,1),(2,'2022-02-21 08:35:17',1,'十萬個為什么','油著火后可以用水撲滅。','[{\"text\":\"A.對\",\"code\":\"A\"},{\"text\":\"B.錯\",\"code\":\"B\"}]',20,'B','油著火后不可以用水撲滅',2,2),(3,'2022-02-21 08:35:17',1,'十萬個為什么','地球是個球體,中間是( )。','[]',30,'赤道','赤道',3,3),(4,'2022-02-21 08:35:17',1,'十萬個為什么','下面動物中會流汗的有( )。','[{\"text\":\"A.馬\",\"code\":\"A\"},{\"text\":\"B.貓\",\"code\":\"B\"},{\"text\":\"C.狗\",\"code\":\"C\"}]',30,'A,B','狗不會流汗',1,4);
/*!40000 ALTER TABLE `examquestion` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `examrecord`
--
DROP TABLE IF EXISTS `examrecord`;
/*!40101 SET @saved_cs_client? ? ?= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `examrecord` (
? `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',
? `addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創(chuàng)建時間',
? `userid` bigint(20) NOT NULL COMMENT '用戶id',
? `username` varchar(200) DEFAULT NULL COMMENT '用戶名',
? `paperid` bigint(20) NOT NULL COMMENT '知識測卷id(外鍵)',
? `papername` varchar(200) NOT NULL COMMENT '知識測卷名稱',
? `questionid` bigint(20) NOT NULL COMMENT '試題id(外鍵)',
? `questionname` varchar(200) NOT NULL COMMENT '試題名稱',
? `options` longtext COMMENT '選項,json字符串',
? `score` bigint(20) DEFAULT '0' COMMENT '分值',
? `answer` varchar(200) DEFAULT NULL COMMENT '正確答案',
? `analysis` longtext COMMENT '答案解析',
? `myscore` bigint(20) NOT NULL DEFAULT '0' COMMENT '試題得分',
? `myanswer` varchar(200) DEFAULT NULL COMMENT '考生答案',
? PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1645433332826 DEFAULT CHARSET=utf8 COMMENT='考試記錄表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `examrecord`
--
LOCK TABLES `examrecord` WRITE;
/*!40000 ALTER TABLE `examrecord` DISABLE KEYS */;
INSERT INTO `examrecord` VALUES (1645433287063,'2022-02-21 08:48:06',11,'學生姓名1',1,'十萬個為什么',1,'下面動物不屬于昆蟲的是()。','[{\"text\":\"A.蒼蠅\",\"code\":\"A\",\"checked\":false},{\"text\":\"B.蜜蜂\",\"code\":\"B\",\"checked\":false},{\"text\":\"C.蜂鳥\",\"code\":\"C\",\"checked\":true}]',20,'C','蜂鳥',20,'C'),(1645433300893,'2022-02-21 08:48:20',11,'學生姓名1',1,'十萬個為什么',2,'油著火后可以用水撲滅。','[{\"text\":\"A.對\",\"code\":\"A\",\"checked\":false},{\"text\":\"B.錯\",\"code\":\"B\",\"checked\":true}]',20,'B','油著火后不可以用水撲滅',20,'B'),(1645433318940,'2022-02-21 08:48:38',11,'學生姓名1',1,'十萬個為什么',3,'地球是個球體,中間是( )。','[]',30,'赤道','赤道',0,'11'),(1645433332825,'2022-02-21 08:48:51',11,'學生姓名1',1,'十萬個為什么',4,'下面動物中會流汗的有( )。','[{\"text\":\"A.馬\",\"code\":\"A\",\"checked\":true},{\"text\":\"B.貓\",\"code\":\"B\",\"checked\":true},{\"text\":\"C.狗\",\"code\":\"C\",\"checked\":false}]',30,'A,B','狗不會流汗',30,'A,B');
/*!40000 ALTER TABLE `examrecord` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `forum`
--
DROP TABLE IF EXISTS `forum`;
/*!40101 SET @saved_cs_client? ? ?= @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `forum` (
? `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主鍵',
? `addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創(chuàng)建時間',
? `title` varchar(200) DEFAULT NULL COMMENT '帖子標題',
? `content` longtext NOT NULL COMMENT '帖子內(nèi)容',
? `parentid` bigint(20) DEFAULT NULL COMMENT '父節(jié)點id',
? `userid` bigint(20) NOT NULL COMMENT '用戶id',
? `username` varchar(200) DEFAULT NULL COMMENT '用戶名',
? `isdone` varchar(200) DEFAULT NULL COMMENT '狀態(tài)',
? PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8 COMMENT='交流論壇';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `forum`
--
LOCK TABLES `forum` WRITE;
/*!40000 ALTER TABLE `forum` DISABLE KEYS */;
INSERT INTO `forum` VALUES (61,'2022-02-21 08:35:17','帖子標題1','帖子內(nèi)容1',0,1,'用戶名1','開放'),(62,'2022-02-21 08:35:17','帖子標題2','帖子內(nèi)容2',0,2,'用戶名2','開放'),(63,'2022-02-21 08:35:17','帖子標題3','帖子內(nèi)容3',0,3,'用戶名3','開放'),(64,'2022-02-21 08:35:17','帖子標題4','帖子內(nèi)容4',0,4,'用戶名4','開放'),(65,'2022-02-21 08:35:17','帖子標題5','帖子內(nèi)容5',0,5,'用戶名5','開放'),(66,'2022-02-21 08:35:17','帖子標題6','帖子內(nèi)容6',0,6,'用戶名6','開放');
/*!40000 ALTER TABLE `forum` ENABLE KEYS */;
UNLOCK TABLES;



