fruit_farmer.sql 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : 熊浩毅
  4. Source Server Type : MySQL
  5. Source Server Version : 80033
  6. Source Host : localhost:3306
  7. Source Schema : fruit_farmer
  8. Target Server Type : MySQL
  9. Target Server Version : 80033
  10. File Encoding : 65001
  11. Date: 06/05/2024 00:10:51
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for address
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `address`;
  19. CREATE TABLE `address` (
  20. `id` int NOT NULL AUTO_INCREMENT COMMENT '地址id',
  21. `user_id` int NOT NULL COMMENT '用户id',
  22. `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '地址',
  23. `door_no` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '门牌号',
  24. `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '收货电话',
  25. `recipient_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '收货人姓名',
  26. PRIMARY KEY (`id`) USING BTREE,
  27. INDEX `user_id`(`user_id` ASC) USING BTREE,
  28. CONSTRAINT `address_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
  29. ) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '用户地址表' ROW_FORMAT = Dynamic;
  30. -- ----------------------------
  31. -- Records of address
  32. -- ----------------------------
  33. INSERT INTO `address` VALUES (9, 2, '江西财经大学枫林园', '2#524', '12345678910', '瑶妹');
  34. INSERT INTO `address` VALUES (10, 1, '江西省南昌市经济开发区双港西大街绿地悦公馆', '5#2701', '18779165101', '小淮');
  35. INSERT INTO `address` VALUES (11, 1, '江西省南昌市经济开发区枫林大道江西财经大学', '2栋424', '18779165101', '小淮');
  36. -- ----------------------------
  37. -- Table structure for admin
  38. -- ----------------------------
  39. DROP TABLE IF EXISTS `admin`;
  40. CREATE TABLE `admin` (
  41. `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID',
  42. `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '用户名',
  43. `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '密码',
  44. `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '姓名',
  45. `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '头像',
  46. `role` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '角色标识',
  47. `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '电话',
  48. `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '邮箱',
  49. PRIMARY KEY (`id`) USING BTREE
  50. ) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '管理员' ROW_FORMAT = DYNAMIC;
  51. -- ----------------------------
  52. -- Records of admin
  53. -- ----------------------------
  54. INSERT INTO `admin` VALUES (1, 'admin', 'admin', '超级管理员', 'http://118.89.54.252:8714/files/1697438073596-avatar.png', 'ADMIN', '13677889922', 'admin@xm.com');
  55. INSERT INTO `admin` VALUES (2, '熊浩毅', '123', '熊浩毅超级管理员', 'http://118.89.54.252:8714/files/1697438073596-avatar.png', 'ADMIN', '18779165101', '3132710967@qq.com');
  56. INSERT INTO `admin` VALUES (3, '任瑶', '123', '任瑶超级管理员', 'http://118.89.54.252:8714/files/1697438073596-avatar.png', 'ADMIN', NULL, NULL);
  57. INSERT INTO `admin` VALUES (4, '詹志炜', '123', '詹志炜超级管理员', NULL, 'ADMIN', NULL, NULL);
  58. -- ----------------------------
  59. -- Table structure for adminstore
  60. -- ----------------------------
  61. DROP TABLE IF EXISTS `adminstore`;
  62. CREATE TABLE `adminstore` (
  63. `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID',
  64. `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '用户名',
  65. `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '密码',
  66. `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '姓名',
  67. `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '头像',
  68. `role` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '角色标识',
  69. `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '电话',
  70. `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '邮箱',
  71. `address` int NULL DEFAULT NULL COMMENT '店铺地址id',
  72. `store_id` int NULL DEFAULT NULL COMMENT '店铺id',
  73. PRIMARY KEY (`id`) USING BTREE
  74. ) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '店铺管理员' ROW_FORMAT = DYNAMIC;
  75. -- ----------------------------
  76. -- Records of adminstore
  77. -- ----------------------------
  78. INSERT INTO `adminstore` VALUES (1, '熊浩毅', '123', '淮店主', NULL, 'STOREKEEPER', '18779165101', '3132710967@qq.com', NULL, NULL);
  79. INSERT INTO `adminstore` VALUES (2, '任瑶', '123', '瑶店主', NULL, 'STOREKEEPER', NULL, NULL, NULL, NULL);
  80. INSERT INTO `adminstore` VALUES (5, '淮', '123', '熊浩毅', NULL, 'STOREKEEPER', NULL, NULL, NULL, NULL);
  81. INSERT INTO `adminstore` VALUES (6, 'admin', 'admin', '淮店主', NULL, 'STOREKEEPER', NULL, NULL, NULL, 1);
  82. INSERT INTO `adminstore` VALUES (8, 'xhy', '123', '陌店主', NULL, 'STOREKEEPER', NULL, NULL, NULL, 2);
  83. -- ----------------------------
  84. -- Table structure for audits
  85. -- ----------------------------
  86. DROP TABLE IF EXISTS `audits`;
  87. CREATE TABLE `audits` (
  88. `id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
  89. `store_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '店铺地址',
  90. `idcard` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '身份证',
  91. `business_license` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '营业执照url',
  92. `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '申请理由',
  93. `pics_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '市区营业图片',
  94. `camera_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '监控地址',
  95. `store_id` int NULL DEFAULT NULL COMMENT '店铺申请人id用adminstore的id',
  96. `keeper_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '店铺主名称',
  97. `state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '审核状态',
  98. `admin_id` int NULL DEFAULT NULL COMMENT '申请的管理员id',
  99. PRIMARY KEY (`id`) USING BTREE
  100. ) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '申请审核表' ROW_FORMAT = Dynamic;
  101. -- ----------------------------
  102. -- Records of audits
  103. -- ----------------------------
  104. INSERT INTO `audits` VALUES (2, '山西省长治市潞城区啊啊啊', '', 'http://localhost:2441/files/1713517958135-head.jpg', '我要赚米了', 'http://69b89r4952.yicp.fun//files/1713457745729-head.jpg', NULL, NULL, '熊浩毅', '正在审核', 2);
  105. INSERT INTO `audits` VALUES (3, '北京市市辖区西城区阎王庙', '', 'http://localhost:2441/files/1713535491555-A_header1.png', '想抓泥鳅', '', NULL, NULL, '熊浩毅', '正在审核', 2);
  106. INSERT INTO `audits` VALUES (4, '北京市市辖区东城区河道去', '', 'http://localhost:2441/files/1714821774309-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg', '想开一家店铺', 'http://69b89r4952.yicp.fun//files/1714821765185-b036f756ce66b4ccd87f60688b1b400.png', NULL, NULL, '熊浩毅', '审核通过', 6);
  107. INSERT INTO `audits` VALUES (5, '北京市市辖区东城区河道去', '', 'http://localhost:2441/files/1714821774309-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg', '想开一家店铺', 'http://69b89r4952.yicp.fun//files/1714821765185-b036f756ce66b4ccd87f60688b1b400.png', NULL, NULL, '熊浩毅', '正在审核', NULL);
  108. -- ----------------------------
  109. -- Table structure for notice
  110. -- ----------------------------
  111. DROP TABLE IF EXISTS `notice`;
  112. CREATE TABLE `notice` (
  113. `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID',
  114. `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '标题',
  115. `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '内容',
  116. `time` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '创建时间',
  117. `user` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '创建人',
  118. PRIMARY KEY (`id`) USING BTREE
  119. ) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '公告信息表' ROW_FORMAT = DYNAMIC;
  120. -- ----------------------------
  121. -- Records of notice
  122. -- ----------------------------
  123. INSERT INTO `notice` VALUES (1, '系统介绍', '本系统提供店铺管理,店铺致力于助农帮农的', '2024-4-01', 'admin');
  124. INSERT INTO `notice` VALUES (2, '店铺报表', '所有功能都已完成,可以正常使用', '2024-4-01', 'admin');
  125. INSERT INTO `notice` VALUES (3, '订单管理', '今天天气很不错,可以出去一起玩了', '2024-4-01', 'admin');
  126. INSERT INTO `notice` VALUES (4, '订单报表', '自2024年4月16日起开始进行项目开发', '2024-04-16', 'admin');
  127. INSERT INTO `notice` VALUES (5, '果园监控', '果园中监控的播放实时查看监控视频', NULL, NULL);
  128. INSERT INTO `notice` VALUES (6, '虫害识别', '上传图片,识别图片', NULL, NULL);
  129. INSERT INTO `notice` VALUES (7, '系统大数据可视化', '全网数据系统可视化界面大图', NULL, NULL);
  130. -- ----------------------------
  131. -- Table structure for orders
  132. -- ----------------------------
  133. DROP TABLE IF EXISTS `orders`;
  134. CREATE TABLE `orders` (
  135. `id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
  136. `bid_pay` decimal(10, 2) NULL DEFAULT NULL COMMENT '实付金额',
  137. `origin_pay` decimal(10, 2) NULL DEFAULT NULL COMMENT '应付金额',
  138. `user_id` int NULL DEFAULT NULL COMMENT '下单用户id',
  139. `address_id` int NULL DEFAULT NULL COMMENT '收货地址id',
  140. `time_pre` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '预计送达时间',
  141. `time_order` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '下单时间',
  142. `order_state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '订单状态',
  143. `order_remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '订单备注',
  144. `trans_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '交易单号',
  145. `order_products_lists` json NULL COMMENT '购买清单:商品id,商品名称,商品数量',
  146. `store_id` int NULL DEFAULT NULL COMMENT '购买的店铺',
  147. PRIMARY KEY (`id`) USING BTREE,
  148. INDEX `user_id`(`user_id` ASC) USING BTREE,
  149. INDEX `address_id`(`address_id` ASC) USING BTREE,
  150. CONSTRAINT `orders_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
  151. CONSTRAINT `orders_ibfk_2` FOREIGN KEY (`address_id`) REFERENCES `address` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
  152. ) ENGINE = InnoDB AUTO_INCREMENT = 60 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '订单表' ROW_FORMAT = Dynamic;
  153. -- ----------------------------
  154. -- Records of orders
  155. -- ----------------------------
  156. INSERT INTO `orders` VALUES (2, 12.00, 15.00, 1, 9, '2024-05-01 17:29:09', '2024-05-01 17:28:58', '已送达', '无', '123441', '[{\"cost\": 100, \"count\": 2, \"productId\": 1}]', 1);
  157. INSERT INTO `orders` VALUES (4, 15.00, 20.00, 1, 9, '2024-05-01 17:29:09', '2024-05-01 17:28:58', '已完成', NULL, '1785602302519369728', '[{\"count\": 3, \"productName\": \"菠萝\"}]', 1);
  158. INSERT INTO `orders` VALUES (5, 15.00, 20.00, 1, 9, '2024-05-01 17:52:21', '2024-05-01 17:52:10', '待送达', NULL, '1785608140906676224', '[{\"count\": 3, \"productName\": \"菠萝\"}]', 2);
  159. INSERT INTO `orders` VALUES (6, 15.00, 20.00, 1, 9, '2024-05-01 17:54:11', '2024-05-01 17:54:00', '待送达', NULL, '1785608603626479616', '[{\"count\": 3, \"productName\": \"菠萝\"}]', 2);
  160. INSERT INTO `orders` VALUES (7, 15.00, 20.00, 1, 9, '2024-05-01 17:56:13', '2024-05-01 17:56:01', '待送达', NULL, '1785609111808364544', '[{\"count\": 12, \"productName\": \"芒果\"}]', 2);
  161. INSERT INTO `orders` VALUES (8, 15.00, 20.00, 1, 9, '2024-05-01 17:59:22', '2024-05-01 17:59:11', '待送达', NULL, '1785609907618824192', '[{\"count\": 12, \"productName\": \"芒果\"}, {\"count\": 12, \"productName\": \"芒果\"}]', 2);
  162. INSERT INTO `orders` VALUES (9, 15.00, 20.00, 1, 9, '2024-05-01 19:51:55', '2024-05-01 19:51:44', '已送达', NULL, '1785638230222807040', '[{\"count\": 12, \"productName\": \"A芒果\"}, {\"count\": 12, \"productName\": \"B芒果\"}]', 1);
  163. INSERT INTO `orders` VALUES (10, 15.00, 20.00, 1, 9, '2024-05-01 19:54:07', '2024-05-01 19:53:56', '已送达', '挑大一点的芒果谢谢', '1785638785309581312', '[{\"count\": 12, \"productName\": \"芒果\"}, {\"count\": 12, \"productName\": \"芒果\"}]', 1);
  164. INSERT INTO `orders` VALUES (11, 150.00, 200.00, 1, 9, '2024-05-01 21:23:11', '2024-05-01 21:23:00', '已送达', NULL, '1785661197862363136', '[{\"count\": 31, \"productName\": \"草莓\"}, {\"count\": 12, \"productName\": \"桃子\"}]', 1);
  165. INSERT INTO `orders` VALUES (12, 15.00, 20.00, 1, 9, '2024-05-01 22:34:13', '2024-05-01 22:34:02', '已送达', '挑大一点的芒果谢谢', '1785679074241925120', '[{\"id\": null, \"count\": 12, \"productName\": \"西瓜\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"productName\": \"菠萝\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  166. INSERT INTO `orders` VALUES (13, 15.00, 20.00, 1, 9, '2024-05-02 09:46:44', '2024-05-02 09:46:33', '待送达', NULL, '1785848318325805056', '[{\"id\": null, \"count\": 12, \"productName\": \"A芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"productName\": \"B芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 2);
  167. INSERT INTO `orders` VALUES (14, 15.00, 20.00, 1, 9, '2024-05-02 09:51:34', '2024-05-02 09:51:23', '已送达', '挑大一点的芒果谢谢', '1785849536808861696', '[{\"id\": null, \"count\": 12, \"productName\": \"西瓜\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"productName\": \"菠萝\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  168. INSERT INTO `orders` VALUES (15, 15.00, 2000.00, 1, 9, '2024-05-02 11:25:11', '2024-05-02 11:25:00', '已送达', NULL, '1785873096671621120', '[{\"id\": null, \"count\": 12, \"productName\": \"西瓜\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"productName\": \"菠萝\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  169. INSERT INTO `orders` VALUES (16, 15.00, 20.00, 1, 9, '2024-05-02 13:22:59', '2024-05-02 13:22:48', '已送达', NULL, '1785902741223763968', '[{\"id\": null, \"count\": 12, \"productName\": \"芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"productName\": \"芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  170. INSERT INTO `orders` VALUES (17, 15.00, 20.00, 1, 9, '2024-05-02 14:01:32', '2024-05-02 14:01:21', '已送达', '送个草莓,备注了哈', '1785912440925057024', '[{\"id\": null, \"count\": 12, \"productName\": \"芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"productName\": \"芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  171. INSERT INTO `orders` VALUES (18, 15.00, 20.00, 2, 9, '2024-05-04 18:13:37', '2024-05-04 18:13:26', '已送达', '挑大一点的芒果谢谢', '1786700658255654912', '[{\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"J芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"F芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  172. INSERT INTO `orders` VALUES (19, 15.00, 20.00, 2, 9, '2024-05-04 18:20:15', '2024-05-04 18:20:04', '已送达', '挑大一点的果谢谢', '1786702324937904128', '[{\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"J芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"F芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  173. INSERT INTO `orders` VALUES (20, 15.00, 20.00, 2, 9, '2024-05-04 18:21:27', '2024-05-04 18:21:16', '已送达', '挑大一点的果谢谢', '1786702629847027712', '[{\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"J芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"F芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  174. INSERT INTO `orders` VALUES (21, 15.00, 20.00, 1, 9, '2024-05-04 18:24:40', '2024-05-04 18:24:29', '已送达', '挑大一点的果谢谢', '1786703438068342784', '[{\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"樱桃\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"F芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  175. INSERT INTO `orders` VALUES (22, 15.00, 20.00, 1, 9, '2024-05-04 18:28:54', '2024-05-04 18:28:43', '已送达', '挑大一点的果谢谢', '1786704500854726656', '[{\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"樱桃\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 12, \"storeId\": null, \"productName\": \"F芒果\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  176. INSERT INTO `orders` VALUES (39, 77.00, 81.50, 1, 9, '2024-05-04 23:12:45', '2024-05-04 23:12:34', '已送达', '无', '1786775937246347264', '[{\"id\": 38, \"count\": 2, \"amount\": 44, \"storeId\": null, \"productName\": \"test\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 36, \"count\": 3, \"amount\": 33, \"storeId\": null, \"productName\": \"AAA\", \"productIcons\": null, \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  177. INSERT INTO `orders` VALUES (41, 18.00, 22.50, 1, 9, '2024-05-05 01:42:00', '2024-05-05 01:41:49', '已送达', '无', '1786813497158934528', '[{\"id\": null, \"count\": 1, \"amount\": 18, \"storeId\": null, \"productName\": \"山竹\", \"productIcons\": \"http://localhost:2441/files/1714785980375-Screenshot_2024-05-02-21-05-05-49_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  178. INSERT INTO `orders` VALUES (42, 10.00, 14.50, 1, 9, '2024-05-05 01:48:39', '2024-05-05 01:48:28', '已送达', '无', '1786815170015203328', '[{\"id\": null, \"count\": 10, \"amount\": 10, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  179. INSERT INTO `orders` VALUES (43, 93.00, 97.50, 1, 9, '2024-05-05 04:04:08', '2024-05-05 04:03:57', '已送达', '无', '1786849265512476672', '[{\"id\": null, \"count\": 5, \"amount\": 5, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 6, \"amount\": 72, \"storeId\": null, \"productName\": \"蓝莓\", \"productIcons\": \"http://localhost:2441/files/1714813349319-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 2, \"amount\": 16, \"storeId\": null, \"productName\": \"香蕉\", \"productIcons\": \"http://localhost:2441/files/1714786280828-Screenshot_2024-05-02-21-09-00-63_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  180. INSERT INTO `orders` VALUES (44, 45.00, 49.50, 1, 9, '2024-05-05 10:13:45', '2024-05-05 10:13:34', '已送达', '无', '1786942281925296128', '[{\"id\": null, \"count\": 9, \"amount\": 9, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 3, \"amount\": 36, \"storeId\": null, \"productName\": \"蓝莓\", \"productIcons\": \"http://localhost:2441/files/1714813349319-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  181. INSERT INTO `orders` VALUES (45, 13.00, 17.50, 1, 9, '2024-05-05 10:25:23', '2024-05-05 10:25:12', '已送达', '无', '1786945209717260288', '[{\"id\": null, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 1, \"amount\": 12, \"storeId\": null, \"productName\": \"蓝莓\", \"productIcons\": \"http://localhost:2441/files/1714813349319-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  182. INSERT INTO `orders` VALUES (46, 2.00, 6.50, 1, 9, '2024-05-05 11:24:48', '2024-05-05 11:24:37', '已送达', '无', '1786960164466229248', '[{\"id\": null, \"count\": 2, \"amount\": 2, \"storeId\": null, \"productName\": \"蛋白质\", \"productIcons\": \"http://localhost:2441/files/1714875999629-七星瓢虫.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  183. INSERT INTO `orders` VALUES (47, 3.00, 7.50, 1, 9, '2024-05-05 11:39:05', '2024-05-05 11:38:54', '已送达', '无', '1786963756455591936', '[{\"id\": null, \"count\": 3, \"amount\": 3, \"storeId\": null, \"productName\": \"蛋白质\", \"productIcons\": \"http://localhost:2441/files/1714875999629-七星瓢虫.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  184. INSERT INTO `orders` VALUES (48, 217.00, 221.50, 1, 9, '2024-05-05 13:52:21', '2024-05-05 13:52:10', '已送达', '无', '1786997294240382976', '[{\"id\": null, \"count\": 1, \"amount\": 8, \"storeId\": null, \"productName\": \"香蕉\", \"productIcons\": \"http://localhost:2441/files/1714786280828-Screenshot_2024-05-02-21-09-00-63_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 1, \"amount\": 12, \"storeId\": null, \"productName\": \"蓝莓\", \"productIcons\": \"http://localhost:2441/files/1714813349319-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 4, \"amount\": 196, \"storeId\": null, \"productName\": \"榴莲\", \"productIcons\": \"http://localhost:2441/files/1714786024110-Screenshot_2024-05-02-21-07-06-36_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  185. INSERT INTO `orders` VALUES (49, 2.00, 6.50, 1, 9, '2024-05-05 13:58:20', '2024-05-05 13:58:09', '已送达', '无', '1786998799987130368', '[{\"id\": null, \"count\": 2, \"amount\": 2, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  186. INSERT INTO `orders` VALUES (50, 36.00, 40.50, 1, 9, '2024-05-05 13:59:19', '2024-05-05 13:59:08', '已送达', '无', '1786999047887273984', '[{\"id\": null, \"count\": 2, \"amount\": 36, \"storeId\": null, \"productName\": \"波罗蜜\", \"productIcons\": \"http://localhost:2441/files/1714809345969-Screenshot_2024-05-02-21-15-29-99_860bc48c3aad114.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  187. INSERT INTO `orders` VALUES (51, 5.00, 9.50, 1, 9, '2024-05-05 14:06:06', '2024-05-05 14:05:55', '已送达', '无', '1787000753161256960', '[{\"id\": null, \"count\": 3, \"amount\": 3, \"storeId\": null, \"productName\": \"蛋白质\", \"productIcons\": \"http://localhost:2441/files/1714875999629-七星瓢虫.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 2, \"amount\": 2, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  188. INSERT INTO `orders` VALUES (52, 2.00, 6.50, 1, 9, '2024-05-05 21:14:01', '2024-05-05 21:13:50', '已送达', '无', '1787108444185673728', '[{\"id\": null, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"蛋白质\", \"productIcons\": \"http://localhost:2441/files/1714875999629-七星瓢虫.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  189. INSERT INTO `orders` VALUES (53, 70.00, 74.50, 1, 9, '2024-05-05 21:15:27', '2024-05-05 21:15:16', '已送达', '无', '1787108806024085504', '[{\"id\": null, \"count\": 1, \"amount\": 49, \"storeId\": null, \"productName\": \"榴莲\", \"productIcons\": \"http://localhost:2441/files/1714786024110-Screenshot_2024-05-02-21-07-06-36_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 1, \"amount\": 9, \"storeId\": null, \"productName\": \"小芒\", \"productIcons\": \"http://localhost:2441/files/1714786075887-Screenshot_2024-05-02-21-10-15-83_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": null, \"count\": 1, \"amount\": 12, \"storeId\": null, \"productName\": \"猕猴桃\", \"productIcons\": \"http://localhost:2441/files/1714786133267-Screenshot_2024-05-02-21-11-12-63_b84839d832046b3.JPG\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  190. INSERT INTO `orders` VALUES (54, 583.00, 587.50, 1, 9, '2024-05-05 21:39:00', '2024-05-05 21:38:49', '已送达', '无', '1787114730889531392', '[{\"id\": 40, \"count\": 2, \"amount\": 2, \"storeId\": null, \"productName\": \"蛋白质\", \"productIcons\": \"http://localhost:2441/files/1714875999629-七星瓢虫.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 35, \"count\": 2, \"amount\": 2, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 33, \"count\": 2, \"amount\": 36, \"storeId\": null, \"productName\": \"波罗蜜\", \"productIcons\": \"http://localhost:2441/files/1714809345969-Screenshot_2024-05-02-21-15-29-99_860bc48c3aad114.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 32, \"count\": 1, \"amount\": 8, \"storeId\": null, \"productName\": \"香蕉\", \"productIcons\": \"http://localhost:2441/files/1714786280828-Screenshot_2024-05-02-21-09-00-63_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 34, \"count\": 3, \"amount\": 36, \"storeId\": null, \"productName\": \"蓝莓\", \"productIcons\": \"http://localhost:2441/files/1714813349319-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 31, \"count\": 4, \"amount\": 36, \"storeId\": null, \"productName\": \"提子\", \"productIcons\": \"http://localhost:2441/files/1714786205791-Screenshot_2024-05-02-21-16-23-36_860bc48c3aad114.JPG\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 28, \"count\": 1, \"amount\": 24, \"storeId\": null, \"productName\": \"车厘子-J\", \"productIcons\": \"http://localhost:2441/files/1714786103827-Screenshot_2024-05-02-21-10-26-38_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 27, \"count\": 1, \"amount\": 9, \"storeId\": null, \"productName\": \"小芒\", \"productIcons\": \"http://localhost:2441/files/1714786075887-Screenshot_2024-05-02-21-10-15-83_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 29, \"count\": 2, \"amount\": 24, \"storeId\": null, \"productName\": \"猕猴桃\", \"productIcons\": \"http://localhost:2441/files/1714786133267-Screenshot_2024-05-02-21-11-12-63_b84839d832046b3.JPG\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 26, \"count\": 6, \"amount\": 294, \"storeId\": null, \"productName\": \"榴莲\", \"productIcons\": \"http://localhost:2441/files/1714786024110-Screenshot_2024-05-02-21-07-06-36_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 25, \"count\": 2, \"amount\": 36, \"storeId\": null, \"productName\": \"山竹\", \"productIcons\": \"http://localhost:2441/files/1714785980375-Screenshot_2024-05-02-21-05-05-49_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 24, \"count\": 2, \"amount\": 10, \"storeId\": null, \"productName\": \"小番茄\", \"productIcons\": \"http://localhost:2441/files/1714785914229-Screenshot_2024-05-02-21-04-09-31_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 23, \"count\": 2, \"amount\": 16, \"storeId\": null, \"productName\": \"火龙果\", \"productIcons\": \"http://localhost:2441/files/1714785888936-Screenshot_2024-05-02-21-03-10-05_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 5, \"count\": 2, \"amount\": 16, \"storeId\": null, \"productName\": \"小西瓜\", \"productIcons\": \"http://localhost:2441/files/1714786379151-b036f756ce66b4ccd87f60688b1b400.png\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 2, \"count\": 2, \"amount\": 16, \"storeId\": null, \"productName\": \"西瓜\", \"productIcons\": \"http://localhost:2441/files/1714786385863-Screenshot_2024-05-02-21-04-45-17_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 1, \"count\": 2, \"amount\": 18, \"storeId\": null, \"productName\": \"雪梨\", \"productIcons\": \"http://localhost:2441/files/1714786417947-Screenshot_2024-05-02-21-14-05-47_860bc48c3aad114.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  191. INSERT INTO `orders` VALUES (55, 2.00, 6.50, 1, 9, '2024-05-05 22:14:47', '2024-05-05 22:14:36', '待送达', '无', '1787123734789345280', '[{\"id\": 40, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"蛋白质\", \"productIcons\": \"http://localhost:2441/files/1714875999629-七星瓢虫.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 35, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  192. INSERT INTO `orders` VALUES (56, 10.00, 14.50, 1, 9, '2024-05-05 23:19:01', '2024-05-05 23:18:50', '待送达', '无', '1787139900668760064', '[{\"id\": 40, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"蛋白质\", \"productIcons\": \"http://localhost:2441/files/1714875999629-七星瓢虫.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 35, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://69b89r4952.yicp.fun//files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 32, \"count\": 1, \"amount\": 8, \"storeId\": null, \"productName\": \"香蕉\", \"productIcons\": \"http://localhost:2441/files/1714786280828-Screenshot_2024-05-02-21-09-00-63_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  193. INSERT INTO `orders` VALUES (57, 68.00, 72.50, 1, 9, '2024-05-05 23:26:30', '2024-05-05 23:26:19', '待送达', '无', '1787141782715879424', '[{\"id\": 46, \"count\": 1, \"amount\": 3, \"storeId\": null, \"productName\": null, \"productIcons\": \"http://localhost:2441/files/1714921712566-tudou.png\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 45, \"count\": 1, \"amount\": 7, \"storeId\": null, \"productName\": \"黄瓜\", \"productIcons\": \"http://localhost:2441/files/1714921675182-huanggua.png\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 43, \"count\": 1, \"amount\": 6, \"storeId\": null, \"productName\": \"胡萝卜\", \"productIcons\": \"http://localhost:2441/files/1714921586737-huluobo.png\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 42, \"count\": 1, \"amount\": 2, \"storeId\": null, \"productName\": \"大蒜\", \"productIcons\": \"http://localhost:2441/files/1714921544128-dasuan.png\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 44, \"count\": 1, \"amount\": 29, \"storeId\": null, \"productName\": \"香菇\", \"productIcons\": \"http://localhost:2441/files/1714921614437-xianggu.png\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 35, \"count\": 1, \"amount\": 1, \"storeId\": null, \"productName\": \"过期西红柿\", \"productIcons\": \"http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 34, \"count\": 1, \"amount\": 12, \"storeId\": null, \"productName\": \"蓝莓\", \"productIcons\": \"http://localhost:2441/files/1714813349319-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 32, \"count\": 1, \"amount\": 8, \"storeId\": null, \"productName\": \"香蕉\", \"productIcons\": \"http://localhost:2441/files/1714786280828-Screenshot_2024-05-02-21-09-00-63_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  194. INSERT INTO `orders` VALUES (58, 21.00, 25.50, 1, 9, '2024-05-05 23:41:23', '2024-05-05 23:41:12', '待送达', '无', '1787145529126932480', '[{\"id\": 33, \"count\": 1, \"amount\": 18, \"storeId\": null, \"productName\": \"波罗蜜\", \"productIcons\": \"http://localhost:2441/files/1714809345969-Screenshot_2024-05-02-21-15-29-99_860bc48c3aad114.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 41, \"count\": 1, \"amount\": 3, \"storeId\": null, \"productName\": \"菠菜\", \"productIcons\": \"http://localhost:2441/files/1714921510640-bocai.png\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  195. INSERT INTO `orders` VALUES (59, 26.00, 30.50, 1, 9, '2024-05-05 23:41:57', '2024-05-05 23:41:46', '待送达', '无', '1787145674367291392', '[{\"id\": 33, \"count\": 1, \"amount\": 18, \"storeId\": null, \"productName\": \"波罗蜜\", \"productIcons\": \"http://localhost:2441/files/1714809345969-Screenshot_2024-05-02-21-15-29-99_860bc48c3aad114.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}, {\"id\": 32, \"count\": 1, \"amount\": 8, \"storeId\": null, \"productName\": \"香蕉\", \"productIcons\": \"http://localhost:2441/files/1714786280828-Screenshot_2024-05-02-21-09-00-63_b84839d832046b3.jpg\", \"productState\": null, \"productTypes\": null, \"productTypeIds\": null, \"productBidPrice\": null, \"productSellPrice\": null}]', 1);
  196. -- ----------------------------
  197. -- Table structure for product
  198. -- ----------------------------
  199. DROP TABLE IF EXISTS `product`;
  200. CREATE TABLE `product` (
  201. `id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
  202. `product_state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '产品状态',
  203. `product_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '产品名称',
  204. `product_icons` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '产品图标url',
  205. `product_type_ids` json NULL COMMENT '产品类型ids',
  206. `product_bid_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '定价',
  207. `product_sell_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '实付价格',
  208. PRIMARY KEY (`id`) USING BTREE
  209. ) ENGINE = InnoDB AUTO_INCREMENT = 47 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
  210. -- ----------------------------
  211. -- Records of product
  212. -- ----------------------------
  213. INSERT INTO `product` VALUES (1, 'SOLDOUT', '雪梨', 'http://localhost:2441/files/1714786417947-Screenshot_2024-05-02-21-14-05-47_860bc48c3aad114.jpg', '[1, 3, 4]', 25.00, 9.00);
  214. INSERT INTO `product` VALUES (2, 'SALE', '西瓜', 'http://localhost:2441/files/1714786385863-Screenshot_2024-05-02-21-04-45-17_b84839d832046b3.jpg', '[1, 3]', 12.00, 8.00);
  215. INSERT INTO `product` VALUES (5, 'SALE', '小西瓜', 'http://localhost:2441/files/1714786379151-b036f756ce66b4ccd87f60688b1b400.png', '[1, 3]', 10.00, 8.00);
  216. INSERT INTO `product` VALUES (23, 'SALE', '火龙果', 'http://localhost:2441/files/1714785888936-Screenshot_2024-05-02-21-03-10-05_b84839d832046b3.jpg', '[1, 3]', 10.00, 8.00);
  217. INSERT INTO `product` VALUES (24, 'SALE', '小番茄', 'http://localhost:2441/files/1714785914229-Screenshot_2024-05-02-21-04-09-31_b84839d832046b3.jpg', '[3, 4]', 5.00, 5.00);
  218. INSERT INTO `product` VALUES (25, 'SALE', '山竹', 'http://localhost:2441/files/1714785980375-Screenshot_2024-05-02-21-05-05-49_b84839d832046b3.jpg', '[1, 3]', 20.00, 18.00);
  219. INSERT INTO `product` VALUES (26, 'SOLDOUT', '榴莲', 'http://localhost:2441/files/1714786024110-Screenshot_2024-05-02-21-07-06-36_b84839d832046b3.jpg', '[3, 4]', 59.00, 49.00);
  220. INSERT INTO `product` VALUES (27, 'SOLDOUT', '小芒', 'http://localhost:2441/files/1714786075887-Screenshot_2024-05-02-21-10-15-83_b84839d832046b3.jpg', '[1, 3]', 9.00, 9.00);
  221. INSERT INTO `product` VALUES (28, 'SALE', '车厘子-J', 'http://localhost:2441/files/1714786103827-Screenshot_2024-05-02-21-10-26-38_b84839d832046b3.jpg', '[1, 3]', 25.00, 24.00);
  222. INSERT INTO `product` VALUES (29, 'SALE', '猕猴桃', 'http://localhost:2441/files/1714786133267-Screenshot_2024-05-02-21-11-12-63_b84839d832046b3.JPG', '[1, 3]', 14.00, 12.00);
  223. INSERT INTO `product` VALUES (31, 'SALE', '提子', 'http://localhost:2441/files/1714786205791-Screenshot_2024-05-02-21-16-23-36_860bc48c3aad114.JPG', '[1, 3]', 10.00, 9.00);
  224. INSERT INTO `product` VALUES (32, 'SALE', '香蕉', 'http://localhost:2441/files/1714786280828-Screenshot_2024-05-02-21-09-00-63_b84839d832046b3.jpg', '[1, 3]', 9.00, 8.00);
  225. INSERT INTO `product` VALUES (33, 'SALE', '波罗蜜', 'http://localhost:2441/files/1714809345969-Screenshot_2024-05-02-21-15-29-99_860bc48c3aad114.jpg', '[1, 6]', 20.00, 18.00);
  226. INSERT INTO `product` VALUES (34, 'SALE', '蓝莓', 'http://localhost:2441/files/1714813349319-Screenshot_2024-05-02-21-06-24-38_b84839d832046b3.jpg', '[5]', 15.00, 12.00);
  227. INSERT INTO `product` VALUES (35, 'SALE', '过期西红柿', 'http://localhost:2441/files/1714813550094-Screenshot_2024-05-02-21-07-42-10_b84839d832046b3.jpg', '[6]', 12.00, 1.00);
  228. INSERT INTO `product` VALUES (40, 'SALE', '蛋白质', 'http://localhost:2441/files/1714875999629-七星瓢虫.jpg', '[3]', 1.00, 1.00);
  229. INSERT INTO `product` VALUES (41, 'SALE', '菠菜', 'http://localhost:2441/files/1714921510640-bocai.png', '[2, 5]', 5.00, 3.00);
  230. INSERT INTO `product` VALUES (42, 'SALE', '大蒜', 'http://localhost:2441/files/1714921544128-dasuan.png', '[2, 4]', 4.00, 2.00);
  231. INSERT INTO `product` VALUES (43, 'SALE', '胡萝卜', 'http://localhost:2441/files/1714921586737-huluobo.png', '[6, 2]', 12.00, 6.00);
  232. INSERT INTO `product` VALUES (44, 'SALE', '香菇', 'http://localhost:2441/files/1714921614437-xianggu.png', '[6]', 35.00, 29.00);
  233. INSERT INTO `product` VALUES (45, 'SOLDOUT', '黄瓜', 'http://localhost:2441/files/1714921675182-huanggua.png', '[2, 1]', 8.00, 7.00);
  234. INSERT INTO `product` VALUES (46, 'SALE', '土豆', 'http://localhost:2441/files/1714921712566-tudou.png', '[3]', 4.00, 3.00);
  235. -- ----------------------------
  236. -- Table structure for product_type
  237. -- ----------------------------
  238. DROP TABLE IF EXISTS `product_type`;
  239. CREATE TABLE `product_type` (
  240. `id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
  241. `product_type_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '产品类型名称',
  242. PRIMARY KEY (`id`) USING BTREE
  243. ) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
  244. -- ----------------------------
  245. -- Records of product_type
  246. -- ----------------------------
  247. INSERT INTO `product_type` VALUES (1, '水果');
  248. INSERT INTO `product_type` VALUES (2, '蔬菜');
  249. INSERT INTO `product_type` VALUES (3, '活动每日促销好礼');
  250. INSERT INTO `product_type` VALUES (4, '每周限购特价');
  251. INSERT INTO `product_type` VALUES (5, '大棚蔬菜');
  252. INSERT INTO `product_type` VALUES (6, '优质农产品');
  253. -- ----------------------------
  254. -- Table structure for sale_statement
  255. -- ----------------------------
  256. DROP TABLE IF EXISTS `sale_statement`;
  257. CREATE TABLE `sale_statement` (
  258. `id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
  259. `shop_id` int NOT NULL COMMENT '店铺id',
  260. `count` int NULL DEFAULT NULL COMMENT '商品数量',
  261. `time_over` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '完成时间',
  262. `product_id` int NULL DEFAULT NULL COMMENT '商品id',
  263. `amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '金额',
  264. PRIMARY KEY (`id`, `shop_id`) USING BTREE
  265. ) ENGINE = InnoDB AUTO_INCREMENT = 64 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '销量表' ROW_FORMAT = Dynamic;
  266. -- ----------------------------
  267. -- Records of sale_statement
  268. -- ----------------------------
  269. INSERT INTO `sale_statement` VALUES (1, 1, 10, '2024-01-30', 1, 150.00);
  270. INSERT INTO `sale_statement` VALUES (2, 1, 5, '2024-02-28', 2, 30.00);
  271. INSERT INTO `sale_statement` VALUES (3, 1, 12, '2024-03-02', 1, 200.00);
  272. INSERT INTO `sale_statement` VALUES (4, 1, 10, '2024-04-30', 2, 150.00);
  273. INSERT INTO `sale_statement` VALUES (5, 1, 10, '2024-05-30', 2, 150.00);
  274. INSERT INTO `sale_statement` VALUES (6, 1, 10, '2024-02-30', 2, 450.00);
  275. INSERT INTO `sale_statement` VALUES (7, 1, 10, '2024-05-30', 2, 900.00);
  276. INSERT INTO `sale_statement` VALUES (8, 1, 10, '2024-08-30', 2, 500.00);
  277. INSERT INTO `sale_statement` VALUES (9, 1, 10, '2024-04-30', 1, 500.00);
  278. INSERT INTO `sale_statement` VALUES (10, 1, 1, '2024-04-05 01:16:56', 23, 11.00);
  279. INSERT INTO `sale_statement` VALUES (11, 1, 1, '2024-04-05 01:16:56', 24, 22.00);
  280. INSERT INTO `sale_statement` VALUES (12, 1, 1, '2024-04-05 01:16:56', 25, 11.00);
  281. INSERT INTO `sale_statement` VALUES (13, 1, 2, '2024-04-05 01:16:56', 26, 44.00);
  282. INSERT INTO `sale_statement` VALUES (14, 1, 3, '2024-04-05 01:16:56', 27, 33.00);
  283. INSERT INTO `sale_statement` VALUES (15, 1, 12, '2024-04-05 01:16:56', 31, 150.00);
  284. INSERT INTO `sale_statement` VALUES (16, 1, 12, '2024-04-05 01:16:56', 32, 150.00);
  285. INSERT INTO `sale_statement` VALUES (17, 1, 12, '2024-04-05 01:16:56', 33, 450.00);
  286. INSERT INTO `sale_statement` VALUES (18, 1, 12, '2024-04-05 01:16:56', 34, 900.00);
  287. INSERT INTO `sale_statement` VALUES (19, 1, 12, '2024-04-05 01:16:56', 1, 500.00);
  288. INSERT INTO `sale_statement` VALUES (21, 1, 1, '2024-05-05 01:53:29', 1, 18.00);
  289. INSERT INTO `sale_statement` VALUES (22, 1, 10, '2024-05-05 01:55:57', 1, 18.00);
  290. INSERT INTO `sale_statement` VALUES (23, 1, 9, '2024-05-05 10:18:22', NULL, 9.00);
  291. INSERT INTO `sale_statement` VALUES (24, 1, 3, '2024-05-05 10:18:22', NULL, 36.00);
  292. INSERT INTO `sale_statement` VALUES (25, 1, 1, '2024-05-05 10:25:30', NULL, 1.00);
  293. INSERT INTO `sale_statement` VALUES (26, 1, 1, '2024-05-05 10:25:30', NULL, 12.00);
  294. INSERT INTO `sale_statement` VALUES (27, 1, 5, '2024-05-05 21:20:55', NULL, 5.00);
  295. INSERT INTO `sale_statement` VALUES (28, 1, 6, '2024-05-05 21:20:55', NULL, 72.00);
  296. INSERT INTO `sale_statement` VALUES (29, 1, 2, '2024-05-05 21:20:55', NULL, 16.00);
  297. INSERT INTO `sale_statement` VALUES (30, 1, 1, '2024-05-05 21:23:14', NULL, 49.00);
  298. INSERT INTO `sale_statement` VALUES (31, 1, 1, '2024-05-05 21:23:14', NULL, 9.00);
  299. INSERT INTO `sale_statement` VALUES (32, 1, 1, '2024-05-05 21:23:14', NULL, 12.00);
  300. INSERT INTO `sale_statement` VALUES (33, 1, 1, '2024-05-05 21:23:27', NULL, 1.00);
  301. INSERT INTO `sale_statement` VALUES (34, 1, 1, '2024-05-05 21:23:27', NULL, 1.00);
  302. INSERT INTO `sale_statement` VALUES (35, 1, 2, '2024-05-05 21:32:50', NULL, 2.00);
  303. INSERT INTO `sale_statement` VALUES (36, 1, 3, '2024-05-05 21:33:14', NULL, 3.00);
  304. INSERT INTO `sale_statement` VALUES (37, 1, 2, '2024-05-05 21:33:14', NULL, 2.00);
  305. INSERT INTO `sale_statement` VALUES (38, 1, 2, '2024-05-05 21:33:17', NULL, 36.00);
  306. INSERT INTO `sale_statement` VALUES (39, 1, 2, '2024-05-05 21:33:18', NULL, 2.00);
  307. INSERT INTO `sale_statement` VALUES (40, 1, 2, '2024-05-05 21:33:18', NULL, 2.00);
  308. INSERT INTO `sale_statement` VALUES (41, 1, 1, '2024-05-05 21:33:18', NULL, 8.00);
  309. INSERT INTO `sale_statement` VALUES (42, 1, 3, '2024-05-05 21:33:18', NULL, 3.00);
  310. INSERT INTO `sale_statement` VALUES (43, 1, 1, '2024-05-05 21:33:19', NULL, 12.00);
  311. INSERT INTO `sale_statement` VALUES (44, 1, 1, '2024-05-05 21:33:19', NULL, 1.00);
  312. INSERT INTO `sale_statement` VALUES (45, 1, 3, '2024-05-05 21:33:19', NULL, 3.00);
  313. INSERT INTO `sale_statement` VALUES (46, 1, 4, '2024-05-05 21:33:19', NULL, 196.00);
  314. INSERT INTO `sale_statement` VALUES (47, 1, 2, '2024-05-05 21:33:19', NULL, 2.00);
  315. INSERT INTO `sale_statement` VALUES (48, 1, 2, '2024-05-05 21:39:38', 40, 2.00);
  316. INSERT INTO `sale_statement` VALUES (49, 1, 2, '2024-05-05 21:39:38', 35, 2.00);
  317. INSERT INTO `sale_statement` VALUES (50, 1, 2, '2024-05-05 21:39:38', 33, 36.00);
  318. INSERT INTO `sale_statement` VALUES (51, 1, 1, '2024-05-05 21:39:38', 32, 8.00);
  319. INSERT INTO `sale_statement` VALUES (52, 1, 3, '2024-05-05 21:39:38', 34, 36.00);
  320. INSERT INTO `sale_statement` VALUES (53, 1, 4, '2024-05-05 21:39:38', 31, 36.00);
  321. INSERT INTO `sale_statement` VALUES (54, 1, 1, '2024-05-05 21:39:38', 28, 24.00);
  322. INSERT INTO `sale_statement` VALUES (55, 1, 1, '2024-05-05 21:39:38', 27, 9.00);
  323. INSERT INTO `sale_statement` VALUES (56, 1, 2, '2024-05-05 21:39:38', 29, 24.00);
  324. INSERT INTO `sale_statement` VALUES (57, 1, 6, '2024-05-05 21:39:38', 26, 294.00);
  325. INSERT INTO `sale_statement` VALUES (58, 1, 2, '2024-05-05 21:39:38', 25, 36.00);
  326. INSERT INTO `sale_statement` VALUES (59, 1, 2, '2024-05-05 21:39:38', 24, 10.00);
  327. INSERT INTO `sale_statement` VALUES (60, 1, 2, '2024-05-05 21:39:38', 23, 16.00);
  328. INSERT INTO `sale_statement` VALUES (61, 1, 2, '2024-05-05 21:39:38', 5, 16.00);
  329. INSERT INTO `sale_statement` VALUES (62, 1, 2, '2024-05-05 21:39:38', 2, 16.00);
  330. INSERT INTO `sale_statement` VALUES (63, 1, 2, '2024-05-05 21:39:38', 1, 18.00);
  331. -- ----------------------------
  332. -- Table structure for store
  333. -- ----------------------------
  334. DROP TABLE IF EXISTS `store`;
  335. CREATE TABLE `store` (
  336. `id` int NOT NULL AUTO_INCREMENT COMMENT 'id',
  337. `owner_id` int NULL DEFAULT NULL COMMENT '店铺主id',
  338. `products_ids` json NULL COMMENT '产品列表ids',
  339. `address_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '地址列表id',
  340. `product_type_ids` json NULL COMMENT '产品类型ids',
  341. `store_pic_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '店铺展示图片',
  342. `store_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '店铺名称',
  343. PRIMARY KEY (`id`) USING BTREE,
  344. INDEX `owner_id`(`owner_id` ASC) USING BTREE,
  345. CONSTRAINT `store_ibfk_1` FOREIGN KEY (`owner_id`) REFERENCES `adminstore` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
  346. ) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
  347. -- ----------------------------
  348. -- Records of store
  349. -- ----------------------------
  350. INSERT INTO `store` VALUES (1, 1, '[1, 2, 5, 6, 7, 8, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46]', '9', '[1, 2, 3, 4, 5, 6]', 'http://localhost:2441/files/1714889318659-scenes.png', '淮铺水果');
  351. INSERT INTO `store` VALUES (2, 1, '[1, 2, 5, 6, 7, 8, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36]', '10', '[1, 2, 3]', 'http://localhost:2441/files/1714889474353-head2.jpg', '淮铺蔬菜');
  352. -- ----------------------------
  353. -- Table structure for user
  354. -- ----------------------------
  355. DROP TABLE IF EXISTS `user`;
  356. CREATE TABLE `user` (
  357. `id` int NOT NULL AUTO_INCREMENT COMMENT '用户id',
  358. `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户名',
  359. `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '密码',
  360. `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户昵称',
  361. `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '头像网址',
  362. `role` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户类型',
  363. `sex` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '性别',
  364. `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '手机号',
  365. `account` decimal(10, 2) NULL DEFAULT NULL COMMENT '金额',
  366. `openid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT 'openid',
  367. `address_ids` json NULL COMMENT '用户地址ids',
  368. PRIMARY KEY (`id`) USING BTREE
  369. ) ENGINE = InnoDB AUTO_INCREMENT = 20 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '客户表' ROW_FORMAT = Dynamic;
  370. -- ----------------------------
  371. -- Records of user
  372. -- ----------------------------
  373. INSERT INTO `user` VALUES (1, 'user', '123', '爱喝茶的小淮', NULL, 'USER', '男', '18779165101', 7451.00, '1243214213', '[1, 2, 3]');
  374. INSERT INTO `user` VALUES (2, 'user2', '123', '喝奶茶的瑶妹', NULL, 'USER', '男', '18779165101', 9934.00, NULL, NULL);
  375. INSERT INTO `user` VALUES (3, 'user3', '123', '爱运动的尧', NULL, 'USER', '男', '18779165101', 99999.00, NULL, '[1, 2]');
  376. INSERT INTO `user` VALUES (17, '淮小瑞1708502748', 'oYA-Q58ysBMJZymzkAQpBRx_Isc0', '淮小瑞1708502748', NULL, 'USER', NULL, NULL, 0.00, 'oYA-Q58ysBMJZymzkAQpBRx_Isc0', NULL);
  377. INSERT INTO `user` VALUES (18, '星河夜', '123', '荡漾', NULL, 'USER', '男', '18970940117', 99999.00, NULL, '[3]');
  378. -- ----------------------------
  379. -- Table structure for video
  380. -- ----------------------------
  381. DROP TABLE IF EXISTS `video`;
  382. CREATE TABLE `video` (
  383. `id` int NOT NULL COMMENT 'id',
  384. `video_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '视频名称',
  385. `video_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT ' 视频存储路径',
  386. `video_uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '视频UUID',
  387. PRIMARY KEY (`id`) USING BTREE
  388. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '视频表' ROW_FORMAT = Dynamic;
  389. -- ----------------------------
  390. -- Records of video
  391. -- ----------------------------
  392. SET FOREIGN_KEY_CHECKS = 1;