1 Star 0 Fork 0

luohanye/mybatis-plus-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mybatis_plus.sql 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
luohanye 提交于 2020-11-01 12:54 +08:00 . add readme and sql file
/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50716
Source Host : localhost:3306
Source Database : mybatis_plus
Target Server Type : MYSQL
Target Server Version : 50716
File Encoding : 65001
Date: 2020-11-01 12:51:20
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for tb_user
-- ----------------------------
DROP TABLE IF EXISTS `tb_user`;
CREATE TABLE `tb_user` (
`id` bigint(20) NOT NULL COMMENT '主键ID',
`name` varchar(30) DEFAULT NULL COMMENT '姓名',
`age` int(11) DEFAULT NULL COMMENT '年龄',
`email` varchar(50) DEFAULT NULL COMMENT '邮箱',
`create_time` datetime DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
`version` int(11) DEFAULT '1',
`deleted` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of tb_user
-- ----------------------------
INSERT INTO `tb_user` VALUES ('1', 'Helen Yao2', '18', 'helen2@qq.com', null, '2020-03-01 18:48:25', '3', '1');
INSERT INTO `tb_user` VALUES ('2', 'Andy', '99', 'test2@baomidou.com', null, '2020-03-02 23:24:45', '1', '0');
INSERT INTO `tb_user` VALUES ('3', 'Andy', '99', 'test3@baomidou.com', null, '2020-03-02 23:24:45', '1', '0');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/indexman/mybatis-plus-demo.git
git@gitee.com:indexman/mybatis-plus-demo.git
indexman
mybatis-plus-demo
mybatis-plus-demo
master

搜索帮助