课程设计&毕设学习分享—全新精品毕设项目分享设计与实现

前言

马上毕业季又要开始了,陆陆续续又要准备毕业设计了,有些学生轻而易举就搞定了,有些学生压根没有思路怎么做,可能是因为技术问题,也可能是因为经验问题。

下边这些毕业设计项目中,大部分都是适用于有一定基础的同学哦,希望每个人都能顺利的完成自己的毕业设计,为大学最后的生涯画上一个圆满的句号。

关于大学毕业设计,每个人都感到很头疼,到底选什么题目好呢?

选这个题目被人做过,选那个题目感觉技术难度太高实现不了,选题综合征就来了,一个字“难”;

今天就分享给大家10多套精品毕设,质量很高,易于通过,总有一套适合你!一定要收藏!!都是博主在csdn下载学习后觉得不错的资源,一起打包放在了这里(https://mbd.pub/o/bread/ZpWWkp9x),有需要的同学可以自取,价格实惠,绝对友情价,可以自己搜索对比下;最重要的是,比起自己去单个搜索,博主已经汇总好了这一类的知识,而且筛选过,更能够有效帮到大家做课程设计和毕业设计!!

合集中包括下面的项目:
“跑得快”微信小程序-校园跑腿系统源码+项目说明+数据库
一个安卓平台的校园类综合信息服务app(源码+项目说明)
基于Android的校园运动APP源码+项目说明(拥有完善的跑步和统计功能)
基于C语言的校园新闻发布管理系统源码+项目说明(高分课设)
基于JDBC+MySQL+Servlet+JSP+Java实现简单校园论坛系统源码+项目说明
基于SSM+Mysql从零构建校园商铺平台系统源码+数据库+项目说明(毕设)
基于SSM框架的JavaWeb项目志愿者时长管理系统源码
基于Servlet的网上花店系统源码+数据库
基于SpringBoot+Bootstrap+Mybatis的校园二手商城系统源码+数据库+项目说明
基于SpringBoot+vue的在线花店后台管理系统源码+数据库+项目说明(毕设)
基于asp.net的校园信息论坛交流照片分享网站源码+数据库+项目说明(毕业设计)
校园失物招领平台-小程序端源码
校园来访预约小程序前后端源码+项目说明(包括校园动态,来访须知,来访预约,来访审核,用户登记等功能)
校园热榜小程序源码(实现发布、在线聊天功能,可以根据用户学校向用户推荐相应的新闻趣事和周边美食)
综合性校园跑腿系统源码

博主下面介绍学习毕设项目时觉得比较好的一个案例:
基于SpringBoot开发非常美观的Java论坛系统

资源目录:

系统配置


概述:

###1. 数据库配置

  • 创建数据库, 在设置编码时请选择UTF-8

  • 修改配置文件 mblog-web/src/main/resources/application.yml, 将username和password替换成你自己的

  • 导入初始数据 mblog-web/sql/db_mblog.sql, 数据中的初始账号为 admin, 密码 12345。

###2. 文件存放目录

  • 找到 mblog-web/src/main/resources/application.yml.properties 文件

  • 修改 site.store.root 属性, windows 用户记得地址要带盘符, linux 用户不带 (如果不将图片存储到部署目录外使用默认配置即可)

  • site.store.repo 存储模式 absolute (绝对路径存储, 系统将图片保存在{site.store.root}目录下}) / relative (相对路径存储,系统将图片存在部署目录下)

  • 更多说明见[Mblog 图片存储说明]文档

###3. 第三方登录

目前Mblog支持QQ、微博、豆瓣进行第三方登录。

  • 申请对应的 App Key

  • 配置第三方的验证代码,也就是meta标签, 这些在后台的系统配置中修改扩展metas属性即可, 例如:<meta property="qc:admins" content="514502" /> 扩展metas需要你输入完整的meta标签

  • 等待审核过了, 你就可以用啦

注意:第三方登录只能在正式环境下调试, 即第三方能通过域名回调进的系统

###4. 邮件服务账号配置

  • 找到一个邮箱账号

  • 开启smtp服务

  • 在系统后台-系统配置添加你的邮件服务配置

  • 邮件配置就成功啦

此处配置将用于系统来发送邮件

###5. 关于Tomcat部署 请在Connector设置url编码, 否则标签页会出现乱码

<Connector port=“8080” protocol=“HTTP/1.1” … URIEncoding=“UTF-8”/>

图片存储说明


概述:

  • 写在之前

  • 集成在Tomcat目录下

  • 存储在Tomcat目录以外

###1. 写在之前(application.yml介绍)

  • site.store.root 图片文件存储目录 site.store.repo=absolute 时有效

  • site.store.repo 图片存储模式, 可选值[absolute / relative]; 设置为absolute系统将图片存在store.root配置的目录下,relative存储在部署目录下

  • site.store.domain 是否开启资源域名, 可选值[true/false]; 设置为true为开启,系统中的图片使用 resource.host配置的域名+图片目录进行访问, false 直接使用存储的图片目录访问

  • site.store.host 资源域名配置

  • 此文以tomcat为例, 其他应用服务器同理

  • 此文以linux系统为例, 所有的文件路径不带盘符, windows用户请眼光里自带盘符来阅读

###2. 集成在Tomcat目录下 系统默认使用此配置, 不需要更改

  • 优点: 简单、不用改配置

  • 缺点: tomcat被删或tomcat的webapps目录被清空图片也就丢失了, 建议开发调试时使用此种方式, 正式环境不推荐

###3. 存储在Tomcat目录以外

  • 优点: 独立于tomcat等应用服务器以外, 图片的存储安全不受容器影响

  • 确定: 配置复杂点

  1. 给图片单独配置域名 配置如下:

site.store.root=/data/mblog
site.store.repo=absolute
site.store.domain=true
site.store.host={你的域名}

如果你用了nginx,为图片单独配置一个server即可, 如果只是tomcat 可以在tomcat里面把图片目录当一个项目部署, 如果在一个tomcat里面部署两个项目这里不做阐述

  1. 不给图片单独配置域名 配置如下:

site.store.root=/data/mblog
site.store.repo=absolute
site.store.domain=false
site.store.host={此处不用配置}

这种配置你必须有静态文件服务器了,可以用 apache + tomcat 或 nginx + tomcat, apache/nginx 处理静态文件请求, tomcat 处理动态请求 这里以nginx为例, nginx 配置如下:

server {
listen 80;
server_name localhost;
index index.html index.htm;

# css/js 的访问指向 项目部署路径中的 {项目部署路径}/assets
location /assets {
alias /app/mblog-web/assets;
}

# 图片访问由 nginx 直接访问 {store.root}/store
location /store {
alias /data/mblog/store;
}

location / {
proxy_pass http://localhost:8080;
proxy_redirect default;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;

proxy_connect_timeout 180;
proxy_send_timeout 180;
proxy_read_timeout 180;
}
}

数据库SQL:

/* Navicat Premium Data Transfer Source Server         : localhost Source Server Type    : MySQL Source Server Version : 50712 Source Host           : localhost Source Database       : db_mblog Target Server Type    : MySQL Target Server Version : 50712 File Encoding         : utf-8 Date: 09/29/2017 17:34:11 PM*/ SET NAMES utf8;SET FOREIGN_KEY_CHECKS = 0; -- ------------------------------  Table structure for `mto_attachs`-- ----------------------------DROP TABLE IF EXISTS `mto_attachs`;CREATE TABLE `mto_attachs` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `height` int(11) NOT NULL,  `original` varchar(255) DEFAULT NULL,  `preview` varchar(255) DEFAULT NULL,  `screenshot` varchar(255) DEFAULT NULL,  `status` int(11) NOT NULL,  `store` int(11) NOT NULL,  `to_id` bigint(20) DEFAULT NULL,  `width` int(11) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_auth_menu`-- ----------------------------DROP TABLE IF EXISTS `mto_auth_menu`;CREATE TABLE `mto_auth_menu` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `name` varchar(255) DEFAULT NULL,  `parent_ids` varchar(255) DEFAULT NULL,  `permission` varchar(255) DEFAULT NULL,  `sort` int(11) NOT NULL,  `url` varchar(255) DEFAULT NULL,  `parent_id` bigint(20) DEFAULT NULL,  `icon` varchar(255) DEFAULT NULL,  PRIMARY KEY (`id`),  KEY `FK_fynq2bfwabynqmnauw69b7ulc` (`parent_id`)) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8; -- ------------------------------  Records of `mto_auth_menu`-- ----------------------------BEGIN;INSERT INTO `mto_auth_menu` VALUES ('1', '根目录', '', '', '1', '/', '0', null), ('2', '后台管理', null, 'admin', '1', 'admin', '1', null), ('4', '文章管理', null, 'posts:view', '2', 'admin/posts/list', '2', 'fa fa-clone icon-xlarge'), ('5', '文章修改', null, 'posts:edit', '1', null, '4', null), ('6', '文章查看', null, 'posts:view', '1', '', '4', null), ('8', '评论管理', null, 'comments:view', '4', 'admin/comments/list', '2', 'fa fa-comments-o icon-xlarge'), ('9', '删除评论', null, 'comments:edit', '1', null, '8', null), ('10', '评论查看', null, 'comments:view', '1', '', '8', null), ('11', '栏目管理', null, 'group:view', '5', 'admin/group/list', '2', 'fa fa-tags icon-xlarge'), ('12', '删除栏目', null, 'group:edit', '1', null, '11', null), ('13', '修改栏目', null, 'group:edit', '2', null, '11', null), ('15', '系统配置', null, 'config:view', '6', 'admin/config/', '2', 'fa fa-sun-o icon-xlarge'), ('16', '修改配置', null, 'config:edit', '1', null, '15', null), ('17', '用户管理', null, 'users:view', '3', 'admin/users/list', '2', 'fa fa-user icon-xlarge'), ('18', '禁用用户', null, 'users:edit', '1', '', '17', null), ('19', '修改密码', null, 'users:edit', '1', null, '17', null), ('20', '用户查看', null, 'users:view', '1', '', '17', null), ('35', '角色管理', null, 'roles:view', '7', 'admin/roles/list', '2', 'fa fa fa-registered icon-xlarge'), ('36', '角色修改', null, 'roles:edit', '0', null, '35', null), ('37', '角色查看', null, 'roles:view', '1', '', '35', null), ('41', '菜单管理', null, 'authMenus:view', '8', 'admin/authMenus/list', '2', 'fa fa-reorder icon-xlarge'), ('42', '菜单修改', null, 'authMenus:edit', '0', '', '41', null), ('43', '菜单查看', null, 'authMenus:view', '1', '', '41', null), ('45', '友情链接', null, 'friendLink:view', '8', 'admin/friendLink/list', '2', 'fa fa-link'), ('46', '友情链接修改', null, 'friendLink:edit', '0', '', '45', null), ('47', '友情链接查看', null, 'friendLink:view', '0', '', '45', null);COMMIT; -- ------------------------------  Table structure for `mto_comments`-- ----------------------------DROP TABLE IF EXISTS `mto_comments`;CREATE TABLE `mto_comments` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `author_id` bigint(20) DEFAULT NULL,  `content` varchar(255) DEFAULT NULL,  `created` datetime DEFAULT NULL,  `pid` bigint(20) NOT NULL,  `status` int(11) NOT NULL,  `to_id` bigint(20) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_config`-- ----------------------------DROP TABLE IF EXISTS `mto_config`;CREATE TABLE `mto_config` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `key_` varchar(255) DEFAULT NULL,  `type` varchar(255) DEFAULT NULL,  `value` varchar(255) DEFAULT NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `UK_99vo6d7ci4wlxruo3gd0q2jq8` (`key_`)) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; -- ------------------------------  Records of `mto_config`-- ----------------------------BEGIN;INSERT INTO `mto_config` VALUES ('1', 'site_name', '0', 'Mtons'), ('2', 'site_welcomes', '0', 'Mtons, 轻松分享你的兴趣'), ('3', 'site_domain', '0', 'http://mtons.com'), ('4', 'site_keywords', '0', 'mtons,博客,社区,摄影,旅游,艺术,娱乐'), ('5', 'site_description', '0', 'Mtons, 轻松分享你的兴趣. 便捷的文字、图片发布,扁平化的响应式设计,美观、大气,是您记录生活的最佳选择'), ('6', 'site_editor', '1', 'ueditor'), ('7', 'site_metas', '0', ''), ('8', 'site_copyright', '0', ''), ('9', 'site_icp', '0', ''), ('10', 'site_advs_right', '0', '');COMMIT; -- ------------------------------  Table structure for `mto_favors`-- ----------------------------DROP TABLE IF EXISTS `mto_favors`;CREATE TABLE `mto_favors` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `created` datetime DEFAULT NULL,  `own_id` bigint(20) DEFAULT NULL,  `post_id` bigint(20) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_feeds`-- ----------------------------DROP TABLE IF EXISTS `mto_feeds`;CREATE TABLE `mto_feeds` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `author_id` bigint(20) DEFAULT NULL,  `created` datetime DEFAULT NULL,  `own_id` bigint(20) DEFAULT NULL,  `post_id` bigint(20) DEFAULT NULL,  `type` int(11) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_follows`-- ----------------------------DROP TABLE IF EXISTS `mto_follows`;CREATE TABLE `mto_follows` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `created` datetime DEFAULT NULL,  `follow_id` bigint(20) NOT NULL,  `user_id` bigint(20) NOT NULL,  PRIMARY KEY (`id`),  KEY `FK_t38um6ivtsbk34xph98levx4x` (`follow_id`),  KEY `FK_3grh3868ek909r524m0kphmux` (`user_id`),  CONSTRAINT `FK_3grh3868ek909r524m0kphmux` FOREIGN KEY (`user_id`) REFERENCES `mto_users` (`id`),  CONSTRAINT `FK_t38um6ivtsbk34xph98levx4x` FOREIGN KEY (`follow_id`) REFERENCES `mto_users` (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_friend_link`-- ----------------------------DROP TABLE IF EXISTS `mto_friend_link`;CREATE TABLE `mto_friend_link` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `logo` varchar(255) DEFAULT NULL,  `remark` varchar(255) DEFAULT NULL,  `site_name` varchar(255) NOT NULL,  `sort` int(11) NOT NULL,  `url` varchar(255) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_group`-- ----------------------------DROP TABLE IF EXISTS `mto_group`;CREATE TABLE `mto_group` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `key_` varchar(255) DEFAULT NULL,  `name` varchar(255) DEFAULT NULL,  `status` int(11) NOT NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `UK_2s863lts1h6m7c30152262cvj` (`key_`)) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ------------------------------  Records of `mto_group`-- ----------------------------BEGIN;INSERT INTO `mto_group` VALUES ('1', 'blog', '博文', '0'), ('2', 'web', 'WEB', '0'), ('3', 'tutorial', '教程', '0');COMMIT; -- ------------------------------  Table structure for `mto_logs`-- ----------------------------DROP TABLE IF EXISTS `mto_logs`;CREATE TABLE `mto_logs` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `created` date DEFAULT NULL,  `ip` varchar(255) DEFAULT NULL,  `target_id` bigint(20) DEFAULT NULL,  `type` int(11) NOT NULL,  `user_id` bigint(20) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_menu`-- ----------------------------DROP TABLE IF EXISTS `mto_menu`;CREATE TABLE `mto_menu` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(18) DEFAULT NULL,  `status` int(11) NOT NULL,  `target` varchar(18) DEFAULT NULL,  `url` varchar(255) DEFAULT NULL,  `weight` int(11) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_notify`-- ----------------------------DROP TABLE IF EXISTS `mto_notify`;CREATE TABLE `mto_notify` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `created` datetime DEFAULT NULL,  `event` int(11) NOT NULL,  `from_id` bigint(20) DEFAULT NULL,  `own_id` bigint(20) DEFAULT NULL,  `post_id` bigint(20) DEFAULT NULL,  `status` int(11) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_posts`-- ----------------------------DROP TABLE IF EXISTS `mto_posts`;CREATE TABLE `mto_posts` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `author_id` bigint(20) DEFAULT NULL,  `comments` int(11) NOT NULL,  `created` datetime DEFAULT NULL,  `editor` varchar(255) DEFAULT NULL,  `favors` int(11) NOT NULL,  `featured` int(11) NOT NULL,  `group_` int(11) DEFAULT NULL,  `images` int(11) NOT NULL,  `last_image_id` bigint(20) DEFAULT NULL,  `status` int(11) NOT NULL,  `summary` varchar(255) DEFAULT NULL,  `tags` varchar(255) DEFAULT NULL,  `title` varchar(64) DEFAULT NULL,  `views` int(11) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_posts_attach`-- ----------------------------DROP TABLE IF EXISTS `mto_posts_attach`;CREATE TABLE `mto_posts_attach` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `height` int(11) NOT NULL,  `original` varchar(255) DEFAULT NULL,  `preview` varchar(255) DEFAULT NULL,  `screenshot` varchar(255) DEFAULT NULL,  `status` int(11) NOT NULL,  `store` int(11) NOT NULL,  `to_id` bigint(20) DEFAULT NULL,  `width` int(11) NOT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_posts_attribute`-- ----------------------------DROP TABLE IF EXISTS `mto_posts_attribute`;CREATE TABLE `mto_posts_attribute` (  `id` bigint(20) NOT NULL,  `content` longtext,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_role`-- ----------------------------DROP TABLE IF EXISTS `mto_role`;CREATE TABLE `mto_role` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `name` varchar(255) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ------------------------------  Records of `mto_role`-- ----------------------------BEGIN;INSERT INTO `mto_role` VALUES ('1', '管理员'), ('2', '普通用户'), ('3', '半个管理员');COMMIT; -- ------------------------------  Table structure for `mto_role_menu`-- ----------------------------DROP TABLE IF EXISTS `mto_role_menu`;CREATE TABLE `mto_role_menu` (  `role_id` bigint(20) NOT NULL,  `menu_id` bigint(20) NOT NULL,  KEY `FK_td8ih8aorlkpyop3gemfqxmbt` (`menu_id`),  KEY `FK_5o5vaxfyg0d1qa0142dnkruiv` (`role_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Records of `mto_role_menu`-- ----------------------------BEGIN;INSERT INTO `mto_role_menu` VALUES ('1', '1'), ('1', '2'), ('1', '4'), ('1', '8'), ('1', '11'), ('1', '15'), ('1', '17'), ('1', '35'), ('1', '41'), ('1', '45'), ('1', '5'), ('1', '6'), ('1', '9'), ('1', '10'), ('1', '12'), ('1', '13'), ('1', '16'), ('1', '18'), ('1', '19'), ('1', '20'), ('1', '36'), ('1', '37'), ('1', '42'), ('1', '43'), ('1', '46'), ('1', '47');COMMIT; -- ------------------------------  Table structure for `mto_user_role`-- ----------------------------DROP TABLE IF EXISTS `mto_user_role`;CREATE TABLE `mto_user_role` (  `user_id` bigint(20) NOT NULL,  `role_id` bigint(20) NOT NULL,  KEY `FK_fhtla2vc199mv0ru2r2kvakha` (`role_id`),  KEY `FK_b4m7ef0uvkr4efrscf8r1ehy2` (`user_id`),  CONSTRAINT `FK_b4m7ef0uvkr4efrscf8r1ehy2` FOREIGN KEY (`user_id`) REFERENCES `mto_users` (`id`),  CONSTRAINT `FK_fhtla2vc199mv0ru2r2kvakha` FOREIGN KEY (`role_id`) REFERENCES `mto_role` (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Records of `mto_user_role`-- ----------------------------BEGIN;INSERT INTO `mto_user_role` VALUES ('1', '1');COMMIT; -- ------------------------------  Table structure for `mto_users`-- ----------------------------DROP TABLE IF EXISTS `mto_users`;CREATE TABLE `mto_users` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `created` datetime DEFAULT NULL,  `email` varchar(128) DEFAULT NULL,  `last_login` datetime DEFAULT NULL,  `mobile` varchar(11) DEFAULT NULL,  `password` varchar(32) DEFAULT NULL,  `status` int(11) NOT NULL,  `username` varchar(64) DEFAULT NULL,  `name` varchar(64) DEFAULT NULL,  `avatar` varchar(255) DEFAULT '/assets/images/ava/default.png',  `updated` datetime DEFAULT NULL,  `gender` int(11) NOT NULL,  `role_id` int(11) DEFAULT NULL,  `source` int(11) NOT NULL,  `active_email` int(11) DEFAULT NULL,  `comments` int(11) NOT NULL,  `fans` int(11) NOT NULL,  `favors` int(11) NOT NULL,  `follows` int(11) NOT NULL,  `posts` int(11) NOT NULL,  `signature` varchar(255) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ------------------------------  Records of `mto_users`-- ----------------------------BEGIN;INSERT INTO `mto_users` VALUES ('1', '2015-08-06 17:52:41', 'admin@mtons.com', '2017-09-29 17:25:22', null, '3TGCQF25BLHU9R7IQUITN0FCC5', '0', 'admin', '小豆丁', '/assets/images/ava/default.png', '2015-07-26 11:08:36', '0', '1', '0', '1', '0', '0', '0', '0', '4', null);COMMIT; -- ------------------------------  Table structure for `mto_users_open_oauth`-- ----------------------------DROP TABLE IF EXISTS `mto_users_open_oauth`;CREATE TABLE `mto_users_open_oauth` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `access_token` varchar(255) DEFAULT NULL,  `expire_in` varchar(255) DEFAULT NULL,  `oauth_code` varchar(255) DEFAULT NULL,  `oauth_type` int(11) DEFAULT NULL,  `oauth_user_id` varchar(255) DEFAULT NULL,  `refresh_token` varchar(255) DEFAULT NULL,  `user_id` bigint(20) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ------------------------------  Table structure for `mto_verify`-- ----------------------------DROP TABLE IF EXISTS `mto_verify`;CREATE TABLE `mto_verify` (  `id` bigint(20) NOT NULL AUTO_INCREMENT,  `code` varchar(60) NOT NULL,  `created` datetime NOT NULL,  `expired` datetime NOT NULL,  `status` int(11) DEFAULT NULL,  `target` varchar(96) DEFAULT NULL,  `token` varchar(255) DEFAULT NULL,  `type` int(11) DEFAULT NULL,  `user_id` bigint(20) DEFAULT NULL,  PRIMARY KEY (`id`),  UNIQUE KEY `UK_m7p0b526c4xlgjn787t22om2g` (`user_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET FOREIGN_KEY_CHECKS = 1;
  • 30
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值