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

t_user_ureport2.sql 2.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : dev
  4. Source Server Type : MySQL
  5. Source Server Version : 50732
  6. Source Host : localhost:3306
  7. Source Schema : spring-boot-demo
  8. Target Server Type : MySQL
  9. Target Server Version : 50732
  10. File Encoding : 65001
  11. Date: 26/10/2020 23:30:27
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for t_user_ureport2
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `t_user_ureport2`;
  19. CREATE TABLE `t_user_ureport2` (
  20. `id` bigint(13) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  21. `name` varchar(255) COLLATE utf8mb4_bin NOT NULL COMMENT '姓名',
  22. `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
  23. `status` tinyint(4) NOT NULL COMMENT '是否禁用',
  24. PRIMARY KEY (`id`)
  25. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
  26. -- ----------------------------
  27. -- Records of t_user_ureport2
  28. -- ----------------------------
  29. BEGIN;
  30. INSERT INTO `t_user_ureport2` VALUES (1, '测试人员 1', '2020-10-22 09:01:58', 1);
  31. INSERT INTO `t_user_ureport2` VALUES (2, '测试人员 2', '2020-10-22 09:02:00', 0);
  32. INSERT INTO `t_user_ureport2` VALUES (3, '测试人员 3', '2020-10-23 03:02:00', 1);
  33. INSERT INTO `t_user_ureport2` VALUES (4, '测试人员 4', '2020-10-23 23:02:00', 1);
  34. INSERT INTO `t_user_ureport2` VALUES (5, '测试人员 5', '2020-10-23 23:02:00', 1);
  35. INSERT INTO `t_user_ureport2` VALUES (6, '测试人员 6', '2020-10-24 11:02:00', 0);
  36. INSERT INTO `t_user_ureport2` VALUES (7, '测试人员 7', '2020-10-24 20:02:00', 0);
  37. INSERT INTO `t_user_ureport2` VALUES (8, '测试人员 8', '2020-10-25 08:02:00', 1);
  38. INSERT INTO `t_user_ureport2` VALUES (9, '测试人员 9', '2020-10-25 09:02:00', 1);
  39. INSERT INTO `t_user_ureport2` VALUES (10, '测试人员 10', '2020-10-25 13:02:00', 1);
  40. INSERT INTO `t_user_ureport2` VALUES (11, '测试人员 11', '2020-10-26 21:02:00', 0);
  41. INSERT INTO `t_user_ureport2` VALUES (12, '测试人员 12', '2020-10-26 23:02:00', 1);
  42. INSERT INTO `t_user_ureport2` VALUES (13, '测试人员 13', '2020-10-26 23:02:00', 1);
  43. COMMIT;
  44. SET FOREIGN_KEY_CHECKS = 1;

一个用来深度学习并实战 spring boot 的项目,目前总共包含 66 个集成demo,已经完成 55 个。