开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
study-java
/
studyjava.sql
study-java
/
studyjava.sql
studyjava.sql 13.25 KB
一键复制 编辑 原始数据 按行查看 历史
Corvey 提交于 2018年02月28日 15:07 +08:00 . 解决java9兼容性问题
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
-- MySQL dump 10.13 Distrib 5.7.18, for Win64 (x86_64)
--
-- Host: localhost Database: studyjava
-- ------------------------------------------------------
-- Server version 5.7.18-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!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 studyjava;
USE studyjava;
--
-- Table structure for table `attachment`
--
DROP TABLE IF EXISTS `attachment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attachment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(90) NOT NULL,
`file_path` varchar(120) NOT NULL,
`gmt_create` datetime NOT NULL,
`gmt_modified` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `attachment`
--
LOCK TABLES `attachment` WRITE;
/*!40000 ALTER TABLE `attachment` DISABLE KEYS */;
INSERT INTO `attachment` VALUES (1,'ceshi1','sdaf/asdf','2017-11-22 20:17:38','2017-11-16 20:17:42'),(2,'ceshi2','/sdf/ss','2017-11-08 20:17:57','2017-11-03 20:18:00'),(3,'234sdafsad3','/file/4a7b8d004eef446a5cf72bc86914ab64.jpg','2017-11-23 09:53:57','2017-11-23 09:53:57');
/*!40000 ALTER TABLE `attachment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chapter`
--
DROP TABLE IF EXISTS `chapter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chapter` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(60) NOT NULL,
`course_id` bigint(20) NOT NULL,
`description` text,
`gmt_create` datetime NOT NULL,
`gmt_modified` datetime NOT NULL,
`file_path` varchar(120) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chapter`
--
LOCK TABLES `chapter` WRITE;
/*!40000 ALTER TABLE `chapter` DISABLE KEYS */;
INSERT INTO `chapter` VALUES (1,'认识 Java',1,'知识点: 1.Java简介 2.Java开发环境搭建 3.文本文件编辑Java程序 4.Eclipse开发Java程序','2017-11-06 11:01:58','2017-11-06 11:02:02','/doc/认识Java.md'),(2,'Java 语言基础',1,'知识点: 1.关键字 2.标识符 3.变量和常量','2017-11-06 15:11:50','2017-11-06 15:11:53','/doc/Java语言基础.md'),(3,'测试',1,'阿斯顿法师打发','2017-11-18 14:38:24','2017-11-18 14:38:26','/doc/Java语言基础.md'),(7,'asdfasdf',1,'asdfasd234','2017-11-22 21:47:13','2017-11-22 21:47:13','/doc/5b403f526dd195181492cf57fbd84c26.md'),(8,'asdf123123',1,'123123zzxcv','2017-11-22 22:03:39','2017-11-22 22:03:39','/doc/7eebda80deb260b225952567adc06309.md');
/*!40000 ALTER TABLE `chapter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `choice`
--
DROP TABLE IF EXISTS `choice`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `choice` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`content` varchar(300) NOT NULL,
`question_id` bigint(20) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `choice`
--
LOCK TABLES `choice` WRITE;
/*!40000 ALTER TABLE `choice` DISABLE KEYS */;
INSERT INTO `choice` VALUES (33,'测试1.1',27),(34,'测试1.2',27),(35,'测试1.3',27),(36,'测试1.4',27),(37,'测试2.1',28),(38,'测试2.2',28),(39,'测试2.3',28),(40,'测试2.4',28),(41,'测试3.1',29),(42,'测试3.2',29),(43,'测试3.3',29),(44,'测试3.4',29),(45,'测试4.1',30),(46,'测试4.2',30),(47,'测试5.1',31),(48,'测试5.2',31),(49,'测试5.3',31),(50,'测试6.1',32),(51,'测试6.2',32),(52,'测试6.3',32),(53,'测试7.1',33),(54,'测试7.2',33),(55,'测试7.3阿斯顿法师打发撒点发是大法师的法师的法师敌方阿斯顿法师打发撒点发是大法师的法师的法师敌方阿斯顿法师打发撒点发是大法师的法师的法师敌方',33),(56,'测试7.4',33);
/*!40000 ALTER TABLE `choice` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `course`
--
DROP TABLE IF EXISTS `course`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `course` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(60) NOT NULL,
`course_category_id` bigint(20) NOT NULL,
`description` text,
`gmt_create` datetime NOT NULL,
`gmt_modified` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `course`
--
LOCK TABLES `course` WRITE;
/*!40000 ALTER TABLE `course` DISABLE KEYS */;
INSERT INTO `course` VALUES (1,'Java入门基础',1,'本课程将介绍 Java 语言基本语法、Java 平台应用、 Java 的核心概念:JVM、JDK、JRE以及 java 面向对象思想。同时我们会学到如何在系统中搭建 Java 开发环境,以及如何利用第三方工具进行 Java 程序的开发。','2017-11-06 10:56:47','2017-11-06 10:56:51'),(2,'ceshi1',1,'asdfasdf','2017-11-14 11:05:48','2017-11-14 11:05:52'),(3,'测试进阶',1,'阿斯顿发撒地方撒地方','2017-11-20 14:47:32','2017-11-20 14:47:32');
/*!40000 ALTER TABLE `course` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `course_category`
--
DROP TABLE IF EXISTS `course_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `course_category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `course_category`
--
LOCK TABLES `course_category` WRITE;
/*!40000 ALTER TABLE `course_category` DISABLE KEYS */;
INSERT INTO `course_category` VALUES (1,'基础知识'),(2,'进阶知识'),(3,'拓展知识'),(4,'高级知识');
/*!40000 ALTER TABLE `course_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `example`
--
DROP TABLE IF EXISTS `example`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `example` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(90) NOT NULL,
`description` text,
`doc_file_path` varchar(120) DEFAULT NULL,
`gmt_create` datetime NOT NULL,
`gmt_modified` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `example`
--
LOCK TABLES `example` WRITE;
/*!40000 ALTER TABLE `example` DISABLE KEYS */;
INSERT INTO `example` VALUES (1,'测试','测试临时','/static/doc/123.md','2017-11-22 20:17:10','2017-11-22 20:17:15'),(2,'123sadfxzcv','asdfsadfczxcv','/doc/3d93ca6018161c9c425b8b614eac06a4.md','2017-11-23 09:53:57','2017-11-23 09:53:57');
/*!40000 ALTER TABLE `example` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `example_attachment`
--
DROP TABLE IF EXISTS `example_attachment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `example_attachment` (
`example_id` bigint(20) unsigned NOT NULL,
`attachment_id` bigint(20) unsigned NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `example_attachment`
--
LOCK TABLES `example_attachment` WRITE;
/*!40000 ALTER TABLE `example_attachment` DISABLE KEYS */;
INSERT INTO `example_attachment` VALUES (1,1),(1,2),(2,3);
/*!40000 ALTER TABLE `example_attachment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `question`
--
DROP TABLE IF EXISTS `question`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `question` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`content` varchar(300) NOT NULL,
`question_type` smallint(5) unsigned DEFAULT NULL,
`test_id` bigint(20) unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `question`
--
LOCK TABLES `question` WRITE;
/*!40000 ALTER TABLE `question` DISABLE KEYS */;
INSERT INTO `question` VALUES (27,'测试1',1,1),(28,'测试2',1,1),(29,'测试3',2,1),(30,'测试4',1,1),(31,'测试5撒点发是打发斯蒂芬撒点发是打发斯蒂芬撒点发是打发斯蒂芬撒点发是打发斯蒂芬撒点发是打发斯蒂芬撒点发是打发斯蒂芬撒点发是打发斯蒂芬撒点发是打发斯蒂芬',1,1),(32,'测试6',2,1),(33,'测试7',1,1);
/*!40000 ALTER TABLE `question` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `question_answer`
--
DROP TABLE IF EXISTS `question_answer`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `question_answer` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`question_id` bigint(20) unsigned NOT NULL,
`choice_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `question_answer`
--
LOCK TABLES `question_answer` WRITE;
/*!40000 ALTER TABLE `question_answer` DISABLE KEYS */;
INSERT INTO `question_answer` VALUES (1,27,34),(2,28,40),(3,29,41),(4,29,44),(5,30,46),(6,31,48),(7,32,51),(8,32,52),(9,33,56);
/*!40000 ALTER TABLE `question_answer` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `test`
--
DROP TABLE IF EXISTS `test`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `test` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(30) NOT NULL,
`description` text,
`gmt_create` datetime NOT NULL,
`gmt_modified` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `test`
--
LOCK TABLES `test` WRITE;
/*!40000 ALTER TABLE `test` DISABLE KEYS */;
INSERT INTO `test` VALUES (1,'基础知识在线测试','就暗示的蓝卡分解埃里克森达菲鸡可拉伸的','2017-11-19 11:17:08','2017-11-19 11:17:12'),(2,'进阶知识测试','啊伺机待发离开家阿斯利康达菲鸡埃里克撒地方','2017-11-19 11:17:30','2017-11-19 11:17:34'),(3,'拓展知识测试','阿斯加德福利库静安寺离开的放假了卡使得','2017-11-19 11:17:47','2017-11-10 11:17:49'),(4,'高级知识测试','阿斯利康定积分行政村v装修成V字形橙V','2017-11-05 11:18:16','2017-11-19 11:18:20'),(5,'测试','撒地方','2017-11-20 14:29:29','2017-11-20 14:29:33');
/*!40000 ALTER TABLE `test` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`account` varchar(20) NOT NULL,
`password` varchar(20) NOT NULL,
`gender` char(3) NOT NULL,
`name` varchar(24) NOT NULL,
`gmt_create` datetime NOT NULL,
`gmt_modified` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
INSERT INTO `user` VALUES (1,'B20140304532','123123','男','谭国炜','2017-11-03 14:16:10','2017-11-03 14:16:12'),(2,'qweqwe','123123','女','asdfasdfasdf','2017-11-17 17:20:04','2017-11-17 17:20:04'),(3,'asdfasdf','123123','女','asdfasdf','2017-11-20 14:46:07','2017-11-20 14:46:07');
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2017年11月23日 10:01:27
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

暂无描述
暂无标签
Apache-2.0
使用 Apache-2.0 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Corvey/study-java.git
git@gitee.com:Corvey/study-java.git
Corvey
study-java
Java学习网
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /