You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
3.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
Navicat Premium Data Transfer
Source Server : localMysql
Source Server Type : MySQL
Source Server Version : 50733
Source Host : localhost:3306
Source Schema : testdb01
Target Server Type : MySQL
Target Server Version : 50733
File Encoding : 65001
Date: 10/09/2021 16:39:33
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for todo_list
-- ----------------------------
DROP TABLE IF EXISTS `todo_list`;
CREATE TABLE `todo_list` (
`ID` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`CONTENT` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '待办事项内容',
`STATUS` bit(1) NOT NULL COMMENT '状态0未完成1已完成',
`CREATE_TIME` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`COMPLETE_TIME` datetime(0) NULL DEFAULT NULL COMMENT '完成时间',
`USER_ID` int(11) NULL DEFAULT NULL,
`DEL_STATE` bit(1) NULL DEFAULT NULL COMMENT '删除状态',
PRIMARY KEY (`ID`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 25 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of todo_list
-- ----------------------------
INSERT INTO `todo_list` VALUES (3, '呵呵', b'1', '2021-09-09 14:41:57', '2021-09-09 15:19:08', NULL, b'1');
INSERT INTO `todo_list` VALUES (4, '7788', b'1', '2021-09-09 14:42:29', '2021-09-09 15:19:07', NULL, b'1');
INSERT INTO `todo_list` VALUES (5, '待办事项功能开发', b'1', '2021-09-09 14:42:47', '2021-09-10 09:02:51', NULL, b'0');
INSERT INTO `todo_list` VALUES (6, '8', b'1', '2021-09-09 14:42:49', '2021-09-09 16:37:14', NULL, b'1');
INSERT INTO `todo_list` VALUES (7, '9', b'1', '2021-09-09 14:42:51', '2021-09-09 16:00:06', NULL, b'1');
INSERT INTO `todo_list` VALUES (8, '10', b'1', '2021-09-09 14:42:54', '2021-09-09 15:11:19', NULL, b'1');
INSERT INTO `todo_list` VALUES (10, '广泛的', b'1', '2021-09-09 14:43:00', '2021-09-09 14:53:02', NULL, b'1');
INSERT INTO `todo_list` VALUES (12, 'K线图功能开发', b'0', '2021-09-09 14:43:05', NULL, NULL, b'0');
INSERT INTO `todo_list` VALUES (13, '22', b'1', '2021-09-09 15:03:43', '2021-09-09 16:00:34', NULL, b'1');
INSERT INTO `todo_list` VALUES (15, '数字货币行情功能开发接入FTFTX', b'1', '2021-09-09 15:21:12', '2021-09-10 13:08:03', NULL, b'0');
INSERT INTO `todo_list` VALUES (17, '账本功能', b'1', '2021-09-09 15:22:21', '2021-09-10 09:07:35', NULL, b'0');
INSERT INTO `todo_list` VALUES (18, '2', b'1', '2021-09-09 16:31:00', '2021-09-09 16:37:15', NULL, b'1');
INSERT INTO `todo_list` VALUES (19, 'r', b'0', '2021-09-09 16:33:59', NULL, NULL, b'1');
INSERT INTO `todo_list` VALUES (20, '7777', b'1', '2021-09-09 17:10:08', '2021-09-10 09:04:49', NULL, b'1');
INSERT INTO `todo_list` VALUES (21, '交易功能DEMO开发', b'0', '2021-09-10 16:32:20', NULL, NULL, b'0');
INSERT INTO `todo_list` VALUES (22, 'Shiro学习', b'0', '2021-09-10 16:32:38', NULL, NULL, b'0');
INSERT INTO `todo_list` VALUES (23, '系统登陆功能,权限管理功能', b'0', '2021-09-10 16:32:57', NULL, NULL, b'0');
INSERT INTO `todo_list` VALUES (24, 'SpringSecurity', b'0', '2021-09-10 16:33:50', NULL, NULL, b'0');
SET FOREIGN_KEY_CHECKS = 1;