From f8f326c8894e57478623204b83e4ba10f4062d4c Mon Sep 17 00:00:00 2001 From: sparksfly Date: Tue, 4 Aug 2026 16:06:40 +0800 Subject: [PATCH] =?UTF-8?q?feat(product-detail):=20=E5=AE=9E=E7=8E=B0?= =?UTF-8?q?=E5=95=86=E5=93=81=E8=AF=A6=E6=83=85=E9=A1=B5=E7=9A=84=E6=94=B6?= =?UTF-8?q?=E8=97=8F/=E5=8F=96=E6=B6=88=E6=94=B6=E8=97=8F=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=EF=BC=8C=E5=8C=85=E6=8B=AC=EF=BC=9A=201.=20=E5=BC=95?= =?UTF-8?q?=E5=85=A5=E6=94=B6=E8=97=8F=E7=9B=B8=E5=85=B3API=E5=92=8C?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E7=BB=84=E4=BB=B6=202.=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=94=B6=E8=97=8F=E7=8A=B6=E6=80=81=E7=AE=A1=E7=90=86=E5=92=8C?= =?UTF-8?q?=E5=8A=A0=E8=BD=BD=E7=8A=B6=E6=80=81=203.=20=E5=AE=9E=E7=8E=B0?= =?UTF-8?q?=E6=94=B6=E8=97=8F=E7=8A=B6=E6=80=81=E6=8B=89=E5=8F=96=E5=92=8C?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E9=80=BB=E8=BE=91=204.=20=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E6=94=B6=E8=97=8F=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F=E5=92=8C?= =?UTF-8?q?=E4=BA=A4=E4=BA=92=205.=20=E5=A4=84=E7=90=86=E6=9C=AA=E7=99=BB?= =?UTF-8?q?=E5=BD=95=E8=B7=B3=E8=BD=AC=E7=99=BB=E5=BD=95=E7=9A=84=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/snack_mall.sql | 2682 ++++++++++++++++++++++++ web-snack/src/views/product/detail.vue | 81 +- 2 files changed, 2762 insertions(+), 1 deletion(-) create mode 100644 db/snack_mall.sql diff --git a/db/snack_mall.sql b/db/snack_mall.sql new file mode 100644 index 0000000..5703aa7 --- /dev/null +++ b/db/snack_mall.sql @@ -0,0 +1,2682 @@ +/* + Navicat Premium Dump SQL + + Source Server : MySQL@Local + Source Server Type : MySQL + Source Server Version : 80046 (8.0.46) + Source Host : localhost:3306 + Source Schema : snack_mall + + Target Server Type : MySQL + Target Server Version : 80046 (8.0.46) + File Encoding : 65001 + + Date: 04/08/2026 15:50:49 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for address +-- ---------------------------- +DROP TABLE IF EXISTS `address`; +CREATE TABLE `address` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `user_id` bigint NOT NULL COMMENT '所属用户 ID', + `receiver` varchar(50) NOT NULL COMMENT '收货人姓名', + `phone` varchar(20) NOT NULL COMMENT '收货人手机号', + `province` varchar(50) DEFAULT NULL COMMENT '省', + `city` varchar(50) DEFAULT NULL COMMENT '市', + `district` varchar(50) DEFAULT NULL COMMENT '区/县', + `detail` varchar(255) NOT NULL COMMENT '详细地址', + `tag` varchar(20) DEFAULT NULL COMMENT '标签:家/公司/学校', + `is_default` tinyint NOT NULL DEFAULT '0' COMMENT '是否默认地址:0-否 1-是', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_user_id` (`user_id`), + KEY `idx_is_default` (`user_id`,`is_default`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='收货地址表'; + +-- ---------------------------- +-- Records of address +-- ---------------------------- +BEGIN; +INSERT INTO `address` (`id`, `user_id`, `receiver`, `phone`, `province`, `city`, `district`, `detail`, `tag`, `is_default`, `create_time`, `update_time`) VALUES (1, 1, '张三', '18868686868', '广东省', '深圳市', '南山区', '企鹅岛', '', 1, '2026-08-01 21:59:00', '2026-08-01 21:59:00'); +COMMIT; + +-- ---------------------------- +-- Table structure for admin +-- ---------------------------- +DROP TABLE IF EXISTS `admin`; +CREATE TABLE `admin` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `username` varchar(50) NOT NULL COMMENT '登录用户名(唯一)', + `password` varchar(100) NOT NULL COMMENT 'BCrypt 加密密码', + `nickname` varchar(50) DEFAULT NULL COMMENT '昵称', + `avatar` varchar(255) DEFAULT NULL COMMENT '头像 URL', + `email` varchar(100) DEFAULT NULL COMMENT '邮箱', + `phone` varchar(20) DEFAULT NULL COMMENT '手机号', + `role` varchar(50) NOT NULL DEFAULT 'admin' COMMENT '角色标识:super_admin / admin / operator', + `status` tinyint NOT NULL DEFAULT '1' COMMENT '账号状态:0-禁用 1-启用', + `last_login_time` datetime DEFAULT NULL COMMENT '最近登录时间', + `last_login_ip` varchar(50) DEFAULT NULL COMMENT '最近登录 IP', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_username` (`username`), + KEY `idx_status` (`status`), + KEY `idx_role` (`role`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='后台管理员表'; + +-- ---------------------------- +-- Records of admin +-- ---------------------------- +BEGIN; +INSERT INTO `admin` (`id`, `username`, `password`, `nickname`, `avatar`, `email`, `phone`, `role`, `status`, `last_login_time`, `last_login_ip`, `create_time`, `update_time`) VALUES (1, 'admin', '$2a$10$fli.rv1m/pqtPzSIly3Lqu4cx77VYnZUY4cXHcCzEHUn/N32tfJVy', '管理员', 'http://localhost:9000/snack-mall/admin-avatar/2026-08/b8db7743b74f4261aefcd39b4143385d.png', '15646@163.com', '18686866868', 'super_admin', 1, '2026-08-04 15:43:43', '0:0:0:0:0:0:0:1', '2026-06-02 23:13:15', '2026-08-04 15:43:43'); +COMMIT; + +-- ---------------------------- +-- Table structure for banner +-- ---------------------------- +DROP TABLE IF EXISTS `banner`; +CREATE TABLE `banner` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `title` varchar(100) DEFAULT NULL COMMENT '标题', + `image` varchar(255) NOT NULL COMMENT '图片 URL', + `link_type` tinyint NOT NULL DEFAULT '0' COMMENT '跳转类型:0-不跳转 1-商品 2-分类 3-外链', + `link_value` varchar(255) DEFAULT NULL COMMENT '跳转目标值(商品 ID / 分类 ID / URL)', + `sort` int NOT NULL DEFAULT '0' COMMENT '排序号(升序)', + `status` tinyint NOT NULL DEFAULT '1' COMMENT '状态:0-下线 1-上线', + `start_time` datetime DEFAULT NULL COMMENT '生效时间', + `end_time` datetime DEFAULT NULL COMMENT '失效时间', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_status_sort` (`status`,`sort`), + KEY `idx_start_time` (`start_time`), + KEY `idx_end_time` (`end_time`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='首页轮播图表'; + +-- ---------------------------- +-- Records of banner +-- ---------------------------- +BEGIN; +INSERT INTO `banner` (`id`, `title`, `image`, `link_type`, `link_value`, `sort`, `status`, `start_time`, `end_time`, `create_time`, `update_time`) VALUES (1, '双11狂欢 全场5折起', 'https://picsum.photos/seed/banner1/1200/480', 1, '1', 1, 1, NULL, NULL, '2026-06-05 15:14:12', '2026-06-05 15:14:12'); +INSERT INTO `banner` (`id`, `title`, `image`, `link_type`, `link_value`, `sort`, `status`, `start_time`, `end_time`, `create_time`, `update_time`) VALUES (2, '新品上市 进口零食专区', 'https://picsum.photos/seed/banner2/1200/480', 2, '2', 2, 1, NULL, NULL, '2026-06-05 15:14:15', '2026-06-05 15:14:15'); +INSERT INTO `banner` (`id`, `title`, `image`, `link_type`, `link_value`, `sort`, `status`, `start_time`, `end_time`, `create_time`, `update_time`) VALUES (3, '限时秒杀 每日0点开抢', 'https://picsum.photos/seed/banner3/1200/480', 3, 'https://example.com/seckill', 3, 1, NULL, NULL, '2026-06-05 15:14:17', '2026-06-05 15:14:17'); +INSERT INTO `banner` (`id`, `title`, `image`, `link_type`, `link_value`, `sort`, `status`, `start_time`, `end_time`, `create_time`, `update_time`) VALUES (4, '新人首单立减10元', 'https://picsum.photos/seed/banner4/1200/480', 0, NULL, 4, 1, '2026-06-01 00:00:00', '2026-12-31 23:59:59', '2026-06-05 15:14:42', '2026-06-05 15:14:42'); +INSERT INTO `banner` (`id`, `title`, `image`, `link_type`, `link_value`, `sort`, `status`, `start_time`, `end_time`, `create_time`, `update_time`) VALUES (5, '618年中大促 敬请期待', 'https://picsum.photos/seed/banner5/1200/480', 0, NULL, 99, 0, '2026-06-15 00:00:00', '2026-06-20 23:59:59', '2026-06-05 15:14:50', '2026-06-05 15:14:50'); +COMMIT; + +-- ---------------------------- +-- Table structure for cart +-- ---------------------------- +DROP TABLE IF EXISTS `cart`; +CREATE TABLE `cart` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `user_id` bigint NOT NULL COMMENT '用户 ID', + `product_id` bigint NOT NULL COMMENT '商品 SPU ID', + `sku_id` bigint NOT NULL COMMENT '商品 SKU ID', + `quantity` int NOT NULL DEFAULT '1' COMMENT '数量', + `selected` tinyint NOT NULL DEFAULT '1' COMMENT '选中状态:0-未选 1-已选', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '加入时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_user_sku` (`user_id`,`sku_id`), + KEY `idx_user_id` (`user_id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='购物车表'; + +-- ---------------------------- +-- Records of cart +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for category +-- ---------------------------- +DROP TABLE IF EXISTS `category`; +CREATE TABLE `category` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `name` varchar(50) NOT NULL COMMENT '分类名称', + `parent_id` bigint NOT NULL DEFAULT '0' COMMENT '父分类 ID,0 表示一级分类', + `level` tinyint NOT NULL DEFAULT '1' COMMENT '层级:1-一级 2-二级 3-三级', + `sort` int NOT NULL DEFAULT '0' COMMENT '排序号(升序展示)', + `icon` varchar(255) DEFAULT NULL COMMENT '分类图标 URL', + `status` tinyint NOT NULL DEFAULT '1' COMMENT '状态:0-禁用 1-启用', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_parent_id` (`parent_id`), + KEY `idx_level` (`level`), + KEY `idx_status` (`status`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='商品分类表(支持多级树形结构)'; + +-- ---------------------------- +-- Records of category +-- ---------------------------- +BEGIN; +INSERT INTO `category` (`id`, `name`, `parent_id`, `level`, `sort`, `icon`, `status`, `create_time`, `update_time`) VALUES (1, '坚果炒货', 0, 1, 10, '', 1, '2026-06-02 23:44:27', '2026-06-03 17:05:41'); +INSERT INTO `category` (`id`, `name`, `parent_id`, `level`, `sort`, `icon`, `status`, `create_time`, `update_time`) VALUES (2, '肉干果脯', 0, 1, 20, '', 1, '2026-06-03 17:05:28', '2026-06-03 17:05:28'); +INSERT INTO `category` (`id`, `name`, `parent_id`, `level`, `sort`, `icon`, `status`, `create_time`, `update_time`) VALUES (3, '糖果巧克力', 0, 1, 30, '', 1, '2026-06-03 17:05:50', '2026-06-03 17:05:50'); +INSERT INTO `category` (`id`, `name`, `parent_id`, `level`, `sort`, `icon`, `status`, `create_time`, `update_time`) VALUES (4, '饼干糕点', 0, 1, 40, '', 1, '2026-06-03 17:06:01', '2026-06-03 17:06:01'); +INSERT INTO `category` (`id`, `name`, `parent_id`, `level`, `sort`, `icon`, `status`, `create_time`, `update_time`) VALUES (5, '蜜饯果干', 0, 1, 50, '', 1, '2026-06-03 17:06:11', '2026-06-03 17:06:11'); +INSERT INTO `category` (`id`, `name`, `parent_id`, `level`, `sort`, `icon`, `status`, `create_time`, `update_time`) VALUES (6, '饮料冲饮', 0, 1, 60, '', 1, '2026-06-03 17:06:31', '2026-06-03 17:06:31'); +COMMIT; + +-- ---------------------------- +-- Table structure for chat_message +-- ---------------------------- +DROP TABLE IF EXISTS `chat_message`; +CREATE TABLE `chat_message` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `session_id` bigint NOT NULL COMMENT '所属会话 ID', + `seq` bigint NOT NULL DEFAULT '0' COMMENT '消息在会话内的递增序号(用于断线补发和排序)', + `sender_id` bigint NOT NULL COMMENT '发送者 ID(用户/客服)', + `sender_type` tinyint NOT NULL COMMENT '发送者类型:0-用户 1-客服 2-系统', + `type` varchar(10) NOT NULL DEFAULT 'text' COMMENT '消息类型:text / image / file / product / system', + `content` text NOT NULL COMMENT '消息内容(文字 / JSON / 图片 URL)', + `extra` json DEFAULT NULL COMMENT '扩展字段(商品卡片等结构化数据)', + `is_recalled` tinyint NOT NULL DEFAULT '0' COMMENT '是否撤回:0-否 1-是', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '发送时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_session_seq` (`session_id`,`seq`), + KEY `idx_session_id` (`session_id`), + KEY `idx_create_time` (`create_time`), + KEY `idx_session_time` (`session_id`,`create_time`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='客服消息表(WebSocket 持久化)'; + +-- ---------------------------- +-- Records of chat_message +-- ---------------------------- +BEGIN; +INSERT INTO `chat_message` (`id`, `session_id`, `seq`, `sender_id`, `sender_type`, `type`, `content`, `extra`, `is_recalled`, `create_time`) VALUES (1, 1, 1, 1, 1, 'text', '1', NULL, 0, '2026-08-04 15:03:07'); +INSERT INTO `chat_message` (`id`, `session_id`, `seq`, `sender_id`, `sender_type`, `type`, `content`, `extra`, `is_recalled`, `create_time`) VALUES (2, 1, 2, 1, 0, 'text', '2', NULL, 0, '2026-08-04 15:03:12'); +INSERT INTO `chat_message` (`id`, `session_id`, `seq`, `sender_id`, `sender_type`, `type`, `content`, `extra`, `is_recalled`, `create_time`) VALUES (3, 2, 1, 1, 0, 'text', '111', NULL, 0, '2026-08-04 15:03:54'); +INSERT INTO `chat_message` (`id`, `session_id`, `seq`, `sender_id`, `sender_type`, `type`, `content`, `extra`, `is_recalled`, `create_time`) VALUES (4, 2, 2, 1, 1, 'text', '33333', NULL, 0, '2026-08-04 15:04:02'); +INSERT INTO `chat_message` (`id`, `session_id`, `seq`, `sender_id`, `sender_type`, `type`, `content`, `extra`, `is_recalled`, `create_time`) VALUES (5, 2, 3, 1, 0, 'text', '44444', NULL, 0, '2026-08-04 15:04:10'); +INSERT INTO `chat_message` (`id`, `session_id`, `seq`, `sender_id`, `sender_type`, `type`, `content`, `extra`, `is_recalled`, `create_time`) VALUES (6, 2, 4, 1, 0, 'text', '11111333322121', NULL, 0, '2026-08-04 15:04:36'); +INSERT INTO `chat_message` (`id`, `session_id`, `seq`, `sender_id`, `sender_type`, `type`, `content`, `extra`, `is_recalled`, `create_time`) VALUES (7, 2, 5, 1, 1, 'text', '21123242354252342', NULL, 0, '2026-08-04 15:04:42'); +COMMIT; + +-- ---------------------------- +-- Table structure for chat_session +-- ---------------------------- +DROP TABLE IF EXISTS `chat_session`; +CREATE TABLE `chat_session` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `session_no` varchar(32) NOT NULL COMMENT '会话编号(业务唯一)', + `user_id` bigint NOT NULL COMMENT '发起用户 ID', + `admin_id` bigint DEFAULT NULL COMMENT '接待客服 ID,NULL=待分配', + `status` tinyint NOT NULL DEFAULT '0' COMMENT '会话状态:0-待处理 1-处理中 2-已解决 3-已关闭', + `user_unread` int NOT NULL DEFAULT '0' COMMENT '用户未读消息数', + `admin_unread` int NOT NULL DEFAULT '0' COMMENT '客服未读消息数', + `last_message` varchar(500) DEFAULT NULL COMMENT '最后一条消息摘要', + `last_time` datetime DEFAULT NULL COMMENT '最后一条消息时间', + `user_seq` bigint NOT NULL DEFAULT '0' COMMENT '用户端最大已确认消息序号(用于断线补发)', + `admin_seq` bigint NOT NULL DEFAULT '0' COMMENT '客服端最大已确认消息序号(用于断线补发)', + `close_time` datetime DEFAULT NULL COMMENT '关闭时间', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_session_no` (`session_no`), + KEY `idx_user_id` (`user_id`), + KEY `idx_admin_id` (`admin_id`), + KEY `idx_status` (`status`), + KEY `idx_last_time` (`last_time`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='客服会话表'; + +-- ---------------------------- +-- Records of chat_session +-- ---------------------------- +BEGIN; +INSERT INTO `chat_session` (`id`, `session_no`, `user_id`, `admin_id`, `status`, `user_unread`, `admin_unread`, `last_message`, `last_time`, `user_seq`, `admin_seq`, `close_time`, `create_time`, `update_time`) VALUES (1, 'CS202608040001', 1, 1, 2, 0, 0, '2', '2026-08-04 15:03:12', 1, 2, NULL, '2026-08-04 15:02:58', '2026-08-04 15:03:25'); +INSERT INTO `chat_session` (`id`, `session_no`, `user_id`, `admin_id`, `status`, `user_unread`, `admin_unread`, `last_message`, `last_time`, `user_seq`, `admin_seq`, `close_time`, `create_time`, `update_time`) VALUES (2, 'CS202608040002', 1, 1, 1, 0, 0, '21123242354252342', '2026-08-04 15:04:42', 5, 5, NULL, '2026-08-04 15:03:49', '2026-08-04 15:05:02'); +COMMIT; + +-- ---------------------------- +-- Table structure for coupon +-- ---------------------------- +DROP TABLE IF EXISTS `coupon`; +CREATE TABLE `coupon` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `name` varchar(100) NOT NULL COMMENT '优惠券名称', + `type` tinyint NOT NULL COMMENT '类型:0-满减券 1-折扣券 2-无门槛券', + `amount` decimal(10,2) NOT NULL COMMENT '满减面值 / 折扣率(0.85 表示 8.5 折)', + `min_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '最低使用金额(0 表示无门槛)', + `max_discount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '折扣券最高抵扣金额', + `total` int NOT NULL COMMENT '发放总量(-1 表示不限量)', + `remain` int NOT NULL COMMENT '剩余可领取数量', + `per_limit` int NOT NULL DEFAULT '1' COMMENT '每人限领数量', + `status` tinyint NOT NULL DEFAULT '1' COMMENT '状态:0-未上线 1-已上线 2-已结束', + `start_time` datetime NOT NULL COMMENT '领取开始时间', + `end_time` datetime NOT NULL COMMENT '领取截止时间', + `valid_days` int DEFAULT NULL COMMENT '领取后有效天数(NULL 时使用固定截止日期)', + `description` varchar(500) DEFAULT NULL COMMENT '使用说明', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_status` (`status`), + KEY `idx_start_time` (`start_time`), + KEY `idx_end_time` (`end_time`), + KEY `idx_type` (`type`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='优惠券模板表'; + +-- ---------------------------- +-- Records of coupon +-- ---------------------------- +BEGIN; +INSERT INTO `coupon` (`id`, `name`, `type`, `amount`, `min_amount`, `max_discount`, `total`, `remain`, `per_limit`, `status`, `start_time`, `end_time`, `valid_days`, `description`, `create_time`, `update_time`) VALUES (1, '每日惊喜优惠', 0, 10.00, 99.00, 0.00, 100, 100, 1, 1, '2026-06-05 14:12:53', '2026-06-10 00:00:00', 30, '', '2026-06-05 14:13:04', '2026-08-01 16:33:23'); +INSERT INTO `coupon` (`id`, `name`, `type`, `amount`, `min_amount`, `max_discount`, `total`, `remain`, `per_limit`, `status`, `start_time`, `end_time`, `valid_days`, `description`, `create_time`, `update_time`) VALUES (2, '无门槛10元', 2, 10.00, 0.00, 0.00, 100, 99, 1, 1, '2026-08-01 00:00:00', '2026-08-31 00:00:00', 30, '', '2026-08-04 14:18:14', '2026-08-04 14:18:20'); +COMMIT; + +-- ---------------------------- +-- Table structure for favorite +-- ---------------------------- +DROP TABLE IF EXISTS `favorite`; +CREATE TABLE `favorite` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `user_id` bigint NOT NULL COMMENT '用户 ID', + `product_id` bigint NOT NULL COMMENT '商品 SPU ID', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '收藏时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_user_product` (`user_id`,`product_id`), + KEY `idx_user_id` (`user_id`), + KEY `idx_product_id` (`product_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户收藏表'; + +-- ---------------------------- +-- Records of favorite +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for notice +-- ---------------------------- +DROP TABLE IF EXISTS `notice`; +CREATE TABLE `notice` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `title` varchar(200) NOT NULL COMMENT '公告标题', + `content` longtext NOT NULL COMMENT '公告内容(富文本 HTML)', + `type` tinyint NOT NULL DEFAULT '0' COMMENT '公告类型:0-普通 1-重要 2-活动', + `is_top` tinyint NOT NULL DEFAULT '0' COMMENT '是否置顶:0-否 1-是', + `status` tinyint NOT NULL DEFAULT '1' COMMENT '状态:0-下线 1-上线', + `start_time` datetime DEFAULT NULL COMMENT '生效时间', + `end_time` datetime DEFAULT NULL COMMENT '失效时间', + `view_count` int NOT NULL DEFAULT '0' COMMENT '浏览量', + `publisher_id` bigint DEFAULT NULL COMMENT '发布人(管理员 ID)', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_status` (`status`), + KEY `idx_type` (`type`), + KEY `idx_create_time` (`create_time`), + KEY `idx_top_status` (`is_top`,`status`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统公告表'; + +-- ---------------------------- +-- Records of notice +-- ---------------------------- +BEGIN; +INSERT INTO `notice` (`id`, `title`, `content`, `type`, `is_top`, `status`, `start_time`, `end_time`, `view_count`, `publisher_id`, `create_time`, `update_time`) VALUES (1, '才是', '

三生三世十里桃花

三生三世十里桃花

', 0, 0, 1, NULL, NULL, 7, 1, '2026-06-03 21:29:10', '2026-08-01 21:26:54'); +COMMIT; + +-- ---------------------------- +-- Table structure for order_item +-- ---------------------------- +DROP TABLE IF EXISTS `order_item`; +CREATE TABLE `order_item` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `order_id` bigint NOT NULL COMMENT '订单 ID', + `order_no` varchar(32) NOT NULL COMMENT '订单号(冗余)', + `product_id` bigint NOT NULL COMMENT '商品 SPU ID', + `product_name` varchar(200) NOT NULL COMMENT '商品名(冗余防商品改名)', + `product_image` varchar(255) DEFAULT NULL COMMENT '商品主图(冗余)', + `sku_id` bigint NOT NULL COMMENT 'SKU ID', + `sku_name` varchar(100) NOT NULL COMMENT 'SKU 规格(冗余)', + `price` decimal(10,2) NOT NULL COMMENT '成交单价', + `quantity` int NOT NULL COMMENT '购买数量', + `total_amount` decimal(10,2) NOT NULL COMMENT '小计金额(price*quantity)', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + PRIMARY KEY (`id`), + KEY `idx_order_id` (`order_id`), + KEY `idx_order_no` (`order_no`), + KEY `idx_product_id` (`product_id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='订单商品明细表'; + +-- ---------------------------- +-- Records of order_item +-- ---------------------------- +BEGIN; +INSERT INTO `order_item` (`id`, `order_id`, `order_no`, `product_id`, `product_name`, `product_image`, `sku_id`, `sku_name`, `price`, `quantity`, `total_amount`, `create_time`) VALUES (1, 1, 'SN20260801114431', 498, '传统沃隆 奶油味腰果 礼盒装', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 1492, '奶油味腰果/200g', 29.90, 1, 29.90, '2026-08-01 21:59:06'); +INSERT INTO `order_item` (`id`, `order_id`, `order_no`, `product_id`, `product_name`, `product_image`, `sku_id`, `sku_name`, `price`, `quantity`, `total_amount`, `create_time`) VALUES (2, 2, 'SN20260801636694', 498, '传统沃隆 奶油味腰果 礼盒装', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 1492, '奶油味腰果/200g', 29.90, 1, 29.90, '2026-08-01 22:31:12'); +INSERT INTO `order_item` (`id`, `order_id`, `order_no`, `product_id`, `product_name`, `product_image`, `sku_id`, `sku_name`, `price`, `quantity`, `total_amount`, `create_time`) VALUES (3, 3, 'SN20260804261180', 494, '精选三只松鼠 瑞士卷', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 1480, '瑞士卷/300g', 18.90, 1, 18.90, '2026-08-04 14:18:37'); +INSERT INTO `order_item` (`id`, `order_id`, `order_no`, `product_id`, `product_name`, `product_image`, `sku_id`, `sku_name`, `price`, `quantity`, `total_amount`, `create_time`) VALUES (4, 5, 'SN20260804178868', 495, '手工嘉士利 蛋糕', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 1483, '蛋糕/6个装', 23.92, 1, 23.92, '2026-08-04 15:41:35'); +COMMIT; + +-- ---------------------------- +-- Table structure for orders +-- ---------------------------- +DROP TABLE IF EXISTS `orders`; +CREATE TABLE `orders` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `order_no` varchar(32) NOT NULL COMMENT '订单号(业务唯一)', + `user_id` bigint NOT NULL COMMENT '下单用户 ID', + `total_amount` decimal(10,2) NOT NULL COMMENT '商品总金额(未优惠)', + `freight_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '运费', + `discount_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '优惠金额(满减/折扣)', + `coupon_id` bigint DEFAULT NULL COMMENT '使用的优惠券 ID', + `coupon_amount` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '优惠券抵扣金额', + `pay_amount` decimal(10,2) NOT NULL COMMENT '实付金额', + `status` tinyint NOT NULL DEFAULT '0' COMMENT '订单状态:0-待付款 1-待发货 2-待收货 3-已完成 4-已取消 5-已退款', + `receiver_name` varchar(50) NOT NULL COMMENT '收货人姓名', + `receiver_phone` varchar(20) NOT NULL COMMENT '收货人手机号', + `receiver_address` varchar(255) NOT NULL COMMENT '完整收货地址', + `remark` varchar(500) DEFAULT NULL COMMENT '订单备注', + `tracking_company` varchar(50) DEFAULT NULL COMMENT '物流公司', + `tracking_no` varchar(50) DEFAULT NULL COMMENT '物流单号', + `pay_time` datetime DEFAULT NULL COMMENT '支付时间', + `deliver_time` datetime DEFAULT NULL COMMENT '发货时间', + `receive_time` datetime DEFAULT NULL COMMENT '收货时间', + `cancel_time` datetime DEFAULT NULL COMMENT '取消时间', + `finish_time` datetime DEFAULT NULL COMMENT '完成时间', + `pay_channel` varchar(20) DEFAULT NULL COMMENT '支付渠道:alipay / wechat / balance', + `pay_trade_no` varchar(64) DEFAULT NULL COMMENT '第三方支付平台交易号(支付宝/微信返回)', + `refund_trade_no` varchar(64) DEFAULT NULL COMMENT '退款交易号(支付宝/微信返回)', + `refund_time` datetime DEFAULT NULL COMMENT '退款时间', + `refund_reason` varchar(255) DEFAULT NULL COMMENT '退款原因', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_order_no` (`order_no`), + UNIQUE KEY `uk_pay_trade_no` (`pay_trade_no`), + KEY `idx_user_id` (`user_id`), + KEY `idx_status` (`status`), + KEY `idx_create_time` (`create_time`), + KEY `idx_user_status` (`user_id`,`status`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='订单主表'; + +-- ---------------------------- +-- Records of orders +-- ---------------------------- +BEGIN; +INSERT INTO `orders` (`id`, `order_no`, `user_id`, `total_amount`, `freight_amount`, `discount_amount`, `coupon_id`, `coupon_amount`, `pay_amount`, `status`, `receiver_name`, `receiver_phone`, `receiver_address`, `remark`, `tracking_company`, `tracking_no`, `pay_time`, `deliver_time`, `receive_time`, `cancel_time`, `finish_time`, `pay_channel`, `pay_trade_no`, `refund_trade_no`, `refund_time`, `refund_reason`, `create_time`, `update_time`) VALUES (1, 'SN20260801114431', 1, 29.90, 0.00, 0.00, NULL, 0.00, 29.90, 1, '张三', '18868686868', '广东省深圳市南山区企鹅岛', NULL, NULL, NULL, '2026-08-01 21:59:08', NULL, NULL, NULL, NULL, 'alipay', 'MOCK-1785592748519', NULL, NULL, NULL, '2026-08-01 21:59:07', '2026-08-01 21:59:08'); +INSERT INTO `orders` (`id`, `order_no`, `user_id`, `total_amount`, `freight_amount`, `discount_amount`, `coupon_id`, `coupon_amount`, `pay_amount`, `status`, `receiver_name`, `receiver_phone`, `receiver_address`, `remark`, `tracking_company`, `tracking_no`, `pay_time`, `deliver_time`, `receive_time`, `cancel_time`, `finish_time`, `pay_channel`, `pay_trade_no`, `refund_trade_no`, `refund_time`, `refund_reason`, `create_time`, `update_time`) VALUES (2, 'SN20260801636694', 1, 29.90, 0.00, 0.00, NULL, 0.00, 29.90, 2, '张三', '18868686868', '广东省深圳市南山区企鹅岛', NULL, '顺丰速运', '111', '2026-08-04 11:35:24', '2026-08-04 13:52:24', NULL, NULL, NULL, 'alipay', '2026080422001490050509254531', NULL, NULL, NULL, '2026-08-01 22:31:13', '2026-08-04 13:52:24'); +INSERT INTO `orders` (`id`, `order_no`, `user_id`, `total_amount`, `freight_amount`, `discount_amount`, `coupon_id`, `coupon_amount`, `pay_amount`, `status`, `receiver_name`, `receiver_phone`, `receiver_address`, `remark`, `tracking_company`, `tracking_no`, `pay_time`, `deliver_time`, `receive_time`, `cancel_time`, `finish_time`, `pay_channel`, `pay_trade_no`, `refund_trade_no`, `refund_time`, `refund_reason`, `create_time`, `update_time`) VALUES (3, 'SN20260804261180', 1, 18.90, 0.00, 10.00, 1, 10.00, 8.90, 1, '张三', '18868686868', '广东省深圳市南山区企鹅岛', NULL, NULL, NULL, '2026-08-04 14:20:00', NULL, NULL, NULL, NULL, 'alipay', '2026080422001490050509253163', NULL, NULL, NULL, '2026-08-04 14:18:38', '2026-08-04 14:20:00'); +INSERT INTO `orders` (`id`, `order_no`, `user_id`, `total_amount`, `freight_amount`, `discount_amount`, `coupon_id`, `coupon_amount`, `pay_amount`, `status`, `receiver_name`, `receiver_phone`, `receiver_address`, `remark`, `tracking_company`, `tracking_no`, `pay_time`, `deliver_time`, `receive_time`, `cancel_time`, `finish_time`, `pay_channel`, `pay_trade_no`, `refund_trade_no`, `refund_time`, `refund_reason`, `create_time`, `update_time`) VALUES (5, 'SN20260804178868', 1, 23.92, 0.00, 0.00, NULL, 0.00, 23.92, 1, '张三', '18868686868', '广东省深圳市南山区企鹅岛', '限时抢购订单', NULL, NULL, '2026-08-04 15:43:13', NULL, NULL, NULL, NULL, 'alipay', '2026080422001490050509249635', NULL, NULL, NULL, '2026-08-04 15:41:35', '2026-08-04 15:43:13'); +COMMIT; + +-- ---------------------------- +-- Table structure for product +-- ---------------------------- +DROP TABLE IF EXISTS `product`; +CREATE TABLE `product` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID(SPU)', + `name` varchar(200) NOT NULL COMMENT '商品名称', + `category_id` bigint NOT NULL COMMENT '所属分类 ID', + `brand` varchar(100) DEFAULT NULL COMMENT '品牌', + `main_image` varchar(255) DEFAULT NULL COMMENT '主图 URL', + `sub_images` text COMMENT '副图列表(JSON 数组)', + `detail` longtext COMMENT '富文本详情(HTML)', + `origin_price` decimal(10,2) DEFAULT NULL COMMENT '原价/划线价', + `sales` int NOT NULL DEFAULT '0' COMMENT '累计销量', + `view_count` int NOT NULL DEFAULT '0' COMMENT '浏览量', + `status` tinyint NOT NULL DEFAULT '1' COMMENT '状态:0-下架 1-上架', + `is_hot` tinyint NOT NULL DEFAULT '0' COMMENT '是否热门:0-否 1-是', + `is_new` tinyint NOT NULL DEFAULT '0' COMMENT '是否新品:0-否 1-是', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_category_id` (`category_id`), + KEY `idx_status` (`status`), + KEY `idx_sales` (`sales`), + KEY `idx_create_time` (`create_time`) +) ENGINE=InnoDB AUTO_INCREMENT=501 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='商品 SPU 表'; + +-- ---------------------------- +-- Records of product +-- ---------------------------- +BEGIN; +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (1, '网红星巴克 酸梅汤 家庭装', 6, '星巴克', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

网红星巴克 酸梅汤 家庭装

\n

品牌:星巴克

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:美国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 31.91, 0, 3, 1, 1, 0, '2026-06-03 23:33:05', '2026-08-04 14:16:52'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (2, '网红楼兰蜜语 柠檬干', 5, '楼兰蜜语', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

网红楼兰蜜语 柠檬干

\n

品牌:楼兰蜜语

\n

规格:100g, 200g, 50g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 32.89, 0, 0, 1, 1, 0, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (3, '网红劲仔 腊肉 礼盒装', 2, '劲仔', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

网红劲仔 腊肉 礼盒装

\n

品牌:劲仔

\n

规格:500g, 1000g, 250g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 126.66, 0, 0, 1, 1, 0, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (4, '传统来伊份 肉枣', 2, '来伊份', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

传统来伊份 肉枣

\n

品牌:来伊份

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 40.31, 0, 0, 1, 0, 0, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (5, '百草味 墨鱼仔', 2, '百草味', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

百草味 墨鱼仔

\n

品牌:百草味

\n

规格:200g, 400g, 100g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 47.68, 0, 0, 1, 0, 0, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (6, '华美 曲奇饼干', 4, '华美', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

华美 曲奇饼干

\n

品牌:华美

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 39.84, 0, 0, 1, 0, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (7, '进口百草味 肉松', 2, '百草味', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

进口百草味 肉松

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 63.31, 0, 0, 1, 0, 0, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (8, '星巴克 苏打水', 6, '星巴克', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

星巴克 苏打水

\n

品牌:星巴克

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 25.44, 0, 0, 1, 0, 0, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (9, '传统良品铺子 山楂片 家庭装', 5, '良品铺子', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

传统良品铺子 山楂片 家庭装

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 16.49, 0, 0, 1, 0, 0, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (10, '传统华味亨 奶油味腰果', 1, '华味亨', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

传统华味亨 奶油味腰果

\n

品牌:华味亨

\n

规格:200g, 500g, 1000g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 103.42, 0, 0, 1, 0, 0, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (11, '手工嘉士利 蛋糕', 4, '嘉士利', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

手工嘉士利 蛋糕

\n

品牌:嘉士利

\n

规格:6个装, 12个装, 3个装

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 78.48, 0, 0, 1, 1, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (12, '网红楼兰蜜语 香蕉片 家庭装', 5, '楼兰蜜语', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

网红楼兰蜜语 香蕉片 家庭装

\n

品牌:楼兰蜜语

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 29.93, 0, 0, 1, 1, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (13, '洽洽 每日坚果 便携装', 1, '洽洽', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

洽洽 每日坚果 便携装

\n

品牌:洽洽

\n

规格:30包, 15包, 7包

\n

产地:中国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 132.57, 0, 0, 1, 0, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (14, '溜溜梅 椰枣 便携装', 5, '溜溜梅', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

溜溜梅 椰枣 便携装

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 63.82, 0, 0, 1, 0, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (15, '雀巢 果冻 家庭装', 3, '雀巢', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

雀巢 果冻 家庭装

\n

品牌:雀巢

\n

规格:500g, 1000g, 250g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 39.51, 0, 0, 1, 1, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (16, '精选三只松鼠 瑞士卷 家庭装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

精选三只松鼠 瑞士卷 家庭装

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 43.03, 0, 0, 1, 1, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (17, '周黑鸭 五香鸭脖 礼盒装', 2, '周黑鸭', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

周黑鸭 五香鸭脖 礼盒装

\n

品牌:周黑鸭

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 48.77, 0, 0, 1, 0, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (18, '楼兰蜜语 巴旦木', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

楼兰蜜语 巴旦木

\n

品牌:楼兰蜜语

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 59.89, 0, 0, 1, 1, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (19, '德芙 棒棒糖 礼盒装', 3, '德芙', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

德芙 棒棒糖 礼盒装

\n

品牌:德芙

\n

规格:20支, 50支, 10支

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 41.95, 0, 0, 1, 1, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (20, '三只松鼠 原味夏威夷果 便携装', 1, '三只松鼠', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 原味夏威夷果 便携装

\n

品牌:三只松鼠

\n

规格:500g, 250g, 1000g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 110.50, 0, 0, 1, 0, 0, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (21, '好时 花生糖', 3, '好时', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

好时 花生糖

\n

品牌:好时

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 33.69, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (22, '来伊份 菠萝干', 5, '来伊份', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

来伊份 菠萝干

\n

品牌:来伊份

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 36.70, 0, 0, 1, 1, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (23, '精选好时 橡皮糖', 3, '好时', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

精选好时 橡皮糖

\n

品牌:好时

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 25.62, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (24, '统一 功能饮料', 6, '统一', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

统一 功能饮料

\n

品牌:统一

\n

规格:250ml*6, 500ml*6, 1L

\n

产地:中国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 57.00, 0, 0, 1, 1, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (25, '传统香飘飘 功能饮料', 6, '香飘飘', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

传统香飘飘 功能饮料

\n

品牌:香飘飘

\n

规格:250ml*6, 500ml*6, 1L

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 58.43, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (26, '网红良品铺子 卤蛋 便携装', 2, '良品铺子', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

网红良品铺子 卤蛋 便携装

\n

品牌:良品铺子

\n

规格:10枚, 20枚, 5枚

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 33.03, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (27, '进口果园老农 桃干 家庭装', 5, '果园老农', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

进口果园老农 桃干 家庭装

\n

品牌:果园老农

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 41.68, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (28, '玛氏 棒棒糖', 3, '玛氏', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

玛氏 棒棒糖

\n

品牌:玛氏

\n

规格:20支, 50支, 10支

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 40.07, 0, 0, 1, 1, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (29, '进口费列罗 夹心巧克力', 3, '费列罗', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

进口费列罗 夹心巧克力

\n

品牌:费列罗

\n

规格:150g, 300g, 500g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 88.20, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (30, '精选奥利奥 老婆饼 家庭装', 4, '奥利奥', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

精选奥利奥 老婆饼 家庭装

\n

品牌:奥利奥

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 28.14, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (31, '统一 奶茶 家庭装', 6, '统一', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

统一 奶茶 家庭装

\n

品牌:统一

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 34.39, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (32, '精选盼盼 凤梨酥', 4, '盼盼', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

精选盼盼 凤梨酥

\n

品牌:盼盼

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 64.17, 0, 0, 1, 0, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (33, '手工好时 QQ糖', 3, '好时', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

手工好时 QQ糖

\n

品牌:好时

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 26.03, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (34, '进口可口可乐 气泡水 家庭装', 6, '可口可乐', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

进口可口可乐 气泡水 家庭装

\n

品牌:可口可乐

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:中国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 42.73, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (35, '劲仔 卤牛肉 礼盒装', 2, '劲仔', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

劲仔 卤牛肉 礼盒装

\n

品牌:劲仔

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 142.55, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (36, '手工明治 果冻 家庭装', 3, '明治', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

手工明治 果冻 家庭装

\n

品牌:明治

\n

规格:500g, 1000g, 250g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 35.77, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (37, '好吃点 夹心饼干 家庭装', 4, '好吃点', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

好吃点 夹心饼干 家庭装

\n

品牌:好吃点

\n

规格:388g, 500g, 200g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 28.16, 0, 0, 1, 0, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (38, '进口三只松鼠 香辣鸡翅', 2, '三只松鼠', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

进口三只松鼠 香辣鸡翅

\n

品牌:三只松鼠

\n

规格:200g, 400g, 100g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 66.29, 0, 0, 1, 1, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (39, '统一 豆浆 便携装', 6, '统一', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

统一 豆浆 便携装

\n

品牌:统一

\n

规格:250ml*12, 500ml*6, 1L

\n

产地:中国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 38.53, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (40, '手工好利来 蛋卷 便携装', 4, '好利来', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

手工好利来 蛋卷 便携装

\n

品牌:好利来

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 34.46, 0, 0, 1, 0, 0, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (41, '手工坚果工坊 原味夏威夷果 便携装', 1, '坚果工坊', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

手工坚果工坊 原味夏威夷果 便携装

\n

品牌:坚果工坊

\n

规格:500g, 250g, 1000g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 118.45, 0, 0, 1, 0, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (42, '网红松鼠集团 原味瓜子 便携装', 1, '松鼠集团', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

网红松鼠集团 原味瓜子 便携装

\n

品牌:松鼠集团

\n

规格:500g, 1000g, 200g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 28.90, 0, 0, 1, 1, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (43, '老四川 肉枣', 2, '老四川', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

老四川 肉枣

\n

品牌:老四川

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 36.31, 0, 0, 1, 0, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (44, '好利来 蛋黄派 家庭装', 4, '好利来', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

好利来 蛋黄派 家庭装

\n

品牌:好利来

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 34.21, 0, 0, 1, 0, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (45, '传统嘉士利 苏打饼干', 4, '嘉士利', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

传统嘉士利 苏打饼干

\n

品牌:嘉士利

\n

规格:500g, 1000g, 250g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 31.17, 0, 0, 1, 1, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (46, '网红洽洽 兰花豆', 1, '洽洽', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

网红洽洽 兰花豆

\n

品牌:洽洽

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 24.92, 0, 0, 1, 0, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (47, '手工友臣 烤鱼片 家庭装', 2, '友臣', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

手工友臣 烤鱼片 家庭装

\n

品牌:友臣

\n

规格:200g, 400g, 100g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 61.22, 0, 0, 1, 0, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (48, '华美 老婆饼 便携装', 4, '华美', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

华美 老婆饼 便携装

\n

品牌:华美

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 34.19, 0, 0, 1, 1, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (49, '精选康师傅 豆浆 便携装', 6, '康师傅', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

精选康师傅 豆浆 便携装

\n

品牌:康师傅

\n

规格:250ml*12, 500ml*6, 1L

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 37.78, 0, 0, 1, 1, 0, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (50, '徐福记 芝麻糖', 3, '徐福记', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

徐福记 芝麻糖

\n

品牌:徐福记

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 30.99, 0, 0, 1, 0, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (51, '嘉士利 吐司 礼盒装', 4, '嘉士利', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

嘉士利 吐司 礼盒装

\n

品牌:嘉士利

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 27.03, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (52, '网红良品铺子 芒果干', 5, '良品铺子', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

网红良品铺子 芒果干

\n

品牌:良品铺子

\n

规格:100g, 200g, 500g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 61.53, 0, 0, 1, 0, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (53, '精选良品铺子 无花果干 家庭装', 5, '良品铺子', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 无花果干 家庭装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 46.35, 0, 0, 1, 1, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (54, '来伊份 香酥蚕豆 礼盒装', 1, '来伊份', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

来伊份 香酥蚕豆 礼盒装

\n

品牌:来伊份

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 18.80, 0, 0, 1, 1, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (55, '来伊份 怪味胡豆 便携装', 1, '来伊份', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

来伊份 怪味胡豆 便携装

\n

品牌:来伊份

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 27.05, 0, 0, 1, 1, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (56, '手工绝味 鱼豆腐', 2, '绝味', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

手工绝味 鱼豆腐

\n

品牌:绝味

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 31.60, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (57, '好想你 香蕉片 礼盒装', 5, '好想你', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

好想你 香蕉片 礼盒装

\n

品牌:好想你

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 35.89, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (58, '传统无穷 鱿鱼丝 便携装', 2, '无穷', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

传统无穷 鱿鱼丝 便携装

\n

品牌:无穷

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 57.89, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (59, '进口康师傅 葡萄汁', 6, '康师傅', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

进口康师傅 葡萄汁

\n

品牌:康师傅

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 60.62, 0, 0, 1, 0, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (60, '传统百草味 蔓越莓干', 5, '百草味', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

传统百草味 蔓越莓干

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 55.20, 0, 0, 1, 1, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (61, '精选百草味 香酥蚕豆 礼盒装', 1, '百草味', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

精选百草味 香酥蚕豆 礼盒装

\n

品牌:百草味

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 18.91, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (62, '手工松鼠集团 碧根果 家庭装', 1, '松鼠集团', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

手工松鼠集团 碧根果 家庭装

\n

品牌:松鼠集团

\n

规格:250g, 500g, 1000g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 146.98, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (63, '网红果园老农 苹果干', 5, '果园老农', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红果园老农 苹果干

\n

品牌:果园老农

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 41.62, 0, 0, 1, 0, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (64, '传统汇源 牛奶', 6, '汇源', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

传统汇源 牛奶

\n

品牌:汇源

\n

规格:250ml*12, 500ml*6, 1L*2

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 58.63, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (65, '好时 牛奶巧克力 便携装', 3, '好时', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

好时 牛奶巧克力 便携装

\n

品牌:好时

\n

规格:100g, 200g, 500g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 109.11, 0, 0, 1, 0, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (66, '手工明治 夹心巧克力 礼盒装', 3, '明治', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

手工明治 夹心巧克力 礼盒装

\n

品牌:明治

\n

规格:150g, 300g, 500g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 100.78, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (67, '精选楼兰蜜语 猕猴桃干 礼盒装', 5, '楼兰蜜语', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

精选楼兰蜜语 猕猴桃干 礼盒装

\n

品牌:楼兰蜜语

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 46.40, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (68, '传统三只松鼠 鱿鱼丝', 2, '三只松鼠', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

传统三只松鼠 鱿鱼丝

\n

品牌:三只松鼠

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 68.80, 0, 0, 1, 0, 0, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (69, '进口无穷 手撕牛肉 礼盒装', 2, '无穷', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

进口无穷 手撕牛肉 礼盒装

\n

品牌:无穷

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 129.65, 0, 0, 1, 0, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (70, '传统良品铺子 绿豆糕', 4, '良品铺子', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

传统良品铺子 绿豆糕

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 35.27, 0, 0, 1, 0, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (71, '网红雀巢 巧克力豆 便携装', 3, '雀巢', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红雀巢 巧克力豆 便携装

\n

品牌:雀巢

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 57.26, 0, 0, 1, 1, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (72, '手工百草味 奶油味腰果', 1, '百草味', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

手工百草味 奶油味腰果

\n

品牌:百草味

\n

规格:200g, 500g, 1000g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 105.69, 0, 0, 1, 0, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (73, '手工康师傅 椰子水 便携装', 6, '康师傅', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

手工康师傅 椰子水 便携装

\n

品牌:康师傅

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:越南

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 52.21, 0, 0, 1, 0, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (74, '统一 葡萄汁 便携装', 6, '统一', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

统一 葡萄汁 便携装

\n

品牌:统一

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 51.66, 0, 0, 1, 1, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (75, '精选雀巢 酥糖 便携装', 3, '雀巢', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

精选雀巢 酥糖 便携装

\n

品牌:雀巢

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 33.45, 0, 0, 1, 0, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (76, '精选统一 椰子水', 6, '统一', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

精选统一 椰子水

\n

品牌:统一

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 50.73, 0, 0, 1, 0, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (77, '华味亨 猕猴桃干', 5, '华味亨', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

华味亨 猕猴桃干

\n

品牌:华味亨

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 38.50, 0, 0, 1, 1, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (78, '传统汇源 雪碧 家庭装', 6, '汇源', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

传统汇源 雪碧 家庭装

\n

品牌:汇源

\n

规格:330ml*6, 500ml*6, 1.5L*2

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 42.44, 0, 0, 1, 0, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (79, '精选良品铺子 香蕉片 礼盒装', 5, '良品铺子', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 香蕉片 礼盒装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 35.97, 0, 0, 1, 0, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (80, '手工康师傅 老婆饼', 4, '康师傅', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

手工康师傅 老婆饼

\n

品牌:康师傅

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 37.12, 0, 0, 1, 0, 0, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (81, '网红华味亨 无花果干', 5, '华味亨', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

网红华味亨 无花果干

\n

品牌:华味亨

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 56.63, 0, 0, 1, 1, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (82, '可口可乐 酸奶', 6, '可口可乐', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

可口可乐 酸奶

\n

品牌:可口可乐

\n

规格:200g*12, 100g*16, 500g*3

\n

产地:美国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 51.13, 0, 0, 1, 0, 0, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (83, '进口楼兰蜜语 椰枣', 5, '楼兰蜜语', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

进口楼兰蜜语 椰枣

\n

品牌:楼兰蜜语

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 64.56, 0, 0, 1, 0, 0, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (84, '进口良品铺子 蔓越莓干 家庭装', 5, '良品铺子', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

进口良品铺子 蔓越莓干 家庭装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 52.45, 0, 0, 1, 0, 0, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (85, '精选良品铺子 威化饼干 礼盒装', 4, '良品铺子', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 威化饼干 礼盒装

\n

品牌:良品铺子

\n

规格:200g, 400g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 36.01, 0, 0, 1, 1, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (86, '楼兰蜜语 奶油味腰果', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

楼兰蜜语 奶油味腰果

\n

品牌:楼兰蜜语

\n

规格:200g, 500g, 1000g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 105.64, 0, 0, 1, 0, 0, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (87, '费列罗 水果硬糖 便携装', 3, '费列罗', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

费列罗 水果硬糖 便携装

\n

品牌:费列罗

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 17.53, 0, 0, 1, 1, 0, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (88, '手工三得利 橙汁 家庭装', 6, '三得利', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

手工三得利 橙汁 家庭装

\n

品牌:三得利

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:越南

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 59.10, 0, 0, 1, 0, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (89, '传统费列罗 草莓味软糖', 3, '费列罗', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

传统费列罗 草莓味软糖

\n

品牌:费列罗

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 28.64, 0, 0, 1, 0, 0, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (90, '进口阿尔卑斯 巧克力豆', 3, '阿尔卑斯', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

进口阿尔卑斯 巧克力豆

\n

品牌:阿尔卑斯

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 49.84, 0, 0, 1, 0, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (91, '网红好吃点 煎饼', 4, '好吃点', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

网红好吃点 煎饼

\n

品牌:好吃点

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 20.90, 0, 0, 1, 0, 0, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (92, '洽洽 杏仁 礼盒装', 1, '洽洽', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

洽洽 杏仁 礼盒装

\n

品牌:洽洽

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 71.71, 0, 0, 1, 0, 0, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (93, '进口良品铺子 话梅 便携装', 5, '良品铺子', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

进口良品铺子 话梅 便携装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 43.91, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (94, '精选洽洽 每日坚果 便携装', 1, '洽洽', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

精选洽洽 每日坚果 便携装

\n

品牌:洽洽

\n

规格:30包, 15包, 7包

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 133.95, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (95, '传统洽洽 混合坚果 便携装', 1, '洽洽', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

传统洽洽 混合坚果 便携装

\n

品牌:洽洽

\n

规格:500g, 750g, 300g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 120.53, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (96, '传统星巴克 气泡水', 6, '星巴克', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

传统星巴克 气泡水

\n

品牌:星巴克

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 41.09, 0, 0, 1, 0, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (97, '盼盼 煎饼 家庭装', 4, '盼盼', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

盼盼 煎饼 家庭装

\n

品牌:盼盼

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 21.01, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (98, '精选绝味 酱板鸭 礼盒装', 2, '绝味', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

精选绝味 酱板鸭 礼盒装

\n

品牌:绝味

\n

规格:半只, 整只, 1/4只

\n

产地:日本

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 98.44, 0, 0, 1, 0, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (99, '传统周黑鸭 鱼豆腐 便携装', 2, '周黑鸭', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

传统周黑鸭 鱼豆腐 便携装

\n

品牌:周黑鸭

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 30.64, 0, 0, 1, 0, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (100, '进口来伊份 榛子 家庭装', 1, '来伊份', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

进口来伊份 榛子 家庭装

\n

品牌:来伊份

\n

规格:250g, 500g, 150g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 103.62, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (101, '溜溜梅 果脯', 5, '溜溜梅', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

溜溜梅 果脯

\n

品牌:溜溜梅

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 34.03, 0, 0, 1, 0, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (102, '进口Lindt 松露巧克力 便携装', 3, 'Lindt', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

进口Lindt 松露巧克力 便携装

\n

品牌:Lindt

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 89.60, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (103, '三只松鼠 曲奇饼干 家庭装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 曲奇饼干 家庭装

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 49.09, 0, 0, 1, 1, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (104, '网红良品铺子 鱿鱼仔', 2, '良品铺子', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

网红良品铺子 鱿鱼仔

\n

品牌:良品铺子

\n

规格:200g, 400g, 100g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 51.35, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (105, '百草味 鸡爪 便携装', 2, '百草味', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

百草味 鸡爪 便携装

\n

品牌:百草味

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 52.88, 0, 0, 1, 0, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (106, '统一 雪碧', 6, '统一', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

统一 雪碧

\n

品牌:统一

\n

规格:330ml*6, 500ml*6, 1.5L*2

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 40.99, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (107, '手工三只松鼠 菠萝干 便携装', 5, '三只松鼠', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

手工三只松鼠 菠萝干 便携装

\n

品牌:三只松鼠

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 40.15, 0, 0, 1, 1, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (108, '洽洽 南瓜子 家庭装', 1, '洽洽', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

洽洽 南瓜子 家庭装

\n

品牌:洽洽

\n

规格:500g, 1000g, 200g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 34.56, 0, 0, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (109, '进口三只松鼠 葡萄干', 5, '三只松鼠', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

进口三只松鼠 葡萄干

\n

品牌:三只松鼠

\n

规格:200g, 500g, 1000g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 67.29, 0, 1, 1, 0, 0, '2026-06-03 23:33:12', '2026-06-05 14:13:50'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (110, '进口华味亨 青豆 家庭装', 1, '华味亨', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

进口华味亨 青豆 家庭装

\n

品牌:华味亨

\n

规格:500g, 1000g, 200g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 32.81, 0, 0, 1, 0, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (111, '德芙 花生糖', 3, '德芙', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

德芙 花生糖

\n

品牌:德芙

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 30.13, 0, 0, 1, 1, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (112, '手工华美 老婆饼 礼盒装', 4, '华美', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

手工华美 老婆饼 礼盒装

\n

品牌:华美

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 31.90, 0, 0, 1, 0, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (113, '手工溜溜梅 草莓干', 5, '溜溜梅', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

手工溜溜梅 草莓干

\n

品牌:溜溜梅

\n

规格:100g, 200g, 500g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 90.86, 0, 0, 1, 0, 0, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (114, '网红百草味 苹果干 家庭装', 5, '百草味', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

网红百草味 苹果干 家庭装

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 43.39, 0, 0, 1, 0, 0, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (115, '传统友臣 五香鸭脖 礼盒装', 2, '友臣', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

传统友臣 五香鸭脖 礼盒装

\n

品牌:友臣

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 44.73, 0, 0, 1, 0, 0, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (116, '手工Lindt 太妃糖', 3, 'Lindt', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

手工Lindt 太妃糖

\n

品牌:Lindt

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 39.95, 0, 0, 1, 0, 0, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (117, '传统溜溜梅 杨梅干 便携装', 5, '溜溜梅', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

传统溜溜梅 杨梅干 便携装

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 52.06, 0, 0, 1, 0, 0, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (118, '传统徐福记 太妃糖', 3, '徐福记', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

传统徐福记 太妃糖

\n

品牌:徐福记

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 38.93, 0, 0, 1, 0, 0, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (119, '传统无穷 鸭掌 家庭装', 2, '无穷', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

传统无穷 鸭掌 家庭装

\n

品牌:无穷

\n

规格:200g, 400g, 100g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 64.60, 0, 0, 1, 1, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (120, '良品铺子 鱿鱼仔 便携装', 2, '良品铺子', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 鱿鱼仔 便携装

\n

品牌:良品铺子

\n

规格:200g, 400g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 39.94, 0, 0, 1, 0, 0, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (121, '费列罗 橡皮糖', 3, '费列罗', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

费列罗 橡皮糖

\n

品牌:费列罗

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 28.71, 0, 0, 1, 0, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (122, '精选康师傅 牛奶', 6, '康师傅', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

精选康师傅 牛奶

\n

品牌:康师傅

\n

规格:250ml*12, 500ml*6, 1L*2

\n

产地:美国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 52.16, 0, 0, 1, 0, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (123, '三只松鼠 鸡爪', 2, '三只松鼠', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 鸡爪

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 46.65, 0, 0, 1, 1, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (124, '传统阿尔卑斯 酥糖', 3, '阿尔卑斯', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

传统阿尔卑斯 酥糖

\n

品牌:阿尔卑斯

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 34.53, 0, 0, 1, 1, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (125, '进口康师傅 可乐', 6, '康师傅', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

进口康师傅 可乐

\n

品牌:康师傅

\n

规格:330ml*6, 500ml*6, 1.5L*2

\n

产地:越南

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 34.80, 0, 0, 1, 1, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (126, '友臣 肉松', 2, '友臣', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

友臣 肉松

\n

品牌:友臣

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 55.69, 0, 0, 1, 0, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (127, '可口可乐 苏打水', 6, '可口可乐', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

可口可乐 苏打水

\n

品牌:可口可乐

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 34.31, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (128, '精选盼盼 老婆饼', 4, '盼盼', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

精选盼盼 老婆饼

\n

品牌:盼盼

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 36.62, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (129, '传统华味亨 芒果干 礼盒装', 5, '华味亨', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

传统华味亨 芒果干 礼盒装

\n

品牌:华味亨

\n

规格:100g, 200g, 500g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 65.86, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (130, '费列罗 草莓味软糖', 3, '费列罗', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

费列罗 草莓味软糖

\n

品牌:费列罗

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 29.62, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (131, '手工三只松鼠 面包', 4, '三只松鼠', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

手工三只松鼠 面包

\n

品牌:三只松鼠

\n

规格:500g, 1000g, 250g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 36.37, 0, 0, 1, 0, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (132, '康师傅 葡萄汁 礼盒装', 6, '康师傅', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

康师傅 葡萄汁 礼盒装

\n

品牌:康师傅

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 53.41, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (133, '百事可乐 葡萄汁 家庭装', 6, '百事可乐', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

百事可乐 葡萄汁 家庭装

\n

品牌:百事可乐

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:越南

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 50.66, 0, 0, 1, 0, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (134, '百草味 鱿鱼丝', 2, '百草味', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

百草味 鱿鱼丝

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 57.02, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (135, '网红阿尔卑斯 棉花糖', 3, '阿尔卑斯', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红阿尔卑斯 棉花糖

\n

品牌:阿尔卑斯

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 31.49, 0, 0, 1, 1, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (136, '香飘飘 葡萄汁 便携装', 6, '香飘飘', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

香飘飘 葡萄汁 便携装

\n

品牌:香飘飘

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 62.20, 0, 0, 1, 0, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (137, '手工香飘飘 椰子水 礼盒装', 6, '香飘飘', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

手工香飘飘 椰子水 礼盒装

\n

品牌:香飘飘

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 51.58, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (138, '进口百草味 香蕉片 便携装', 5, '百草味', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

进口百草味 香蕉片 便携装

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 31.73, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (139, '精选百事可乐 苏打水', 6, '百事可乐', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

精选百事可乐 苏打水

\n

品牌:百事可乐

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:日本

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 32.55, 0, 0, 1, 0, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (140, '费列罗 草莓味软糖', 3, '费列罗', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

费列罗 草莓味软糖

\n

品牌:费列罗

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 37.71, 0, 0, 1, 1, 0, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (141, '传统星巴克 酸梅汤', 6, '星巴克', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

传统星巴克 酸梅汤

\n

品牌:星巴克

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 30.26, 0, 0, 1, 0, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (142, '老四川 鱿鱼丝', 2, '老四川', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

老四川 鱿鱼丝

\n

品牌:老四川

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 51.40, 0, 0, 1, 0, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (143, '精选劲仔 烤鱼片 礼盒装', 2, '劲仔', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

精选劲仔 烤鱼片 礼盒装

\n

品牌:劲仔

\n

规格:200g, 400g, 100g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 61.45, 0, 0, 1, 1, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (144, '果园老农 草莓干 礼盒装', 5, '果园老农', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

果园老农 草莓干 礼盒装

\n

品牌:果园老农

\n

规格:100g, 200g, 500g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 77.00, 0, 0, 1, 0, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (145, '嘉士利 凤梨酥 礼盒装', 4, '嘉士利', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

嘉士利 凤梨酥 礼盒装

\n

品牌:嘉士利

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 58.04, 0, 0, 1, 0, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (146, '手工来伊份 椰枣', 5, '来伊份', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

手工来伊份 椰枣

\n

品牌:来伊份

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 54.13, 0, 0, 1, 0, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (147, '农夫山泉 酸奶 家庭装', 6, '农夫山泉', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

农夫山泉 酸奶 家庭装

\n

品牌:农夫山泉

\n

规格:200g*12, 100g*16, 500g*3

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 46.35, 0, 0, 1, 0, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (148, '网红良品铺子 葡萄干 便携装', 5, '良品铺子', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

网红良品铺子 葡萄干 便携装

\n

品牌:良品铺子

\n

规格:200g, 500g, 1000g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 77.36, 0, 0, 1, 0, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (149, '网红绝味 麻辣牛肉干 便携装', 2, '绝味', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

网红绝味 麻辣牛肉干 便携装

\n

品牌:绝味

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 112.38, 0, 0, 1, 0, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (150, '传统好吃点 蛋黄派', 4, '好吃点', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

传统好吃点 蛋黄派

\n

品牌:好吃点

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 34.72, 0, 0, 1, 1, 0, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (151, '奥利奥 瑞士卷', 4, '奥利奥', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

奥利奥 瑞士卷

\n

品牌:奥利奥

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 38.79, 0, 0, 1, 0, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (152, '传统良品铺子 肉松 礼盒装', 2, '良品铺子', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

传统良品铺子 肉松 礼盒装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 72.06, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (153, '网红三只松鼠 原味夏威夷果 家庭装', 1, '三只松鼠', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

网红三只松鼠 原味夏威夷果 家庭装

\n

品牌:三只松鼠

\n

规格:500g, 250g, 1000g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 126.96, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (154, '三只松鼠 每日坚果 礼盒装', 1, '三只松鼠', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 每日坚果 礼盒装

\n

品牌:三只松鼠

\n

规格:30包, 15包, 7包

\n

产地:美国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 141.53, 0, 0, 1, 1, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (155, '精选绝味 鱼豆腐 礼盒装', 2, '绝味', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

精选绝味 鱼豆腐 礼盒装

\n

品牌:绝味

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 27.55, 0, 0, 1, 1, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (156, '三得利 苹果汁', 6, '三得利', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

三得利 苹果汁

\n

品牌:三得利

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:日本

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 45.29, 0, 0, 1, 1, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (157, '来伊份 兰花豆 便携装', 1, '来伊份', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

来伊份 兰花豆 便携装

\n

品牌:来伊份

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 21.65, 0, 0, 1, 1, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (158, '精选康师傅 蛋黄派 便携装', 4, '康师傅', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

精选康师傅 蛋黄派 便携装

\n

品牌:康师傅

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 33.68, 0, 0, 1, 1, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (159, '奥利奥 老婆饼 家庭装', 4, '奥利奥', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

奥利奥 老婆饼 家庭装

\n

品牌:奥利奥

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 31.46, 0, 0, 1, 1, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (160, '传统绝味 烤鱼片', 2, '绝味', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

传统绝味 烤鱼片

\n

品牌:绝味

\n

规格:200g, 400g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 56.99, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (161, '网红西域美农 桃干 便携装', 5, '西域美农', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

网红西域美农 桃干 便携装

\n

品牌:西域美农

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 51.37, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (162, '华美 沙琪玛', 4, '华美', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

华美 沙琪玛

\n

品牌:华美

\n

规格:500g, 1000g, 250g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 35.12, 0, 0, 1, 0, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (163, '百草味 椰枣 便携装', 5, '百草味', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

百草味 椰枣 便携装

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 59.88, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (164, '传统好时 酥糖 便携装', 3, '好时', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

传统好时 酥糖 便携装

\n

品牌:好时

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 32.88, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (165, '网红洽洽 碧根果 家庭装', 1, '洽洽', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

网红洽洽 碧根果 家庭装

\n

品牌:洽洽

\n

规格:250g, 500g, 1000g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 140.89, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (166, '传统百草味 蜂蜜核桃仁 家庭装', 1, '百草味', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

传统百草味 蜂蜜核桃仁 家庭装

\n

品牌:百草味

\n

规格:250g, 500g, 100g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 55.77, 0, 0, 1, 0, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (167, '良品铺子 每日坚果 家庭装', 1, '良品铺子', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 每日坚果 家庭装

\n

品牌:良品铺子

\n

规格:30包, 15包, 7包

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 148.20, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (168, '明治 巧克力豆 礼盒装', 3, '明治', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

明治 巧克力豆 礼盒装

\n

品牌:明治

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 58.81, 0, 0, 1, 1, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (169, '手工无穷 腊肉', 2, '无穷', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

手工无穷 腊肉

\n

品牌:无穷

\n

规格:500g, 1000g, 250g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 125.13, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (170, '传统三只松鼠 南瓜子 便携装', 1, '三只松鼠', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

传统三只松鼠 南瓜子 便携装

\n

品牌:三只松鼠

\n

规格:500g, 1000g, 200g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 29.74, 0, 0, 1, 0, 0, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (171, '华味亨 草莓干', 5, '华味亨', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

华味亨 草莓干

\n

品牌:华味亨

\n

规格:100g, 200g, 500g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 93.15, 0, 0, 1, 0, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (172, '徐福记 芝麻糖 礼盒装', 3, '徐福记', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

徐福记 芝麻糖 礼盒装

\n

品牌:徐福记

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 30.12, 0, 0, 1, 0, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (173, '网红百事可乐 功能饮料 便携装', 6, '百事可乐', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

网红百事可乐 功能饮料 便携装

\n

品牌:百事可乐

\n

规格:250ml*6, 500ml*6, 1L

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 53.96, 0, 0, 1, 0, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (174, '手工康师傅 云片糕', 4, '康师傅', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

手工康师傅 云片糕

\n

品牌:康师傅

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 27.70, 0, 0, 1, 1, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (175, '可口可乐 苹果汁', 6, '可口可乐', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

可口可乐 苹果汁

\n

品牌:可口可乐

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:日本

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 57.60, 0, 0, 1, 0, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (176, '网红楼兰蜜语 南瓜子 家庭装', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

网红楼兰蜜语 南瓜子 家庭装

\n

品牌:楼兰蜜语

\n

规格:500g, 1000g, 200g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 30.84, 0, 0, 1, 0, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (177, '网红良品铺子 墨鱼仔 便携装', 2, '良品铺子', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

网红良品铺子 墨鱼仔 便携装

\n

品牌:良品铺子

\n

规格:200g, 400g, 100g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 55.91, 0, 0, 1, 1, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (178, '雀巢 蜂蜜水', 6, '雀巢', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

雀巢 蜂蜜水

\n

品牌:雀巢

\n

规格:500ml*6, 1L, 350ml*6

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 37.57, 0, 0, 1, 0, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (179, '网红好吃点 煎饼', 4, '好吃点', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红好吃点 煎饼

\n

品牌:好吃点

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 23.06, 0, 0, 1, 0, 0, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (180, '进口良品铺子 香辣小鱼干 礼盒装', 2, '良品铺子', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

进口良品铺子 香辣小鱼干 礼盒装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 42.02, 0, 0, 1, 1, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (181, '手工华味亨 猕猴桃干 礼盒装', 5, '华味亨', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

手工华味亨 猕猴桃干 礼盒装

\n

品牌:华味亨

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 45.98, 0, 0, 1, 1, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (182, '网红溜溜梅 苹果干', 5, '溜溜梅', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

网红溜溜梅 苹果干

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 38.28, 0, 0, 1, 1, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (183, '雀巢 功能饮料', 6, '雀巢', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

雀巢 功能饮料

\n

品牌:雀巢

\n

规格:250ml*6, 500ml*6, 1L

\n

产地:中国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 57.72, 0, 0, 1, 1, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (184, '网红达利园 老婆饼', 4, '达利园', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

网红达利园 老婆饼

\n

品牌:达利园

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 34.35, 0, 0, 1, 0, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (185, '进口沃隆 青豆', 1, '沃隆', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

进口沃隆 青豆

\n

品牌:沃隆

\n

规格:500g, 1000g, 200g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 35.25, 0, 0, 1, 0, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (186, '三只松鼠 陈皮', 5, '三只松鼠', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 陈皮

\n

品牌:三只松鼠

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 43.89, 0, 0, 1, 0, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (187, '精选可口可乐 蜂蜜水 便携装', 6, '可口可乐', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

精选可口可乐 蜂蜜水 便携装

\n

品牌:可口可乐

\n

规格:500ml*6, 1L, 350ml*6

\n

产地:越南

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 34.82, 0, 0, 1, 0, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (188, '松鼠集团 南瓜子', 1, '松鼠集团', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

松鼠集团 南瓜子

\n

品牌:松鼠集团

\n

规格:500g, 1000g, 200g

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 31.27, 0, 0, 1, 0, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (189, '雀巢 草莓味软糖', 3, '雀巢', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

雀巢 草莓味软糖

\n

品牌:雀巢

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 33.69, 0, 0, 1, 0, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (190, '好想你 山楂条', 5, '好想你', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

好想你 山楂条

\n

品牌:好想你

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 19.88, 0, 0, 1, 1, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (191, '网红香飘飘 凉茶', 6, '香飘飘', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

网红香飘飘 凉茶

\n

品牌:香飘飘

\n

规格:500ml*6, 1L, 310ml*6

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 29.59, 0, 0, 1, 1, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (192, '传统来伊份 蒜香花生', 1, '来伊份', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

传统来伊份 蒜香花生

\n

品牌:来伊份

\n

规格:500g, 1000g, 200g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 18.74, 0, 0, 1, 1, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (193, '手工汇源 酸梅汤', 6, '汇源', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

手工汇源 酸梅汤

\n

品牌:汇源

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:美国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 33.34, 0, 0, 1, 1, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (194, '百草味 琥珀核桃', 1, '百草味', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

百草味 琥珀核桃

\n

品牌:百草味

\n

规格:250g, 500g, 150g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 50.87, 0, 0, 1, 1, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (195, '网红三只松鼠 卤牛肉', 2, '三只松鼠', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

网红三只松鼠 卤牛肉

\n

品牌:三只松鼠

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 135.78, 0, 0, 1, 1, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (196, '精选三得利 橙汁', 6, '三得利', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

精选三得利 橙汁

\n

品牌:三得利

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 62.83, 0, 0, 1, 0, 0, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (197, '网红华味亨 原味夏威夷果', 1, '华味亨', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红华味亨 原味夏威夷果

\n

品牌:华味亨

\n

规格:500g, 250g, 1000g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 99.50, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (198, '精选良品铺子 卤牛肉 便携装', 2, '良品铺子', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 卤牛肉 便携装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 151.89, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (199, '进口三只松鼠 沙琪玛 礼盒装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

进口三只松鼠 沙琪玛 礼盒装

\n

品牌:三只松鼠

\n

规格:500g, 1000g, 250g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 30.94, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (200, '网红统一 葡萄汁', 6, '统一', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

网红统一 葡萄汁

\n

品牌:统一

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 51.87, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (201, '统一 奶茶', 6, '统一', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

统一 奶茶

\n

品牌:统一

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 29.81, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (202, '手工香飘飘 酸梅汤', 6, '香飘飘', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

手工香飘飘 酸梅汤

\n

品牌:香飘飘

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:越南

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 28.72, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (203, '进口西域美农 话梅', 5, '西域美农', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

进口西域美农 话梅

\n

品牌:西域美农

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 35.67, 0, 0, 1, 1, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (204, '精选华味亨 话梅 便携装', 5, '华味亨', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

精选华味亨 话梅 便携装

\n

品牌:华味亨

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 38.35, 0, 0, 1, 0, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (205, '无穷 手撕牛肉 礼盒装', 2, '无穷', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

无穷 手撕牛肉 礼盒装

\n

品牌:无穷

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 125.21, 0, 0, 1, 0, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (206, '网红友臣 腊肠 便携装', 2, '友臣', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

网红友臣 腊肠 便携装

\n

品牌:友臣

\n

规格:500g, 1000g, 250g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 128.78, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (207, '嘉士利 苏打饼干 家庭装', 4, '嘉士利', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

嘉士利 苏打饼干 家庭装

\n

品牌:嘉士利

\n

规格:500g, 1000g, 250g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 32.67, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (208, '精选楼兰蜜语 杏仁 便携装', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

精选楼兰蜜语 杏仁 便携装

\n

品牌:楼兰蜜语

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 74.32, 0, 0, 1, 0, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (209, '进口雀巢 芝麻糖 礼盒装', 3, '雀巢', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

进口雀巢 芝麻糖 礼盒装

\n

品牌:雀巢

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 30.93, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (210, '百草味 菠萝干 便携装', 5, '百草味', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

百草味 菠萝干 便携装

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 45.60, 0, 0, 1, 0, 0, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (211, '溜溜梅 菠萝干 便携装', 5, '溜溜梅', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

溜溜梅 菠萝干 便携装

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 49.22, 0, 0, 1, 0, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (212, '德芙 花生糖 家庭装', 3, '德芙', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

德芙 花生糖 家庭装

\n

品牌:德芙

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 28.09, 0, 0, 1, 0, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (213, '进口来伊份 香辣鸡翅 礼盒装', 2, '来伊份', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

进口来伊份 香辣鸡翅 礼盒装

\n

品牌:来伊份

\n

规格:200g, 400g, 100g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 71.78, 0, 0, 1, 0, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (214, '进口金帝 花生糖 礼盒装', 3, '金帝', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

进口金帝 花生糖 礼盒装

\n

品牌:金帝

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 31.79, 0, 0, 1, 1, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (215, '网红良品铺子 腊肉 便携装', 2, '良品铺子', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

网红良品铺子 腊肉 便携装

\n

品牌:良品铺子

\n

规格:500g, 1000g, 250g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 141.00, 0, 0, 1, 0, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (216, '良品铺子 鸭掌 家庭装', 2, '良品铺子', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 鸭掌 家庭装

\n

品牌:良品铺子

\n

规格:200g, 400g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 59.25, 0, 0, 1, 1, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (217, '良品铺子 香酥蚕豆', 1, '良品铺子', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 香酥蚕豆

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 21.91, 0, 0, 1, 0, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (218, '精选百草味 墨鱼仔', 2, '百草味', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

精选百草味 墨鱼仔

\n

品牌:百草味

\n

规格:200g, 400g, 100g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 56.57, 0, 0, 1, 0, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (219, '精选三只松鼠 鱼豆腐 礼盒装', 2, '三只松鼠', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

精选三只松鼠 鱼豆腐 礼盒装

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 31.77, 0, 0, 1, 0, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (220, '果园老农 苹果干', 5, '果园老农', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

果园老农 苹果干

\n

品牌:果园老农

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 33.95, 0, 0, 1, 0, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (221, '进口百草味 杏仁 礼盒装', 1, '百草味', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

进口百草味 杏仁 礼盒装

\n

品牌:百草味

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 66.12, 0, 0, 1, 1, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (222, '进口三只松鼠 鸡爪', 2, '三只松鼠', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

进口三只松鼠 鸡爪

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 45.48, 0, 0, 1, 1, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (223, '精选可口可乐 绿茶 礼盒装', 6, '可口可乐', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

精选可口可乐 绿茶 礼盒装

\n

品牌:可口可乐

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:中国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 27.14, 0, 0, 1, 1, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (224, '网红沃隆 青豆 便携装', 1, '沃隆', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

网红沃隆 青豆 便携装

\n

品牌:沃隆

\n

规格:500g, 1000g, 200g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 28.08, 0, 0, 1, 0, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (225, '百事可乐 雪碧 便携装', 6, '百事可乐', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

百事可乐 雪碧 便携装

\n

品牌:百事可乐

\n

规格:330ml*6, 500ml*6, 1.5L*2

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 36.57, 0, 0, 1, 0, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (226, '进口百草味 山楂条 便携装', 5, '百草味', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

进口百草味 山楂条 便携装

\n

品牌:百草味

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 22.63, 0, 0, 1, 0, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (227, '良品铺子 瑞士卷 家庭装', 4, '良品铺子', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 瑞士卷 家庭装

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 40.38, 0, 0, 1, 1, 0, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (228, '传统友臣 卤蛋 家庭装', 2, '友臣', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

传统友臣 卤蛋 家庭装

\n

品牌:友臣

\n

规格:10枚, 20枚, 5枚

\n

产地:中国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 31.32, 0, 0, 1, 0, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (229, '手工星巴克 奶茶', 6, '星巴克', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

手工星巴克 奶茶

\n

品牌:星巴克

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 32.68, 0, 0, 1, 0, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (230, '网红好吃点 瑞士卷 礼盒装', 4, '好吃点', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

网红好吃点 瑞士卷 礼盒装

\n

品牌:好吃点

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 33.72, 0, 0, 1, 0, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (231, '手工友臣 鱿鱼丝 家庭装', 2, '友臣', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

手工友臣 鱿鱼丝 家庭装

\n

品牌:友臣

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 56.73, 0, 0, 1, 1, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (232, '雀巢 花生糖 家庭装', 3, '雀巢', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

雀巢 花生糖 家庭装

\n

品牌:雀巢

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 31.99, 0, 0, 1, 0, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (233, '西域美农 香蕉片 礼盒装', 5, '西域美农', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

西域美农 香蕉片 礼盒装

\n

品牌:西域美农

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 36.31, 0, 0, 1, 0, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (234, '精选良品铺子 原味夏威夷果 礼盒装', 1, '良品铺子', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 原味夏威夷果 礼盒装

\n

品牌:良品铺子

\n

规格:500g, 250g, 1000g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 101.78, 0, 0, 1, 0, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (235, '康师傅 苏打饼干', 4, '康师傅', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

康师傅 苏打饼干

\n

品牌:康师傅

\n

规格:500g, 1000g, 250g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 27.02, 0, 0, 1, 0, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (236, '精选良品铺子 怪味胡豆', 1, '良品铺子', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 怪味胡豆

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 22.95, 0, 0, 1, 0, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (237, '百草味 柠檬干', 5, '百草味', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

百草味 柠檬干

\n

品牌:百草味

\n

规格:100g, 200g, 50g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 25.59, 0, 0, 1, 0, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (238, '传统香飘飘 牛奶', 6, '香飘飘', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

传统香飘飘 牛奶

\n

品牌:香飘飘

\n

规格:250ml*12, 500ml*6, 1L*2

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 43.95, 0, 0, 1, 1, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (239, '来伊份 卤牛肉', 2, '来伊份', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

来伊份 卤牛肉

\n

品牌:来伊份

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 122.55, 0, 0, 1, 0, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (240, '进口康师傅 红茶 礼盒装', 6, '康师傅', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

进口康师傅 红茶 礼盒装

\n

品牌:康师傅

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:美国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 22.40, 0, 0, 1, 0, 0, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (241, '精选农夫山泉 功能饮料 便携装', 6, '农夫山泉', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

精选农夫山泉 功能饮料 便携装

\n

品牌:农夫山泉

\n

规格:250ml*6, 500ml*6, 1L

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 53.72, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (242, '传统三只松鼠 面包 礼盒装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

传统三只松鼠 面包 礼盒装

\n

品牌:三只松鼠

\n

规格:500g, 1000g, 250g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 41.71, 0, 0, 1, 1, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (243, '精选星巴克 可乐', 6, '星巴克', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

精选星巴克 可乐

\n

品牌:星巴克

\n

规格:330ml*6, 500ml*6, 1.5L*2

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 35.70, 0, 0, 1, 1, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (244, '周黑鸭 五香鸭脖 便携装', 2, '周黑鸭', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

周黑鸭 五香鸭脖 便携装

\n

品牌:周黑鸭

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 45.13, 0, 0, 1, 0, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (245, '松鼠集团 碧根果', 1, '松鼠集团', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

松鼠集团 碧根果

\n

品牌:松鼠集团

\n

规格:250g, 500g, 1000g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 119.51, 0, 0, 1, 1, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (246, '进口好利来 麻花 礼盒装', 4, '好利来', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

进口好利来 麻花 礼盒装

\n

品牌:好利来

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 24.02, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (247, '康师傅 椰子水 便携装', 6, '康师傅', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

康师傅 椰子水 便携装

\n

品牌:康师傅

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:中国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 42.15, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (248, '网红无穷 香辣小鱼干 便携装', 2, '无穷', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

网红无穷 香辣小鱼干 便携装

\n

品牌:无穷

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 41.13, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (249, '网红阿尔卑斯 巧克力豆 便携装', 3, '阿尔卑斯', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红阿尔卑斯 巧克力豆 便携装

\n

品牌:阿尔卑斯

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 52.19, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (250, '精选果园老农 草莓干 便携装', 5, '果园老农', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

精选果园老农 草莓干 便携装

\n

品牌:果园老农

\n

规格:100g, 200g, 500g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 83.08, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (251, '手工Lindt 黑巧克力85%', 3, 'Lindt', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

手工Lindt 黑巧克力85%

\n

品牌:Lindt

\n

规格:100g, 200g, 500g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 153.43, 0, 0, 1, 1, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (252, '楼兰蜜语 山楂片', 5, '楼兰蜜语', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

楼兰蜜语 山楂片

\n

品牌:楼兰蜜语

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 19.85, 0, 0, 1, 0, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (253, '手工Lindt 棉花糖 便携装', 3, 'Lindt', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

手工Lindt 棉花糖 便携装

\n

品牌:Lindt

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 29.29, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (254, '网红溜溜梅 杨梅干 便携装', 5, '溜溜梅', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红溜溜梅 杨梅干 便携装

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 39.70, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (255, '玛氏 松露巧克力 礼盒装', 3, '玛氏', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

玛氏 松露巧克力 礼盒装

\n

品牌:玛氏

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 108.47, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (256, '手工周黑鸭 鱿鱼丝 礼盒装', 2, '周黑鸭', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

手工周黑鸭 鱿鱼丝 礼盒装

\n

品牌:周黑鸭

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 65.86, 0, 0, 1, 0, 0, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (257, '传统玛氏 棒棒糖 礼盒装', 3, '玛氏', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

传统玛氏 棒棒糖 礼盒装

\n

品牌:玛氏

\n

规格:20支, 50支, 10支

\n

产地:中国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 37.11, 0, 0, 1, 0, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (258, '良品铺子 每日坚果 礼盒装', 1, '良品铺子', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 每日坚果 礼盒装

\n

品牌:良品铺子

\n

规格:30包, 15包, 7包

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 113.63, 0, 0, 1, 0, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (259, '西域美农 陈皮', 5, '西域美农', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

西域美农 陈皮

\n

品牌:西域美农

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 37.26, 0, 0, 1, 0, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (260, '楼兰蜜语 杏仁 礼盒装', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

楼兰蜜语 杏仁 礼盒装

\n

品牌:楼兰蜜语

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 56.61, 0, 0, 1, 0, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (261, '良品铺子 手撕牛肉', 2, '良品铺子', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 手撕牛肉

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 117.22, 0, 0, 1, 0, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (262, '精选好时 草莓味软糖 礼盒装', 3, '好时', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

精选好时 草莓味软糖 礼盒装

\n

品牌:好时

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 38.22, 0, 0, 1, 0, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (263, '传统友臣 酱板鸭', 2, '友臣', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

传统友臣 酱板鸭

\n

品牌:友臣

\n

规格:半只, 整只, 1/4只

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 100.70, 0, 0, 1, 0, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (264, '西域美农 无花果干 礼盒装', 5, '西域美农', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

西域美农 无花果干 礼盒装

\n

品牌:西域美农

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 55.65, 0, 0, 1, 0, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (265, '手工三只松鼠 蛋黄酥 礼盒装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

手工三只松鼠 蛋黄酥 礼盒装

\n

品牌:三只松鼠

\n

规格:6枚, 12枚, 4枚

\n

产地:越南

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 66.93, 0, 0, 1, 0, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (266, '传统华味亨 芒果干 礼盒装', 5, '华味亨', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

传统华味亨 芒果干 礼盒装

\n

品牌:华味亨

\n

规格:100g, 200g, 500g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 60.72, 0, 0, 1, 1, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (267, '星巴克 酸奶', 6, '星巴克', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

星巴克 酸奶

\n

品牌:星巴克

\n

规格:200g*12, 100g*16, 500g*3

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 47.16, 0, 0, 1, 0, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (268, '徐福记 水果硬糖', 3, '徐福记', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

徐福记 水果硬糖

\n

品牌:徐福记

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 20.67, 0, 0, 1, 0, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (269, '传统周黑鸭 酱板鸭', 2, '周黑鸭', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

传统周黑鸭 酱板鸭

\n

品牌:周黑鸭

\n

规格:半只, 整只, 1/4只

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 99.94, 0, 0, 1, 0, 0, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (270, '楼兰蜜语 柠檬干', 5, '楼兰蜜语', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

楼兰蜜语 柠檬干

\n

品牌:楼兰蜜语

\n

规格:100g, 200g, 50g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 34.20, 0, 0, 1, 0, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (271, '进口徐福记 草莓味软糖 便携装', 3, '徐福记', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

进口徐福记 草莓味软糖 便携装

\n

品牌:徐福记

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 36.58, 0, 0, 1, 0, 0, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (272, '沃隆 琥珀核桃', 1, '沃隆', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

沃隆 琥珀核桃

\n

品牌:沃隆

\n

规格:250g, 500g, 150g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 40.39, 0, 0, 1, 0, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (273, '精选汇源 奶茶 礼盒装', 6, '汇源', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

精选汇源 奶茶 礼盒装

\n

品牌:汇源

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 37.40, 0, 0, 1, 0, 0, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (274, '周黑鸭 烤鱼片 家庭装', 2, '周黑鸭', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

周黑鸭 烤鱼片 家庭装

\n

品牌:周黑鸭

\n

规格:200g, 400g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 60.50, 0, 0, 1, 1, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (275, '手工康师傅 凉茶', 6, '康师傅', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

手工康师傅 凉茶

\n

品牌:康师傅

\n

规格:500ml*6, 1L, 310ml*6

\n

产地:中国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 35.91, 0, 0, 1, 0, 0, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (276, '传统三只松鼠 蛋糕', 4, '三只松鼠', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

传统三只松鼠 蛋糕

\n

品牌:三只松鼠

\n

规格:6个装, 12个装, 3个装

\n

产地:美国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 60.81, 0, 0, 1, 0, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (277, '进口周黑鸭 腊肉', 2, '周黑鸭', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

进口周黑鸭 腊肉

\n

品牌:周黑鸭

\n

规格:500g, 1000g, 250g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 159.19, 0, 0, 1, 0, 0, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (278, '精选三只松鼠 奶油味腰果', 1, '三只松鼠', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

精选三只松鼠 奶油味腰果

\n

品牌:三只松鼠

\n

规格:200g, 500g, 1000g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 110.99, 0, 0, 1, 0, 0, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (279, '进口德芙 巧克力豆 便携装', 3, '德芙', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

进口德芙 巧克力豆 便携装

\n

品牌:德芙

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 49.72, 0, 0, 1, 0, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (280, '楼兰蜜语 原味瓜子', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

楼兰蜜语 原味瓜子

\n

品牌:楼兰蜜语

\n

规格:500g, 1000g, 200g

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 24.35, 0, 0, 1, 0, 0, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (281, '德芙 花生糖 便携装', 3, '德芙', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

德芙 花生糖 便携装

\n

品牌:德芙

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 34.20, 0, 0, 1, 0, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (282, '来伊份 鸭掌', 2, '来伊份', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

来伊份 鸭掌

\n

品牌:来伊份

\n

规格:200g, 400g, 100g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 67.11, 0, 0, 1, 0, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (283, '进口周黑鸭 腊肠', 2, '周黑鸭', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

进口周黑鸭 腊肠

\n

品牌:周黑鸭

\n

规格:500g, 1000g, 250g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 127.58, 0, 0, 1, 0, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (284, '传统雀巢 豆浆', 6, '雀巢', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

传统雀巢 豆浆

\n

品牌:雀巢

\n

规格:250ml*12, 500ml*6, 1L

\n

产地:日本

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 35.04, 0, 0, 1, 0, 0, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (285, '传统华味亨 蜂蜜核桃仁', 1, '华味亨', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

传统华味亨 蜂蜜核桃仁

\n

品牌:华味亨

\n

规格:250g, 500g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 59.82, 0, 0, 1, 0, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (286, '网红溜溜梅 菠萝干', 5, '溜溜梅', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

网红溜溜梅 菠萝干

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 40.97, 0, 0, 1, 0, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (287, '进口可口可乐 咖啡', 6, '可口可乐', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

进口可口可乐 咖啡

\n

品牌:可口可乐

\n

规格:250ml*6, 500ml*6, 1L

\n

产地:日本

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 53.34, 0, 0, 1, 0, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (288, '三只松鼠 五香鸭脖', 2, '三只松鼠', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 五香鸭脖

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 47.12, 0, 0, 1, 0, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (289, '手工绝味 酱板鸭 便携装', 2, '绝味', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

手工绝味 酱板鸭 便携装

\n

品牌:绝味

\n

规格:半只, 整只, 1/4只

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 83.64, 0, 0, 1, 0, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (290, '手工洽洽 混合坚果', 1, '洽洽', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

手工洽洽 混合坚果

\n

品牌:洽洽

\n

规格:500g, 750g, 300g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 100.79, 0, 0, 1, 0, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (291, '传统来伊份 青豆', 1, '来伊份', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

传统来伊份 青豆

\n

品牌:来伊份

\n

规格:500g, 1000g, 200g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 30.07, 0, 0, 1, 1, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (292, '网红良品铺子 杨梅干', 5, '良品铺子', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红良品铺子 杨梅干

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 48.88, 0, 0, 1, 0, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (293, '进口统一 苏打水 便携装', 6, '统一', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

进口统一 苏打水 便携装

\n

品牌:统一

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 27.13, 0, 0, 1, 1, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (294, '进口奥利奥 面包 家庭装', 4, '奥利奥', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

进口奥利奥 面包 家庭装

\n

品牌:奥利奥

\n

规格:500g, 1000g, 250g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 41.80, 0, 0, 1, 0, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (295, '网红金帝 水果硬糖', 3, '金帝', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

网红金帝 水果硬糖

\n

品牌:金帝

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 20.70, 0, 0, 1, 0, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (296, '进口百草味 香蕉片 礼盒装', 5, '百草味', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

进口百草味 香蕉片 礼盒装

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 29.96, 0, 0, 1, 0, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (297, '精选良品铺子 菠萝干 便携装', 5, '良品铺子', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 菠萝干 便携装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 43.98, 0, 0, 1, 1, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (298, '友臣 蜜汁猪肉脯', 2, '友臣', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

友臣 蜜汁猪肉脯

\n

品牌:友臣

\n

规格:250g, 500g, 100g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 69.07, 0, 0, 1, 1, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (299, '良品铺子 老婆饼 礼盒装', 4, '良品铺子', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 老婆饼 礼盒装

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 28.30, 0, 0, 1, 0, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (300, '进口松鼠集团 南瓜子', 1, '松鼠集团', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

进口松鼠集团 南瓜子

\n

品牌:松鼠集团

\n

规格:500g, 1000g, 200g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 37.50, 0, 0, 1, 0, 0, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (301, '三只松鼠 蜂蜜核桃仁 礼盒装', 1, '三只松鼠', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 蜂蜜核桃仁 礼盒装

\n

品牌:三只松鼠

\n

规格:250g, 500g, 100g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 54.77, 0, 0, 1, 0, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (302, '进口劲仔 卤蛋 礼盒装', 2, '劲仔', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

进口劲仔 卤蛋 礼盒装

\n

品牌:劲仔

\n

规格:10枚, 20枚, 5枚

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 31.51, 0, 0, 1, 0, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (303, '精选三只松鼠 消化饼干', 4, '三只松鼠', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

精选三只松鼠 消化饼干

\n

品牌:三只松鼠

\n

规格:400g, 800g, 200g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 37.55, 0, 0, 1, 1, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (304, '百草味 五香鸭脖', 2, '百草味', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

百草味 五香鸭脖

\n

品牌:百草味

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 53.36, 0, 0, 1, 0, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (305, '进口松鼠集团 巴旦木', 1, '松鼠集团', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

进口松鼠集团 巴旦木

\n

品牌:松鼠集团

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 63.41, 0, 0, 1, 1, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (306, '良品铺子 手撕牛肉', 2, '良品铺子', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 手撕牛肉

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 113.28, 0, 0, 1, 0, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (307, '精选费列罗 巧克力豆 礼盒装', 3, '费列罗', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

精选费列罗 巧克力豆 礼盒装

\n

品牌:费列罗

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 52.08, 0, 0, 1, 0, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (308, '网红阿尔卑斯 太妃糖', 3, '阿尔卑斯', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

网红阿尔卑斯 太妃糖

\n

品牌:阿尔卑斯

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 37.65, 0, 0, 1, 0, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (309, '达利园 威化饼干', 4, '达利园', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

达利园 威化饼干

\n

品牌:达利园

\n

规格:200g, 400g, 100g

\n

产地:中国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 41.36, 0, 0, 1, 1, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (310, '手工西域美农 无花果干', 5, '西域美农', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

手工西域美农 无花果干

\n

品牌:西域美农

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 50.57, 0, 0, 1, 0, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (311, '网红Lindt 黑巧克力85% 礼盒装', 3, 'Lindt', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

网红Lindt 黑巧克力85% 礼盒装

\n

品牌:Lindt

\n

规格:100g, 200g, 500g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 137.77, 0, 0, 1, 0, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (312, '网红松鼠集团 碧根果', 1, '松鼠集团', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

网红松鼠集团 碧根果

\n

品牌:松鼠集团

\n

规格:250g, 500g, 1000g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 113.33, 0, 0, 1, 0, 0, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (313, '进口三只松鼠 蔓越莓干 便携装', 5, '三只松鼠', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

进口三只松鼠 蔓越莓干 便携装

\n

品牌:三只松鼠

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 43.70, 0, 0, 1, 0, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (314, '进口好时 夹心巧克力 家庭装', 3, '好时', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

进口好时 夹心巧克力 家庭装

\n

品牌:好时

\n

规格:150g, 300g, 500g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 101.78, 0, 0, 1, 1, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (315, '奥利奥 云片糕', 4, '奥利奥', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

奥利奥 云片糕

\n

品牌:奥利奥

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 28.11, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (316, '精选三只松鼠 奶油味腰果', 1, '三只松鼠', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

精选三只松鼠 奶油味腰果

\n

品牌:三只松鼠

\n

规格:200g, 500g, 1000g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 107.11, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (317, '进口达利园 麻花 家庭装', 4, '达利园', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

进口达利园 麻花 家庭装

\n

品牌:达利园

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 28.44, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (318, '网红雀巢 薄荷糖', 3, '雀巢', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

网红雀巢 薄荷糖

\n

品牌:雀巢

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 26.31, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (319, '传统周黑鸭 五香鸭脖', 2, '周黑鸭', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

传统周黑鸭 五香鸭脖

\n

品牌:周黑鸭

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 47.12, 0, 0, 1, 1, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (320, '传统农夫山泉 凉茶', 6, '农夫山泉', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

传统农夫山泉 凉茶

\n

品牌:农夫山泉

\n

规格:500ml*6, 1L, 310ml*6

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 35.11, 0, 0, 1, 0, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (321, '手工楼兰蜜语 原味夏威夷果 家庭装', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

手工楼兰蜜语 原味夏威夷果 家庭装

\n

品牌:楼兰蜜语

\n

规格:500g, 250g, 1000g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 111.12, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (322, '传统良品铺子 墨鱼仔 礼盒装', 2, '良品铺子', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

传统良品铺子 墨鱼仔 礼盒装

\n

品牌:良品铺子

\n

规格:200g, 400g, 100g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 45.46, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (323, '手工达利园 云片糕 家庭装', 4, '达利园', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

手工达利园 云片糕 家庭装

\n

品牌:达利园

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 32.39, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (324, '精选奥利奥 曲奇饼干', 4, '奥利奥', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

精选奥利奥 曲奇饼干

\n

品牌:奥利奥

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 53.58, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (325, '传统劲仔 鸭掌 礼盒装', 2, '劲仔', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

传统劲仔 鸭掌 礼盒装

\n

品牌:劲仔

\n

规格:200g, 400g, 100g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 64.94, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (326, '农夫山泉 奶茶 礼盒装', 6, '农夫山泉', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

农夫山泉 奶茶 礼盒装

\n

品牌:农夫山泉

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 31.24, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (327, '手工绝味 蜜汁猪肉脯 礼盒装', 2, '绝味', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

手工绝味 蜜汁猪肉脯 礼盒装

\n

品牌:绝味

\n

规格:250g, 500g, 100g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 73.87, 0, 0, 1, 0, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (328, '进口好吃点 老婆饼', 4, '好吃点', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

进口好吃点 老婆饼

\n

品牌:好吃点

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 30.77, 0, 0, 1, 1, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (329, '可口可乐 奶茶 便携装', 6, '可口可乐', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

可口可乐 奶茶 便携装

\n

品牌:可口可乐

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 30.09, 0, 0, 1, 0, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (330, '网红三只松鼠 果脯 家庭装', 5, '三只松鼠', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

网红三只松鼠 果脯 家庭装

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 29.14, 0, 0, 1, 1, 0, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (331, '德芙 跳跳糖', 3, '德芙', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

德芙 跳跳糖

\n

品牌:德芙

\n

规格:30包, 50包, 10包

\n

产地:美国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 21.84, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (332, '精选溜溜梅 杏干 家庭装', 5, '溜溜梅', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

精选溜溜梅 杏干 家庭装

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 56.25, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (333, '三只松鼠 面包 便携装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 面包 便携装

\n

品牌:三只松鼠

\n

规格:500g, 1000g, 250g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 34.18, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (334, '好时 芝麻糖', 3, '好时', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

好时 芝麻糖

\n

品牌:好时

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 30.75, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (335, '百事可乐 可乐', 6, '百事可乐', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

百事可乐 可乐

\n

品牌:百事可乐

\n

规格:330ml*6, 500ml*6, 1.5L*2

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 42.63, 0, 0, 1, 1, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (336, '洽洽 原味夏威夷果', 1, '洽洽', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

洽洽 原味夏威夷果

\n

品牌:洽洽

\n

规格:500g, 250g, 1000g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 119.20, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (337, '手工百草味 卤蛋 家庭装', 2, '百草味', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

手工百草味 卤蛋 家庭装

\n

品牌:百草味

\n

规格:10枚, 20枚, 5枚

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 34.13, 0, 0, 1, 1, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (338, '沃隆 香酥蚕豆 家庭装', 1, '沃隆', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

沃隆 香酥蚕豆 家庭装

\n

品牌:沃隆

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 19.60, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (339, '传统良品铺子 面包 礼盒装', 4, '良品铺子', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

传统良品铺子 面包 礼盒装

\n

品牌:良品铺子

\n

规格:500g, 1000g, 250g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 41.70, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (340, '传统好利来 蛋卷 家庭装', 4, '好利来', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

传统好利来 蛋卷 家庭装

\n

品牌:好利来

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 43.65, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (341, '达利园 绿豆糕 便携装', 4, '达利园', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

达利园 绿豆糕 便携装

\n

品牌:达利园

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 35.16, 0, 0, 1, 1, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (342, '传统溜溜梅 桃干', 5, '溜溜梅', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

传统溜溜梅 桃干

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 50.75, 0, 0, 1, 0, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (343, '网红奥利奥 凤梨酥', 4, '奥利奥', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

网红奥利奥 凤梨酥

\n

品牌:奥利奥

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 66.73, 0, 0, 1, 0, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (344, '雀巢 酒心巧克力 礼盒装', 3, '雀巢', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

雀巢 酒心巧克力 礼盒装

\n

品牌:雀巢

\n

规格:150g, 300g, 500g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 118.92, 0, 0, 1, 0, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (345, '良品铺子 桃干 礼盒装', 5, '良品铺子', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 桃干 礼盒装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 47.77, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (346, '金帝 棉花糖 礼盒装', 3, '金帝', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

金帝 棉花糖 礼盒装

\n

品牌:金帝

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 26.45, 0, 0, 1, 1, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (347, '传统徐福记 QQ糖', 3, '徐福记', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

传统徐福记 QQ糖

\n

品牌:徐福记

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 27.39, 0, 0, 1, 1, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (348, '手工坚果工坊 榛子', 1, '坚果工坊', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

手工坚果工坊 榛子

\n

品牌:坚果工坊

\n

规格:250g, 500g, 150g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 87.22, 0, 0, 1, 0, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (349, '进口华味亨 椰枣', 5, '华味亨', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

进口华味亨 椰枣

\n

品牌:华味亨

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 57.63, 0, 0, 1, 0, 0, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (350, '良品铺子 肉松', 2, '良品铺子', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 肉松

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 57.85, 0, 0, 1, 1, 0, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (351, '盼盼 蛋卷', 4, '盼盼', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

盼盼 蛋卷

\n

品牌:盼盼

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 40.48, 0, 0, 1, 0, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (352, '精选徐福记 草莓味软糖', 3, '徐福记', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

精选徐福记 草莓味软糖

\n

品牌:徐福记

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 30.37, 0, 0, 1, 0, 0, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (353, '手工康师傅 苹果汁 便携装', 6, '康师傅', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

手工康师傅 苹果汁 便携装

\n

品牌:康师傅

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 53.17, 0, 0, 1, 0, 0, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (354, '百事可乐 葡萄汁', 6, '百事可乐', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

百事可乐 葡萄汁

\n

品牌:百事可乐

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 57.95, 0, 0, 1, 0, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (355, '劲仔 鱿鱼丝 便携装', 2, '劲仔', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

劲仔 鱿鱼丝 便携装

\n

品牌:劲仔

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 59.00, 0, 0, 1, 1, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (356, '百事可乐 酸梅汤', 6, '百事可乐', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

百事可乐 酸梅汤

\n

品牌:百事可乐

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 32.14, 0, 0, 1, 0, 0, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (357, '精选楼兰蜜语 椰枣', 5, '楼兰蜜语', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

精选楼兰蜜语 椰枣

\n

品牌:楼兰蜜语

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 58.48, 0, 0, 1, 1, 0, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (358, '良品铺子 盐焗开心果 礼盒装', 1, '良品铺子', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 盐焗开心果 礼盒装

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 78.70, 0, 0, 1, 0, 0, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (359, '传统三只松鼠 蛋黄酥 礼盒装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

传统三只松鼠 蛋黄酥 礼盒装

\n

品牌:三只松鼠

\n

规格:6枚, 12枚, 4枚

\n

产地:中国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 58.33, 0, 0, 1, 0, 0, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (360, '精选徐福记 酥糖', 3, '徐福记', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

精选徐福记 酥糖

\n

品牌:徐福记

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 35.72, 0, 0, 1, 1, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (361, '德芙 黑巧克力85% 家庭装', 3, '德芙', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

德芙 黑巧克力85% 家庭装

\n

品牌:德芙

\n

规格:100g, 200g, 500g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 125.53, 0, 0, 1, 1, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (362, '精选劲仔 酱板鸭 礼盒装', 2, '劲仔', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

精选劲仔 酱板鸭 礼盒装

\n

品牌:劲仔

\n

规格:半只, 整只, 1/4只

\n

产地:中国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 78.38, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (363, '西域美农 柠檬干', 5, '西域美农', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

西域美农 柠檬干

\n

品牌:西域美农

\n

规格:100g, 200g, 50g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 25.40, 0, 0, 1, 0, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (364, '华美 云片糕 家庭装', 4, '华美', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

华美 云片糕 家庭装

\n

品牌:华美

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 26.48, 0, 0, 1, 0, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (365, '劲仔 鸭掌', 2, '劲仔', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

劲仔 鸭掌

\n

品牌:劲仔

\n

规格:200g, 400g, 100g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 54.66, 0, 0, 1, 0, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (366, '楼兰蜜语 杨梅干', 5, '楼兰蜜语', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

楼兰蜜语 杨梅干

\n

品牌:楼兰蜜语

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 47.29, 0, 0, 1, 1, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (367, '百草味 山楂片 礼盒装', 5, '百草味', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

百草味 山楂片 礼盒装

\n

品牌:百草味

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 20.05, 0, 0, 1, 1, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (368, '手工溜溜梅 香蕉片 便携装', 5, '溜溜梅', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

手工溜溜梅 香蕉片 便携装

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 33.45, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (369, '徐福记 花生糖', 3, '徐福记', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

徐福记 花生糖

\n

品牌:徐福记

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 31.07, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (370, '传统良品铺子 香辣小鱼干 家庭装', 2, '良品铺子', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

传统良品铺子 香辣小鱼干 家庭装

\n

品牌:良品铺子

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 43.76, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (371, '进口楼兰蜜语 怪味胡豆', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

进口楼兰蜜语 怪味胡豆

\n

品牌:楼兰蜜语

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 27.27, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (372, '网红嘉士利 蛋卷 便携装', 4, '嘉士利', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

网红嘉士利 蛋卷 便携装

\n

品牌:嘉士利

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 42.49, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (373, '嘉士利 蛋黄派', 4, '嘉士利', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

嘉士利 蛋黄派

\n

品牌:嘉士利

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 36.60, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (374, '手工好时 松露巧克力', 3, '好时', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

手工好时 松露巧克力

\n

品牌:好时

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 102.27, 0, 0, 1, 1, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (375, '精选溜溜梅 无花果干 家庭装', 5, '溜溜梅', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

精选溜溜梅 无花果干 家庭装

\n

品牌:溜溜梅

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 58.32, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (376, '网红无穷 腊肠', 2, '无穷', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

网红无穷 腊肠

\n

品牌:无穷

\n

规格:500g, 1000g, 250g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 115.97, 0, 0, 1, 0, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (377, '进口农夫山泉 红茶 家庭装', 6, '农夫山泉', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

进口农夫山泉 红茶 家庭装

\n

品牌:农夫山泉

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:越南

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 27.90, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (378, '达利园 吐司 家庭装', 4, '达利园', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

达利园 吐司 家庭装

\n

品牌:达利园

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 28.14, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (379, '网红三只松鼠 云片糕 便携装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

网红三只松鼠 云片糕 便携装

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 32.13, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (380, '网红星巴克 橙汁', 6, '星巴克', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

网红星巴克 橙汁

\n

品牌:星巴克

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 57.46, 0, 0, 1, 0, 0, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (381, '华味亨 苹果干 便携装', 5, '华味亨', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

华味亨 苹果干 便携装

\n

品牌:华味亨

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 35.83, 0, 0, 1, 0, 0, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (382, '网红农夫山泉 咖啡 礼盒装', 6, '农夫山泉', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\"]', '\n
\n

网红农夫山泉 咖啡 礼盒装

\n

品牌:农夫山泉

\n

规格:250ml*6, 500ml*6, 1L

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 68.75, 0, 0, 1, 0, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (383, '好吃点 瑞士卷', 4, '好吃点', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

好吃点 瑞士卷

\n

品牌:好吃点

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 40.49, 0, 0, 1, 0, 0, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (384, '三只松鼠 曲奇饼干 礼盒装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 曲奇饼干 礼盒装

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 40.88, 0, 0, 1, 0, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (385, '传统坚果工坊 碧根果 家庭装', 1, '坚果工坊', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

传统坚果工坊 碧根果 家庭装

\n

品牌:坚果工坊

\n

规格:250g, 500g, 1000g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 144.19, 0, 0, 1, 0, 0, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (386, '好吃点 煎饼 家庭装', 4, '好吃点', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

好吃点 煎饼 家庭装

\n

品牌:好吃点

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 27.44, 0, 0, 1, 0, 0, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (387, '网红沃隆 榛子 家庭装', 1, '沃隆', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

网红沃隆 榛子 家庭装

\n

品牌:沃隆

\n

规格:250g, 500g, 150g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 84.48, 0, 0, 1, 0, 0, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (388, '友臣 鸡爪 礼盒装', 2, '友臣', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

友臣 鸡爪 礼盒装

\n

品牌:友臣

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 41.49, 0, 0, 1, 0, 0, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (389, '精选良品铺子 香酥蚕豆', 1, '良品铺子', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 香酥蚕豆

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 24.66, 0, 0, 1, 0, 0, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (390, '精选绝味 鸭掌 礼盒装', 2, '绝味', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

精选绝味 鸭掌 礼盒装

\n

品牌:绝味

\n

规格:200g, 400g, 100g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 63.91, 0, 0, 1, 0, 0, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (391, '网红嘉士利 蛋卷', 4, '嘉士利', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

网红嘉士利 蛋卷

\n

品牌:嘉士利

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 36.31, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (392, '传统盼盼 蛋糕', 4, '盼盼', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

传统盼盼 蛋糕

\n

品牌:盼盼

\n

规格:6个装, 12个装, 3个装

\n

产地:越南

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 65.69, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (393, '友臣 五香鸭脖 便携装', 2, '友臣', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

友臣 五香鸭脖 便携装

\n

品牌:友臣

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 46.62, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (394, '三只松鼠 蜜汁猪肉脯 礼盒装', 2, '三只松鼠', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 蜜汁猪肉脯 礼盒装

\n

品牌:三只松鼠

\n

规格:250g, 500g, 100g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 57.75, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (395, '网红良品铺子 面包 家庭装', 4, '良品铺子', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

网红良品铺子 面包 家庭装

\n

品牌:良品铺子

\n

规格:500g, 1000g, 250g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 31.62, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (396, '好吃点 苏打饼干', 4, '好吃点', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

好吃点 苏打饼干

\n

品牌:好吃点

\n

规格:500g, 1000g, 250g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 28.38, 0, 0, 1, 0, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (397, '进口农夫山泉 绿茶 礼盒装', 6, '农夫山泉', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

进口农夫山泉 绿茶 礼盒装

\n

品牌:农夫山泉

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 22.97, 0, 0, 1, 0, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (398, '网红西域美农 菠萝干 礼盒装', 5, '西域美农', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

网红西域美农 菠萝干 礼盒装

\n

品牌:西域美农

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 41.87, 0, 0, 1, 1, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (399, '网红华味亨 蒜香花生', 1, '华味亨', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

网红华味亨 蒜香花生

\n

品牌:华味亨

\n

规格:500g, 1000g, 200g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 25.05, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (400, '洽洽 兰花豆', 1, '洽洽', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

洽洽 兰花豆

\n

品牌:洽洽

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 26.82, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (401, '传统三只松鼠 芒果干 礼盒装', 5, '三只松鼠', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

传统三只松鼠 芒果干 礼盒装

\n

品牌:三只松鼠

\n

规格:100g, 200g, 500g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 56.16, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (402, '网红松鼠集团 香酥蚕豆', 1, '松鼠集团', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

网红松鼠集团 香酥蚕豆

\n

品牌:松鼠集团

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 23.73, 0, 0, 1, 0, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (403, '进口百事可乐 酸奶', 6, '百事可乐', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

进口百事可乐 酸奶

\n

品牌:百事可乐

\n

规格:200g*12, 100g*16, 500g*3

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 45.45, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (404, '周黑鸭 鸭掌 便携装', 2, '周黑鸭', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

周黑鸭 鸭掌 便携装

\n

品牌:周黑鸭

\n

规格:200g, 400g, 100g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 57.02, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (405, '达利园 煎饼', 4, '达利园', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

达利园 煎饼

\n

品牌:达利园

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 23.19, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (406, '松鼠集团 巴旦木 礼盒装', 1, '松鼠集团', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

松鼠集团 巴旦木 礼盒装

\n

品牌:松鼠集团

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 55.30, 0, 0, 1, 0, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (407, '网红德芙 夹心巧克力 家庭装', 3, '德芙', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

网红德芙 夹心巧克力 家庭装

\n

品牌:德芙

\n

规格:150g, 300g, 500g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 88.05, 0, 0, 1, 1, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (408, '进口良品铺子 煎饼', 4, '良品铺子', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

进口良品铺子 煎饼

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 23.18, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (409, '网红楼兰蜜语 巴旦木 礼盒装', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

网红楼兰蜜语 巴旦木 礼盒装

\n

品牌:楼兰蜜语

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 55.77, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (410, '精选好吃点 麻花 礼盒装', 4, '好吃点', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

精选好吃点 麻花 礼盒装

\n

品牌:好吃点

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 22.06, 0, 0, 1, 0, 0, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (411, '手工良品铺子 香酥蚕豆 礼盒装', 1, '良品铺子', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

手工良品铺子 香酥蚕豆 礼盒装

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 21.92, 0, 0, 1, 1, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (412, '传统坚果工坊 蒜香花生', 1, '坚果工坊', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

传统坚果工坊 蒜香花生

\n

品牌:坚果工坊

\n

规格:500g, 1000g, 200g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 22.37, 0, 0, 1, 0, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (413, '传统洽洽 奶油味腰果 礼盒装', 1, '洽洽', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\"]', '\n
\n

传统洽洽 奶油味腰果 礼盒装

\n

品牌:洽洽

\n

规格:200g, 500g, 1000g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 102.14, 0, 0, 1, 0, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (414, '盼盼 蛋糕 便携装', 4, '盼盼', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

盼盼 蛋糕 便携装

\n

品牌:盼盼

\n

规格:6个装, 12个装, 3个装

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 61.46, 0, 0, 1, 1, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (415, '嘉士利 云片糕', 4, '嘉士利', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

嘉士利 云片糕

\n

品牌:嘉士利

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 31.33, 0, 0, 1, 1, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (416, '嘉士利 面包 礼盒装', 4, '嘉士利', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

嘉士利 面包 礼盒装

\n

品牌:嘉士利

\n

规格:500g, 1000g, 250g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 38.28, 0, 0, 1, 1, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (417, '手工百草味 鸡爪', 2, '百草味', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

手工百草味 鸡爪

\n

品牌:百草味

\n

规格:300g, 500g, 150g

\n

产地:中国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 48.80, 0, 0, 1, 0, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (418, '手工可口可乐 葡萄汁 家庭装', 6, '可口可乐', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

手工可口可乐 葡萄汁 家庭装

\n

品牌:可口可乐

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 54.62, 0, 0, 1, 1, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (419, '进口好利来 蛋黄酥 家庭装', 4, '好利来', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

进口好利来 蛋黄酥 家庭装

\n

品牌:好利来

\n

规格:6枚, 12枚, 4枚

\n

产地:日本

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 58.92, 0, 0, 1, 1, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (420, '阿尔卑斯 夹心巧克力', 3, '阿尔卑斯', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\"]', '\n
\n

阿尔卑斯 夹心巧克力

\n

品牌:阿尔卑斯

\n

规格:150g, 300g, 500g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 96.37, 0, 0, 1, 1, 0, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (421, '松鼠集团 杏仁', 1, '松鼠集团', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

松鼠集团 杏仁

\n

品牌:松鼠集团

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 74.51, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (422, '网红明治 黑巧克力85%', 3, '明治', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

网红明治 黑巧克力85%

\n

品牌:明治

\n

规格:100g, 200g, 500g

\n

产地:日本

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 161.11, 0, 0, 1, 1, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (423, '进口老四川 五香鸭脖', 2, '老四川', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

进口老四川 五香鸭脖

\n

品牌:老四川

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 45.82, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (424, '传统达利园 蛋黄酥', 4, '达利园', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

传统达利园 蛋黄酥

\n

品牌:达利园

\n

规格:6枚, 12枚, 4枚

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 52.77, 0, 0, 1, 0, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (425, '网红康师傅 面包 便携装', 4, '康师傅', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

网红康师傅 面包 便携装

\n

品牌:康师傅

\n

规格:500g, 1000g, 250g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 38.36, 0, 0, 1, 0, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (426, '进口老四川 鱿鱼丝 便携装', 2, '老四川', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

进口老四川 鱿鱼丝 便携装

\n

品牌:老四川

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 53.98, 0, 0, 1, 1, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (427, '三只松鼠 果脯', 5, '三只松鼠', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 果脯

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 33.57, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (428, '达利园 苏打饼干 家庭装', 4, '达利园', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

达利园 苏打饼干 家庭装

\n

品牌:达利园

\n

规格:500g, 1000g, 250g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 32.39, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (429, '进口百草味 陈皮', 5, '百草味', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

进口百草味 陈皮

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 42.19, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (430, '精选百草味 烤鱼片 家庭装', 2, '百草味', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

精选百草味 烤鱼片 家庭装

\n

品牌:百草味

\n

规格:200g, 400g, 100g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 62.68, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (431, '进口汇源 牛奶', 6, '汇源', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

进口汇源 牛奶

\n

品牌:汇源

\n

规格:250ml*12, 500ml*6, 1L*2

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 53.68, 0, 0, 1, 1, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (432, '手工好想你 陈皮', 5, '好想你', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

手工好想你 陈皮

\n

品牌:好想你

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 47.01, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (433, '网红华美 苏打饼干', 4, '华美', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

网红华美 苏打饼干

\n

品牌:华美

\n

规格:500g, 1000g, 250g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 33.94, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (434, '精选好时 牛奶巧克力', 3, '好时', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

精选好时 牛奶巧克力

\n

品牌:好时

\n

规格:100g, 200g, 500g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 114.69, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (435, '精选奥利奥 苏打饼干', 4, '奥利奥', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

精选奥利奥 苏打饼干

\n

品牌:奥利奥

\n

规格:500g, 1000g, 250g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 31.19, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (436, '楼兰蜜语 松子', 1, '楼兰蜜语', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

楼兰蜜语 松子

\n

品牌:楼兰蜜语

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 155.26, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (437, 'Lindt 酥糖 家庭装', 3, 'Lindt', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

Lindt 酥糖 家庭装

\n

品牌:Lindt

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 27.67, 0, 0, 1, 0, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (438, '手工百事可乐 酸梅汤 礼盒装', 6, '百事可乐', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

手工百事可乐 酸梅汤 礼盒装

\n

品牌:百事可乐

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:中国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 28.94, 0, 0, 1, 0, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (439, '达利园 消化饼干', 4, '达利园', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\"]', '\n
\n

达利园 消化饼干

\n

品牌:达利园

\n

规格:400g, 800g, 200g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 36.09, 0, 0, 1, 0, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (440, '康师傅 蛋糕 家庭装', 4, '康师傅', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

康师傅 蛋糕 家庭装

\n

品牌:康师傅

\n

规格:6个装, 12个装, 3个装

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 73.27, 0, 0, 1, 1, 0, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (441, '网红费列罗 酒心巧克力 礼盒装', 3, '费列罗', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

网红费列罗 酒心巧克力 礼盒装

\n

品牌:费列罗

\n

规格:150g, 300g, 500g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 91.82, 0, 0, 1, 1, 0, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (442, '进口三只松鼠 曲奇饼干 便携装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

进口三只松鼠 曲奇饼干 便携装

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 52.46, 0, 0, 1, 0, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (443, '传统松鼠集团 松子', 1, '松鼠集团', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

传统松鼠集团 松子

\n

品牌:松鼠集团

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 177.61, 0, 0, 1, 0, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (444, '三只松鼠 腊肠 便携装', 2, '三只松鼠', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 腊肠 便携装

\n

品牌:三只松鼠

\n

规格:500g, 1000g, 250g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 114.22, 0, 0, 1, 0, 0, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (445, '手工来伊份 盐焗开心果', 1, '来伊份', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

手工来伊份 盐焗开心果

\n

品牌:来伊份

\n

规格:300g, 500g, 150g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 88.25, 0, 0, 1, 1, 0, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (446, '进口沃隆 碧根果 便携装', 1, '沃隆', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

进口沃隆 碧根果 便携装

\n

品牌:沃隆

\n

规格:250g, 500g, 1000g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 129.87, 0, 0, 1, 0, 0, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (447, '沃隆 南瓜子', 1, '沃隆', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

沃隆 南瓜子

\n

品牌:沃隆

\n

规格:500g, 1000g, 200g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 38.23, 0, 0, 1, 0, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (448, '网红徐福记 棒棒糖', 3, '徐福记', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

网红徐福记 棒棒糖

\n

品牌:徐福记

\n

规格:20支, 50支, 10支

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 42.30, 0, 0, 1, 0, 0, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (449, '精选来伊份 卤牛肉 家庭装', 2, '来伊份', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

精选来伊份 卤牛肉 家庭装

\n

品牌:来伊份

\n

规格:200g, 500g, 100g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 144.48, 0, 0, 1, 0, 0, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (450, '网红玛氏 牛奶巧克力', 3, '玛氏', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

网红玛氏 牛奶巧克力

\n

品牌:玛氏

\n

规格:100g, 200g, 500g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 115.62, 0, 0, 1, 0, 0, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (451, '汇源 葡萄汁 礼盒装', 6, '汇源', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\"]', '\n
\n

汇源 葡萄汁 礼盒装

\n

品牌:汇源

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 64.82, 0, 0, 1, 1, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (452, '手工良品铺子 混合坚果 家庭装', 1, '良品铺子', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

手工良品铺子 混合坚果 家庭装

\n

品牌:良品铺子

\n

规格:500g, 750g, 300g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 134.52, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (453, '良品铺子 云片糕 礼盒装', 4, '良品铺子', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 云片糕 礼盒装

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 31.95, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (454, '网红徐福记 芝麻糖', 3, '徐福记', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

网红徐福记 芝麻糖

\n

品牌:徐福记

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 27.61, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (455, '百草味 猕猴桃干', 5, '百草味', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

百草味 猕猴桃干

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 39.85, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (456, '手工坚果工坊 盐焗开心果', 1, '坚果工坊', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

手工坚果工坊 盐焗开心果

\n

品牌:坚果工坊

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 90.98, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (457, '网红华美 老婆饼', 4, '华美', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

网红华美 老婆饼

\n

品牌:华美

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 31.64, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (458, '良品铺子 腊肉', 2, '良品铺子', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

良品铺子 腊肉

\n

品牌:良品铺子

\n

规格:500g, 1000g, 250g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 152.10, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (459, '百草味 麻辣牛肉干 家庭装', 2, '百草味', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

百草味 麻辣牛肉干 家庭装

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 89.67, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (460, '传统好想你 杏干', 5, '好想你', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

传统好想你 杏干

\n

品牌:好想你

\n

规格:200g, 500g, 100g

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 54.94, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (461, '进口百草味 椰枣 礼盒装', 5, '百草味', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\"]', '\n
\n

进口百草味 椰枣 礼盒装

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:中国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 56.08, 0, 0, 1, 0, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (462, '三只松鼠 芒果干 便携装', 5, '三只松鼠', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 芒果干 便携装

\n

品牌:三只松鼠

\n

规格:100g, 200g, 500g

\n

产地:马来西亚

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 54.55, 0, 0, 1, 1, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (463, '精选百草味 鸭掌 便携装', 2, '百草味', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

精选百草味 鸭掌 便携装

\n

品牌:百草味

\n

规格:200g, 400g, 100g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 67.90, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (464, '松鼠集团 杏仁', 1, '松鼠集团', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

松鼠集团 杏仁

\n

品牌:松鼠集团

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 70.13, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (465, '网红好想你 菠萝干 家庭装', 5, '好想你', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

网红好想你 菠萝干 家庭装

\n

品牌:好想你

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 37.24, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (466, '精选周黑鸭 腊肠', 2, '周黑鸭', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\"]', '\n
\n

精选周黑鸭 腊肠

\n

品牌:周黑鸭

\n

规格:500g, 1000g, 250g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 100.42, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (467, '精选华味亨 话梅', 5, '华味亨', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

精选华味亨 话梅

\n

品牌:华味亨

\n

规格:200g, 500g, 100g

\n

产地:日本

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 41.66, 0, 0, 1, 1, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (468, '手工良品铺子 消化饼干 家庭装', 4, '良品铺子', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

手工良品铺子 消化饼干 家庭装

\n

品牌:良品铺子

\n

规格:400g, 800g, 200g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 37.33, 0, 0, 1, 0, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (469, '网红金帝 巧克力豆', 3, '金帝', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

网红金帝 巧克力豆

\n

品牌:金帝

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 53.56, 0, 0, 1, 0, 0, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (470, '手工来伊份 香蕉片 礼盒装', 5, '来伊份', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\"]', '\n
\n

手工来伊份 香蕉片 礼盒装

\n

品牌:来伊份

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 32.00, 0, 0, 1, 0, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (471, '传统三得利 功能饮料 家庭装', 6, '三得利', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\"]', '\n
\n

传统三得利 功能饮料 家庭装

\n

品牌:三得利

\n

规格:250ml*6, 500ml*6, 1L

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 59.42, 0, 0, 1, 0, 0, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (472, '雀巢 花生糖 家庭装', 3, '雀巢', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

雀巢 花生糖 家庭装

\n

品牌:雀巢

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 26.01, 0, 0, 1, 1, 0, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (473, '进口坚果工坊 蜂蜜核桃仁 礼盒装', 1, '坚果工坊', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

进口坚果工坊 蜂蜜核桃仁 礼盒装

\n

品牌:坚果工坊

\n

规格:250g, 500g, 100g

\n

产地:越南

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 53.20, 0, 0, 1, 0, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (474, '传统玛氏 牛奶巧克力', 3, '玛氏', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

传统玛氏 牛奶巧克力

\n

品牌:玛氏

\n

规格:100g, 200g, 500g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 102.06, 0, 0, 1, 1, 0, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (475, '手工溜溜梅 山楂条 便携装', 5, '溜溜梅', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

手工溜溜梅 山楂条 便携装

\n

品牌:溜溜梅

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 25.08, 0, 0, 1, 0, 0, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (476, '手工良品铺子 山楂片 礼盒装', 5, '良品铺子', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\"]', '\n
\n

手工良品铺子 山楂片 礼盒装

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 20.61, 0, 0, 1, 1, 0, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (477, '德芙 巧克力豆 礼盒装', 3, '德芙', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

德芙 巧克力豆 礼盒装

\n

品牌:德芙

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 54.26, 0, 0, 1, 0, 0, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (478, '松鼠集团 杏仁', 1, '松鼠集团', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

松鼠集团 杏仁

\n

品牌:松鼠集团

\n

规格:300g, 500g, 150g

\n

产地:泰国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。聚会必备零食。

\n
\n ', 67.46, 0, 0, 1, 0, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (479, '徐福记 橡皮糖 便携装', 3, '徐福记', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop\"]', '\n
\n

徐福记 橡皮糖 便携装

\n

品牌:徐福记

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 27.35, 0, 0, 1, 0, 0, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (480, '三只松鼠 苹果干', 5, '三只松鼠', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

三只松鼠 苹果干

\n

品牌:三只松鼠

\n

规格:200g, 500g, 100g

\n

产地:韩国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 41.39, 0, 0, 1, 1, 0, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (481, '手工三只松鼠 鱿鱼仔 家庭装', 2, '三只松鼠', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

手工三只松鼠 鱿鱼仔 家庭装

\n

品牌:三只松鼠

\n

规格:200g, 400g, 100g

\n

产地:中国

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 45.76, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (482, '网红香飘飘 绿茶 便携装', 6, '香飘飘', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop\"]', '\n
\n

网红香飘飘 绿茶 便携装

\n

品牌:香飘飘

\n

规格:500ml*6, 1L, 300ml*6

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 26.52, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (483, '徐福记 跳跳糖 礼盒装', 3, '徐福记', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

徐福记 跳跳糖 礼盒装

\n

品牌:徐福记

\n

规格:30包, 50包, 10包

\n

产地:马来西亚

\n

保质期:18个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 22.68, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (484, '统一 凉茶', 6, '统一', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop\"]', '\n
\n

统一 凉茶

\n

品牌:统一

\n

规格:500ml*6, 1L, 310ml*6

\n

产地:美国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 29.22, 0, 0, 1, 0, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (485, '传统盼盼 蛋黄派', 4, '盼盼', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

传统盼盼 蛋黄派

\n

品牌:盼盼

\n

规格:300g, 500g, 150g

\n

产地:日本

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 32.63, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (486, '可口可乐 豆浆 家庭装', 6, '可口可乐', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop\"]', '\n
\n

可口可乐 豆浆 家庭装

\n

品牌:可口可乐

\n

规格:250ml*12, 500ml*6, 1L

\n

产地:韩国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 32.73, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (487, '阿尔卑斯 牛轧糖 便携装', 3, '阿尔卑斯', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\"]', '\n
\n

阿尔卑斯 牛轧糖 便携装

\n

品牌:阿尔卑斯

\n

规格:300g, 500g, 150g

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 44.81, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (488, '进口三只松鼠 蛋黄派 便携装', 4, '三只松鼠', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

进口三只松鼠 蛋黄派 便携装

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 33.67, 0, 0, 1, 1, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (489, '传统华味亨 柠檬干 便携装', 5, '华味亨', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\"]', '\n
\n

传统华味亨 柠檬干 便携装

\n

品牌:华味亨

\n

规格:100g, 200g, 50g

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 26.77, 0, 0, 1, 1, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (490, '网红西域美农 猕猴桃干 家庭装', 5, '西域美农', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop\"]', '\n
\n

网红西域美农 猕猴桃干 家庭装

\n

品牌:西域美农

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 45.95, 0, 0, 1, 1, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (491, '精选良品铺子 老婆饼 家庭装', 4, '良品铺子', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop\"]', '\n
\n

精选良品铺子 老婆饼 家庭装

\n

品牌:良品铺子

\n

规格:300g, 500g, 150g

\n

产地:马来西亚

\n

保质期:6个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 28.06, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (492, '三得利 橙汁', 6, '三得利', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop\"]', '\n
\n

三得利 橙汁

\n

品牌:三得利

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:韩国

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 61.82, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (493, '徐福记 牛奶巧克力', 3, '徐福记', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop\"]', '\n
\n

徐福记 牛奶巧克力

\n

品牌:徐福记

\n

规格:100g, 200g, 500g

\n

产地:越南

\n

保质期:12个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 112.69, 0, 0, 1, 1, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (494, '精选三只松鼠 瑞士卷', 4, '三只松鼠', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\"]', '\n
\n

精选三只松鼠 瑞士卷

\n

品牌:三只松鼠

\n

规格:300g, 500g, 150g

\n

产地:美国

\n

保质期:18个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 43.39, 0, 3, 1, 1, 0, '2026-06-03 23:33:38', '2026-08-02 16:41:49'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (495, '手工嘉士利 蛋糕', 4, '嘉士利', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\"]', '\n
\n

手工嘉士利 蛋糕

\n

品牌:嘉士利

\n

规格:6个装, 12个装, 3个装

\n

产地:中国

\n

保质期:18个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 74.94, 0, 1, 1, 0, 0, '2026-06-03 23:33:38', '2026-08-04 15:37:13'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (496, '手工百草味 鱿鱼丝', 2, '百草味', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\"]', '\n
\n

手工百草味 鱿鱼丝

\n

品牌:百草味

\n

规格:200g, 500g, 100g

\n

产地:美国

\n

保质期:6个月

\n

储存方式:阴凉干燥处

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。适合办公休闲。

\n
\n ', 65.46, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (497, '进口统一 椰子水 便携装', 6, '统一', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\"]', '\n
\n

进口统一 椰子水 便携装

\n

品牌:统一

\n

规格:500ml*6, 1L, 330ml*6

\n

产地:日本

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。追剧好伴侣。

\n
\n ', 44.50, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (498, '传统沃隆 奶油味腰果 礼盒装', 1, '沃隆', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\"]', '\n
\n

传统沃隆 奶油味腰果 礼盒装

\n

品牌:沃隆

\n

规格:200g, 500g, 1000g

\n

产地:马来西亚

\n

保质期:9个月

\n

储存方式:冷藏保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 112.25, 0, 4, 1, 1, 0, '2026-06-03 23:33:38', '2026-08-01 22:31:04'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (499, '手工华味亨 杏干', 5, '华味亨', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop\"]', '\n
\n

手工华味亨 杏干

\n

品牌:华味亨

\n

规格:200g, 500g, 100g

\n

产地:泰国

\n

保质期:9个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。送礼佳品。

\n
\n ', 49.14, 0, 0, 1, 0, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product` (`id`, `name`, `category_id`, `brand`, `main_image`, `sub_images`, `detail`, `origin_price`, `sales`, `view_count`, `status`, `is_hot`, `is_new`, `create_time`, `update_time`) VALUES (500, '百事可乐 苹果汁', 6, '百事可乐', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', '[\"https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop\", \"https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop\"]', '\n
\n

百事可乐 苹果汁

\n

品牌:百事可乐

\n

规格:1L, 500ml*6, 250ml*12

\n

产地:韩国

\n

保质期:12个月

\n

储存方式:常温保存

\n \n

商品描述:精选优质原料,传统工艺制作,口感酥脆,回味无穷。下午茶首选。

\n
\n ', 51.29, 0, 0, 1, 0, 0, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +COMMIT; + +-- ---------------------------- +-- Table structure for product_sku +-- ---------------------------- +DROP TABLE IF EXISTS `product_sku`; +CREATE TABLE `product_sku` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID(SKU)', + `product_id` bigint NOT NULL COMMENT '所属 SPU ID', + `sku_name` varchar(100) NOT NULL COMMENT '规格名称,如:原味/500g', + `image` varchar(255) DEFAULT NULL COMMENT '规格图片 URL', + `price` decimal(10,2) NOT NULL COMMENT '售价', + `stock` int NOT NULL DEFAULT '0' COMMENT '库存数量', + `sales` int NOT NULL DEFAULT '0' COMMENT '累计销量', + `weight` int DEFAULT NULL COMMENT '重量(克)', + `sort` int NOT NULL DEFAULT '0' COMMENT '排序号', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_product_id` (`product_id`), + KEY `idx_create_time` (`create_time`) +) ENGINE=InnoDB AUTO_INCREMENT=1501 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='商品 SKU 表(具体规格)'; + +-- ---------------------------- +-- Records of product_sku +-- ---------------------------- +BEGIN; +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1, 1, '酸梅汤/500ml*6', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 22.90, 1212, 0, 641, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (2, 1, '酸梅汤/1L', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 14.90, 1100, 0, 503, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (3, 1, '酸梅汤/300ml*6', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 17.90, 1282, 0, 372, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (4, 2, '柠檬干/100g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 12.90, 1602, 0, 335, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (5, 2, '柠檬干/200g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 22.90, 1792, 0, 419, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (6, 2, '柠檬干/50g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 6.90, 777, 0, 556, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (7, 3, '腊肉/500g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 59.90, 1522, 0, 697, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (8, 3, '腊肉/1000g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 109.90, 1053, 0, 484, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (9, 3, '腊肉/250g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 32.90, 1118, 0, 350, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (10, 4, '肉枣/300g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 19.90, 1966, 0, 392, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (11, 4, '肉枣/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 29.90, 652, 0, 650, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (12, 4, '肉枣/150g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 12.90, 1946, 0, 591, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (13, 5, '墨鱼仔/200g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 22.90, 1714, 0, 747, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (14, 5, '墨鱼仔/400g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 39.90, 776, 0, 359, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (15, 5, '墨鱼仔/100g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 13.90, 598, 0, 199, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (16, 6, '曲奇饼干/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 22.90, 1138, 0, 136, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (17, 6, '曲奇饼干/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 35.90, 900, 0, 249, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (18, 6, '曲奇饼干/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 12.90, 1501, 0, 531, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (19, 7, '肉松/200g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 25.90, 1254, 0, 900, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (20, 7, '肉松/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 49.90, 1543, 0, 324, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (21, 7, '肉松/100g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 15.90, 1051, 0, 240, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (22, 8, '苏打水/500ml*6', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 22.90, 857, 0, 158, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (23, 8, '苏打水/1L', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 12.90, 1763, 0, 908, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (24, 8, '苏打水/330ml*6', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 16.90, 1184, 0, 949, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (25, 9, '山楂片/300g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 9.90, 1204, 0, 538, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (26, 9, '山楂片/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 14.90, 1117, 0, 910, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (27, 9, '山楂片/150g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 5.90, 1347, 0, 283, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (28, 10, '奶油味腰果/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 29.90, 378, 0, 802, 1, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (29, 10, '奶油味腰果/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 49.90, 1982, 0, 923, 2, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (30, 10, '奶油味腰果/1000g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 79.90, 1516, 0, 331, 3, '2026-06-03 23:33:05', '2026-06-03 23:33:05'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (31, 11, '蛋糕/6个装', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 29.90, 1229, 0, 687, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (32, 11, '蛋糕/12个装', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 52.90, 1639, 0, 780, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (33, 11, '蛋糕/3个装', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 16.90, 411, 0, 359, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (34, 12, '香蕉片/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 12.90, 1357, 0, 221, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (35, 12, '香蕉片/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 25.90, 181, 0, 941, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (36, 12, '香蕉片/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 7.90, 1966, 0, 722, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (37, 13, '每日坚果/30包', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 99.90, 1521, 0, 431, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (38, 13, '每日坚果/15包', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 55.90, 881, 0, 638, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (39, 13, '每日坚果/7包', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 29.90, 1456, 0, 546, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (40, 14, '椰枣/200g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 22.90, 1426, 0, 256, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (41, 14, '椰枣/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 45.90, 323, 0, 734, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (42, 14, '椰枣/100g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 12.90, 1633, 0, 810, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (43, 15, '果冻/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 15.90, 1566, 0, 787, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (44, 15, '果冻/1000g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 27.90, 229, 0, 302, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (45, 15, '果冻/250g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 8.90, 414, 0, 901, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (46, 16, '瑞士卷/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 18.90, 716, 0, 536, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (47, 16, '瑞士卷/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 29.90, 446, 0, 228, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (48, 16, '瑞士卷/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 10.90, 1702, 0, 862, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (49, 17, '五香鸭脖/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 25.90, 451, 0, 998, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (50, 17, '五香鸭脖/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 39.90, 1002, 0, 381, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (51, 17, '五香鸭脖/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 15.90, 1264, 0, 856, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (52, 18, '巴旦木/300g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 29.90, 1587, 0, 211, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (53, 18, '巴旦木/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 45.90, 795, 0, 792, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (54, 18, '巴旦木/150g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 18.90, 1478, 0, 849, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (55, 19, '棒棒糖/20支', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 15.90, 671, 0, 713, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (56, 19, '棒棒糖/50支', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 32.90, 448, 0, 107, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (57, 19, '棒棒糖/10支', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 8.90, 1850, 0, 769, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (58, 20, '原味夏威夷果/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 39.90, 1799, 0, 935, 1, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (59, 20, '原味夏威夷果/250g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 59.90, 1544, 0, 844, 2, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (60, 20, '原味夏威夷果/1000g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 89.90, 1526, 0, 712, 3, '2026-06-03 23:33:06', '2026-06-03 23:33:06'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (61, 21, '花生糖/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 14.90, 1958, 0, 541, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (62, 21, '花生糖/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 22.90, 1951, 0, 861, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (63, 21, '花生糖/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 726, 0, 829, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (64, 22, '菠萝干/200g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 15.90, 812, 0, 457, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (65, 22, '菠萝干/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 32.90, 1093, 0, 636, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (66, 22, '菠萝干/100g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 8.90, 1435, 0, 652, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (67, 23, '橡皮糖/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 11.90, 1257, 0, 675, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (68, 23, '橡皮糖/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 22.90, 1757, 0, 489, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (69, 23, '橡皮糖/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 6.90, 1449, 0, 904, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (70, 24, '功能饮料/250ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 29.90, 484, 0, 829, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (71, 24, '功能饮料/500ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 39.90, 1147, 0, 645, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (72, 24, '功能饮料/1L', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 18.90, 1801, 0, 507, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (73, 25, '功能饮料/250ml*6', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 29.90, 1302, 0, 322, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (74, 25, '功能饮料/500ml*6', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 39.90, 955, 0, 543, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (75, 25, '功能饮料/1L', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 18.90, 1096, 0, 264, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (76, 26, '卤蛋/10枚', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 15.90, 821, 0, 778, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (77, 26, '卤蛋/20枚', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 25.90, 568, 0, 147, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (78, 26, '卤蛋/5枚', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 9.90, 317, 0, 411, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (79, 27, '桃干/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 16.90, 1680, 0, 827, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (80, 27, '桃干/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 35.90, 1900, 0, 312, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (81, 27, '桃干/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 9.90, 1871, 0, 628, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (82, 28, '棒棒糖/20支', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 937, 0, 330, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (83, 28, '棒棒糖/50支', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 32.90, 1926, 0, 997, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (84, 28, '棒棒糖/10支', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 730, 0, 279, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (85, 29, '夹心巧克力/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 25.90, 1641, 0, 486, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (86, 29, '夹心巧克力/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 45.90, 1125, 0, 855, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (87, 29, '夹心巧克力/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 69.90, 1014, 0, 905, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (88, 30, '老婆饼/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 1346, 0, 312, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (89, 30, '老婆饼/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 24.90, 1751, 0, 964, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (90, 30, '老婆饼/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 145, 0, 278, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (91, 31, '奶茶/500ml*6', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 25.90, 443, 0, 112, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (92, 31, '奶茶/1L', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 19.90, 1961, 0, 960, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (93, 31, '奶茶/300ml*6', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 22.90, 854, 0, 902, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (94, 32, '凤梨酥/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 29.90, 1343, 0, 959, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (95, 32, '凤梨酥/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 45.90, 397, 0, 852, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (96, 32, '凤梨酥/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 16.90, 1725, 0, 834, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (97, 33, 'QQ糖/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 10.90, 1489, 0, 293, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (98, 33, 'QQ糖/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 19.90, 1311, 0, 506, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (99, 33, 'QQ糖/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 5.90, 202, 0, 931, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (100, 34, '气泡水/500ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 29.90, 350, 0, 520, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (101, 34, '气泡水/1L', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 217, 0, 848, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (102, 34, '气泡水/330ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 22.90, 1266, 0, 378, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (103, 35, '卤牛肉/200g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 49.90, 179, 0, 651, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (104, 35, '卤牛肉/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 109.90, 925, 0, 131, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (105, 35, '卤牛肉/100g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 28.90, 938, 0, 144, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (106, 36, '果冻/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 976, 0, 488, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (107, 36, '果冻/1000g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 27.90, 390, 0, 708, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (108, 36, '果冻/250g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 8.90, 1358, 0, 654, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (109, 37, '夹心饼干/388g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 19.90, 939, 0, 364, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (110, 37, '夹心饼干/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 24.90, 668, 0, 554, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (111, 37, '夹心饼干/200g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 11.90, 624, 0, 1000, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (112, 38, '香辣鸡翅/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 29.90, 670, 0, 549, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (113, 38, '香辣鸡翅/400g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 49.90, 1428, 0, 781, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (114, 38, '香辣鸡翅/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 18.90, 1116, 0, 481, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (115, 39, '豆浆/250ml*12', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 25.90, 993, 0, 381, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (116, 39, '豆浆/500ml*6', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 22.90, 1861, 0, 881, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (117, 39, '豆浆/1L', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 12.90, 478, 0, 893, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (118, 40, '蛋卷/300g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 19.90, 1352, 0, 617, 1, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (119, 40, '蛋卷/500g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 29.90, 1219, 0, 151, 2, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (120, 40, '蛋卷/150g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 10.90, 641, 0, 108, 3, '2026-06-03 23:33:07', '2026-06-03 23:33:07'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (121, 41, '原味夏威夷果/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 39.90, 785, 0, 973, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (122, 41, '原味夏威夷果/250g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 59.90, 1055, 0, 311, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (123, 41, '原味夏威夷果/1000g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 89.90, 786, 0, 889, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (124, 42, '原味瓜子/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 12.90, 860, 0, 115, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (125, 42, '原味瓜子/1000g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 19.90, 550, 0, 686, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (126, 42, '原味瓜子/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 8.90, 1787, 0, 232, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (127, 43, '肉枣/300g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 19.90, 200, 0, 980, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (128, 43, '肉枣/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 29.90, 1415, 0, 912, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (129, 43, '肉枣/150g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 12.90, 982, 0, 439, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (130, 44, '蛋黄派/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 15.90, 294, 0, 569, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (131, 44, '蛋黄派/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 24.90, 148, 0, 148, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (132, 44, '蛋黄派/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 8.90, 1708, 0, 727, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (133, 45, '苏打饼干/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 12.90, 1742, 0, 138, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (134, 45, '苏打饼干/1000g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 22.90, 1772, 0, 387, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (135, 45, '苏打饼干/250g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 7.90, 250, 0, 198, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (136, 46, '兰花豆/300g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 11.90, 657, 0, 902, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (137, 46, '兰花豆/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 17.90, 1462, 0, 917, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (138, 46, '兰花豆/150g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 7.90, 1154, 0, 992, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (139, 47, '烤鱼片/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 25.90, 953, 0, 186, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (140, 47, '烤鱼片/400g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 45.90, 559, 0, 690, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (141, 47, '烤鱼片/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 15.90, 882, 0, 779, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (142, 48, '老婆饼/300g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 15.90, 178, 0, 528, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (143, 48, '老婆饼/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 24.90, 122, 0, 216, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (144, 48, '老婆饼/150g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 8.90, 1725, 0, 606, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (145, 49, '豆浆/250ml*12', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 25.90, 591, 0, 309, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (146, 49, '豆浆/500ml*6', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 22.90, 585, 0, 128, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (147, 49, '豆浆/1L', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 12.90, 197, 0, 233, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (148, 50, '芝麻糖/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 13.90, 124, 0, 866, 1, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (149, 50, '芝麻糖/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 21.90, 398, 0, 785, 2, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (150, 50, '芝麻糖/150g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 7.90, 1282, 0, 308, 3, '2026-06-03 23:33:08', '2026-06-03 23:33:08'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (151, 51, '吐司/300g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 12.90, 1667, 0, 733, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (152, 51, '吐司/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 19.90, 987, 0, 237, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (153, 51, '吐司/150g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 6.90, 797, 0, 874, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (154, 52, '芒果干/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 12.90, 317, 0, 546, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (155, 52, '芒果干/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 22.90, 624, 0, 576, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (156, 52, '芒果干/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 45.90, 1311, 0, 219, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (157, 53, '无花果干/200g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 19.90, 1582, 0, 518, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (158, 53, '无花果干/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 39.90, 276, 0, 428, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (159, 53, '无花果干/100g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 10.90, 1117, 0, 734, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (160, 54, '香酥蚕豆/300g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 10.90, 484, 0, 497, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (161, 54, '香酥蚕豆/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 16.90, 308, 0, 365, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (162, 54, '香酥蚕豆/150g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 6.90, 1303, 0, 674, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (163, 55, '怪味胡豆/300g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 12.90, 1986, 0, 241, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (164, 55, '怪味胡豆/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 18.90, 1302, 0, 904, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (165, 55, '怪味胡豆/150g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 8.90, 830, 0, 748, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (166, 56, '鱼豆腐/300g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 15.90, 1531, 0, 814, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (167, 56, '鱼豆腐/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 23.90, 993, 0, 139, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (168, 56, '鱼豆腐/150g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 9.90, 277, 0, 368, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (169, 57, '香蕉片/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 12.90, 567, 0, 802, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (170, 57, '香蕉片/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 25.90, 960, 0, 533, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (171, 57, '香蕉片/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 7.90, 621, 0, 631, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (172, 58, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 22.90, 172, 0, 973, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (173, 58, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 45.90, 1538, 0, 307, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (174, 58, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 14.90, 1585, 0, 243, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (175, 59, '葡萄汁/1L', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 22.90, 1208, 0, 279, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (176, 59, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 39.90, 1477, 0, 472, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (177, 59, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 45.90, 1483, 0, 751, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (178, 60, '蔓越莓干/200g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 18.90, 1511, 0, 971, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (179, 60, '蔓越莓干/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 37.90, 860, 0, 100, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (180, 60, '蔓越莓干/100g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 9.90, 122, 0, 301, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (181, 61, '香酥蚕豆/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 10.90, 175, 0, 304, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (182, 61, '香酥蚕豆/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 16.90, 788, 0, 232, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (183, 61, '香酥蚕豆/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 6.90, 1495, 0, 698, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (184, 62, '碧根果/250g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 35.90, 1244, 0, 197, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (185, 62, '碧根果/500g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 59.90, 229, 0, 277, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (186, 62, '碧根果/1000g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 99.90, 259, 0, 457, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (187, 63, '苹果干/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 14.90, 931, 0, 454, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (188, 63, '苹果干/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 29.90, 1403, 0, 246, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (189, 63, '苹果干/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 953, 0, 507, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (190, 64, '牛奶/250ml*12', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 39.90, 402, 0, 352, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (191, 64, '牛奶/500ml*6', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 35.90, 516, 0, 849, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (192, 64, '牛奶/1L*2', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 22.90, 1623, 0, 981, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (193, 65, '牛奶巧克力/100g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 19.90, 1382, 0, 816, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (194, 65, '牛奶巧克力/200g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 35.90, 1749, 0, 809, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (195, 65, '牛奶巧克力/500g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 79.90, 1151, 0, 464, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (196, 66, '夹心巧克力/150g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 25.90, 157, 0, 933, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (197, 66, '夹心巧克力/300g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 45.90, 610, 0, 804, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (198, 66, '夹心巧克力/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 69.90, 495, 0, 830, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (199, 67, '猕猴桃干/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 16.90, 1487, 0, 279, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (200, 67, '猕猴桃干/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 34.90, 1993, 0, 541, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (201, 67, '猕猴桃干/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 9.90, 568, 0, 243, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (202, 68, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 22.90, 175, 0, 170, 1, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (203, 68, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 45.90, 451, 0, 496, 2, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (204, 68, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 14.90, 1110, 0, 331, 3, '2026-06-03 23:33:09', '2026-06-03 23:33:09'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (205, 69, '手撕牛肉/200g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 45.90, 890, 0, 991, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (206, 69, '手撕牛肉/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 99.90, 1737, 0, 323, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (207, 69, '手撕牛肉/100g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 25.90, 1196, 0, 995, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (208, 70, '绿豆糕/300g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 19.90, 1454, 0, 823, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (209, 70, '绿豆糕/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 29.90, 788, 0, 630, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (210, 70, '绿豆糕/150g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 11.90, 962, 0, 873, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (211, 71, '巧克力豆/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 18.90, 1472, 0, 343, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (212, 71, '巧克力豆/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 39.90, 1977, 0, 989, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (213, 71, '巧克力豆/100g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 9.90, 929, 0, 135, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (214, 72, '奶油味腰果/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 29.90, 695, 0, 566, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (215, 72, '奶油味腰果/500g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 49.90, 1947, 0, 523, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (216, 72, '奶油味腰果/1000g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 79.90, 1478, 0, 989, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (217, 73, '椰子水/500ml*6', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 35.90, 241, 0, 994, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (218, 73, '椰子水/1L', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 19.90, 435, 0, 623, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (219, 73, '椰子水/330ml*6', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 25.90, 1505, 0, 977, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (220, 74, '葡萄汁/1L', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 22.90, 1756, 0, 118, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (221, 74, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 39.90, 1386, 0, 798, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (222, 74, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 45.90, 438, 0, 514, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (223, 75, '酥糖/300g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 15.90, 189, 0, 561, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (224, 75, '酥糖/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 24.90, 1977, 0, 171, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (225, 75, '酥糖/150g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 8.90, 1448, 0, 380, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (226, 76, '椰子水/500ml*6', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 35.90, 1820, 0, 420, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (227, 76, '椰子水/1L', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 19.90, 1464, 0, 240, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (228, 76, '椰子水/330ml*6', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 25.90, 1507, 0, 745, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (229, 77, '猕猴桃干/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 16.90, 1472, 0, 312, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (230, 77, '猕猴桃干/500g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 34.90, 769, 0, 100, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (231, 77, '猕猴桃干/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 9.90, 1367, 0, 302, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (232, 78, '雪碧/330ml*6', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 22.90, 720, 0, 275, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (233, 78, '雪碧/500ml*6', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 28.90, 907, 0, 458, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (234, 78, '雪碧/1.5L*2', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 15.90, 752, 0, 787, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (235, 79, '香蕉片/200g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 12.90, 511, 0, 371, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (236, 79, '香蕉片/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 25.90, 1309, 0, 130, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (237, 79, '香蕉片/100g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 7.90, 241, 0, 120, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (238, 80, '老婆饼/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 459, 0, 606, 1, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (239, 80, '老婆饼/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 24.90, 864, 0, 509, 2, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (240, 80, '老婆饼/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 1589, 0, 682, 3, '2026-06-03 23:33:10', '2026-06-03 23:33:10'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (241, 81, '无花果干/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 19.90, 1845, 0, 236, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (242, 81, '无花果干/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 39.90, 319, 0, 575, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (243, 81, '无花果干/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 10.90, 682, 0, 667, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (244, 82, '酸奶/200g*12', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 35.90, 162, 0, 488, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (245, 82, '酸奶/100g*16', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 29.90, 1482, 0, 751, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (246, 82, '酸奶/500g*3', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 25.90, 822, 0, 340, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (247, 83, '椰枣/200g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 22.90, 1004, 0, 152, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (248, 83, '椰枣/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 45.90, 388, 0, 842, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (249, 83, '椰枣/100g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 12.90, 1635, 0, 592, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (250, 84, '蔓越莓干/200g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 18.90, 1417, 0, 709, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (251, 84, '蔓越莓干/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 37.90, 1127, 0, 903, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (252, 84, '蔓越莓干/100g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 9.90, 1490, 0, 153, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (253, 85, '威化饼干/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 15.90, 1462, 0, 893, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (254, 85, '威化饼干/400g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 28.90, 261, 0, 643, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (255, 85, '威化饼干/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 8.90, 1042, 0, 270, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (256, 86, '奶油味腰果/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 29.90, 946, 0, 989, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (257, 86, '奶油味腰果/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 49.90, 789, 0, 144, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (258, 86, '奶油味腰果/1000g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 79.90, 323, 0, 752, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (259, 87, '水果硬糖/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 9.90, 204, 0, 759, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (260, 87, '水果硬糖/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 14.90, 947, 0, 855, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (261, 87, '水果硬糖/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 5.90, 941, 0, 171, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (262, 88, '橙汁/1L', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 19.90, 281, 0, 867, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (263, 88, '橙汁/500ml*6', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 35.90, 1359, 0, 752, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (264, 88, '橙汁/250ml*12', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 42.90, 1040, 0, 759, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (265, 89, '草莓味软糖/200g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 12.90, 1514, 0, 803, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (266, 89, '草莓味软糖/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 25.90, 619, 0, 127, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (267, 89, '草莓味软糖/100g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 7.90, 848, 0, 485, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (268, 90, '巧克力豆/200g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 18.90, 1126, 0, 644, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (269, 90, '巧克力豆/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 39.90, 819, 0, 815, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (270, 90, '巧克力豆/100g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 9.90, 897, 0, 419, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (271, 91, '煎饼/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 11.90, 417, 0, 977, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (272, 91, '煎饼/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 18.90, 1886, 0, 145, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (273, 91, '煎饼/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 6.90, 525, 0, 858, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (274, 92, '杏仁/300g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 32.90, 282, 0, 375, 1, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (275, 92, '杏仁/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 49.90, 1918, 0, 858, 2, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (276, 92, '杏仁/150g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 19.90, 303, 0, 879, 3, '2026-06-03 23:33:11', '2026-06-03 23:33:11'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (277, 93, '话梅/200g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 14.90, 233, 0, 224, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (278, 93, '话梅/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 29.90, 1149, 0, 527, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (279, 93, '话梅/100g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 8.90, 1858, 0, 287, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (280, 94, '每日坚果/30包', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 99.90, 1748, 0, 495, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (281, 94, '每日坚果/15包', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 55.90, 443, 0, 449, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (282, 94, '每日坚果/7包', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 29.90, 1377, 0, 519, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (283, 95, '混合坚果/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 69.90, 275, 0, 794, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (284, 95, '混合坚果/750g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 89.90, 1920, 0, 855, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (285, 95, '混合坚果/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 45.90, 750, 0, 318, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (286, 96, '气泡水/500ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 29.90, 1283, 0, 862, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (287, 96, '气泡水/1L', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1235, 0, 961, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (288, 96, '气泡水/330ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 22.90, 1999, 0, 723, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (289, 97, '煎饼/300g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 11.90, 1444, 0, 415, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (290, 97, '煎饼/500g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 18.90, 598, 0, 770, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (291, 97, '煎饼/150g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 6.90, 1807, 0, 817, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (292, 98, '酱板鸭/半只', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 39.90, 837, 0, 720, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (293, 98, '酱板鸭/整只', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 69.90, 450, 0, 415, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (294, 98, '酱板鸭/1/4只', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 643, 0, 639, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (295, 99, '鱼豆腐/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 15.90, 1179, 0, 822, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (296, 99, '鱼豆腐/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 23.90, 136, 0, 114, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (297, 99, '鱼豆腐/150g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 9.90, 1689, 0, 843, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (298, 100, '榛子/250g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 39.90, 1055, 0, 373, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (299, 100, '榛子/500g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 69.90, 1091, 0, 609, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (300, 100, '榛子/150g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 25.90, 1825, 0, 862, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (301, 101, '果脯/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1861, 0, 112, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (302, 101, '果脯/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 24.90, 760, 0, 986, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (303, 101, '果脯/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 185, 0, 350, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (304, 102, '松露巧克力/200g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 35.90, 1224, 0, 851, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (305, 102, '松露巧克力/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 79.90, 473, 0, 794, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (306, 102, '松露巧克力/100g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 19.90, 757, 0, 140, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (307, 103, '曲奇饼干/300g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 22.90, 685, 0, 439, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (308, 103, '曲奇饼干/500g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 35.90, 1747, 0, 360, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (309, 103, '曲奇饼干/150g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 12.90, 1289, 0, 428, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (310, 104, '鱿鱼仔/200g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 19.90, 1914, 0, 596, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (311, 104, '鱿鱼仔/400g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 35.90, 431, 0, 629, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (312, 104, '鱿鱼仔/100g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 12.90, 783, 0, 370, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (313, 105, '鸡爪/300g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 22.90, 446, 0, 258, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (314, 105, '鸡爪/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 35.90, 1034, 0, 699, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (315, 105, '鸡爪/150g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 13.90, 1712, 0, 813, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (316, 106, '雪碧/330ml*6', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 22.90, 1204, 0, 136, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (317, 106, '雪碧/500ml*6', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 28.90, 356, 0, 444, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (318, 106, '雪碧/1.5L*2', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 15.90, 311, 0, 754, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (319, 107, '菠萝干/200g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 15.90, 1751, 0, 394, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (320, 107, '菠萝干/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 32.90, 1711, 0, 699, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (321, 107, '菠萝干/100g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 8.90, 1068, 0, 349, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (322, 108, '南瓜子/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 15.90, 1770, 0, 859, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (323, 108, '南瓜子/1000g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 25.90, 284, 0, 263, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (324, 108, '南瓜子/200g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 9.90, 1155, 0, 164, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (325, 109, '葡萄干/200g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 15.90, 384, 0, 614, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (326, 109, '葡萄干/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 29.90, 1457, 0, 567, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (327, 109, '葡萄干/1000g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 52.90, 205, 0, 954, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (328, 110, '青豆/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 14.90, 271, 0, 581, 1, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (329, 110, '青豆/1000g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 24.90, 199, 0, 943, 2, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (330, 110, '青豆/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 8.90, 835, 0, 439, 3, '2026-06-03 23:33:12', '2026-06-03 23:33:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (331, 111, '花生糖/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 14.90, 1338, 0, 274, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (332, 111, '花生糖/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 22.90, 665, 0, 411, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (333, 111, '花生糖/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 1542, 0, 170, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (334, 112, '老婆饼/300g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 1263, 0, 996, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (335, 112, '老婆饼/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 24.90, 399, 0, 580, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (336, 112, '老婆饼/150g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 8.90, 186, 0, 275, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (337, 113, '草莓干/100g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 18.90, 295, 0, 839, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (338, 113, '草莓干/200g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 32.90, 1928, 0, 592, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (339, 113, '草莓干/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 69.90, 955, 0, 324, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (340, 114, '苹果干/200g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 14.90, 1860, 0, 567, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (341, 114, '苹果干/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 29.90, 697, 0, 656, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (342, 114, '苹果干/100g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 8.90, 1857, 0, 925, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (343, 115, '五香鸭脖/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 25.90, 748, 0, 801, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (344, 115, '五香鸭脖/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 39.90, 450, 0, 346, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (345, 115, '五香鸭脖/150g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 15.90, 1119, 0, 586, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (346, 116, '太妃糖/200g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 15.90, 1418, 0, 910, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (347, 116, '太妃糖/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 32.90, 739, 0, 123, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (348, 116, '太妃糖/100g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 8.90, 455, 0, 793, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (349, 117, '杨梅干/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 17.90, 678, 0, 526, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (350, 117, '杨梅干/500g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 35.90, 1458, 0, 155, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (351, 117, '杨梅干/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 9.90, 1475, 0, 746, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (352, 118, '太妃糖/200g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 15.90, 1858, 0, 347, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (353, 118, '太妃糖/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 32.90, 1185, 0, 393, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (354, 118, '太妃糖/100g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 8.90, 1320, 0, 560, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (355, 119, '鸭掌/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 25.90, 1660, 0, 592, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (356, 119, '鸭掌/400g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 45.90, 260, 0, 256, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (357, 119, '鸭掌/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 15.90, 404, 0, 951, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (358, 120, '鱿鱼仔/200g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 19.90, 1872, 0, 236, 1, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (359, 120, '鱿鱼仔/400g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 35.90, 871, 0, 381, 2, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (360, 120, '鱿鱼仔/100g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 12.90, 914, 0, 987, 3, '2026-06-03 23:33:13', '2026-06-03 23:33:13'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (361, 121, '橡皮糖/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 11.90, 1335, 0, 896, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (362, 121, '橡皮糖/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 22.90, 1971, 0, 926, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (363, 121, '橡皮糖/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 6.90, 1788, 0, 982, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (364, 122, '牛奶/250ml*12', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 39.90, 1360, 0, 172, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (365, 122, '牛奶/500ml*6', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 35.90, 1086, 0, 817, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (366, 122, '牛奶/1L*2', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 22.90, 1722, 0, 849, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (367, 123, '鸡爪/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 22.90, 1686, 0, 986, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (368, 123, '鸡爪/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 35.90, 1154, 0, 944, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (369, 123, '鸡爪/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 13.90, 360, 0, 479, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (370, 124, '酥糖/300g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 1298, 0, 853, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (371, 124, '酥糖/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 24.90, 1346, 0, 583, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (372, 124, '酥糖/150g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 8.90, 635, 0, 630, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (373, 125, '可乐/330ml*6', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 22.90, 169, 0, 458, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (374, 125, '可乐/500ml*6', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 28.90, 1743, 0, 738, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (375, 125, '可乐/1.5L*2', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 15.90, 493, 0, 562, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (376, 126, '肉松/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 25.90, 1433, 0, 445, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (377, 126, '肉松/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 49.90, 263, 0, 380, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (378, 126, '肉松/100g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 800, 0, 578, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (379, 127, '苏打水/500ml*6', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 22.90, 1328, 0, 475, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (380, 127, '苏打水/1L', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 12.90, 779, 0, 300, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (381, 127, '苏打水/330ml*6', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 16.90, 124, 0, 999, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (382, 128, '老婆饼/300g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 15.90, 1667, 0, 141, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (383, 128, '老婆饼/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 24.90, 1240, 0, 165, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (384, 128, '老婆饼/150g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 8.90, 1020, 0, 441, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (385, 129, '芒果干/100g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 12.90, 1003, 0, 731, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (386, 129, '芒果干/200g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 22.90, 306, 0, 377, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (387, 129, '芒果干/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 45.90, 308, 0, 219, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (388, 130, '草莓味软糖/200g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 12.90, 136, 0, 282, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (389, 130, '草莓味软糖/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 25.90, 139, 0, 929, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (390, 130, '草莓味软糖/100g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 7.90, 1720, 0, 678, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (391, 131, '面包/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 15.90, 1013, 0, 292, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (392, 131, '面包/1000g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 27.90, 1992, 0, 890, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (393, 131, '面包/250g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 8.90, 1355, 0, 303, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (394, 132, '葡萄汁/1L', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 1971, 0, 583, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (395, 132, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 39.90, 1635, 0, 639, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (396, 132, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 45.90, 712, 0, 766, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (397, 133, '葡萄汁/1L', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 22.90, 1853, 0, 103, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (398, 133, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 39.90, 862, 0, 367, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (399, 133, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 45.90, 1800, 0, 619, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (400, 134, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 22.90, 354, 0, 982, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (401, 134, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 45.90, 960, 0, 217, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (402, 134, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 14.90, 1072, 0, 226, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (403, 135, '棉花糖/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 11.90, 1132, 0, 661, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (404, 135, '棉花糖/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 377, 0, 549, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (405, 135, '棉花糖/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 6.90, 1130, 0, 312, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (406, 136, '葡萄汁/1L', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 22.90, 130, 0, 454, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (407, 136, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 39.90, 1334, 0, 622, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (408, 136, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 45.90, 422, 0, 405, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (409, 137, '椰子水/500ml*6', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 35.90, 183, 0, 639, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (410, 137, '椰子水/1L', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 19.90, 587, 0, 945, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (411, 137, '椰子水/330ml*6', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 25.90, 732, 0, 881, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (412, 138, '香蕉片/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 12.90, 1237, 0, 508, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (413, 138, '香蕉片/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 25.90, 1403, 0, 990, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (414, 138, '香蕉片/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 7.90, 1259, 0, 352, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (415, 139, '苏打水/500ml*6', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 22.90, 1786, 0, 635, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (416, 139, '苏打水/1L', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 12.90, 280, 0, 991, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (417, 139, '苏打水/330ml*6', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 16.90, 1637, 0, 887, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (418, 140, '草莓味软糖/200g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 12.90, 190, 0, 939, 1, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (419, 140, '草莓味软糖/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 25.90, 1174, 0, 887, 2, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (420, 140, '草莓味软糖/100g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 7.90, 346, 0, 621, 3, '2026-06-03 23:33:14', '2026-06-03 23:33:14'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (421, 141, '酸梅汤/500ml*6', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 22.90, 1749, 0, 996, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (422, 141, '酸梅汤/1L', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 14.90, 171, 0, 574, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (423, 141, '酸梅汤/300ml*6', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 17.90, 1495, 0, 661, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (424, 142, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 22.90, 274, 0, 379, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (425, 142, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 45.90, 940, 0, 142, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (426, 142, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 14.90, 756, 0, 621, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (427, 143, '烤鱼片/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 25.90, 435, 0, 723, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (428, 143, '烤鱼片/400g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 45.90, 191, 0, 666, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (429, 143, '烤鱼片/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 149, 0, 504, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (430, 144, '草莓干/100g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 18.90, 1476, 0, 946, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (431, 144, '草莓干/200g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 32.90, 1147, 0, 936, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (432, 144, '草莓干/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 69.90, 638, 0, 937, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (433, 145, '凤梨酥/300g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 29.90, 1827, 0, 875, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (434, 145, '凤梨酥/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 45.90, 187, 0, 274, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (435, 145, '凤梨酥/150g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 16.90, 1985, 0, 821, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (436, 146, '椰枣/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 258, 0, 752, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (437, 146, '椰枣/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 45.90, 1994, 0, 307, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (438, 146, '椰枣/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 12.90, 1944, 0, 918, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (439, 147, '酸奶/200g*12', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 35.90, 243, 0, 921, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (440, 147, '酸奶/100g*16', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 29.90, 1046, 0, 201, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (441, 147, '酸奶/500g*3', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 25.90, 1310, 0, 308, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (442, 148, '葡萄干/200g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 15.90, 1728, 0, 116, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (443, 148, '葡萄干/500g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 29.90, 1934, 0, 597, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (444, 148, '葡萄干/1000g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 52.90, 448, 0, 428, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (445, 149, '麻辣牛肉干/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 39.90, 1938, 0, 692, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (446, 149, '麻辣牛肉干/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 79.90, 1882, 0, 545, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (447, 149, '麻辣牛肉干/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 22.90, 1157, 0, 256, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (448, 150, '蛋黄派/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 515, 0, 746, 1, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (449, 150, '蛋黄派/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 24.90, 417, 0, 398, 2, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (450, 150, '蛋黄派/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 1630, 0, 233, 3, '2026-06-03 23:33:15', '2026-06-03 23:33:15'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (451, 151, '瑞士卷/300g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 18.90, 759, 0, 451, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (452, 151, '瑞士卷/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 29.90, 1924, 0, 241, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (453, 151, '瑞士卷/150g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 10.90, 1656, 0, 628, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (454, 152, '肉松/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 25.90, 1351, 0, 765, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (455, 152, '肉松/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 49.90, 1857, 0, 737, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (456, 152, '肉松/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 15.90, 445, 0, 104, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (457, 153, '原味夏威夷果/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 39.90, 782, 0, 965, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (458, 153, '原味夏威夷果/250g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 59.90, 1380, 0, 757, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (459, 153, '原味夏威夷果/1000g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 89.90, 214, 0, 447, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (460, 154, '每日坚果/30包', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 99.90, 247, 0, 842, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (461, 154, '每日坚果/15包', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 55.90, 460, 0, 751, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (462, 154, '每日坚果/7包', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 29.90, 193, 0, 374, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (463, 155, '鱼豆腐/300g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 15.90, 1487, 0, 552, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (464, 155, '鱼豆腐/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 23.90, 1103, 0, 568, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (465, 155, '鱼豆腐/150g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 9.90, 990, 0, 899, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (466, 156, '苹果汁/1L', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 18.90, 967, 0, 469, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (467, 156, '苹果汁/500ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 33.90, 1233, 0, 526, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (468, 156, '苹果汁/250ml*12', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 39.90, 1645, 0, 645, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (469, 157, '兰花豆/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 11.90, 926, 0, 334, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (470, 157, '兰花豆/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 17.90, 686, 0, 198, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (471, 157, '兰花豆/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 7.90, 1762, 0, 991, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (472, 158, '蛋黄派/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 1647, 0, 840, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (473, 158, '蛋黄派/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 24.90, 414, 0, 282, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (474, 158, '蛋黄派/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 242, 0, 358, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (475, 159, '老婆饼/300g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 15.90, 1618, 0, 120, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (476, 159, '老婆饼/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 24.90, 396, 0, 412, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (477, 159, '老婆饼/150g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 8.90, 617, 0, 560, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (478, 160, '烤鱼片/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 25.90, 558, 0, 613, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (479, 160, '烤鱼片/400g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 45.90, 1982, 0, 449, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (480, 160, '烤鱼片/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 15.90, 1724, 0, 601, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (481, 161, '桃干/200g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 16.90, 1748, 0, 433, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (482, 161, '桃干/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 35.90, 1176, 0, 977, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (483, 161, '桃干/100g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 9.90, 1643, 0, 807, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (484, 162, '沙琪玛/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 14.90, 1814, 0, 613, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (485, 162, '沙琪玛/1000g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 25.90, 625, 0, 477, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (486, 162, '沙琪玛/250g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 8.90, 1872, 0, 588, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (487, 163, '椰枣/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 22.90, 304, 0, 287, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (488, 163, '椰枣/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 45.90, 1376, 0, 296, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (489, 163, '椰枣/100g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 12.90, 165, 0, 206, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (490, 164, '酥糖/300g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 15.90, 1913, 0, 236, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (491, 164, '酥糖/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 24.90, 1891, 0, 425, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (492, 164, '酥糖/150g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 8.90, 1527, 0, 1000, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (493, 165, '碧根果/250g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 35.90, 1645, 0, 988, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (494, 165, '碧根果/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 59.90, 155, 0, 200, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (495, 165, '碧根果/1000g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 99.90, 864, 0, 134, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (496, 166, '蜂蜜核桃仁/250g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 25.90, 546, 0, 876, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (497, 166, '蜂蜜核桃仁/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 39.90, 1738, 0, 310, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (498, 166, '蜂蜜核桃仁/100g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 15.90, 1495, 0, 920, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (499, 167, '每日坚果/30包', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 99.90, 851, 0, 143, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (500, 167, '每日坚果/15包', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 55.90, 870, 0, 591, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (501, 167, '每日坚果/7包', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 29.90, 1975, 0, 156, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (502, 168, '巧克力豆/200g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 18.90, 1078, 0, 477, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (503, 168, '巧克力豆/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 39.90, 599, 0, 347, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (504, 168, '巧克力豆/100g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 9.90, 1829, 0, 569, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (505, 169, '腊肉/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 59.90, 301, 0, 408, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (506, 169, '腊肉/1000g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 109.90, 1315, 0, 124, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (507, 169, '腊肉/250g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 32.90, 1749, 0, 992, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (508, 170, '南瓜子/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 15.90, 1060, 0, 901, 1, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (509, 170, '南瓜子/1000g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 25.90, 1779, 0, 397, 2, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (510, 170, '南瓜子/200g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 9.90, 1973, 0, 465, 3, '2026-06-03 23:33:16', '2026-06-03 23:33:16'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (511, 171, '草莓干/100g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 18.90, 161, 0, 515, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (512, 171, '草莓干/200g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 32.90, 352, 0, 172, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (513, 171, '草莓干/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 69.90, 1737, 0, 884, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (514, 172, '芝麻糖/300g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 13.90, 108, 0, 258, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (515, 172, '芝麻糖/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 21.90, 1964, 0, 104, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (516, 172, '芝麻糖/150g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 7.90, 1553, 0, 724, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (517, 173, '功能饮料/250ml*6', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 29.90, 1541, 0, 729, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (518, 173, '功能饮料/500ml*6', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 39.90, 1006, 0, 394, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (519, 173, '功能饮料/1L', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 18.90, 1428, 0, 487, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (520, 174, '云片糕/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 14.90, 296, 0, 758, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (521, 174, '云片糕/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 22.90, 1712, 0, 170, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (522, 174, '云片糕/150g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 7.90, 1685, 0, 203, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (523, 175, '苹果汁/1L', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 18.90, 1328, 0, 437, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (524, 175, '苹果汁/500ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 33.90, 1564, 0, 720, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (525, 175, '苹果汁/250ml*12', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 39.90, 346, 0, 346, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (526, 176, '南瓜子/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1264, 0, 839, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (527, 176, '南瓜子/1000g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 25.90, 1495, 0, 549, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (528, 176, '南瓜子/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 9.90, 113, 0, 245, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (529, 177, '墨鱼仔/200g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 22.90, 1286, 0, 894, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (530, 177, '墨鱼仔/400g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 39.90, 556, 0, 544, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (531, 177, '墨鱼仔/100g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 13.90, 1312, 0, 728, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (532, 178, '蜂蜜水/500ml*6', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 25.90, 854, 0, 933, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (533, 178, '蜂蜜水/1L', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 15.90, 1714, 0, 292, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (534, 178, '蜂蜜水/350ml*6', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 19.90, 550, 0, 976, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (535, 179, '煎饼/300g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 11.90, 1117, 0, 499, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (536, 179, '煎饼/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 18.90, 1703, 0, 940, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (537, 179, '煎饼/150g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 6.90, 974, 0, 747, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (538, 180, '香辣小鱼干/200g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 15.90, 484, 0, 593, 1, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (539, 180, '香辣小鱼干/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 32.90, 272, 0, 210, 2, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (540, 180, '香辣小鱼干/100g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 9.90, 564, 0, 997, 3, '2026-06-03 23:33:17', '2026-06-03 23:33:17'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (541, 181, '猕猴桃干/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 16.90, 1600, 0, 420, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (542, 181, '猕猴桃干/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 34.90, 1224, 0, 476, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (543, 181, '猕猴桃干/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 9.90, 1419, 0, 373, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (544, 182, '苹果干/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 14.90, 1377, 0, 130, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (545, 182, '苹果干/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 29.90, 1885, 0, 480, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (546, 182, '苹果干/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 8.90, 449, 0, 292, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (547, 183, '功能饮料/250ml*6', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 29.90, 911, 0, 925, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (548, 183, '功能饮料/500ml*6', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 39.90, 365, 0, 664, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (549, 183, '功能饮料/1L', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 18.90, 1574, 0, 940, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (550, 184, '老婆饼/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 255, 0, 877, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (551, 184, '老婆饼/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 24.90, 1182, 0, 508, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (552, 184, '老婆饼/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 1815, 0, 645, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (553, 185, '青豆/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 14.90, 737, 0, 110, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (554, 185, '青豆/1000g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 24.90, 1890, 0, 580, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (555, 185, '青豆/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 1099, 0, 357, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (556, 186, '陈皮/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1114, 0, 894, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (557, 186, '陈皮/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 32.90, 262, 0, 263, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (558, 186, '陈皮/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 1791, 0, 472, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (559, 187, '蜂蜜水/500ml*6', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 25.90, 1219, 0, 219, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (560, 187, '蜂蜜水/1L', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 15.90, 1739, 0, 440, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (561, 187, '蜂蜜水/350ml*6', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 19.90, 1937, 0, 393, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (562, 188, '南瓜子/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 15.90, 359, 0, 249, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (563, 188, '南瓜子/1000g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 25.90, 1475, 0, 470, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (564, 188, '南瓜子/200g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 9.90, 848, 0, 597, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (565, 189, '草莓味软糖/200g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 12.90, 1071, 0, 312, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (566, 189, '草莓味软糖/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 25.90, 793, 0, 826, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (567, 189, '草莓味软糖/100g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 7.90, 1993, 0, 668, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (568, 190, '山楂条/300g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 10.90, 1897, 0, 817, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (569, 190, '山楂条/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 16.90, 1927, 0, 511, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (570, 190, '山楂条/150g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 5.90, 527, 0, 660, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (571, 191, '凉茶/500ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 24.90, 1206, 0, 373, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (572, 191, '凉茶/1L', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 15.90, 709, 0, 401, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (573, 191, '凉茶/310ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 19.90, 443, 0, 837, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (574, 192, '蒜香花生/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 9.90, 1481, 0, 944, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (575, 192, '蒜香花生/1000g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 16.90, 1908, 0, 347, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (576, 192, '蒜香花生/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 5.90, 1637, 0, 300, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (577, 193, '酸梅汤/500ml*6', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 22.90, 660, 0, 671, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (578, 193, '酸梅汤/1L', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 14.90, 607, 0, 335, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (579, 193, '酸梅汤/300ml*6', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 17.90, 292, 0, 501, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (580, 194, '琥珀核桃/250g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 22.90, 939, 0, 218, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (581, 194, '琥珀核桃/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 35.90, 835, 0, 902, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (582, 194, '琥珀核桃/150g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 15.90, 592, 0, 746, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (583, 195, '卤牛肉/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 49.90, 1738, 0, 613, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (584, 195, '卤牛肉/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 109.90, 1430, 0, 336, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (585, 195, '卤牛肉/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 28.90, 189, 0, 116, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (586, 196, '橙汁/1L', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 19.90, 1155, 0, 178, 1, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (587, 196, '橙汁/500ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 35.90, 328, 0, 436, 2, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (588, 196, '橙汁/250ml*12', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 42.90, 264, 0, 294, 3, '2026-06-03 23:33:18', '2026-06-03 23:33:18'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (589, 197, '原味夏威夷果/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 39.90, 1154, 0, 213, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (590, 197, '原味夏威夷果/250g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 59.90, 1218, 0, 781, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (591, 197, '原味夏威夷果/1000g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 89.90, 1951, 0, 443, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (592, 198, '卤牛肉/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 49.90, 1905, 0, 175, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (593, 198, '卤牛肉/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 109.90, 619, 0, 520, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (594, 198, '卤牛肉/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 28.90, 1224, 0, 554, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (595, 199, '沙琪玛/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 14.90, 1132, 0, 398, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (596, 199, '沙琪玛/1000g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 25.90, 1874, 0, 146, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (597, 199, '沙琪玛/250g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 8.90, 1242, 0, 983, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (598, 200, '葡萄汁/1L', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 22.90, 1340, 0, 367, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (599, 200, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 39.90, 368, 0, 250, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (600, 200, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 45.90, 464, 0, 732, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (601, 201, '奶茶/500ml*6', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 25.90, 1074, 0, 209, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (602, 201, '奶茶/1L', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 19.90, 1818, 0, 444, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (603, 201, '奶茶/300ml*6', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 22.90, 127, 0, 319, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (604, 202, '酸梅汤/500ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 1755, 0, 937, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (605, 202, '酸梅汤/1L', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 14.90, 763, 0, 779, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (606, 202, '酸梅汤/300ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 17.90, 267, 0, 572, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (607, 203, '话梅/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 14.90, 1741, 0, 917, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (608, 203, '话梅/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 29.90, 1860, 0, 510, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (609, 203, '话梅/100g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 8.90, 321, 0, 458, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (610, 204, '话梅/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 14.90, 259, 0, 218, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (611, 204, '话梅/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 29.90, 567, 0, 629, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (612, 204, '话梅/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 218, 0, 997, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (613, 205, '手撕牛肉/200g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 45.90, 1716, 0, 199, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (614, 205, '手撕牛肉/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 99.90, 622, 0, 544, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (615, 205, '手撕牛肉/100g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 25.90, 1760, 0, 279, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (616, 206, '腊肠/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 49.90, 1216, 0, 567, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (617, 206, '腊肠/1000g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 89.90, 1059, 0, 811, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (618, 206, '腊肠/250g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 28.90, 1397, 0, 389, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (619, 207, '苏打饼干/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 12.90, 295, 0, 241, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (620, 207, '苏打饼干/1000g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 22.90, 1641, 0, 468, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (621, 207, '苏打饼干/250g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 7.90, 443, 0, 308, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (622, 208, '杏仁/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 32.90, 1794, 0, 517, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (623, 208, '杏仁/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 49.90, 734, 0, 345, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (624, 208, '杏仁/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 19.90, 654, 0, 728, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (625, 209, '芝麻糖/300g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 13.90, 773, 0, 486, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (626, 209, '芝麻糖/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 21.90, 1695, 0, 331, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (627, 209, '芝麻糖/150g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 7.90, 1778, 0, 186, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (628, 210, '菠萝干/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 15.90, 1796, 0, 331, 1, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (629, 210, '菠萝干/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 32.90, 637, 0, 294, 2, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (630, 210, '菠萝干/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 8.90, 366, 0, 599, 3, '2026-06-03 23:33:19', '2026-06-03 23:33:19'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (631, 211, '菠萝干/200g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 15.90, 1085, 0, 520, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (632, 211, '菠萝干/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 32.90, 541, 0, 690, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (633, 211, '菠萝干/100g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 8.90, 1017, 0, 865, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (634, 212, '花生糖/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 14.90, 1647, 0, 289, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (635, 212, '花生糖/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 22.90, 1757, 0, 939, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (636, 212, '花生糖/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 8.90, 190, 0, 596, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (637, 213, '香辣鸡翅/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 29.90, 276, 0, 664, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (638, 213, '香辣鸡翅/400g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 49.90, 744, 0, 898, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (639, 213, '香辣鸡翅/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 18.90, 305, 0, 887, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (640, 214, '花生糖/300g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 14.90, 542, 0, 346, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (641, 214, '花生糖/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 22.90, 1249, 0, 754, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (642, 214, '花生糖/150g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 8.90, 1727, 0, 619, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (643, 215, '腊肉/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 59.90, 1554, 0, 381, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (644, 215, '腊肉/1000g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 109.90, 1158, 0, 286, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (645, 215, '腊肉/250g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 32.90, 313, 0, 101, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (646, 216, '鸭掌/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 25.90, 826, 0, 204, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (647, 216, '鸭掌/400g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 45.90, 708, 0, 656, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (648, 216, '鸭掌/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 15.90, 258, 0, 379, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (649, 217, '香酥蚕豆/300g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 10.90, 455, 0, 176, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (650, 217, '香酥蚕豆/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 16.90, 1926, 0, 691, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (651, 217, '香酥蚕豆/150g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 6.90, 1957, 0, 803, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (652, 218, '墨鱼仔/200g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 22.90, 1778, 0, 420, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (653, 218, '墨鱼仔/400g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 39.90, 279, 0, 538, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (654, 218, '墨鱼仔/100g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 13.90, 1013, 0, 271, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (655, 219, '鱼豆腐/300g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 15.90, 655, 0, 699, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (656, 219, '鱼豆腐/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 23.90, 1228, 0, 876, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (657, 219, '鱼豆腐/150g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 9.90, 1620, 0, 806, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (658, 220, '苹果干/200g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 14.90, 992, 0, 566, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (659, 220, '苹果干/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 29.90, 1622, 0, 706, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (660, 220, '苹果干/100g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 8.90, 409, 0, 825, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (661, 221, '杏仁/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 32.90, 1344, 0, 658, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (662, 221, '杏仁/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 49.90, 1196, 0, 243, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (663, 221, '杏仁/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 19.90, 255, 0, 335, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (664, 222, '鸡爪/300g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 22.90, 1191, 0, 568, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (665, 222, '鸡爪/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 35.90, 1384, 0, 582, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (666, 222, '鸡爪/150g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 13.90, 1109, 0, 711, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (667, 223, '绿茶/500ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 19.90, 513, 0, 163, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (668, 223, '绿茶/1L', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1128, 0, 917, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (669, 223, '绿茶/300ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 18.90, 945, 0, 288, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (670, 224, '青豆/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 14.90, 1021, 0, 208, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (671, 224, '青豆/1000g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 24.90, 1885, 0, 494, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (672, 224, '青豆/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 645, 0, 205, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (673, 225, '雪碧/330ml*6', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 22.90, 995, 0, 194, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (674, 225, '雪碧/500ml*6', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 28.90, 1069, 0, 774, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (675, 225, '雪碧/1.5L*2', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 15.90, 194, 0, 185, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (676, 226, '山楂条/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 10.90, 406, 0, 928, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (677, 226, '山楂条/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 16.90, 1221, 0, 156, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (678, 226, '山楂条/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 5.90, 1421, 0, 655, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (679, 227, '瑞士卷/300g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 18.90, 1309, 0, 526, 1, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (680, 227, '瑞士卷/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 29.90, 1837, 0, 866, 2, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (681, 227, '瑞士卷/150g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 10.90, 1865, 0, 492, 3, '2026-06-03 23:33:20', '2026-06-03 23:33:20'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (682, 228, '卤蛋/10枚', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 15.90, 523, 0, 413, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (683, 228, '卤蛋/20枚', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 25.90, 1576, 0, 658, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (684, 228, '卤蛋/5枚', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 9.90, 483, 0, 537, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (685, 229, '奶茶/500ml*6', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 25.90, 787, 0, 764, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (686, 229, '奶茶/1L', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 19.90, 747, 0, 973, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (687, 229, '奶茶/300ml*6', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 22.90, 1703, 0, 377, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (688, 230, '瑞士卷/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 18.90, 983, 0, 996, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (689, 230, '瑞士卷/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 29.90, 1759, 0, 809, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (690, 230, '瑞士卷/150g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 10.90, 1349, 0, 607, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (691, 231, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 22.90, 1209, 0, 468, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (692, 231, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 45.90, 1247, 0, 675, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (693, 231, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 14.90, 1657, 0, 491, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (694, 232, '花生糖/300g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 14.90, 633, 0, 806, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (695, 232, '花生糖/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 22.90, 898, 0, 752, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (696, 232, '花生糖/150g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 8.90, 273, 0, 836, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (697, 233, '香蕉片/200g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 12.90, 1091, 0, 609, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (698, 233, '香蕉片/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 25.90, 1641, 0, 714, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (699, 233, '香蕉片/100g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 7.90, 1458, 0, 513, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (700, 234, '原味夏威夷果/500g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 39.90, 178, 0, 147, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (701, 234, '原味夏威夷果/250g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 59.90, 1184, 0, 429, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (702, 234, '原味夏威夷果/1000g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 89.90, 267, 0, 901, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (703, 235, '苏打饼干/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 12.90, 1484, 0, 146, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (704, 235, '苏打饼干/1000g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 22.90, 1261, 0, 734, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (705, 235, '苏打饼干/250g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 7.90, 231, 0, 475, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (706, 236, '怪味胡豆/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 12.90, 1666, 0, 512, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (707, 236, '怪味胡豆/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 18.90, 1956, 0, 768, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (708, 236, '怪味胡豆/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 8.90, 265, 0, 137, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (709, 237, '柠檬干/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 12.90, 380, 0, 296, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (710, 237, '柠檬干/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 22.90, 218, 0, 272, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (711, 237, '柠檬干/50g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 6.90, 1853, 0, 886, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (712, 238, '牛奶/250ml*12', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 39.90, 1017, 0, 737, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (713, 238, '牛奶/500ml*6', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 35.90, 1372, 0, 413, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (714, 238, '牛奶/1L*2', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 22.90, 201, 0, 349, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (715, 239, '卤牛肉/200g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 49.90, 1603, 0, 755, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (716, 239, '卤牛肉/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 109.90, 1474, 0, 902, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (717, 239, '卤牛肉/100g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 28.90, 696, 0, 636, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (718, 240, '红茶/500ml*6', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 19.90, 636, 0, 630, 1, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (719, 240, '红茶/1L', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 580, 0, 846, 2, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (720, 240, '红茶/300ml*6', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 18.90, 989, 0, 693, 3, '2026-06-03 23:33:21', '2026-06-03 23:33:21'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (721, 241, '功能饮料/250ml*6', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 29.90, 273, 0, 378, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (722, 241, '功能饮料/500ml*6', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 39.90, 696, 0, 496, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (723, 241, '功能饮料/1L', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 18.90, 448, 0, 523, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (724, 242, '面包/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 15.90, 562, 0, 926, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (725, 242, '面包/1000g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 27.90, 1503, 0, 919, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (726, 242, '面包/250g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 8.90, 790, 0, 938, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (727, 243, '可乐/330ml*6', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 22.90, 669, 0, 457, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (728, 243, '可乐/500ml*6', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 28.90, 1873, 0, 743, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (729, 243, '可乐/1.5L*2', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 15.90, 1314, 0, 806, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (730, 244, '五香鸭脖/300g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 25.90, 1521, 0, 306, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (731, 244, '五香鸭脖/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 39.90, 665, 0, 570, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (732, 244, '五香鸭脖/150g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 15.90, 194, 0, 319, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (733, 245, '碧根果/250g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 35.90, 1203, 0, 969, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (734, 245, '碧根果/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 59.90, 331, 0, 570, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (735, 245, '碧根果/1000g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 99.90, 383, 0, 936, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (736, 246, '麻花/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 12.90, 600, 0, 321, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (737, 246, '麻花/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 19.90, 653, 0, 994, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (738, 246, '麻花/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 6.90, 1408, 0, 522, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (739, 247, '椰子水/500ml*6', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 35.90, 411, 0, 223, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (740, 247, '椰子水/1L', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 19.90, 1389, 0, 939, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (741, 247, '椰子水/330ml*6', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 25.90, 1201, 0, 253, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (742, 248, '香辣小鱼干/200g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 15.90, 1278, 0, 782, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (743, 248, '香辣小鱼干/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 32.90, 1235, 0, 608, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (744, 248, '香辣小鱼干/100g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 9.90, 664, 0, 840, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (745, 249, '巧克力豆/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 18.90, 489, 0, 372, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (746, 249, '巧克力豆/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 39.90, 171, 0, 884, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (747, 249, '巧克力豆/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 9.90, 1842, 0, 473, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (748, 250, '草莓干/100g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 18.90, 953, 0, 582, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (749, 250, '草莓干/200g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 32.90, 850, 0, 350, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (750, 250, '草莓干/500g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 69.90, 121, 0, 960, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (751, 251, '黑巧克力85%/100g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 29.90, 1360, 0, 614, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (752, 251, '黑巧克力85%/200g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 49.90, 1122, 0, 388, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (753, 251, '黑巧克力85%/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 109.90, 1198, 0, 179, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (754, 252, '山楂片/300g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 9.90, 384, 0, 718, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (755, 252, '山楂片/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 14.90, 1501, 0, 715, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (756, 252, '山楂片/150g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 5.90, 1881, 0, 657, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (757, 253, '棉花糖/200g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 11.90, 1020, 0, 990, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (758, 253, '棉花糖/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 22.90, 325, 0, 372, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (759, 253, '棉花糖/100g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 6.90, 684, 0, 700, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (760, 254, '杨梅干/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 17.90, 540, 0, 466, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (761, 254, '杨梅干/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 35.90, 1527, 0, 739, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (762, 254, '杨梅干/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 9.90, 737, 0, 991, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (763, 255, '松露巧克力/200g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 35.90, 730, 0, 728, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (764, 255, '松露巧克力/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 79.90, 1310, 0, 810, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (765, 255, '松露巧克力/100g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 19.90, 335, 0, 451, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (766, 256, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 22.90, 700, 0, 649, 1, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (767, 256, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 45.90, 1356, 0, 802, 2, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (768, 256, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 14.90, 1157, 0, 498, 3, '2026-06-03 23:33:22', '2026-06-03 23:33:22'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (769, 257, '棒棒糖/20支', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 15.90, 468, 0, 862, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (770, 257, '棒棒糖/50支', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 32.90, 1429, 0, 916, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (771, 257, '棒棒糖/10支', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 8.90, 1355, 0, 161, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (772, 258, '每日坚果/30包', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 99.90, 1983, 0, 527, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (773, 258, '每日坚果/15包', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 55.90, 1437, 0, 884, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (774, 258, '每日坚果/7包', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 29.90, 1003, 0, 735, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (775, 259, '陈皮/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 15.90, 294, 0, 319, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (776, 259, '陈皮/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 32.90, 1663, 0, 466, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (777, 259, '陈皮/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 8.90, 1818, 0, 975, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (778, 260, '杏仁/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 32.90, 1450, 0, 951, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (779, 260, '杏仁/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 49.90, 1669, 0, 135, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (780, 260, '杏仁/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 19.90, 1230, 0, 641, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (781, 261, '手撕牛肉/200g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 45.90, 793, 0, 195, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (782, 261, '手撕牛肉/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 99.90, 881, 0, 166, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (783, 261, '手撕牛肉/100g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 25.90, 1661, 0, 146, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (784, 262, '草莓味软糖/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 12.90, 1595, 0, 567, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (785, 262, '草莓味软糖/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 25.90, 504, 0, 881, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (786, 262, '草莓味软糖/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 7.90, 267, 0, 268, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (787, 263, '酱板鸭/半只', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 39.90, 904, 0, 767, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (788, 263, '酱板鸭/整只', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 69.90, 1271, 0, 659, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (789, 263, '酱板鸭/1/4只', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 22.90, 1843, 0, 699, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (790, 264, '无花果干/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 19.90, 367, 0, 301, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (791, 264, '无花果干/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 39.90, 156, 0, 244, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (792, 264, '无花果干/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 10.90, 1577, 0, 275, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (793, 265, '蛋黄酥/6枚', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 25.90, 142, 0, 339, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (794, 265, '蛋黄酥/12枚', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 45.90, 684, 0, 326, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (795, 265, '蛋黄酥/4枚', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 18.90, 1338, 0, 312, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (796, 266, '芒果干/100g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 12.90, 1115, 0, 987, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (797, 266, '芒果干/200g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 22.90, 941, 0, 263, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (798, 266, '芒果干/500g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 45.90, 1327, 0, 160, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (799, 267, '酸奶/200g*12', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 35.90, 937, 0, 534, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (800, 267, '酸奶/100g*16', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 29.90, 589, 0, 717, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (801, 267, '酸奶/500g*3', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 25.90, 1351, 0, 288, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (802, 268, '水果硬糖/300g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 9.90, 1526, 0, 961, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (803, 268, '水果硬糖/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 14.90, 1748, 0, 800, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (804, 268, '水果硬糖/150g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 5.90, 1756, 0, 675, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (805, 269, '酱板鸭/半只', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 39.90, 435, 0, 138, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (806, 269, '酱板鸭/整只', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 69.90, 1669, 0, 968, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (807, 269, '酱板鸭/1/4只', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 22.90, 1405, 0, 703, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (808, 270, '柠檬干/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 12.90, 1669, 0, 618, 1, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (809, 270, '柠檬干/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 22.90, 1100, 0, 630, 2, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (810, 270, '柠檬干/50g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 6.90, 1040, 0, 517, 3, '2026-06-03 23:33:23', '2026-06-03 23:33:23'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (811, 271, '草莓味软糖/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 12.90, 1156, 0, 556, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (812, 271, '草莓味软糖/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 25.90, 1424, 0, 818, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (813, 271, '草莓味软糖/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 7.90, 1887, 0, 249, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (814, 272, '琥珀核桃/250g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 22.90, 463, 0, 409, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (815, 272, '琥珀核桃/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 35.90, 371, 0, 602, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (816, 272, '琥珀核桃/150g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 15.90, 1620, 0, 982, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (817, 273, '奶茶/500ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 25.90, 1265, 0, 494, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (818, 273, '奶茶/1L', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 19.90, 1213, 0, 794, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (819, 273, '奶茶/300ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 661, 0, 772, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (820, 274, '烤鱼片/200g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 25.90, 1666, 0, 445, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (821, 274, '烤鱼片/400g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 45.90, 1259, 0, 162, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (822, 274, '烤鱼片/100g', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 15.90, 1220, 0, 360, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (823, 275, '凉茶/500ml*6', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 24.90, 1238, 0, 771, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (824, 275, '凉茶/1L', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 15.90, 1341, 0, 157, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (825, 275, '凉茶/310ml*6', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 19.90, 1386, 0, 179, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (826, 276, '蛋糕/6个装', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 29.90, 915, 0, 395, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (827, 276, '蛋糕/12个装', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 52.90, 1311, 0, 258, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (828, 276, '蛋糕/3个装', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 16.90, 1016, 0, 141, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (829, 277, '腊肉/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 59.90, 1516, 0, 339, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (830, 277, '腊肉/1000g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 109.90, 185, 0, 893, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (831, 277, '腊肉/250g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 32.90, 1225, 0, 646, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (832, 278, '奶油味腰果/200g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 29.90, 1245, 0, 350, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (833, 278, '奶油味腰果/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 49.90, 1204, 0, 447, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (834, 278, '奶油味腰果/1000g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 79.90, 1119, 0, 822, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (835, 279, '巧克力豆/200g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 18.90, 707, 0, 533, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (836, 279, '巧克力豆/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 39.90, 1480, 0, 541, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (837, 279, '巧克力豆/100g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 9.90, 904, 0, 866, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (838, 280, '原味瓜子/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 12.90, 1890, 0, 621, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (839, 280, '原味瓜子/1000g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 19.90, 121, 0, 221, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (840, 280, '原味瓜子/200g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 8.90, 1636, 0, 457, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (841, 281, '花生糖/300g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 14.90, 588, 0, 353, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (842, 281, '花生糖/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 22.90, 330, 0, 996, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (843, 281, '花生糖/150g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 8.90, 1906, 0, 194, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (844, 282, '鸭掌/200g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 25.90, 406, 0, 331, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (845, 282, '鸭掌/400g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 45.90, 894, 0, 363, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (846, 282, '鸭掌/100g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 15.90, 447, 0, 930, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (847, 283, '腊肠/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 49.90, 1892, 0, 512, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (848, 283, '腊肠/1000g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 89.90, 465, 0, 485, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (849, 283, '腊肠/250g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 28.90, 1622, 0, 276, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (850, 284, '豆浆/250ml*12', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 25.90, 1010, 0, 608, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (851, 284, '豆浆/500ml*6', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 22.90, 743, 0, 423, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (852, 284, '豆浆/1L', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 12.90, 1699, 0, 842, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (853, 285, '蜂蜜核桃仁/250g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 25.90, 403, 0, 457, 1, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (854, 285, '蜂蜜核桃仁/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 39.90, 1070, 0, 999, 2, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (855, 285, '蜂蜜核桃仁/100g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 15.90, 1462, 0, 524, 3, '2026-06-03 23:33:24', '2026-06-03 23:33:24'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (856, 286, '菠萝干/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 15.90, 973, 0, 955, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (857, 286, '菠萝干/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 32.90, 1213, 0, 141, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (858, 286, '菠萝干/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 8.90, 1644, 0, 437, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (859, 287, '咖啡/250ml*6', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 29.90, 1512, 0, 139, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (860, 287, '咖啡/500ml*6', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 45.90, 1960, 0, 629, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (861, 287, '咖啡/1L', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 22.90, 993, 0, 492, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (862, 288, '五香鸭脖/300g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 25.90, 549, 0, 350, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (863, 288, '五香鸭脖/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 39.90, 1883, 0, 909, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (864, 288, '五香鸭脖/150g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 15.90, 1533, 0, 300, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (865, 289, '酱板鸭/半只', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 39.90, 1187, 0, 380, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (866, 289, '酱板鸭/整只', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 69.90, 265, 0, 941, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (867, 289, '酱板鸭/1/4只', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 22.90, 1598, 0, 784, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (868, 290, '混合坚果/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 69.90, 931, 0, 556, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (869, 290, '混合坚果/750g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 89.90, 431, 0, 605, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (870, 290, '混合坚果/300g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 45.90, 1410, 0, 907, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (871, 291, '青豆/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 14.90, 1872, 0, 806, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (872, 291, '青豆/1000g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 24.90, 314, 0, 307, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (873, 291, '青豆/200g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 8.90, 774, 0, 417, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (874, 292, '杨梅干/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 17.90, 850, 0, 738, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (875, 292, '杨梅干/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 35.90, 1727, 0, 255, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (876, 292, '杨梅干/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 9.90, 550, 0, 218, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (877, 293, '苏打水/500ml*6', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 22.90, 977, 0, 871, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (878, 293, '苏打水/1L', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 12.90, 1486, 0, 740, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (879, 293, '苏打水/330ml*6', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 16.90, 1507, 0, 971, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (880, 294, '面包/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1541, 0, 862, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (881, 294, '面包/1000g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 27.90, 1918, 0, 156, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (882, 294, '面包/250g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 1733, 0, 633, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (883, 295, '水果硬糖/300g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 9.90, 1988, 0, 822, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (884, 295, '水果硬糖/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 14.90, 622, 0, 958, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (885, 295, '水果硬糖/150g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 5.90, 220, 0, 175, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (886, 296, '香蕉片/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 12.90, 1363, 0, 341, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (887, 296, '香蕉片/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 25.90, 1390, 0, 529, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (888, 296, '香蕉片/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 7.90, 1103, 0, 323, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (889, 297, '菠萝干/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 931, 0, 822, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (890, 297, '菠萝干/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 32.90, 1294, 0, 359, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (891, 297, '菠萝干/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 624, 0, 712, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (892, 298, '蜜汁猪肉脯/250g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 29.90, 115, 0, 748, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (893, 298, '蜜汁猪肉脯/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 49.90, 807, 0, 714, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (894, 298, '蜜汁猪肉脯/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 15.90, 646, 0, 993, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (895, 299, '老婆饼/300g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 15.90, 552, 0, 382, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (896, 299, '老婆饼/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 24.90, 1750, 0, 529, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (897, 299, '老婆饼/150g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 8.90, 875, 0, 103, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (898, 300, '南瓜子/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 1970, 0, 446, 1, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (899, 300, '南瓜子/1000g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 25.90, 1322, 0, 774, 2, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (900, 300, '南瓜子/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 9.90, 1594, 0, 330, 3, '2026-06-03 23:33:25', '2026-06-03 23:33:25'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (901, 301, '蜂蜜核桃仁/250g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 25.90, 1976, 0, 518, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (902, 301, '蜂蜜核桃仁/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 39.90, 606, 0, 918, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (903, 301, '蜂蜜核桃仁/100g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 15.90, 1645, 0, 597, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (904, 302, '卤蛋/10枚', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 888, 0, 685, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (905, 302, '卤蛋/20枚', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 25.90, 386, 0, 529, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (906, 302, '卤蛋/5枚', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 9.90, 1973, 0, 929, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (907, 303, '消化饼干/400g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 15.90, 1636, 0, 411, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (908, 303, '消化饼干/800g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 27.90, 168, 0, 448, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (909, 303, '消化饼干/200g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 8.90, 1596, 0, 944, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (910, 304, '五香鸭脖/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 25.90, 943, 0, 753, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (911, 304, '五香鸭脖/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 39.90, 1338, 0, 956, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (912, 304, '五香鸭脖/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 794, 0, 948, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (913, 305, '巴旦木/300g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 29.90, 317, 0, 464, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (914, 305, '巴旦木/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 45.90, 164, 0, 241, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (915, 305, '巴旦木/150g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 18.90, 426, 0, 185, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (916, 306, '手撕牛肉/200g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 45.90, 1478, 0, 226, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (917, 306, '手撕牛肉/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 99.90, 790, 0, 493, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (918, 306, '手撕牛肉/100g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 25.90, 826, 0, 113, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (919, 307, '巧克力豆/200g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 18.90, 1620, 0, 530, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (920, 307, '巧克力豆/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 39.90, 1156, 0, 964, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (921, 307, '巧克力豆/100g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 9.90, 244, 0, 436, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (922, 308, '太妃糖/200g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 15.90, 1506, 0, 644, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (923, 308, '太妃糖/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 32.90, 1180, 0, 715, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (924, 308, '太妃糖/100g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 8.90, 625, 0, 120, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (925, 309, '威化饼干/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 1258, 0, 952, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (926, 309, '威化饼干/400g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 28.90, 749, 0, 925, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (927, 309, '威化饼干/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 556, 0, 583, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (928, 310, '无花果干/200g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 19.90, 365, 0, 693, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (929, 310, '无花果干/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 39.90, 1467, 0, 414, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (930, 310, '无花果干/100g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 10.90, 1525, 0, 534, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (931, 311, '黑巧克力85%/100g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 29.90, 1155, 0, 945, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (932, 311, '黑巧克力85%/200g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 49.90, 207, 0, 764, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (933, 311, '黑巧克力85%/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 109.90, 819, 0, 279, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (934, 312, '碧根果/250g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 35.90, 1325, 0, 117, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (935, 312, '碧根果/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 59.90, 1039, 0, 270, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (936, 312, '碧根果/1000g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 99.90, 1250, 0, 620, 3, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (937, 313, '蔓越莓干/200g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 18.90, 1037, 0, 747, 1, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (938, 313, '蔓越莓干/500g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 37.90, 1631, 0, 990, 2, '2026-06-03 23:33:26', '2026-06-03 23:33:26'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (939, 313, '蔓越莓干/100g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 9.90, 401, 0, 611, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (940, 314, '夹心巧克力/150g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 25.90, 1849, 0, 869, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (941, 314, '夹心巧克力/300g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 45.90, 738, 0, 361, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (942, 314, '夹心巧克力/500g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 69.90, 166, 0, 779, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (943, 315, '云片糕/300g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 14.90, 407, 0, 663, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (944, 315, '云片糕/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 22.90, 1894, 0, 774, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (945, 315, '云片糕/150g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 7.90, 147, 0, 178, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (946, 316, '奶油味腰果/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 29.90, 1220, 0, 699, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (947, 316, '奶油味腰果/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 49.90, 1212, 0, 814, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (948, 316, '奶油味腰果/1000g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 79.90, 1474, 0, 431, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (949, 317, '麻花/300g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 12.90, 515, 0, 677, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (950, 317, '麻花/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 19.90, 1139, 0, 960, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (951, 317, '麻花/150g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 6.90, 1049, 0, 741, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (952, 318, '薄荷糖/200g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 9.90, 1499, 0, 676, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (953, 318, '薄荷糖/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 19.90, 620, 0, 936, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (954, 318, '薄荷糖/100g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 5.90, 330, 0, 338, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (955, 319, '五香鸭脖/300g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 25.90, 1652, 0, 799, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (956, 319, '五香鸭脖/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 39.90, 113, 0, 536, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (957, 319, '五香鸭脖/150g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 15.90, 763, 0, 203, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (958, 320, '凉茶/500ml*6', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 24.90, 894, 0, 444, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (959, 320, '凉茶/1L', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 15.90, 1143, 0, 679, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (960, 320, '凉茶/310ml*6', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 19.90, 1602, 0, 674, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (961, 321, '原味夏威夷果/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 39.90, 1096, 0, 307, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (962, 321, '原味夏威夷果/250g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 59.90, 323, 0, 274, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (963, 321, '原味夏威夷果/1000g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 89.90, 954, 0, 576, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (964, 322, '墨鱼仔/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 496, 0, 794, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (965, 322, '墨鱼仔/400g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 39.90, 782, 0, 100, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (966, 322, '墨鱼仔/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 13.90, 1756, 0, 256, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (967, 323, '云片糕/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 14.90, 870, 0, 174, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (968, 323, '云片糕/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 248, 0, 553, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (969, 323, '云片糕/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 7.90, 472, 0, 197, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (970, 324, '曲奇饼干/300g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 22.90, 237, 0, 361, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (971, 324, '曲奇饼干/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 35.90, 1264, 0, 646, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (972, 324, '曲奇饼干/150g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 12.90, 1151, 0, 924, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (973, 325, '鸭掌/200g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 25.90, 494, 0, 479, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (974, 325, '鸭掌/400g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 45.90, 1593, 0, 567, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (975, 325, '鸭掌/100g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 15.90, 1417, 0, 188, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (976, 326, '奶茶/500ml*6', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 25.90, 1217, 0, 660, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (977, 326, '奶茶/1L', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 19.90, 185, 0, 911, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (978, 326, '奶茶/300ml*6', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 22.90, 237, 0, 787, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (979, 327, '蜜汁猪肉脯/250g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 29.90, 1351, 0, 336, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (980, 327, '蜜汁猪肉脯/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 49.90, 509, 0, 959, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (981, 327, '蜜汁猪肉脯/100g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 15.90, 1526, 0, 110, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (982, 328, '老婆饼/300g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 15.90, 298, 0, 313, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (983, 328, '老婆饼/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 24.90, 790, 0, 939, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (984, 328, '老婆饼/150g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 8.90, 119, 0, 304, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (985, 329, '奶茶/500ml*6', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 25.90, 791, 0, 983, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (986, 329, '奶茶/1L', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 19.90, 1719, 0, 418, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (987, 329, '奶茶/300ml*6', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 22.90, 1835, 0, 851, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (988, 330, '果脯/300g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 15.90, 186, 0, 798, 1, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (989, 330, '果脯/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 24.90, 932, 0, 211, 2, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (990, 330, '果脯/150g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 8.90, 1530, 0, 342, 3, '2026-06-03 23:33:27', '2026-06-03 23:33:27'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (991, 331, '跳跳糖/30包', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 12.90, 1494, 0, 486, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (992, 331, '跳跳糖/50包', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 18.90, 551, 0, 351, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (993, 331, '跳跳糖/10包', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 5.90, 117, 0, 112, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (994, 332, '杏干/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 18.90, 210, 0, 143, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (995, 332, '杏干/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 39.90, 1718, 0, 385, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (996, 332, '杏干/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 10.90, 1832, 0, 736, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (997, 333, '面包/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 15.90, 1522, 0, 622, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (998, 333, '面包/1000g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 27.90, 1175, 0, 702, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (999, 333, '面包/250g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 8.90, 1127, 0, 996, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1000, 334, '芝麻糖/300g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 13.90, 897, 0, 707, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1001, 334, '芝麻糖/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 21.90, 1501, 0, 920, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1002, 334, '芝麻糖/150g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 7.90, 1335, 0, 711, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1003, 335, '可乐/330ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 22.90, 1699, 0, 957, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1004, 335, '可乐/500ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 28.90, 1374, 0, 432, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1005, 335, '可乐/1.5L*2', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 502, 0, 670, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1006, 336, '原味夏威夷果/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 39.90, 232, 0, 753, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1007, 336, '原味夏威夷果/250g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 59.90, 1136, 0, 728, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1008, 336, '原味夏威夷果/1000g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 89.90, 1631, 0, 399, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1009, 337, '卤蛋/10枚', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 15.90, 1313, 0, 687, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1010, 337, '卤蛋/20枚', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 25.90, 1995, 0, 631, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1011, 337, '卤蛋/5枚', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 9.90, 1748, 0, 610, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1012, 338, '香酥蚕豆/300g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 10.90, 1963, 0, 247, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1013, 338, '香酥蚕豆/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 16.90, 1039, 0, 627, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1014, 338, '香酥蚕豆/150g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 6.90, 1818, 0, 204, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1015, 339, '面包/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1696, 0, 472, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1016, 339, '面包/1000g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 27.90, 444, 0, 381, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1017, 339, '面包/250g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 953, 0, 389, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1018, 340, '蛋卷/300g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 19.90, 376, 0, 241, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1019, 340, '蛋卷/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 29.90, 1359, 0, 1000, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1020, 340, '蛋卷/150g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 10.90, 732, 0, 830, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1021, 341, '绿豆糕/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 19.90, 1307, 0, 765, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1022, 341, '绿豆糕/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 29.90, 1947, 0, 706, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1023, 341, '绿豆糕/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 11.90, 839, 0, 445, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1024, 342, '桃干/200g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 16.90, 866, 0, 377, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1025, 342, '桃干/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 35.90, 1290, 0, 240, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1026, 342, '桃干/100g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 9.90, 1284, 0, 911, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1027, 343, '凤梨酥/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 29.90, 1636, 0, 237, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1028, 343, '凤梨酥/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 45.90, 591, 0, 362, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1029, 343, '凤梨酥/150g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 16.90, 1296, 0, 985, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1030, 344, '酒心巧克力/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 29.90, 948, 0, 573, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1031, 344, '酒心巧克力/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 52.90, 1117, 0, 484, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1032, 344, '酒心巧克力/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 79.90, 1462, 0, 148, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1033, 345, '桃干/200g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 16.90, 1879, 0, 548, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1034, 345, '桃干/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 35.90, 421, 0, 206, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1035, 345, '桃干/100g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 9.90, 1770, 0, 746, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1036, 346, '棉花糖/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 11.90, 1281, 0, 379, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1037, 346, '棉花糖/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 22.90, 1951, 0, 459, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1038, 346, '棉花糖/100g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 6.90, 1587, 0, 458, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1039, 347, 'QQ糖/200g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 10.90, 1999, 0, 864, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1040, 347, 'QQ糖/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 19.90, 1327, 0, 828, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1041, 347, 'QQ糖/100g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 5.90, 296, 0, 248, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1042, 348, '榛子/250g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 39.90, 1640, 0, 527, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1043, 348, '榛子/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 69.90, 1125, 0, 578, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1044, 348, '榛子/150g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 25.90, 363, 0, 943, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1045, 349, '椰枣/200g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 22.90, 1701, 0, 311, 1, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1046, 349, '椰枣/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 45.90, 1342, 0, 641, 2, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1047, 349, '椰枣/100g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 12.90, 1670, 0, 573, 3, '2026-06-03 23:33:28', '2026-06-03 23:33:28'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1048, 350, '肉松/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 25.90, 395, 0, 846, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1049, 350, '肉松/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 49.90, 1372, 0, 377, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1050, 350, '肉松/100g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 1671, 0, 182, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1051, 351, '蛋卷/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 19.90, 1744, 0, 109, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1052, 351, '蛋卷/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 29.90, 175, 0, 807, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1053, 351, '蛋卷/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 10.90, 1118, 0, 212, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1054, 352, '草莓味软糖/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 12.90, 1478, 0, 116, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1055, 352, '草莓味软糖/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 25.90, 1657, 0, 408, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1056, 352, '草莓味软糖/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 7.90, 523, 0, 421, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1057, 353, '苹果汁/1L', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 18.90, 992, 0, 527, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1058, 353, '苹果汁/500ml*6', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 33.90, 610, 0, 706, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1059, 353, '苹果汁/250ml*12', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 39.90, 964, 0, 946, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1060, 354, '葡萄汁/1L', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 22.90, 250, 0, 113, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1061, 354, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 39.90, 391, 0, 253, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1062, 354, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 45.90, 415, 0, 874, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1063, 355, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 22.90, 1173, 0, 885, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1064, 355, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 45.90, 724, 0, 638, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1065, 355, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 14.90, 1082, 0, 809, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1066, 356, '酸梅汤/500ml*6', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 22.90, 1171, 0, 757, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1067, 356, '酸梅汤/1L', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 14.90, 1281, 0, 331, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1068, 356, '酸梅汤/300ml*6', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 17.90, 1307, 0, 604, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1069, 357, '椰枣/200g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 22.90, 177, 0, 912, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1070, 357, '椰枣/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 45.90, 1936, 0, 423, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1071, 357, '椰枣/100g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 12.90, 1194, 0, 245, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1072, 358, '盐焗开心果/300g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 49.90, 1090, 0, 598, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1073, 358, '盐焗开心果/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 69.90, 1118, 0, 199, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1074, 358, '盐焗开心果/150g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 29.90, 367, 0, 549, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1075, 359, '蛋黄酥/6枚', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 25.90, 487, 0, 294, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1076, 359, '蛋黄酥/12枚', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 45.90, 1126, 0, 146, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1077, 359, '蛋黄酥/4枚', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 18.90, 424, 0, 368, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1078, 360, '酥糖/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 245, 0, 409, 1, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1079, 360, '酥糖/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 24.90, 742, 0, 311, 2, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1080, 360, '酥糖/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 1386, 0, 401, 3, '2026-06-03 23:33:29', '2026-06-03 23:33:29'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1081, 361, '黑巧克力85%/100g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 29.90, 1930, 0, 295, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1082, 361, '黑巧克力85%/200g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 49.90, 687, 0, 663, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1083, 361, '黑巧克力85%/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 109.90, 1149, 0, 861, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1084, 362, '酱板鸭/半只', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 39.90, 395, 0, 351, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1085, 362, '酱板鸭/整只', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 69.90, 616, 0, 541, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1086, 362, '酱板鸭/1/4只', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 429, 0, 379, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1087, 363, '柠檬干/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 12.90, 1242, 0, 555, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1088, 363, '柠檬干/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 22.90, 1603, 0, 347, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1089, 363, '柠檬干/50g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 6.90, 1428, 0, 326, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1090, 364, '云片糕/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 14.90, 351, 0, 916, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1091, 364, '云片糕/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 22.90, 662, 0, 978, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1092, 364, '云片糕/150g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 7.90, 468, 0, 312, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1093, 365, '鸭掌/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 25.90, 314, 0, 825, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1094, 365, '鸭掌/400g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 45.90, 701, 0, 850, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1095, 365, '鸭掌/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1740, 0, 859, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1096, 366, '杨梅干/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 17.90, 1179, 0, 891, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1097, 366, '杨梅干/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 35.90, 1931, 0, 917, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1098, 366, '杨梅干/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 9.90, 1698, 0, 720, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1099, 367, '山楂片/300g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 9.90, 676, 0, 983, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1100, 367, '山楂片/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 14.90, 1121, 0, 562, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1101, 367, '山楂片/150g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 5.90, 375, 0, 261, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1102, 368, '香蕉片/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 12.90, 1569, 0, 761, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1103, 368, '香蕉片/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 25.90, 297, 0, 576, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1104, 368, '香蕉片/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 7.90, 1207, 0, 265, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1105, 369, '花生糖/300g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 14.90, 1072, 0, 787, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1106, 369, '花生糖/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 22.90, 1293, 0, 949, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1107, 369, '花生糖/150g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 8.90, 1271, 0, 852, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1108, 370, '香辣小鱼干/200g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 15.90, 1074, 0, 906, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1109, 370, '香辣小鱼干/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 32.90, 613, 0, 331, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1110, 370, '香辣小鱼干/100g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 9.90, 1427, 0, 131, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1111, 371, '怪味胡豆/300g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 12.90, 1480, 0, 244, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1112, 371, '怪味胡豆/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 18.90, 615, 0, 580, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1113, 371, '怪味胡豆/150g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 8.90, 367, 0, 391, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1114, 372, '蛋卷/300g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 19.90, 427, 0, 958, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1115, 372, '蛋卷/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 29.90, 1998, 0, 909, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1116, 372, '蛋卷/150g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 10.90, 441, 0, 696, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1117, 373, '蛋黄派/300g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 15.90, 279, 0, 574, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1118, 373, '蛋黄派/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 24.90, 840, 0, 743, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1119, 373, '蛋黄派/150g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 8.90, 1484, 0, 594, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1120, 374, '松露巧克力/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 35.90, 556, 0, 304, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1121, 374, '松露巧克力/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 79.90, 292, 0, 595, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1122, 374, '松露巧克力/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 19.90, 1968, 0, 978, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1123, 375, '无花果干/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 19.90, 710, 0, 358, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1124, 375, '无花果干/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 39.90, 121, 0, 676, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1125, 375, '无花果干/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 10.90, 1167, 0, 317, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1126, 376, '腊肠/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 49.90, 616, 0, 662, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1127, 376, '腊肠/1000g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 89.90, 1488, 0, 303, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1128, 376, '腊肠/250g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 28.90, 1051, 0, 134, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1129, 377, '红茶/500ml*6', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 19.90, 1455, 0, 467, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1130, 377, '红茶/1L', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 15.90, 1623, 0, 373, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1131, 377, '红茶/300ml*6', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 18.90, 1338, 0, 250, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1132, 378, '吐司/300g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 12.90, 1035, 0, 614, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1133, 378, '吐司/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 19.90, 963, 0, 779, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1134, 378, '吐司/150g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 6.90, 1549, 0, 882, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1135, 379, '云片糕/300g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 14.90, 225, 0, 136, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1136, 379, '云片糕/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 22.90, 503, 0, 807, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1137, 379, '云片糕/150g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 7.90, 403, 0, 360, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1138, 380, '橙汁/1L', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 19.90, 1739, 0, 712, 1, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1139, 380, '橙汁/500ml*6', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 35.90, 500, 0, 106, 2, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1140, 380, '橙汁/250ml*12', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 42.90, 1294, 0, 205, 3, '2026-06-03 23:33:30', '2026-06-03 23:33:30'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1141, 381, '苹果干/200g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 14.90, 1884, 0, 526, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1142, 381, '苹果干/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 29.90, 655, 0, 120, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1143, 381, '苹果干/100g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 8.90, 1913, 0, 148, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1144, 382, '咖啡/250ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 29.90, 906, 0, 146, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1145, 382, '咖啡/500ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 45.90, 1315, 0, 569, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1146, 382, '咖啡/1L', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 22.90, 291, 0, 732, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1147, 383, '瑞士卷/300g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 18.90, 241, 0, 533, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1148, 383, '瑞士卷/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 29.90, 1148, 0, 501, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1149, 383, '瑞士卷/150g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 10.90, 1486, 0, 295, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1150, 384, '曲奇饼干/300g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 22.90, 1055, 0, 825, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1151, 384, '曲奇饼干/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 35.90, 1604, 0, 584, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1152, 384, '曲奇饼干/150g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 12.90, 589, 0, 750, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1153, 385, '碧根果/250g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 35.90, 439, 0, 928, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1154, 385, '碧根果/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 59.90, 1577, 0, 311, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1155, 385, '碧根果/1000g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 99.90, 941, 0, 819, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1156, 386, '煎饼/300g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 11.90, 592, 0, 387, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1157, 386, '煎饼/500g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 18.90, 1733, 0, 951, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1158, 386, '煎饼/150g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 6.90, 1234, 0, 774, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1159, 387, '榛子/250g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 39.90, 1777, 0, 814, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1160, 387, '榛子/500g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 69.90, 374, 0, 721, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1161, 387, '榛子/150g', 'https://images.unsplash.com/photo-1528821128474-27f963b062bf?w=400&h=400&fit=crop', 25.90, 745, 0, 697, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1162, 388, '鸡爪/300g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 22.90, 1526, 0, 472, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1163, 388, '鸡爪/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 35.90, 1766, 0, 606, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1164, 388, '鸡爪/150g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 13.90, 369, 0, 248, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1165, 389, '香酥蚕豆/300g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 10.90, 1004, 0, 533, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1166, 389, '香酥蚕豆/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 16.90, 1578, 0, 754, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1167, 389, '香酥蚕豆/150g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 6.90, 1361, 0, 743, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1168, 390, '鸭掌/200g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 25.90, 378, 0, 407, 1, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1169, 390, '鸭掌/400g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 45.90, 681, 0, 963, 2, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1170, 390, '鸭掌/100g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 15.90, 1413, 0, 617, 3, '2026-06-03 23:33:31', '2026-06-03 23:33:31'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1171, 391, '蛋卷/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 19.90, 393, 0, 318, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1172, 391, '蛋卷/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 29.90, 931, 0, 803, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1173, 391, '蛋卷/150g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 10.90, 1934, 0, 675, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1174, 392, '蛋糕/6个装', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 29.90, 342, 0, 360, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1175, 392, '蛋糕/12个装', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 52.90, 165, 0, 194, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1176, 392, '蛋糕/3个装', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 16.90, 161, 0, 830, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1177, 393, '五香鸭脖/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 25.90, 1695, 0, 775, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1178, 393, '五香鸭脖/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 39.90, 1808, 0, 418, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1179, 393, '五香鸭脖/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 1286, 0, 794, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1180, 394, '蜜汁猪肉脯/250g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 29.90, 203, 0, 808, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1181, 394, '蜜汁猪肉脯/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 49.90, 1553, 0, 405, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1182, 394, '蜜汁猪肉脯/100g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 15.90, 459, 0, 572, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1183, 395, '面包/500g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 15.90, 304, 0, 345, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1184, 395, '面包/1000g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 27.90, 919, 0, 235, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1185, 395, '面包/250g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 8.90, 264, 0, 131, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1186, 396, '苏打饼干/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 12.90, 1978, 0, 897, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1187, 396, '苏打饼干/1000g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 22.90, 1922, 0, 1000, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1188, 396, '苏打饼干/250g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 7.90, 1445, 0, 322, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1189, 397, '绿茶/500ml*6', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 19.90, 201, 0, 717, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1190, 397, '绿茶/1L', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 15.90, 1721, 0, 303, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1191, 397, '绿茶/300ml*6', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 18.90, 1461, 0, 611, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1192, 398, '菠萝干/200g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 15.90, 1247, 0, 269, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1193, 398, '菠萝干/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 32.90, 130, 0, 837, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1194, 398, '菠萝干/100g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 8.90, 561, 0, 168, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1195, 399, '蒜香花生/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 9.90, 673, 0, 217, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1196, 399, '蒜香花生/1000g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 16.90, 1675, 0, 272, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1197, 399, '蒜香花生/200g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 5.90, 1386, 0, 436, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1198, 400, '兰花豆/300g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 11.90, 599, 0, 259, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1199, 400, '兰花豆/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 17.90, 567, 0, 775, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1200, 400, '兰花豆/150g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 7.90, 831, 0, 351, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1201, 401, '芒果干/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 12.90, 1747, 0, 749, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1202, 401, '芒果干/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 22.90, 1871, 0, 877, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1203, 401, '芒果干/500g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 45.90, 1687, 0, 441, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1204, 402, '香酥蚕豆/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 10.90, 1155, 0, 177, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1205, 402, '香酥蚕豆/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 16.90, 1583, 0, 166, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1206, 402, '香酥蚕豆/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 6.90, 1464, 0, 493, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1207, 403, '酸奶/200g*12', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 35.90, 1346, 0, 330, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1208, 403, '酸奶/100g*16', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 29.90, 740, 0, 123, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1209, 403, '酸奶/500g*3', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 25.90, 136, 0, 787, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1210, 404, '鸭掌/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 25.90, 1303, 0, 915, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1211, 404, '鸭掌/400g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 45.90, 656, 0, 545, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1212, 404, '鸭掌/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 15.90, 1514, 0, 891, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1213, 405, '煎饼/300g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 11.90, 1930, 0, 697, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1214, 405, '煎饼/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 18.90, 1000, 0, 436, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1215, 405, '煎饼/150g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 6.90, 228, 0, 166, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1216, 406, '巴旦木/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 29.90, 741, 0, 981, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1217, 406, '巴旦木/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 45.90, 1825, 0, 231, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1218, 406, '巴旦木/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 18.90, 196, 0, 793, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1219, 407, '夹心巧克力/150g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 25.90, 1104, 0, 925, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1220, 407, '夹心巧克力/300g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 45.90, 699, 0, 904, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1221, 407, '夹心巧克力/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 69.90, 373, 0, 636, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1222, 408, '煎饼/300g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 11.90, 805, 0, 636, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1223, 408, '煎饼/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 18.90, 1600, 0, 152, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1224, 408, '煎饼/150g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 6.90, 1974, 0, 736, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1225, 409, '巴旦木/300g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 29.90, 1428, 0, 991, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1226, 409, '巴旦木/500g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 45.90, 1898, 0, 932, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1227, 409, '巴旦木/150g', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 18.90, 1445, 0, 858, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1228, 410, '麻花/300g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 12.90, 1871, 0, 122, 1, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1229, 410, '麻花/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 19.90, 957, 0, 293, 2, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1230, 410, '麻花/150g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 6.90, 964, 0, 377, 3, '2026-06-03 23:33:32', '2026-06-03 23:33:32'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1231, 411, '香酥蚕豆/300g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 10.90, 710, 0, 784, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1232, 411, '香酥蚕豆/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 16.90, 1504, 0, 397, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1233, 411, '香酥蚕豆/150g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 6.90, 1423, 0, 625, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1234, 412, '蒜香花生/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 9.90, 1451, 0, 402, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1235, 412, '蒜香花生/1000g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 16.90, 556, 0, 920, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1236, 412, '蒜香花生/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 5.90, 838, 0, 355, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1237, 413, '奶油味腰果/200g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 29.90, 963, 0, 567, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1238, 413, '奶油味腰果/500g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 49.90, 872, 0, 566, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1239, 413, '奶油味腰果/1000g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 79.90, 1280, 0, 813, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1240, 414, '蛋糕/6个装', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 29.90, 1665, 0, 551, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1241, 414, '蛋糕/12个装', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 52.90, 856, 0, 516, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1242, 414, '蛋糕/3个装', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 16.90, 1200, 0, 489, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1243, 415, '云片糕/300g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 14.90, 1918, 0, 413, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1244, 415, '云片糕/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 22.90, 1660, 0, 153, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1245, 415, '云片糕/150g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 7.90, 1042, 0, 277, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1246, 416, '面包/500g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 15.90, 1761, 0, 618, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1247, 416, '面包/1000g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 27.90, 487, 0, 894, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1248, 416, '面包/250g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 8.90, 1934, 0, 899, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1249, 417, '鸡爪/300g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 22.90, 1735, 0, 125, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1250, 417, '鸡爪/500g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 35.90, 1053, 0, 297, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1251, 417, '鸡爪/150g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 13.90, 1634, 0, 294, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1252, 418, '葡萄汁/1L', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 22.90, 1444, 0, 561, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1253, 418, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 39.90, 1530, 0, 792, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1254, 418, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 45.90, 288, 0, 998, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1255, 419, '蛋黄酥/6枚', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 25.90, 1009, 0, 553, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1256, 419, '蛋黄酥/12枚', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 45.90, 825, 0, 175, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1257, 419, '蛋黄酥/4枚', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 18.90, 1782, 0, 341, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1258, 420, '夹心巧克力/150g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 25.90, 1371, 0, 498, 1, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1259, 420, '夹心巧克力/300g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 45.90, 490, 0, 699, 2, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1260, 420, '夹心巧克力/500g', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 69.90, 352, 0, 263, 3, '2026-06-03 23:33:33', '2026-06-03 23:33:33'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1261, 421, '杏仁/300g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 32.90, 1982, 0, 437, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1262, 421, '杏仁/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 49.90, 1671, 0, 953, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1263, 421, '杏仁/150g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 19.90, 1187, 0, 176, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1264, 422, '黑巧克力85%/100g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 29.90, 1322, 0, 430, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1265, 422, '黑巧克力85%/200g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 49.90, 1139, 0, 649, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1266, 422, '黑巧克力85%/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 109.90, 1241, 0, 580, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1267, 423, '五香鸭脖/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 25.90, 1243, 0, 719, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1268, 423, '五香鸭脖/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 39.90, 989, 0, 615, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1269, 423, '五香鸭脖/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 15.90, 1327, 0, 156, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1270, 424, '蛋黄酥/6枚', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 25.90, 663, 0, 228, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1271, 424, '蛋黄酥/12枚', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 45.90, 1852, 0, 288, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1272, 424, '蛋黄酥/4枚', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 18.90, 825, 0, 636, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1273, 425, '面包/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 15.90, 1341, 0, 301, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1274, 425, '面包/1000g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 27.90, 179, 0, 672, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1275, 425, '面包/250g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 8.90, 1136, 0, 790, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1276, 426, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 22.90, 1174, 0, 935, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1277, 426, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 45.90, 251, 0, 399, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1278, 426, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 14.90, 1710, 0, 126, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1279, 427, '果脯/300g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 15.90, 1308, 0, 741, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1280, 427, '果脯/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 24.90, 1651, 0, 604, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1281, 427, '果脯/150g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 8.90, 557, 0, 512, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1282, 428, '苏打饼干/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 12.90, 659, 0, 658, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1283, 428, '苏打饼干/1000g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 22.90, 1860, 0, 127, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1284, 428, '苏打饼干/250g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 7.90, 1332, 0, 948, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1285, 429, '陈皮/200g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 15.90, 145, 0, 524, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1286, 429, '陈皮/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 32.90, 560, 0, 974, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1287, 429, '陈皮/100g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 8.90, 1190, 0, 969, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1288, 430, '烤鱼片/200g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 25.90, 448, 0, 721, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1289, 430, '烤鱼片/400g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 45.90, 1343, 0, 967, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1290, 430, '烤鱼片/100g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 15.90, 1035, 0, 217, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1291, 431, '牛奶/250ml*12', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 39.90, 1152, 0, 118, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1292, 431, '牛奶/500ml*6', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 35.90, 266, 0, 209, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1293, 431, '牛奶/1L*2', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 22.90, 1878, 0, 719, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1294, 432, '陈皮/200g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 15.90, 1670, 0, 555, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1295, 432, '陈皮/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 32.90, 1204, 0, 195, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1296, 432, '陈皮/100g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 8.90, 1637, 0, 601, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1297, 433, '苏打饼干/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 12.90, 1952, 0, 628, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1298, 433, '苏打饼干/1000g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 22.90, 703, 0, 238, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1299, 433, '苏打饼干/250g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 7.90, 1794, 0, 806, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1300, 434, '牛奶巧克力/100g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 19.90, 628, 0, 684, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1301, 434, '牛奶巧克力/200g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 35.90, 189, 0, 586, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1302, 434, '牛奶巧克力/500g', 'https://images.unsplash.com/photo-1603569283847-aa295f0d016a?w=400&h=400&fit=crop', 79.90, 435, 0, 776, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1303, 435, '苏打饼干/500g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 12.90, 149, 0, 606, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1304, 435, '苏打饼干/1000g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 22.90, 1901, 0, 862, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1305, 435, '苏打饼干/250g', 'https://images.unsplash.com/photo-1599599810769-bcde5a160d32?w=400&h=400&fit=crop', 7.90, 593, 0, 395, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1306, 436, '松子/200g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 59.90, 1078, 0, 871, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1307, 436, '松子/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 119.90, 1466, 0, 589, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1308, 436, '松子/100g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 35.90, 411, 0, 868, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1309, 437, '酥糖/300g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 15.90, 1448, 0, 910, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1310, 437, '酥糖/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 24.90, 871, 0, 981, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1311, 437, '酥糖/150g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 8.90, 318, 0, 135, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1312, 438, '酸梅汤/500ml*6', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 22.90, 488, 0, 826, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1313, 438, '酸梅汤/1L', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 14.90, 333, 0, 633, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1314, 438, '酸梅汤/300ml*6', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 17.90, 1139, 0, 961, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1315, 439, '消化饼干/400g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 15.90, 732, 0, 475, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1316, 439, '消化饼干/800g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 27.90, 417, 0, 294, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1317, 439, '消化饼干/200g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 8.90, 140, 0, 374, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1318, 440, '蛋糕/6个装', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 29.90, 1473, 0, 617, 1, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1319, 440, '蛋糕/12个装', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 52.90, 1306, 0, 551, 2, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1320, 440, '蛋糕/3个装', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 16.90, 1436, 0, 963, 3, '2026-06-03 23:33:34', '2026-06-03 23:33:34'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1321, 441, '酒心巧克力/150g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 29.90, 245, 0, 983, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1322, 441, '酒心巧克力/300g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 52.90, 939, 0, 167, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1323, 441, '酒心巧克力/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 79.90, 926, 0, 940, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1324, 442, '曲奇饼干/300g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 22.90, 1579, 0, 934, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1325, 442, '曲奇饼干/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 35.90, 1574, 0, 653, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1326, 442, '曲奇饼干/150g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 12.90, 548, 0, 123, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1327, 443, '松子/200g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 59.90, 947, 0, 833, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1328, 443, '松子/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 119.90, 1019, 0, 996, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1329, 443, '松子/100g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 35.90, 1245, 0, 681, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1330, 444, '腊肠/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 49.90, 252, 0, 884, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1331, 444, '腊肠/1000g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 89.90, 1925, 0, 123, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1332, 444, '腊肠/250g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 28.90, 630, 0, 319, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1333, 445, '盐焗开心果/300g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 49.90, 1203, 0, 518, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1334, 445, '盐焗开心果/500g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 69.90, 1208, 0, 161, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1335, 445, '盐焗开心果/150g', 'https://images.unsplash.com/photo-1599490659213-e2b9527bd087?w=400&h=400&fit=crop', 29.90, 1682, 0, 314, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1336, 446, '碧根果/250g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 35.90, 971, 0, 293, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1337, 446, '碧根果/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 59.90, 1795, 0, 832, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1338, 446, '碧根果/1000g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 99.90, 467, 0, 495, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1339, 447, '南瓜子/500g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 15.90, 114, 0, 711, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1340, 447, '南瓜子/1000g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 25.90, 1884, 0, 553, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1341, 447, '南瓜子/200g', 'https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=400&h=400&fit=crop', 9.90, 1264, 0, 277, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1342, 448, '棒棒糖/20支', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 15.90, 241, 0, 279, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1343, 448, '棒棒糖/50支', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 32.90, 1886, 0, 150, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1344, 448, '棒棒糖/10支', 'https://images.unsplash.com/photo-1481391319762-47dff72954d9?w=400&h=400&fit=crop', 8.90, 818, 0, 544, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1345, 449, '卤牛肉/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 49.90, 920, 0, 621, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1346, 449, '卤牛肉/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 109.90, 983, 0, 220, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1347, 449, '卤牛肉/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 28.90, 1961, 0, 272, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1348, 450, '牛奶巧克力/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 19.90, 951, 0, 307, 1, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1349, 450, '牛奶巧克力/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 35.90, 910, 0, 824, 2, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1350, 450, '牛奶巧克力/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 79.90, 534, 0, 127, 3, '2026-06-03 23:33:35', '2026-06-03 23:33:35'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1351, 451, '葡萄汁/1L', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 22.90, 179, 0, 144, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1352, 451, '葡萄汁/500ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 39.90, 1730, 0, 963, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1353, 451, '葡萄汁/250ml*12', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 45.90, 1168, 0, 602, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1354, 452, '混合坚果/500g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 69.90, 448, 0, 173, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1355, 452, '混合坚果/750g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 89.90, 1547, 0, 694, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1356, 452, '混合坚果/300g', 'https://images.unsplash.com/photo-1559598467-f8b76c8155d0?w=400&h=400&fit=crop', 45.90, 1978, 0, 630, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1357, 453, '云片糕/300g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 14.90, 1537, 0, 157, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1358, 453, '云片糕/500g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 22.90, 221, 0, 465, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1359, 453, '云片糕/150g', 'https://images.unsplash.com/photo-1617374128851-c84e37dc9f37?w=400&h=400&fit=crop', 7.90, 1489, 0, 786, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1360, 454, '芝麻糖/300g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 13.90, 979, 0, 743, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1361, 454, '芝麻糖/500g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 21.90, 836, 0, 482, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1362, 454, '芝麻糖/150g', 'https://images.unsplash.com/photo-1621939514649-280e2ee25f60?w=400&h=400&fit=crop', 7.90, 172, 0, 602, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1363, 455, '猕猴桃干/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 16.90, 142, 0, 319, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1364, 455, '猕猴桃干/500g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 34.90, 1962, 0, 469, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1365, 455, '猕猴桃干/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 9.90, 364, 0, 593, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1366, 456, '盐焗开心果/300g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 49.90, 755, 0, 872, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1367, 456, '盐焗开心果/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 69.90, 1716, 0, 372, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1368, 456, '盐焗开心果/150g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 29.90, 612, 0, 783, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1369, 457, '老婆饼/300g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 15.90, 1526, 0, 679, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1370, 457, '老婆饼/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 24.90, 1782, 0, 574, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1371, 457, '老婆饼/150g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 8.90, 1187, 0, 400, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1372, 458, '腊肉/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 59.90, 618, 0, 379, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1373, 458, '腊肉/1000g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 109.90, 1211, 0, 603, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1374, 458, '腊肉/250g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 32.90, 1816, 0, 746, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1375, 459, '麻辣牛肉干/200g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 39.90, 1961, 0, 762, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1376, 459, '麻辣牛肉干/500g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 79.90, 1176, 0, 720, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1377, 459, '麻辣牛肉干/100g', 'https://images.unsplash.com/photo-1509365465985-25d11c17e812?w=400&h=400&fit=crop', 22.90, 1461, 0, 694, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1378, 460, '杏干/200g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 18.90, 1486, 0, 143, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1379, 460, '杏干/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 39.90, 174, 0, 677, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1380, 460, '杏干/100g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 10.90, 211, 0, 270, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1381, 461, '椰枣/200g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 22.90, 1241, 0, 334, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1382, 461, '椰枣/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 45.90, 1402, 0, 190, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1383, 461, '椰枣/100g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 12.90, 1130, 0, 248, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1384, 462, '芒果干/100g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 12.90, 658, 0, 900, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1385, 462, '芒果干/200g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 22.90, 1389, 0, 749, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1386, 462, '芒果干/500g', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 45.90, 604, 0, 379, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1387, 463, '鸭掌/200g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 25.90, 1760, 0, 110, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1388, 463, '鸭掌/400g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 45.90, 1629, 0, 758, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1389, 463, '鸭掌/100g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 15.90, 1258, 0, 982, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1390, 464, '杏仁/300g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 32.90, 1898, 0, 669, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1391, 464, '杏仁/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 49.90, 1068, 0, 824, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1392, 464, '杏仁/150g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 19.90, 947, 0, 878, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1393, 465, '菠萝干/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 15.90, 237, 0, 153, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1394, 465, '菠萝干/500g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 32.90, 1166, 0, 615, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1395, 465, '菠萝干/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 8.90, 1064, 0, 583, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1396, 466, '腊肠/500g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 49.90, 1307, 0, 795, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1397, 466, '腊肠/1000g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 89.90, 732, 0, 464, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1398, 466, '腊肠/250g', 'https://images.unsplash.com/photo-1558961363-fa8fdf82db35?w=400&h=400&fit=crop', 28.90, 628, 0, 462, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1399, 467, '话梅/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 14.90, 1290, 0, 503, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1400, 467, '话梅/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 29.90, 782, 0, 716, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1401, 467, '话梅/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 8.90, 1527, 0, 197, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1402, 468, '消化饼干/400g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 1593, 0, 863, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1403, 468, '消化饼干/800g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 27.90, 432, 0, 841, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1404, 468, '消化饼干/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 8.90, 1520, 0, 586, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1405, 469, '巧克力豆/200g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 18.90, 1596, 0, 885, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1406, 469, '巧克力豆/500g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 39.90, 639, 0, 299, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1407, 469, '巧克力豆/100g', 'https://images.unsplash.com/photo-1581793745862-99fde7fa73d2?w=400&h=400&fit=crop', 9.90, 1471, 0, 193, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1408, 470, '香蕉片/200g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 12.90, 1580, 0, 515, 1, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1409, 470, '香蕉片/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 25.90, 940, 0, 669, 2, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1410, 470, '香蕉片/100g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 7.90, 885, 0, 763, 3, '2026-06-03 23:33:36', '2026-06-03 23:33:36'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1411, 471, '功能饮料/250ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 29.90, 287, 0, 843, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1412, 471, '功能饮料/500ml*6', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 39.90, 777, 0, 159, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1413, 471, '功能饮料/1L', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 18.90, 1947, 0, 137, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1414, 472, '花生糖/300g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 14.90, 1967, 0, 719, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1415, 472, '花生糖/500g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 22.90, 1355, 0, 230, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1416, 472, '花生糖/150g', 'https://images.unsplash.com/photo-1582058091505-f87a2e55a40f?w=400&h=400&fit=crop', 8.90, 477, 0, 415, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1417, 473, '蜂蜜核桃仁/250g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 25.90, 169, 0, 694, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1418, 473, '蜂蜜核桃仁/500g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 39.90, 1116, 0, 981, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1419, 473, '蜂蜜核桃仁/100g', 'https://images.unsplash.com/photo-1587132137056-bfbf0166836e?w=400&h=400&fit=crop', 15.90, 1996, 0, 411, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1420, 474, '牛奶巧克力/100g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 19.90, 330, 0, 546, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1421, 474, '牛奶巧克力/200g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 35.90, 1473, 0, 115, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1422, 474, '牛奶巧克力/500g', 'https://images.unsplash.com/photo-1559563362-c667ba5f5480?w=400&h=400&fit=crop', 79.90, 1401, 0, 795, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1423, 475, '山楂条/300g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 10.90, 620, 0, 138, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1424, 475, '山楂条/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 16.90, 1188, 0, 917, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1425, 475, '山楂条/150g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 5.90, 1715, 0, 651, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1426, 476, '山楂片/300g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 9.90, 1074, 0, 182, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1427, 476, '山楂片/500g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 14.90, 996, 0, 699, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1428, 476, '山楂片/150g', 'https://images.unsplash.com/photo-1549007994-cb92caebd54b?w=400&h=400&fit=crop', 5.90, 1358, 0, 974, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1429, 477, '巧克力豆/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 18.90, 841, 0, 636, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1430, 477, '巧克力豆/500g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 39.90, 1184, 0, 943, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1431, 477, '巧克力豆/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 9.90, 293, 0, 578, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1432, 478, '杏仁/300g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 32.90, 307, 0, 415, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1433, 478, '杏仁/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 49.90, 169, 0, 1000, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1434, 478, '杏仁/150g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 19.90, 756, 0, 365, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1435, 479, '橡皮糖/200g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 11.90, 1239, 0, 905, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1436, 479, '橡皮糖/500g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 22.90, 1019, 0, 882, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1437, 479, '橡皮糖/100g', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 6.90, 1060, 0, 994, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1438, 480, '苹果干/200g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 14.90, 1627, 0, 400, 1, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1439, 480, '苹果干/500g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 29.90, 156, 0, 900, 2, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1440, 480, '苹果干/100g', 'https://images.unsplash.com/photo-1606312619070-d48b4c652a52?w=400&h=400&fit=crop', 8.90, 859, 0, 261, 3, '2026-06-03 23:33:37', '2026-06-03 23:33:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1441, 481, '鱿鱼仔/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 19.90, 1834, 0, 393, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1442, 481, '鱿鱼仔/400g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 35.90, 1828, 0, 139, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1443, 481, '鱿鱼仔/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 12.90, 739, 0, 708, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1444, 482, '绿茶/500ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 19.90, 1870, 0, 293, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1445, 482, '绿茶/1L', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 15.90, 119, 0, 245, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1446, 482, '绿茶/300ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 18.90, 975, 0, 929, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1447, 483, '跳跳糖/30包', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 12.90, 1740, 0, 863, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1448, 483, '跳跳糖/50包', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 18.90, 767, 0, 937, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1449, 483, '跳跳糖/10包', 'https://images.unsplash.com/photo-1585225257732-537f48f9116e?w=400&h=400&fit=crop', 5.90, 412, 0, 578, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1450, 484, '凉茶/500ml*6', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 24.90, 1364, 0, 311, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1451, 484, '凉茶/1L', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 15.90, 1692, 0, 968, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1452, 484, '凉茶/310ml*6', 'https://images.unsplash.com/photo-1511381939415-e44015466834?w=400&h=400&fit=crop', 19.90, 993, 0, 450, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1453, 485, '蛋黄派/300g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 15.90, 553, 0, 538, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1454, 485, '蛋黄派/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 24.90, 1613, 0, 873, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1455, 485, '蛋黄派/150g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 8.90, 1099, 0, 590, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1456, 486, '豆浆/250ml*12', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 25.90, 281, 0, 944, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1457, 486, '豆浆/500ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 22.90, 243, 0, 423, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1458, 486, '豆浆/1L', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 12.90, 174, 0, 348, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1459, 487, '牛轧糖/300g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 19.90, 1121, 0, 987, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1460, 487, '牛轧糖/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 29.90, 918, 0, 533, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1461, 487, '牛轧糖/150g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 11.90, 749, 0, 718, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1462, 488, '蛋黄派/300g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 15.90, 801, 0, 218, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1463, 488, '蛋黄派/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 24.90, 1284, 0, 163, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1464, 488, '蛋黄派/150g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 8.90, 765, 0, 486, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1465, 489, '柠檬干/100g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 12.90, 554, 0, 330, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1466, 489, '柠檬干/200g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 22.90, 459, 0, 188, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1467, 489, '柠檬干/50g', 'https://images.unsplash.com/photo-1601058268499-e526168d9f37?w=400&h=400&fit=crop', 6.90, 406, 0, 826, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1468, 490, '猕猴桃干/200g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 16.90, 1671, 0, 360, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1469, 490, '猕猴桃干/500g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 34.90, 553, 0, 709, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1470, 490, '猕猴桃干/100g', 'https://images.unsplash.com/photo-1590080875515-8a3a8dc5735e?w=400&h=400&fit=crop', 9.90, 1351, 0, 760, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1471, 491, '老婆饼/300g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 15.90, 1532, 0, 369, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1472, 491, '老婆饼/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 24.90, 1372, 0, 400, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1473, 491, '老婆饼/150g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 8.90, 1399, 0, 649, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1474, 492, '橙汁/1L', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 19.90, 1115, 0, 448, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1475, 492, '橙汁/500ml*6', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 35.90, 287, 0, 931, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1476, 492, '橙汁/250ml*12', 'https://images.unsplash.com/photo-1486893732792-e4f533048797?w=400&h=400&fit=crop', 42.90, 1845, 0, 341, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1477, 493, '牛奶巧克力/100g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 19.90, 933, 0, 800, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1478, 493, '牛奶巧克力/200g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 35.90, 269, 0, 151, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1479, 493, '牛奶巧克力/500g', 'https://images.unsplash.com/photo-1582281298055-e25b84a30b0b?w=400&h=400&fit=crop', 79.90, 1864, 0, 665, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1480, 494, '瑞士卷/300g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 18.90, 1643, 1, 278, 1, '2026-06-03 23:33:38', '2026-08-04 14:18:37'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1481, 494, '瑞士卷/500g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 29.90, 1030, 0, 678, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1482, 494, '瑞士卷/150g', 'https://images.unsplash.com/photo-1622484212850-eb596d769edc?w=400&h=400&fit=crop', 10.90, 1287, 0, 331, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1483, 495, '蛋糕/6个装', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 29.90, 1903, 0, 133, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1484, 495, '蛋糕/12个装', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 52.90, 822, 0, 947, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1485, 495, '蛋糕/3个装', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 16.90, 758, 0, 679, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1486, 496, '鱿鱼丝/200g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 22.90, 774, 0, 468, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1487, 496, '鱿鱼丝/500g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 45.90, 1949, 0, 177, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1488, 496, '鱿鱼丝/100g', 'https://images.unsplash.com/photo-1606313564200-e75d5e30476c?w=400&h=400&fit=crop', 14.90, 887, 0, 495, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1489, 497, '椰子水/500ml*6', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 35.90, 1618, 0, 385, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1490, 497, '椰子水/1L', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 19.90, 545, 0, 835, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1491, 497, '椰子水/330ml*6', 'https://images.unsplash.com/photo-1551024601-bec78aea704b?w=400&h=400&fit=crop', 25.90, 905, 0, 755, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1492, 498, '奶油味腰果/200g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 29.90, 567, 2, 594, 1, '2026-06-03 23:33:38', '2026-08-01 22:31:12'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1493, 498, '奶油味腰果/500g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 49.90, 1104, 0, 227, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1494, 498, '奶油味腰果/1000g', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 79.90, 1692, 0, 412, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1495, 499, '杏干/200g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 18.90, 254, 0, 867, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1496, 499, '杏干/500g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 39.90, 1079, 0, 993, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1497, 499, '杏干/100g', 'https://images.unsplash.com/photo-1622483767028-3f66f32aef97?w=400&h=400&fit=crop', 10.90, 1151, 0, 128, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1498, 500, '苹果汁/1L', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 18.90, 1236, 0, 998, 1, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1499, 500, '苹果汁/500ml*6', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 33.90, 1807, 0, 744, 2, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +INSERT INTO `product_sku` (`id`, `product_id`, `sku_name`, `image`, `price`, `stock`, `sales`, `weight`, `sort`, `create_time`, `update_time`) VALUES (1500, 500, '苹果汁/250ml*12', 'https://images.unsplash.com/photo-1566478989037-eec170784d0b?w=400&h=400&fit=crop', 39.90, 835, 0, 634, 3, '2026-06-03 23:33:38', '2026-06-03 23:33:38'); +COMMIT; + +-- ---------------------------- +-- Table structure for quick_reply +-- ---------------------------- +DROP TABLE IF EXISTS `quick_reply`; +CREATE TABLE `quick_reply` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `title` varchar(100) NOT NULL COMMENT '模板标题(用于搜索)', + `content` varchar(500) NOT NULL COMMENT '模板内容', + `category` varchar(50) DEFAULT NULL COMMENT '分类:问候/物流/售后/活动等', + `sort` int NOT NULL DEFAULT '0' COMMENT '排序号', + `status` tinyint NOT NULL DEFAULT '1' COMMENT '状态:0-禁用 1-启用', + `use_count` int NOT NULL DEFAULT '0' COMMENT '使用次数(统计)', + `create_by` bigint DEFAULT NULL COMMENT '创建人(管理员 ID)', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_status_sort` (`status`,`sort`), + KEY `idx_category` (`category`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='客服快捷回复模板表'; + +-- ---------------------------- +-- Records of quick_reply +-- ---------------------------- +BEGIN; +COMMIT; + +-- ---------------------------- +-- Table structure for seckill_activity +-- ---------------------------- +DROP TABLE IF EXISTS `seckill_activity`; +CREATE TABLE `seckill_activity` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `name` varchar(100) NOT NULL COMMENT '活动名称', + `cover` varchar(255) DEFAULT NULL COMMENT '活动封面图', + `start_time` datetime NOT NULL COMMENT '活动开始时间', + `end_time` datetime NOT NULL COMMENT '活动结束时间', + `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态:0-未开始 1-进行中 2-已结束', + `description` varchar(500) DEFAULT NULL COMMENT '活动说明', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `idx_start_time` (`start_time`), + KEY `idx_end_time` (`end_time`), + KEY `idx_status` (`status`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='限时抢购活动表'; + +-- ---------------------------- +-- Records of seckill_activity +-- ---------------------------- +BEGIN; +INSERT INTO `seckill_activity` (`id`, `name`, `cover`, `start_time`, `end_time`, `status`, `description`, `create_time`, `update_time`) VALUES (1, '夏季炎炎购物狂欢节', NULL, '2026-07-31 16:00:00', '2026-08-14 16:00:00', 0, NULL, '2026-08-01 16:46:59', '2026-08-01 16:46:59'); +INSERT INTO `seckill_activity` (`id`, `name`, `cover`, `start_time`, `end_time`, `status`, `description`, `create_time`, `update_time`) VALUES (2, '1', NULL, '2026-08-01 00:00:00', '2026-08-02 00:00:00', 0, NULL, '2026-08-01 17:04:39', '2026-08-01 17:04:39'); +COMMIT; + +-- ---------------------------- +-- Table structure for seckill_order +-- ---------------------------- +DROP TABLE IF EXISTS `seckill_order`; +CREATE TABLE `seckill_order` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `user_id` bigint NOT NULL COMMENT '用户 ID', + `activity_id` bigint NOT NULL COMMENT '活动 ID', + `product_id` bigint NOT NULL COMMENT '商品 SPU ID', + `sku_id` bigint NOT NULL COMMENT 'SKU ID', + `quantity` int NOT NULL COMMENT '抢购数量', + `seckill_price` decimal(10,2) NOT NULL COMMENT '成交单价', + `order_id` bigint DEFAULT NULL COMMENT '关联主订单 ID(支付/取消后回填)', + `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态:0-待支付 1-已支付 2-已取消 3-已退款', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '抢购时间', + `pay_time` datetime DEFAULT NULL COMMENT '支付时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_user_activity_sku` (`user_id`,`activity_id`,`sku_id`), + KEY `idx_order_id` (`order_id`), + KEY `idx_activity_id` (`activity_id`), + KEY `idx_user_id` (`user_id`), + KEY `idx_status` (`status`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='抢购成功记录表'; + +-- ---------------------------- +-- Records of seckill_order +-- ---------------------------- +BEGIN; +INSERT INTO `seckill_order` (`id`, `user_id`, `activity_id`, `product_id`, `sku_id`, `quantity`, `seckill_price`, `order_id`, `status`, `create_time`, `pay_time`) VALUES (2, 1, 1, 495, 1483, 1, 23.92, 5, 1, '2026-08-04 15:41:35', '2026-08-04 15:43:14'); +COMMIT; + +-- ---------------------------- +-- Table structure for seckill_product +-- ---------------------------- +DROP TABLE IF EXISTS `seckill_product`; +CREATE TABLE `seckill_product` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `activity_id` bigint NOT NULL COMMENT '所属活动 ID', + `product_id` bigint NOT NULL COMMENT '商品 SPU ID', + `sku_id` bigint NOT NULL COMMENT '商品 SKU ID', + `seckill_price` decimal(10,2) NOT NULL COMMENT '抢购价', + `origin_price` decimal(10,2) NOT NULL COMMENT '原价(展示用)', + `seckill_stock` int NOT NULL COMMENT '总库存(同步到 Redis)', + `remain_stock` int NOT NULL COMMENT '剩余库存(兜底用,正常情况下以 Redis 为准)', + `per_limit` int NOT NULL DEFAULT '1' COMMENT '每人限购数量', + `sales` int NOT NULL DEFAULT '0' COMMENT '已售数量(异步消费 MQ 后累加)', + `sort` int NOT NULL DEFAULT '0' COMMENT '活动内排序', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_activity_sku` (`activity_id`,`sku_id`), + KEY `idx_product_id` (`product_id`), + KEY `idx_activity_id` (`activity_id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='抢购活动商品表'; + +-- ---------------------------- +-- Records of seckill_product +-- ---------------------------- +BEGIN; +INSERT INTO `seckill_product` (`id`, `activity_id`, `product_id`, `sku_id`, `seckill_price`, `origin_price`, `seckill_stock`, `remain_stock`, `per_limit`, `sales`, `sort`, `create_time`, `update_time`) VALUES (1, 2, 498, 1492, 23.92, 29.90, 569, 569, 1, 0, 0, '2026-08-01 17:13:54', '2026-08-01 17:13:54'); +INSERT INTO `seckill_product` (`id`, `activity_id`, `product_id`, `sku_id`, `seckill_price`, `origin_price`, `seckill_stock`, `remain_stock`, `per_limit`, `sales`, `sort`, `create_time`, `update_time`) VALUES (2, 2, 496, 1486, 18.32, 22.90, 774, 774, 1, 0, 0, '2026-08-01 17:13:54', '2026-08-01 17:13:54'); +INSERT INTO `seckill_product` (`id`, `activity_id`, `product_id`, `sku_id`, `seckill_price`, `origin_price`, `seckill_stock`, `remain_stock`, `per_limit`, `sales`, `sort`, `create_time`, `update_time`) VALUES (3, 2, 495, 1483, 23.92, 29.90, 999, 999, 1, 0, 0, '2026-08-01 17:14:21', '2026-08-01 17:14:21'); +INSERT INTO `seckill_product` (`id`, `activity_id`, `product_id`, `sku_id`, `seckill_price`, `origin_price`, `seckill_stock`, `remain_stock`, `per_limit`, `sales`, `sort`, `create_time`, `update_time`) VALUES (4, 2, 492, 1474, 15.92, 19.90, 999, 999, 1, 0, 0, '2026-08-01 17:14:21', '2026-08-01 17:14:21'); +INSERT INTO `seckill_product` (`id`, `activity_id`, `product_id`, `sku_id`, `seckill_price`, `origin_price`, `seckill_stock`, `remain_stock`, `per_limit`, `sales`, `sort`, `create_time`, `update_time`) VALUES (5, 1, 495, 1483, 23.92, 29.90, 999, 998, 1, 1, 0, '2026-08-01 17:15:16', '2026-08-04 15:41:34'); +COMMIT; + +-- ---------------------------- +-- Table structure for upload_file +-- ---------------------------- +DROP TABLE IF EXISTS `upload_file`; +CREATE TABLE `upload_file` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `name` varchar(255) NOT NULL COMMENT '原始文件名', + `path` varchar(255) NOT NULL COMMENT '存储路径(相对 uploads/)', + `url` varchar(255) NOT NULL COMMENT '访问 URL', + `size` bigint NOT NULL DEFAULT '0' COMMENT '文件大小(字节)', + `content_type` varchar(100) DEFAULT NULL COMMENT 'MIME 类型', + `storage_type` varchar(20) NOT NULL DEFAULT 'local' COMMENT '存储类型:local / qiniu / aliyun / tencent / minio', + `biz_type` varchar(50) DEFAULT NULL COMMENT '业务类型:avatar / product / banner / chat', + `upload_by` bigint DEFAULT NULL COMMENT '上传人(用户/管理员 ID)', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '上传时间', + PRIMARY KEY (`id`), + KEY `idx_upload_by` (`upload_by`), + KEY `idx_biz_type` (`biz_type`), + KEY `idx_create_time` (`create_time`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='文件上传记录表'; + +-- ---------------------------- +-- Records of upload_file +-- ---------------------------- +BEGIN; +INSERT INTO `upload_file` (`id`, `name`, `path`, `url`, `size`, `content_type`, `storage_type`, `biz_type`, `upload_by`, `create_time`) VALUES (1, 'avatar.png', 'admin-avatar/2026-08/8d0d6a6ad52945ff84316a7613280211.png', 'http://localhost:8080/uploads/admin-avatar/2026-08/8d0d6a6ad52945ff84316a7613280211.png', 3606733, 'image/png', 'local', 'admin-avatar', NULL, '2026-08-01 16:32:40'); +INSERT INTO `upload_file` (`id`, `name`, `path`, `url`, `size`, `content_type`, `storage_type`, `biz_type`, `upload_by`, `create_time`) VALUES (2, 'avatar.png', 'admin-avatar/2026-08/a60b7240696a4d9280807c20f0233af9.png', 'http://localhost:8080/uploads/admin-avatar/2026-08/a60b7240696a4d9280807c20f0233af9.png', 3606733, 'image/png', 'local', 'admin-avatar', NULL, '2026-08-01 21:39:44'); +INSERT INTO `upload_file` (`id`, `name`, `path`, `url`, `size`, `content_type`, `storage_type`, `biz_type`, `upload_by`, `create_time`) VALUES (3, 'avatar.png', 'admin-avatar/2026-08/b8db7743b74f4261aefcd39b4143385d.png', 'http://localhost:9000/snack-mall/admin-avatar/2026-08/b8db7743b74f4261aefcd39b4143385d.png', 3606733, 'image/png', 'local', 'admin-avatar', NULL, '2026-08-01 21:42:50'); +COMMIT; + +-- ---------------------------- +-- Table structure for user +-- ---------------------------- +DROP TABLE IF EXISTS `user`; +CREATE TABLE `user` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `username` varchar(50) NOT NULL COMMENT '登录用户名(唯一)', + `password` varchar(100) NOT NULL COMMENT '加密密码(BCrypt 强度 10)', + `phone` varchar(20) DEFAULT NULL COMMENT '手机号', + `nickname` varchar(50) DEFAULT NULL COMMENT '昵称', + `avatar` varchar(255) DEFAULT NULL COMMENT '头像 URL', + `gender` tinyint NOT NULL DEFAULT '0' COMMENT '性别:0-未知 1-男 2-女', + `birthday` date DEFAULT NULL COMMENT '生日', + `status` tinyint NOT NULL DEFAULT '1' COMMENT '账号状态:0-禁用 1-启用', + `last_login_time` datetime DEFAULT NULL COMMENT '最近登录时间', + `last_login_ip` varchar(50) DEFAULT NULL COMMENT '最近登录 IP', + `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_username` (`username`), + KEY `idx_phone` (`phone`), + KEY `idx_status` (`status`), + KEY `idx_create_time` (`create_time`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='前台用户表'; + +-- ---------------------------- +-- Records of user +-- ---------------------------- +BEGIN; +INSERT INTO `user` (`id`, `username`, `password`, `phone`, `nickname`, `avatar`, `gender`, `birthday`, `status`, `last_login_time`, `last_login_ip`, `create_time`, `update_time`) VALUES (1, 'zhangsan', '$2a$10$fli.rv1m/pqtPzSIly3Lqu4cx77VYnZUY4cXHcCzEHUn/N32tfJVy', '', '张三', 'http://localhost:8080/uploads/admin-avatar/2026-08/8d0d6a6ad52945ff84316a7613280211.png', 1, NULL, 1, NULL, NULL, '2026-06-03 17:50:26', '2026-08-01 21:04:06'); +COMMIT; + +-- ---------------------------- +-- Table structure for user_coupon +-- ---------------------------- +DROP TABLE IF EXISTS `user_coupon`; +CREATE TABLE `user_coupon` ( + `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键 ID', + `user_id` bigint NOT NULL COMMENT '用户 ID', + `coupon_id` bigint NOT NULL COMMENT '优惠券模板 ID', + `status` tinyint NOT NULL DEFAULT '0' COMMENT '状态:0-未使用 1-已使用 2-已过期 3-已作废', + `order_id` bigint DEFAULT NULL COMMENT '使用时关联的订单 ID', + `receive_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '领取时间', + `use_time` datetime DEFAULT NULL COMMENT '使用时间', + `expire_time` datetime NOT NULL COMMENT '过期时间', + PRIMARY KEY (`id`), + KEY `idx_user_id` (`user_id`), + KEY `idx_coupon_id` (`coupon_id`), + KEY `idx_status` (`status`), + KEY `idx_expire` (`expire_time`), + KEY `idx_user_status` (`user_id`,`status`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='用户优惠券领取记录表'; + +-- ---------------------------- +-- Records of user_coupon +-- ---------------------------- +BEGIN; +INSERT INTO `user_coupon` (`id`, `user_id`, `coupon_id`, `status`, `order_id`, `receive_time`, `use_time`, `expire_time`) VALUES (1, 1, 2, 1, 3, '2026-08-04 14:18:20', '2026-08-04 14:18:38', '2026-09-03 14:18:20'); +COMMIT; + +SET FOREIGN_KEY_CHECKS = 1; diff --git a/web-snack/src/views/product/detail.vue b/web-snack/src/views/product/detail.vue index ef5e45e..0f017e2 100644 --- a/web-snack/src/views/product/detail.vue +++ b/web-snack/src/views/product/detail.vue @@ -10,10 +10,11 @@ import { ref, computed, onMounted } from 'vue' import { useRoute, useRouter } from 'vue-router' import { ElMessage } from 'element-plus' -import { ShoppingCart, Plus, Minus } from '@element-plus/icons-vue' +import { ShoppingCart, Plus, Minus, Star, StarFilled } from '@element-plus/icons-vue' import { useUserStore } from '@/stores/modules/user' import { getProductDetailApi } from '@/api/product' import { addToCartApi } from '@/api/cart' +import { addFavoriteApi, cancelFavoriteByProductIdApi, checkFavoriteApi } from '@/api/favorite' import type { ProductDetail, ProductSku } from '@/types/product' import AppHeader from '@/components/layout/AppHeader.vue' import AppFooter from '@/components/layout/AppFooter.vue' @@ -31,6 +32,10 @@ const selectedSku = ref(null) const quantity = ref(1) const addingToCart = ref(false) +// ==================== 收藏 ==================== +const favorited = ref(false) +const favoriteToggling = ref(false) + // ==================== 计算 ==================== const allImages = computed(() => { if (!product.value) return [] @@ -113,6 +118,39 @@ async function handleAddToCart() { } } +async function loadFavoriteState() { + if (!product.value || !userStore.isLoggedIn) return + try { + favorited.value = await checkFavoriteApi(product.value.id) + } catch { + /* 未登录 / 接口异常时保持未收藏 */ + } +} + +async function handleToggleFavorite() { + if (!product.value) return + if (!userStore.isLoggedIn) { + router.push(`/login?redirect=${encodeURIComponent(route.fullPath)}`) + return + } + favoriteToggling.value = true + try { + if (favorited.value) { + await cancelFavoriteByProductIdApi(product.value.id) + favorited.value = false + ElMessage.success('已取消收藏') + } else { + await addFavoriteApi(product.value.id) + favorited.value = true + ElMessage.success('收藏成功,可在个人中心查看') + } + } catch { + /* 拦截器已提示 */ + } finally { + favoriteToggling.value = false + } +} + // ==================== 加载 ==================== onMounted(async () => { const id = Number(route.params.id) @@ -127,6 +165,7 @@ onMounted(async () => { if (product.value?.skuList?.length) { selectedSku.value = product.value.skuList[0] } + loadFavoriteState() } catch { ElMessage.error('商品不存在或已下架') } finally { @@ -292,6 +331,16 @@ onMounted(async () => { > 加入购物车 + + {{ favorited ? '已收藏' : '收藏' }} + @@ -701,6 +750,36 @@ onMounted(async () => { } } +.fav-btn { + min-width: 120px; + height: 52px; + font-size: $font-size-md; + font-weight: 600; + border-radius: $radius-full; + border: 2px solid $color-border-dark; + background: $bg-surface; + color: $color-text-regular; + box-shadow: 0 4px 0 0 $color-border-dark; + transition: transform 0.2s, box-shadow 0.2s, color 0.2s, background 0.2s, border-color 0.2s; + + &:hover { + color: $color-primary; + border-color: $color-primary; + transform: translateY(-1px); + } + + &:active { + box-shadow: 0 1px 0 0 $color-border-dark; + transform: translateY(3px); + } + + &.active { + background: $color-primary-light; + border-color: $color-primary; + color: $color-primary; + } +} + // ==================== 底部详情 ==================== .detail-bottom { margin-top: 56px;