/* Navicat Premium Data Transfer Source Server : 熊浩毅 Source Server Type : MySQL Source Server Version : 80033 Source Host : localhost:3306 Source Schema : fruit_farmer Target Server Type : MySQL Target Server Version : 80033 File Encoding : 65001 Date: 06/05/2024 00:10:51 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for address -- ---------------------------- DROP TABLE IF EXISTS `address`; CREATE TABLE `address` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '地址id', `user_id` int NOT NULL COMMENT '用户id', `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '地址', `door_no` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '门牌号', `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '收货电话', `recipient_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '收货人姓名', PRIMARY KEY (`id`) USING BTREE, INDEX `user_id`(`user_id` ASC) USING BTREE, CONSTRAINT `address_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '用户地址表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of address -- ---------------------------- INSERT INTO `address` VALUES (9, 2, '江西财经大学枫林园', '2#524', '12345678910', '瑶妹'); INSERT INTO `address` VALUES (10, 1, '江西省南昌市经济开发区双港西大街绿地悦公馆', '5#2701', '18779165101', '小淮'); INSERT INTO `address` VALUES (11, 1, '江西省南昌市经济开发区枫林大道江西财经大学', '2栋424', '18779165101', '小淮'); -- ---------------------------- -- Table structure for admin -- ---------------------------- DROP TABLE IF EXISTS `admin`; CREATE TABLE `admin` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID', `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '用户名', `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '密码', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '姓名', `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '头像', `role` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '角色标识', `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '电话', `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '邮箱', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '管理员' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of admin -- ---------------------------- INSERT INTO `admin` VALUES (1, 'admin', 'admin', '超级管理员', 'http://118.89.54.252:8714/files/1697438073596-avatar.png', 'ADMIN', '13677889922', 'admin@xm.com'); INSERT INTO `admin` VALUES (2, '熊浩毅', '123', '熊浩毅超级管理员', 'http://118.89.54.252:8714/files/1697438073596-avatar.png', 'ADMIN', '18779165101', '3132710967@qq.com'); INSERT INTO `admin` VALUES (3, '任瑶', '123', '任瑶超级管理员', 'http://118.89.54.252:8714/files/1697438073596-avatar.png', 'ADMIN', NULL, NULL); INSERT INTO `admin` VALUES (4, '詹志炜', '123', '詹志炜超级管理员', NULL, 'ADMIN', NULL, NULL); -- ---------------------------- -- Table structure for adminstore -- ---------------------------- DROP TABLE IF EXISTS `adminstore`; CREATE TABLE `adminstore` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID', `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '用户名', `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '密码', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '姓名', `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '头像', `role` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '角色标识', `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '电话', `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '邮箱', `address` int NULL DEFAULT NULL COMMENT '店铺地址id', `store_id` int NULL DEFAULT NULL COMMENT '店铺id', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '店铺管理员' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of adminstore -- ---------------------------- INSERT INTO `adminstore` VALUES (1, '熊浩毅', '123', '淮店主', NULL, 'STOREKEEPER', '18779165101', '3132710967@qq.com', NULL, NULL); INSERT INTO `adminstore` VALUES (2, '任瑶', '123', '瑶店主', NULL, 'STOREKEEPER', NULL, NULL, NULL, NULL); INSERT INTO `adminstore` VALUES (5, '淮', '123', '熊浩毅', NULL, 'STOREKEEPER', NULL, NULL, NULL, NULL); INSERT INTO `adminstore` VALUES (6, 'admin', 'admin', '淮店主', NULL, 'STOREKEEPER', NULL, NULL, NULL, 1); INSERT INTO `adminstore` VALUES (8, 'xhy', '123', '陌店主', NULL, 'STOREKEEPER', NULL, NULL, NULL, 2); -- ---------------------------- -- Table structure for audits -- ---------------------------- DROP TABLE IF EXISTS `audits`; CREATE TABLE `audits` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'id', `store_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '店铺地址', `idcard` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '身份证', `business_license` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '营业执照url', `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '申请理由', `pics_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '市区营业图片', `camera_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '监控地址', `store_id` int NULL DEFAULT NULL COMMENT '店铺申请人id用adminstore的id', `keeper_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '店铺主名称', `state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '审核状态', `admin_id` int NULL DEFAULT NULL COMMENT '申请的管理员id', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '申请审核表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of audits -- ---------------------------- INSERT INTO `audits` VALUES (2, '山西省长治市潞城区啊啊啊', '', 'http://localhost:2441/files/1713517958135-head.jpg', '我要赚米了', 'http://69b89r4952.yicp.fun//files/1713457745729-head.jpg', NULL, NULL, '熊浩毅', '正在审核', 2); INSERT INTO `audits` VALUES (3, '北京市市辖区西城区阎王庙', '', 'http://localhost:2441/files/1713535491555-A_header1.png', '想抓泥鳅', '', NULL, NULL, '熊浩毅', '正在审核', 2); 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); 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); -- ---------------------------- -- Table structure for notice -- ---------------------------- DROP TABLE IF EXISTS `notice`; CREATE TABLE `notice` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID', `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '标题', `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '内容', `time` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '创建时间', `user` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '创建人', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '公告信息表' ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of notice -- ---------------------------- INSERT INTO `notice` VALUES (1, '系统介绍', '本系统提供店铺管理,店铺致力于助农帮农的', '2024-4-01', 'admin'); INSERT INTO `notice` VALUES (2, '店铺报表', '所有功能都已完成,可以正常使用', '2024-4-01', 'admin'); INSERT INTO `notice` VALUES (3, '订单管理', '今天天气很不错,可以出去一起玩了', '2024-4-01', 'admin'); INSERT INTO `notice` VALUES (4, '订单报表', '自2024年4月16日起开始进行项目开发', '2024-04-16', 'admin'); INSERT INTO `notice` VALUES (5, '果园监控', '果园中监控的播放实时查看监控视频', NULL, NULL); INSERT INTO `notice` VALUES (6, '虫害识别', '上传图片,识别图片', NULL, NULL); INSERT INTO `notice` VALUES (7, '系统大数据可视化', '全网数据系统可视化界面大图', NULL, NULL); -- ---------------------------- -- Table structure for orders -- ---------------------------- DROP TABLE IF EXISTS `orders`; CREATE TABLE `orders` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'id', `bid_pay` decimal(10, 2) NULL DEFAULT NULL COMMENT '实付金额', `origin_pay` decimal(10, 2) NULL DEFAULT NULL COMMENT '应付金额', `user_id` int NULL DEFAULT NULL COMMENT '下单用户id', `address_id` int NULL DEFAULT NULL COMMENT '收货地址id', `time_pre` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '预计送达时间', `time_order` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '下单时间', `order_state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '订单状态', `order_remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '订单备注', `trans_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '交易单号', `order_products_lists` json NULL COMMENT '购买清单:商品id,商品名称,商品数量', `store_id` int NULL DEFAULT NULL COMMENT '购买的店铺', PRIMARY KEY (`id`) USING BTREE, INDEX `user_id`(`user_id` ASC) USING BTREE, INDEX `address_id`(`address_id` ASC) USING BTREE, CONSTRAINT `orders_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `orders_ibfk_2` FOREIGN KEY (`address_id`) REFERENCES `address` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB AUTO_INCREMENT = 60 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '订单表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of orders -- ---------------------------- 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); -- ---------------------------- -- Table structure for product -- ---------------------------- DROP TABLE IF EXISTS `product`; CREATE TABLE `product` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'id', `product_state` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '产品状态', `product_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '产品名称', `product_icons` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '产品图标url', `product_type_ids` json NULL COMMENT '产品类型ids', `product_bid_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '定价', `product_sell_price` decimal(10, 2) NULL DEFAULT NULL COMMENT '实付价格', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 47 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of product -- ---------------------------- 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); 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); INSERT INTO `product` VALUES (5, 'SALE', '小西瓜', 'http://localhost:2441/files/1714786379151-b036f756ce66b4ccd87f60688b1b400.png', '[1, 3]', 10.00, 8.00); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); 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); INSERT INTO `product` VALUES (40, 'SALE', '蛋白质', 'http://localhost:2441/files/1714875999629-七星瓢虫.jpg', '[3]', 1.00, 1.00); INSERT INTO `product` VALUES (41, 'SALE', '菠菜', 'http://localhost:2441/files/1714921510640-bocai.png', '[2, 5]', 5.00, 3.00); INSERT INTO `product` VALUES (42, 'SALE', '大蒜', 'http://localhost:2441/files/1714921544128-dasuan.png', '[2, 4]', 4.00, 2.00); INSERT INTO `product` VALUES (43, 'SALE', '胡萝卜', 'http://localhost:2441/files/1714921586737-huluobo.png', '[6, 2]', 12.00, 6.00); INSERT INTO `product` VALUES (44, 'SALE', '香菇', 'http://localhost:2441/files/1714921614437-xianggu.png', '[6]', 35.00, 29.00); INSERT INTO `product` VALUES (45, 'SOLDOUT', '黄瓜', 'http://localhost:2441/files/1714921675182-huanggua.png', '[2, 1]', 8.00, 7.00); INSERT INTO `product` VALUES (46, 'SALE', '土豆', 'http://localhost:2441/files/1714921712566-tudou.png', '[3]', 4.00, 3.00); -- ---------------------------- -- Table structure for product_type -- ---------------------------- DROP TABLE IF EXISTS `product_type`; CREATE TABLE `product_type` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'id', `product_type_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '产品类型名称', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of product_type -- ---------------------------- INSERT INTO `product_type` VALUES (1, '水果'); INSERT INTO `product_type` VALUES (2, '蔬菜'); INSERT INTO `product_type` VALUES (3, '活动每日促销好礼'); INSERT INTO `product_type` VALUES (4, '每周限购特价'); INSERT INTO `product_type` VALUES (5, '大棚蔬菜'); INSERT INTO `product_type` VALUES (6, '优质农产品'); -- ---------------------------- -- Table structure for sale_statement -- ---------------------------- DROP TABLE IF EXISTS `sale_statement`; CREATE TABLE `sale_statement` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'id', `shop_id` int NOT NULL COMMENT '店铺id', `count` int NULL DEFAULT NULL COMMENT '商品数量', `time_over` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '完成时间', `product_id` int NULL DEFAULT NULL COMMENT '商品id', `amount` decimal(10, 2) NULL DEFAULT NULL COMMENT '金额', PRIMARY KEY (`id`, `shop_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 64 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '销量表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of sale_statement -- ---------------------------- INSERT INTO `sale_statement` VALUES (1, 1, 10, '2024-01-30', 1, 150.00); INSERT INTO `sale_statement` VALUES (2, 1, 5, '2024-02-28', 2, 30.00); INSERT INTO `sale_statement` VALUES (3, 1, 12, '2024-03-02', 1, 200.00); INSERT INTO `sale_statement` VALUES (4, 1, 10, '2024-04-30', 2, 150.00); INSERT INTO `sale_statement` VALUES (5, 1, 10, '2024-05-30', 2, 150.00); INSERT INTO `sale_statement` VALUES (6, 1, 10, '2024-02-30', 2, 450.00); INSERT INTO `sale_statement` VALUES (7, 1, 10, '2024-05-30', 2, 900.00); INSERT INTO `sale_statement` VALUES (8, 1, 10, '2024-08-30', 2, 500.00); INSERT INTO `sale_statement` VALUES (9, 1, 10, '2024-04-30', 1, 500.00); INSERT INTO `sale_statement` VALUES (10, 1, 1, '2024-04-05 01:16:56', 23, 11.00); INSERT INTO `sale_statement` VALUES (11, 1, 1, '2024-04-05 01:16:56', 24, 22.00); INSERT INTO `sale_statement` VALUES (12, 1, 1, '2024-04-05 01:16:56', 25, 11.00); INSERT INTO `sale_statement` VALUES (13, 1, 2, '2024-04-05 01:16:56', 26, 44.00); INSERT INTO `sale_statement` VALUES (14, 1, 3, '2024-04-05 01:16:56', 27, 33.00); INSERT INTO `sale_statement` VALUES (15, 1, 12, '2024-04-05 01:16:56', 31, 150.00); INSERT INTO `sale_statement` VALUES (16, 1, 12, '2024-04-05 01:16:56', 32, 150.00); INSERT INTO `sale_statement` VALUES (17, 1, 12, '2024-04-05 01:16:56', 33, 450.00); INSERT INTO `sale_statement` VALUES (18, 1, 12, '2024-04-05 01:16:56', 34, 900.00); INSERT INTO `sale_statement` VALUES (19, 1, 12, '2024-04-05 01:16:56', 1, 500.00); INSERT INTO `sale_statement` VALUES (21, 1, 1, '2024-05-05 01:53:29', 1, 18.00); INSERT INTO `sale_statement` VALUES (22, 1, 10, '2024-05-05 01:55:57', 1, 18.00); INSERT INTO `sale_statement` VALUES (23, 1, 9, '2024-05-05 10:18:22', NULL, 9.00); INSERT INTO `sale_statement` VALUES (24, 1, 3, '2024-05-05 10:18:22', NULL, 36.00); INSERT INTO `sale_statement` VALUES (25, 1, 1, '2024-05-05 10:25:30', NULL, 1.00); INSERT INTO `sale_statement` VALUES (26, 1, 1, '2024-05-05 10:25:30', NULL, 12.00); INSERT INTO `sale_statement` VALUES (27, 1, 5, '2024-05-05 21:20:55', NULL, 5.00); INSERT INTO `sale_statement` VALUES (28, 1, 6, '2024-05-05 21:20:55', NULL, 72.00); INSERT INTO `sale_statement` VALUES (29, 1, 2, '2024-05-05 21:20:55', NULL, 16.00); INSERT INTO `sale_statement` VALUES (30, 1, 1, '2024-05-05 21:23:14', NULL, 49.00); INSERT INTO `sale_statement` VALUES (31, 1, 1, '2024-05-05 21:23:14', NULL, 9.00); INSERT INTO `sale_statement` VALUES (32, 1, 1, '2024-05-05 21:23:14', NULL, 12.00); INSERT INTO `sale_statement` VALUES (33, 1, 1, '2024-05-05 21:23:27', NULL, 1.00); INSERT INTO `sale_statement` VALUES (34, 1, 1, '2024-05-05 21:23:27', NULL, 1.00); INSERT INTO `sale_statement` VALUES (35, 1, 2, '2024-05-05 21:32:50', NULL, 2.00); INSERT INTO `sale_statement` VALUES (36, 1, 3, '2024-05-05 21:33:14', NULL, 3.00); INSERT INTO `sale_statement` VALUES (37, 1, 2, '2024-05-05 21:33:14', NULL, 2.00); INSERT INTO `sale_statement` VALUES (38, 1, 2, '2024-05-05 21:33:17', NULL, 36.00); INSERT INTO `sale_statement` VALUES (39, 1, 2, '2024-05-05 21:33:18', NULL, 2.00); INSERT INTO `sale_statement` VALUES (40, 1, 2, '2024-05-05 21:33:18', NULL, 2.00); INSERT INTO `sale_statement` VALUES (41, 1, 1, '2024-05-05 21:33:18', NULL, 8.00); INSERT INTO `sale_statement` VALUES (42, 1, 3, '2024-05-05 21:33:18', NULL, 3.00); INSERT INTO `sale_statement` VALUES (43, 1, 1, '2024-05-05 21:33:19', NULL, 12.00); INSERT INTO `sale_statement` VALUES (44, 1, 1, '2024-05-05 21:33:19', NULL, 1.00); INSERT INTO `sale_statement` VALUES (45, 1, 3, '2024-05-05 21:33:19', NULL, 3.00); INSERT INTO `sale_statement` VALUES (46, 1, 4, '2024-05-05 21:33:19', NULL, 196.00); INSERT INTO `sale_statement` VALUES (47, 1, 2, '2024-05-05 21:33:19', NULL, 2.00); INSERT INTO `sale_statement` VALUES (48, 1, 2, '2024-05-05 21:39:38', 40, 2.00); INSERT INTO `sale_statement` VALUES (49, 1, 2, '2024-05-05 21:39:38', 35, 2.00); INSERT INTO `sale_statement` VALUES (50, 1, 2, '2024-05-05 21:39:38', 33, 36.00); INSERT INTO `sale_statement` VALUES (51, 1, 1, '2024-05-05 21:39:38', 32, 8.00); INSERT INTO `sale_statement` VALUES (52, 1, 3, '2024-05-05 21:39:38', 34, 36.00); INSERT INTO `sale_statement` VALUES (53, 1, 4, '2024-05-05 21:39:38', 31, 36.00); INSERT INTO `sale_statement` VALUES (54, 1, 1, '2024-05-05 21:39:38', 28, 24.00); INSERT INTO `sale_statement` VALUES (55, 1, 1, '2024-05-05 21:39:38', 27, 9.00); INSERT INTO `sale_statement` VALUES (56, 1, 2, '2024-05-05 21:39:38', 29, 24.00); INSERT INTO `sale_statement` VALUES (57, 1, 6, '2024-05-05 21:39:38', 26, 294.00); INSERT INTO `sale_statement` VALUES (58, 1, 2, '2024-05-05 21:39:38', 25, 36.00); INSERT INTO `sale_statement` VALUES (59, 1, 2, '2024-05-05 21:39:38', 24, 10.00); INSERT INTO `sale_statement` VALUES (60, 1, 2, '2024-05-05 21:39:38', 23, 16.00); INSERT INTO `sale_statement` VALUES (61, 1, 2, '2024-05-05 21:39:38', 5, 16.00); INSERT INTO `sale_statement` VALUES (62, 1, 2, '2024-05-05 21:39:38', 2, 16.00); INSERT INTO `sale_statement` VALUES (63, 1, 2, '2024-05-05 21:39:38', 1, 18.00); -- ---------------------------- -- Table structure for store -- ---------------------------- DROP TABLE IF EXISTS `store`; CREATE TABLE `store` ( `id` int NOT NULL AUTO_INCREMENT COMMENT 'id', `owner_id` int NULL DEFAULT NULL COMMENT '店铺主id', `products_ids` json NULL COMMENT '产品列表ids', `address_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '地址列表id', `product_type_ids` json NULL COMMENT '产品类型ids', `store_pic_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '店铺展示图片', `store_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '店铺名称', PRIMARY KEY (`id`) USING BTREE, INDEX `owner_id`(`owner_id` ASC) USING BTREE, CONSTRAINT `store_ibfk_1` FOREIGN KEY (`owner_id`) REFERENCES `adminstore` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of store -- ---------------------------- 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', '淮铺水果'); 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', '淮铺蔬菜'); -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int NOT NULL AUTO_INCREMENT COMMENT '用户id', `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户名', `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '密码', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户昵称', `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '头像网址', `role` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户类型', `sex` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '性别', `phone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '手机号', `account` decimal(10, 2) NULL DEFAULT NULL COMMENT '金额', `openid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT 'openid', `address_ids` json NULL COMMENT '用户地址ids', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 20 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '客户表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES (1, 'user', '123', '爱喝茶的小淮', NULL, 'USER', '男', '18779165101', 7451.00, '1243214213', '[1, 2, 3]'); INSERT INTO `user` VALUES (2, 'user2', '123', '喝奶茶的瑶妹', NULL, 'USER', '男', '18779165101', 9934.00, NULL, NULL); INSERT INTO `user` VALUES (3, 'user3', '123', '爱运动的尧', NULL, 'USER', '男', '18779165101', 99999.00, NULL, '[1, 2]'); INSERT INTO `user` VALUES (17, '淮小瑞1708502748', 'oYA-Q58ysBMJZymzkAQpBRx_Isc0', '淮小瑞1708502748', NULL, 'USER', NULL, NULL, 0.00, 'oYA-Q58ysBMJZymzkAQpBRx_Isc0', NULL); INSERT INTO `user` VALUES (18, '星河夜', '123', '荡漾', NULL, 'USER', '男', '18970940117', 99999.00, NULL, '[3]'); -- ---------------------------- -- Table structure for video -- ---------------------------- DROP TABLE IF EXISTS `video`; CREATE TABLE `video` ( `id` int NOT NULL COMMENT 'id', `video_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '视频名称', `video_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT ' 视频存储路径', `video_uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '视频UUID', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '视频表' ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of video -- ---------------------------- SET FOREIGN_KEY_CHECKS = 1;