1 Star 1 Fork 0

ckyhhh/officeSwitch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jyj_v2_db.sql 2.56 KB
一键复制 编辑 原始数据 按行查看 历史
ckyhhh 提交于 2021-07-30 19:45 . file-upload
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50505
Source Host : localhost:3306
Source Database : jyj_v2_db
Target Server Type : MYSQL
Target Server Version : 50505
File Encoding : 65001
Date: 2021-07-10 15:00:30
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for collect
-- ----------------------------
DROP TABLE IF EXISTS `collect`;
CREATE TABLE `collect` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`userId` int(11) DEFAULT NULL,
`fileId` int(11) DEFAULT NULL,
`collectTime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of collect
-- ----------------------------
INSERT INTO `collect` VALUES ('7', '3', '2', '2021-07-09 02:08:20');
-- ----------------------------
-- Table structure for file
-- ----------------------------
DROP TABLE IF EXISTS `file`;
CREATE TABLE `file` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`userId` int(11) DEFAULT NULL,
`describe` varchar(255) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
`coverPic` varchar(255) DEFAULT NULL,
`type` int(11) DEFAULT NULL,
`releaseTime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of file
-- ----------------------------
INSERT INTO `file` VALUES ('22', 'Vue风格指南', '436', 'Vue风格指南,更好的编码标准', '/upload/file/2021-07-10/1625899885953.pdf', '/upload/image/2021-07-10/1625899885976.jpg', '1', '2021-07-10 06:49:02');
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`nickname` varchar(255) DEFAULT NULL,
`avatar` varchar(255) DEFAULT NULL,
`role` int(11) DEFAULT 0 COMMENT '0 普通用户,1 管理员 ,2超级管理员',
`regTime` datetime DEFAULT NULL,
`lastTime` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', 'admin', 'e10adc3949ba59abbe56e057f20f883e', '超级管理员', null, '2', null, null);
INSERT INTO `user` VALUES ('3', 'hen', 'e10adc3949ba59abbe56e057f20f883e', '管理员2', '/upload/avatar/2021-07-08/1625754437374.jpg', '1', null, '2021-07-09 02:07:53');
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chen-kaiyu/office-switch.git
git@gitee.com:chen-kaiyu/office-switch.git
chen-kaiyu
office-switch
officeSwitch
master

搜索帮助