post_collections_system.sql 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : ruoyi
  4. Source Server Version : 50737
  5. Source Host : 120.76.241.226:3306
  6. Source Database : post
  7. Target Server Type : MYSQL
  8. Target Server Version : 50737
  9. File Encoding : 65001
  10. Date: 2023-02-26 14:37:24
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for post_collections_system
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `post_collections_system`;
  17. CREATE TABLE `post_collections_system` (
  18. `id` int(22) NOT NULL AUTO_INCREMENT COMMENT '主键',
  19. `type` int(22) NOT NULL DEFAULT '0' COMMENT '0 在售 1 预售 2已过期',
  20. `name` varchar(255) DEFAULT NULL COMMENT '藏品名称',
  21. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  22. `start_time` datetime DEFAULT NULL COMMENT '开始展示时间',
  23. `end_time` datetime DEFAULT NULL COMMENT '结束展示时间',
  24. `status` char(1) DEFAULT '0' COMMENT '0 未上架 1 已上架',
  25. `image` varchar(255) DEFAULT NULL COMMENT '藏品套系图片储存地址',
  26. `gift_exchange` int(22) DEFAULT '0' COMMENT '0 线下礼品不兑换 1 线下礼品兑换',
  27. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  28. `create_by` varchar(255) DEFAULT NULL COMMENT '创建者',
  29. `update_by` varchar(255) DEFAULT NULL COMMENT '更新者',
  30. `del_flag` char(1) DEFAULT '0' COMMENT '删除标志 (0不删除 1删除)',
  31. PRIMARY KEY (`id`)
  32. ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4;
  33. -- ----------------------------
  34. -- Records of post_collections_system
  35. -- ----------------------------
  36. INSERT INTO `post_collections_system` VALUES ('1', '0', 'sjx_test', '2023-02-15 12:13:02', null, null, '1', null, '0', '2023-02-19 15:19:44', null, 'admin', '0');
  37. INSERT INTO `post_collections_system` VALUES ('2', '0', 'string', '2023-02-15 13:18:06', '2023-02-09 08:05:04', '2023-02-15 00:00:00', '1', 'string', '0', '2023-02-19 15:19:44', 'string', 'admin', '0');
  38. INSERT INTO `post_collections_system` VALUES ('3', '1', 'string', '2023-02-16 17:19:16', '2023-02-17 00:00:00', '2023-02-18 00:00:00', '0', 'string', '0', '2023-02-18 23:06:38', 'string', 'admin', '0');
  39. INSERT INTO `post_collections_system` VALUES ('4', '0', 'string', '2023-02-16 17:26:32', '2023-02-15 00:00:00', '2023-02-17 00:00:00', '0', 'string', '0', '2023-02-16 17:26:32', 'string', 'string', '0');
  40. INSERT INTO `post_collections_system` VALUES ('5', '0', 'string', '2023-02-16 20:09:47', '2023-02-15 00:00:00', '2023-02-17 00:00:00', '0', 'string', '0', '2023-02-16 20:09:47', 'string', 'string', '0');
  41. INSERT INTO `post_collections_system` VALUES ('6', '0', 'sjx', '2023-02-16 20:11:57', '2023-02-15 00:00:00', '2023-02-17 00:00:00', '0', 'string', '0', '2023-02-16 20:11:57', 'string', 'string', '0');
  42. INSERT INTO `post_collections_system` VALUES ('7', '0', 'string11', '2023-02-17 12:06:14', '2023-02-15 04:04:51', '2023-02-19 04:04:51', '0', 'string', '0', '2023-02-17 12:06:14', 'admin', 'admin', '0');
  43. INSERT INTO `post_collections_system` VALUES ('8', '0', 'zyf1', '2023-02-03 21:12:13', '2023-02-18 21:12:32', '2023-02-26 21:12:39', '1', 'string', '0', '2023-02-19 21:44:57', 'admin', 'admin', '0');
  44. INSERT INTO `post_collections_system` VALUES ('9', '0', 'zzz', '2023-02-17 21:34:28', '2023-02-15 21:12:32', '2023-02-25 21:12:39', '1', 'string', '0', '2023-02-19 21:40:49', 'admin', 'admin', '0');