zx/install/crmeb_merchant.sql

4019 lines
6.2 MiB
MySQL
Raw Permalink Normal View History

2024-07-02 15:32:59 +08:00
# Host: localhost (Version: 5.7.26)
# Date: 2024-05-16 14:48:22
# Generator: MySQL-Front 5.3 (Build 4.234)
/*!40101 SET NAMES utf8 */;
#
# Structure for table "eb_article"
#
CREATE TABLE `eb_article` (
`article_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '文章管理ID',
`cid` int(11) unsigned DEFAULT '0' COMMENT '分类id',
`title` varchar(64) NOT NULL COMMENT '文章标题',
`author` varchar(32) DEFAULT NULL COMMENT '文章作者',
`image_input` varchar(128) NOT NULL COMMENT '文章图片',
`synopsis` varchar(128) DEFAULT NULL COMMENT '文章简介',
`visit` varchar(255) DEFAULT NULL COMMENT '浏览次数',
`sort` int(10) unsigned DEFAULT '0' COMMENT '排序',
`url` varchar(128) DEFAULT NULL COMMENT '原文链接',
`admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '管理员id',
`mer_id` int(10) unsigned DEFAULT '0' COMMENT '商户id',
`is_hot` tinyint(1) unsigned DEFAULT '0' COMMENT '是否热门(小程序)',
`is_banner` tinyint(1) unsigned DEFAULT '0' COMMENT '是否轮播图(小程序)',
`status` tinyint(1) unsigned DEFAULT NULL COMMENT '状态',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`wechat_news_id` int(11) DEFAULT '0' COMMENT '微信图文id',
PRIMARY KEY (`article_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8 COMMENT='文章管理表';
#
# Structure for table "eb_article_category"
#
CREATE TABLE `eb_article_category` (
`article_category_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '文章分类id',
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '父级ID',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`title` varchar(32) NOT NULL COMMENT '文章分类标题',
`info` varchar(255) DEFAULT NULL COMMENT '文章分类简介',
`image` varchar(128) NOT NULL COMMENT '文章分类图片',
`status` tinyint(1) unsigned NOT NULL COMMENT '状态',
`sort` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`article_category_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='文章分类表';
#
# Structure for table "eb_article_content"
#
CREATE TABLE `eb_article_content` (
`article_content_id` int(10) unsigned NOT NULL COMMENT '文章id',
`content` text NOT NULL COMMENT '文章内容',
UNIQUE KEY `article_content_id` (`article_content_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文章内容表';
#
# Structure for table "eb_broadcast_assistant"
#
CREATE TABLE `eb_broadcast_assistant` (
`assistant_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(50) DEFAULT NULL COMMENT '微信号',
`nickname` varchar(100) DEFAULT NULL COMMENT '微信昵称',
`mer_id` int(11) DEFAULT NULL COMMENT '商户ID',
`mark` varchar(255) DEFAULT NULL COMMENT '备注',
`is_del` tinyint(1) DEFAULT '0',
UNIQUE KEY `id` (`assistant_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='直播助手信息';
#
# Structure for table "eb_broadcast_goods"
#
CREATE TABLE `eb_broadcast_goods` (
`broadcast_goods_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`goods_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '微信商品ID',
`audit_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '审核单 id',
`cover_img` varchar(255) NOT NULL COMMENT '图片',
`name` varchar(64) NOT NULL COMMENT '商品名称',
`price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '价格',
`product_type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '商品类型',
`product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品 id',
`error_msg` varchar(255) DEFAULT NULL COMMENT '未通过原因',
`audit_status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0未审核1审核中2:审核通过3审核失败',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '审核状态0=未审核1=微信审核2=审核通过-1=审核未通过',
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否显示',
`is_mer_show` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '商户是否显示',
`mark` varchar(512) DEFAULT NULL COMMENT '备注',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`sort` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0',
`is_mer_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '商户是否删除',
PRIMARY KEY (`broadcast_goods_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `goods_id` (`goods_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='直播商品表';
#
# Structure for table "eb_broadcast_room"
#
CREATE TABLE `eb_broadcast_room` (
`broadcast_room_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`room_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '直播间 id',
`name` varchar(32) NOT NULL COMMENT '直播间名字',
`cover_img` varchar(255) NOT NULL COMMENT '背景图',
`share_img` varchar(255) NOT NULL COMMENT '分享图',
`start_time` timestamp NULL DEFAULT NULL COMMENT '直播计划开始时间',
`end_time` timestamp NULL DEFAULT NULL COMMENT '直播计划结束时间',
`anchor_name` varchar(32) NOT NULL COMMENT '主播昵称',
`anchor_wechat` varchar(32) NOT NULL COMMENT '主播微信号',
`phone` varchar(32) NOT NULL COMMENT '主播手机号',
`type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '直播间类型 【1: 推流0手机直播】',
`screen_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '横屏、竖屏 【1横屏0竖屏】',
`close_like` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否关闭点赞',
`close_goods` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否关闭货架',
`close_comment` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否关闭评论',
`close_share` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否关闭分享',
`close_kf` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否关闭客服',
`error_msg` varchar(255) DEFAULT NULL COMMENT '未通过原因',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '审核状态0=未审核1=微信审核2=审核通过-1=审核未通过',
`live_status` smallint(5) unsigned NOT NULL DEFAULT '102' COMMENT '直播状态101直播中102未开始103已结束104禁播105暂停106异常107已过期',
`mark` varchar(512) DEFAULT NULL COMMENT '备注',
`replay_status` tinyint(1) unsigned DEFAULT '0' COMMENT '回放状态',
`is_mer_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '商户是否显示',
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否显示',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`star` smallint(1) unsigned NOT NULL DEFAULT '1' COMMENT '推荐星级',
`sort` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除',
`is_mer_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '商户是否删除',
`feeds_img` varchar(255) DEFAULT NULL COMMENT '封面图',
`push_url` varchar(255) DEFAULT NULL COMMENT '推流地址',
`assistant_id` varchar(255) DEFAULT NULL COMMENT '小助手ID',
`is_feeds_public` tinyint(1) unsigned DEFAULT '0' COMMENT '是否开启官方收录1 开启0 关闭',
PRIMARY KEY (`broadcast_room_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='直播间表';
#
# Structure for table "eb_broadcast_room_goods"
#
CREATE TABLE `eb_broadcast_room_goods` (
`broadcast_room_id` int(10) unsigned NOT NULL,
`broadcast_goods_id` int(10) unsigned NOT NULL,
`on_sale` tinyint(2) DEFAULT '1' COMMENT '商品上下架',
KEY `broadcast_room_id` (`broadcast_room_id`,`broadcast_goods_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='直播间导入商品表';
#
# Structure for table "eb_cache"
#
CREATE TABLE `eb_cache` (
`key` varchar(32) NOT NULL,
`expire_time` int(11) NOT NULL DEFAULT '0' COMMENT '0=永久',
`result` longtext NOT NULL COMMENT '缓存数据',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '缓存时间',
PRIMARY KEY (`key`) USING BTREE,
KEY `key` (`key`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信缓存表';
#
# Structure for table "eb_city_area"
#
CREATE TABLE `eb_city_area` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(128) NOT NULL DEFAULT '/' COMMENT '省市级别',
`parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '父级id',
`type` varchar(32) NOT NULL COMMENT '类型',
`name` varchar(100) NOT NULL DEFAULT '' COMMENT '名称',
`level` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '级别',
`code` varchar(100) NOT NULL DEFAULT '' COMMENT '城市编码',
`snum` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '子级个数',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
KEY `parent_id` (`parent_id`) USING BTREE,
KEY `path` (`path`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=44714 DEFAULT CHARSET=utf8 COMMENT='省市区县数据';
#
# Structure for table "eb_community"
#
CREATE TABLE `eb_community` (
`community_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`image` varchar(1000) DEFAULT NULL COMMENT '图片',
`category_id` int(11) unsigned DEFAULT '0',
`topic_id` int(11) unsigned DEFAULT '0' COMMENT '话题',
`uid` int(11) unsigned DEFAULT '0' COMMENT '用户',
`count_start` int(11) unsigned DEFAULT '0' COMMENT '点赞数',
`count_reply` int(11) unsigned DEFAULT '0' COMMENT '评论数',
`count_share` int(11) unsigned DEFAULT '0' COMMENT '分享数',
`status` tinyint(2) DEFAULT '0' COMMENT '审核状态',
`is_show` tinyint(2) DEFAULT '0' COMMENT '显示状态',
`start` tinyint(1) DEFAULT '1' COMMENT '星级排序',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`is_del` tinyint(1) DEFAULT '0',
`content` varchar(1000) DEFAULT NULL,
`refusal` varchar(255) DEFAULT NULL COMMENT '拒绝理由',
`is_hot` tinyint(2) DEFAULT '0' COMMENT '是否推荐',
`order_id` int(11) unsigned DEFAULT '0' COMMENT '关联订单ID',
`is_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1 图文 2 视频',
`video_link` varchar(255) DEFAULT NULL COMMENT '视频链接',
`pv` int(1) DEFAULT '0' COMMENT '浏览量',
`update_time` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`status_time` timestamp NULL DEFAULT NULL COMMENT '审核时间',
PRIMARY KEY (`community_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='社区图文表信息';
#
# Structure for table "eb_community_category"
#
CREATE TABLE `eb_community_category` (
`category_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`cate_name` varchar(50) DEFAULT NULL COMMENT '分类名',
`pid` int(11) DEFAULT NULL COMMENT '父级ID',
`path` varchar(255) DEFAULT '/' COMMENT '路径 ',
`is_show` tinyint(2) DEFAULT '1' COMMENT '状态',
`level` int(11) DEFAULT '0' COMMENT '等级',
`sort` int(11) DEFAULT NULL,
PRIMARY KEY (`category_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8 COMMENT='社区分类';
#
# Structure for table "eb_community_reply"
#
CREATE TABLE `eb_community_reply` (
`reply_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_estonian_ci DEFAULT NULL COMMENT '评论内容',
`pid` int(11) unsigned DEFAULT '0' COMMENT '回复id',
`uid` int(11) unsigned DEFAULT '0' COMMENT '发言人',
`re_uid` int(11) unsigned DEFAULT '0' COMMENT '回复人',
`count_start` int(11) unsigned DEFAULT '0' COMMENT '点赞数',
`count_reply` int(11) unsigned DEFAULT '0' COMMENT '评论数',
`status` tinyint(2) DEFAULT '1' COMMENT '状态 ',
`community_id` int(11) unsigned DEFAULT '0' COMMENT '文章id',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`is_del` tinyint(2) DEFAULT '0',
`refusal` varchar(255) DEFAULT NULL COMMENT '拒绝原因',
PRIMARY KEY (`reply_id`) USING BTREE,
UNIQUE KEY `id` (`reply_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='社区评论';
#
# Structure for table "eb_community_topic"
#
CREATE TABLE `eb_community_topic` (
`topic_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`topic_name` varchar(100) DEFAULT NULL COMMENT '话题',
`status` tinyint(2) DEFAULT '1' COMMENT '状态',
`is_hot` tinyint(11) DEFAULT '0' COMMENT '推荐',
`category_id` int(11) unsigned DEFAULT '0' COMMENT '分类id',
`is_del` tinyint(2) DEFAULT '0',
`pic` varchar(128) DEFAULT NULL COMMENT '图标',
`count_use` int(11) unsigned DEFAULT '0' COMMENT '使用次数',
`count_view` int(11) unsigned DEFAULT '0' COMMENT '浏览量',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`sort` int(11) unsigned DEFAULT '0',
PRIMARY KEY (`topic_id`) USING BTREE,
UNIQUE KEY `id` (`topic_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COMMENT='社区话题';
#
# Structure for table "eb_delivery_order"
#
CREATE TABLE `eb_delivery_order` (
`delivery_order_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`station_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '门店ID',
`order_id` int(10) unsigned NOT NULL COMMENT '订单ID',
`order_code` varchar(255) NOT NULL DEFAULT '' COMMENT '配送方订单号',
`city_code` varchar(20) NOT NULL DEFAULT '' COMMENT '所属城市',
`order_sn` varchar(32) NOT NULL DEFAULT '' COMMENT '订单sn',
`cargo_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '配送订单价格',
`finish_code` varchar(255) NOT NULL DEFAULT '' COMMENT '收货码',
`user_name` varchar(20) NOT NULL DEFAULT '' COMMENT '用户名',
`status` int(11) NOT NULL DEFAULT '0' COMMENT '状态 取消=-1, 待取货2,配送中3,已完成4,物品返回中=9,物品返回完成=10,骑士到店=100',
`receiver_phone` varchar(11) NOT NULL DEFAULT '' COMMENT '收货人电话',
`from_address` varchar(255) NOT NULL DEFAULT '' COMMENT '起始位置',
`to_address` varchar(255) NOT NULL DEFAULT '' COMMENT '结束位置',
`distance` float NOT NULL DEFAULT '0' COMMENT '配送距离',
`fee` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '配送费',
`mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID',
`mark` varchar(255) NOT NULL DEFAULT '' COMMENT '订单备注',
`station_type` int(11) unsigned NOT NULL COMMENT '平台类型',
`reason` varchar(255) NOT NULL COMMENT '取消原因',
`from_lat` varchar(255) NOT NULL DEFAULT '',
`from_lng` varchar(255) NOT NULL DEFAULT '',
`to_lat` varchar(255) NOT NULL DEFAULT '',
`to_lng` varchar(255) NOT NULL DEFAULT '',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`deduct_fee` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '取消订单违约金',
`uid` int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`delivery_order_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_delivery_station"
#
CREATE TABLE `eb_delivery_station` (
`station_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`station_name` varchar(255) NOT NULL DEFAULT '' COMMENT '门店名称',
`business` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '支持配送的物品品类',
`city_name` varchar(100) NOT NULL DEFAULT '' COMMENT '门店所属市',
`station_address` varchar(255) NOT NULL DEFAULT '' COMMENT '门店地址',
`lng` char(20) NOT NULL DEFAULT '' COMMENT '门店经度',
`lat` char(20) NOT NULL DEFAULT '' COMMENT '门店纬度',
`contact_name` char(10) NOT NULL DEFAULT '' COMMENT '联系人姓名',
`phone` char(11) NOT NULL DEFAULT '' COMMENT '联系人电话',
`origin_shop_id` varchar(255) NOT NULL DEFAULT '' COMMENT '门店编码,可自定义,但必须唯一;若不填写,则系统自动生成',
`username` varchar(255) NOT NULL DEFAULT '' COMMENT '达达商家app账号(若不需要登陆app,则不用设置)',
`password` varchar(255) NOT NULL DEFAULT '' COMMENT '达达商家app密码(若不需要登陆app,则不用设置)\n',
`status` tinyint(2) unsigned NOT NULL DEFAULT '1' COMMENT '状态 1启用 0关闭',
`mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`is_del` tinyint(2) unsigned NOT NULL DEFAULT '0',
`mark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`type` tinyint(2) unsigned NOT NULL DEFAULT '1' COMMENT '类型 1 达达 2 uu',
PRIMARY KEY (`station_id`) USING BTREE,
UNIQUE KEY `id` (`station_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_diy"
#
CREATE TABLE `eb_diy` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`version` varchar(255) NOT NULL DEFAULT '' COMMENT '版本号',
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '页面名称',
`title` varchar(100) NOT NULL DEFAULT '' COMMENT '网站标题',
`cover_image` varchar(255) NOT NULL DEFAULT '' COMMENT '封面图',
`template_name` varchar(255) NOT NULL DEFAULT '' COMMENT '模板名称',
`default_value` longtext COMMENT '默认数据',
`add_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否使用',
`type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '页面类型',
`is_show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '显示首页',
`is_bg_color` tinyint(1) NOT NULL DEFAULT '0' COMMENT '颜色是否选中',
`is_bg_pic` tinyint(1) NOT NULL DEFAULT '0' COMMENT '背景图是否选中',
`is_diy` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否是diy数据',
`color_picker` varchar(50) NOT NULL DEFAULT '' COMMENT '背景颜色',
`bg_pic` varchar(256) NOT NULL DEFAULT '' COMMENT '背景图',
`bg_tab_val` tinyint(1) NOT NULL DEFAULT '0' COMMENT '背景图图片样式',
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
`mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户ID',
`is_default` tinyint(1) NOT NULL DEFAULT '0' COMMENT '默认模板(1.平台默认 2.商户默认)',
`scope_type` tinyint(1) DEFAULT '4' COMMENT '适用范围类型0.全部店铺、1. 指定店铺、2. 指定商户分类、3. 指定店铺类型、4. 指定商户类别',
`value` longtext COMMENT '页面数据',
PRIMARY KEY (`id`) USING BTREE,
KEY `template_name` (`template_name`,`type`) USING BTREE,
KEY `status_type` (`status`,`type`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_excel"
#
CREATE TABLE `eb_excel` (
`excel_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
`name` varchar(255) DEFAULT NULL COMMENT '文件名',
`status` int(255) DEFAULT '0' COMMENT '0.默认1.完成2.失败',
`type` varchar(255) DEFAULT NULL COMMENT '类型',
`path` varchar(255) DEFAULT NULL COMMENT '文件路径',
`mer_id` int(11) DEFAULT '0' COMMENT '商户id',
`admin_id` int(11) DEFAULT NULL COMMENT '操作者id',
`is_del` int(11) DEFAULT '0' COMMENT '是否删除',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`message` varchar(255) DEFAULT NULL,
PRIMARY KEY (`excel_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='导出文件记录表';
#
# Structure for table "eb_express"
#
CREATE TABLE `eb_express` (
`id` mediumint(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '快递公司id',
`code` varchar(50) NOT NULL COMMENT '快递公司简称',
`name` varchar(50) NOT NULL COMMENT '快递公司全称',
`mark` varchar(255) DEFAULT '' COMMENT '备注',
`partner_id` int(11) DEFAULT '0' COMMENT '月结账号',
`partner_key` int(11) DEFAULT '0' COMMENT '月结密码',
`net` int(11) DEFAULT '0' COMMENT '取件网点',
`sort` int(11) NOT NULL COMMENT '排序',
`is_show` int(11) DEFAULT '1' COMMENT '是否显示',
`check_man` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否需要承载快递员名称',
`partner_name` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否需要客户账户名称',
`is_code` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否需要承载编号',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `code` (`code`) USING BTREE,
KEY `is_show` (`is_show`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='快递公司表';
#
# Structure for table "eb_express_partner"
#
CREATE TABLE `eb_express_partner` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`express_id` int(11) NOT NULL COMMENT '快递公司id',
`account` varchar(20) DEFAULT NULL COMMENT '月结账号',
`key` varchar(50) DEFAULT NULL COMMENT '月结密码',
`net_name` varchar(50) DEFAULT NULL COMMENT '取件网点',
`mer_id` int(11) DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '1',
`check_man` varchar(50) DEFAULT NULL COMMENT '承载快递员名',
`partner_name` varchar(50) DEFAULT NULL COMMENT '客户账户名称',
`code` varchar(50) DEFAULT NULL COMMENT '承载编号',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_extend"
#
CREATE TABLE `eb_extend` (
`extend_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商户 id',
`link_id` int(10) unsigned NOT NULL COMMENT '关联字段',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`extend_type` varchar(32) NOT NULL COMMENT '扩展字段',
`extend_value` varchar(255) NOT NULL COMMENT '扩展值',
`update_time` datetime NOT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`extend_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `link_id` (`link_id`,`extend_type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_feedback"
#
CREATE TABLE `eb_feedback` (
`feedback_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL DEFAULT '0',
`type` varchar(255) NOT NULL,
`content` varchar(512) NOT NULL,
`images` text COMMENT '反馈图片',
`realname` varchar(24) NOT NULL COMMENT '姓名',
`contact` varchar(32) NOT NULL COMMENT '联系方式',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` tinyint(1) DEFAULT '0' COMMENT '状态',
`reply` varchar(255) DEFAULT NULL COMMENT '回复,最终给用户的回复内容',
`remake` varchar(255) DEFAULT NULL COMMENT '备注,后台人员自己查看用',
`is_del` tinyint(1) NOT NULL DEFAULT '0',
`update_time` timestamp NULL DEFAULT NULL COMMENT '回复时间',
PRIMARY KEY (`feedback_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户反馈表';
#
# Structure for table "eb_feedback_category"
#
CREATE TABLE `eb_feedback_category` (
`feedback_category_id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '商品分类表ID',
`pid` mediumint(11) NOT NULL COMMENT '父id',
`cate_name` varchar(100) NOT NULL COMMENT '分类名称',
`path` varchar(255) NOT NULL DEFAULT '' COMMENT '路径',
`sort` mediumint(11) NOT NULL COMMENT '排序',
`pic` varchar(128) NOT NULL DEFAULT '' COMMENT '图标',
`is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否显示',
`level` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '等级',
`mer_id` int(11) unsigned DEFAULT '0' COMMENT '商户id',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`feedback_category_id`) USING BTREE,
KEY `pid` (`pid`) USING BTREE,
KEY `sort` (`sort`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=169 DEFAULT CHARSET=utf8 COMMENT='用户反馈分类表';
#
# Structure for table "eb_financial"
#
CREATE TABLE `eb_financial` (
`financial_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`financial_sn` varchar(32) NOT NULL COMMENT '单号',
`mer_money` decimal(12,2) unsigned NOT NULL COMMENT '余额',
`extract_money` decimal(12,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '提现金额',
`financial_type` int(11) unsigned DEFAULT '0' COMMENT '收款类型',
`financial_account` varchar(500) NOT NULL COMMENT '商户账户信息',
`financial_status` int(11) unsigned DEFAULT '0' COMMENT '转账状态',
`status` int(10) NOT NULL COMMENT '审核0待审核1通过 -1 未通过',
`refusal` varchar(32) DEFAULT NULL COMMENT '拒绝理由',
`mer_id` int(11) unsigned NOT NULL COMMENT '商户 id',
`image` varchar(1000) DEFAULT NULL COMMENT '凭证',
`admin_id` int(11) DEFAULT NULL,
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`status_time` timestamp NULL DEFAULT NULL COMMENT '审核时间',
`update_time` timestamp NULL DEFAULT NULL COMMENT '修改拼凭证时间',
`is_del` int(11) unsigned DEFAULT '0',
`mark` varchar(255) DEFAULT NULL COMMENT '商户备注',
`admin_mark` varchar(255) DEFAULT NULL COMMENT '平台备注',
`mer_admin_id` int(11) DEFAULT NULL COMMENT '商户管理员',
`type` int(11) unsigned DEFAULT '0' COMMENT '申请类型 0.余额 1 保证金',
PRIMARY KEY (`financial_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='商户财务申请提现';
#
# Structure for table "eb_financial_record"
#
CREATE TABLE `eb_financial_record` (
`financial_record_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`financial_record_sn` varchar(32) NOT NULL COMMENT '流水号',
`order_id` int(10) unsigned NOT NULL COMMENT '订单号',
`order_sn` varchar(32) NOT NULL COMMENT '订单编号',
`user_info` varchar(32) NOT NULL COMMENT '用户名',
`user_id` int(10) unsigned NOT NULL COMMENT '用户 id',
`financial_type` varchar(32) NOT NULL COMMENT '流水类型',
`financial_pm` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0 = 支出 1 = 获得',
`number` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '金额',
`type` tinyint(1) NOT NULL DEFAULT '-1' COMMENT '0:商户 1:公共 2:平台',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`financial_record_id`),
KEY `mer_id` (`mer_id`),
KEY `financial_type` (`financial_type`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='商户财务流水';
#
# Structure for table "eb_guarantee"
#
CREATE TABLE `eb_guarantee` (
`guarantee_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
`guarantee_name` varchar(255) DEFAULT NULL COMMENT '保障服务名称',
`guarantee_info` varchar(500) DEFAULT NULL COMMENT '保障服务简介',
`status` int(11) DEFAULT '1' COMMENT '0.关闭1开启',
`image` varchar(255) DEFAULT NULL COMMENT '图标',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`mer_count` int(11) DEFAULT '0' COMMENT '使用的商户数',
`product_cout` int(11) DEFAULT '0' COMMENT '使用的商品数',
`is_del` int(11) DEFAULT '0',
`create_time` timestamp NULL DEFAULT NULL,
`update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`guarantee_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='保障服务选项';
#
# Structure for table "eb_guarantee_template"
#
CREATE TABLE `eb_guarantee_template` (
`guarantee_template_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`template_name` varchar(255) DEFAULT NULL,
`mer_id` int(11) DEFAULT NULL,
`status` int(11) unsigned DEFAULT '1',
`sort` int(11) DEFAULT NULL,
`create_time` timestamp NULL DEFAULT NULL,
`is_del` int(11) unsigned DEFAULT '0',
PRIMARY KEY (`guarantee_template_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='保障服务模板';
#
# Structure for table "eb_guarantee_value"
#
CREATE TABLE `eb_guarantee_value` (
`guarantee_value_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`guarantee_id` int(11) unsigned DEFAULT NULL,
`guarantee_template_id` int(11) unsigned DEFAULT NULL,
`mer_id` int(11) DEFAULT NULL,
`status` int(11) DEFAULT '1',
PRIMARY KEY (`guarantee_value_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='保障服务模板条款';
#
# Structure for table "eb_label_rule"
#
CREATE TABLE `eb_label_rule` (
`label_rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`label_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '标签 id',
`type` tinyint(1) unsigned DEFAULT '0' COMMENT '0=订单数 1=订单金额',
`min` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '最小值',
`max` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT ' 最大值',
`user_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户数',
`update_time` timestamp NULL DEFAULT NULL COMMENT '更新时间',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`label_rule_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='自定标签规则';
#
# Structure for table "eb_member_interests"
#
CREATE TABLE `eb_member_interests` (
`interests_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL COMMENT '名称',
`info` varchar(200) DEFAULT NULL COMMENT '介绍',
`brokerage_level` tinyint(3) unsigned DEFAULT NULL COMMENT '关联等级',
`pic` varchar(128) DEFAULT NULL COMMENT '图标',
`type` tinyint(2) DEFAULT '0' COMMENT '类型1.免费会员 2.付费会员',
`link` varchar(500) DEFAULT NULL COMMENT '跳转 链接',
`has_type` int(2) DEFAULT NULL COMMENT '特权类型',
`value` varchar(500) DEFAULT NULL COMMENT '特权值',
`on_pic` varchar(128) DEFAULT NULL,
`status` tinyint(2) DEFAULT NULL,
PRIMARY KEY (`interests_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_merchant"
#
CREATE TABLE `eb_merchant` (
`mer_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商户id',
`category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户分类 id',
`type_id` int(10) unsigned DEFAULT '0' COMMENT '店铺类型 id',
`mer_name` varchar(32) NOT NULL DEFAULT '' COMMENT '商户名称',
`real_name` varchar(32) NOT NULL DEFAULT '' COMMENT '商户姓名',
`mer_phone` varchar(13) NOT NULL DEFAULT '' COMMENT '商户手机号',
`mer_address` varchar(64) NOT NULL DEFAULT '' COMMENT '商户地址',
`mer_keyword` varchar(64) NOT NULL DEFAULT '' COMMENT '商户关键字',
`mer_avatar` varchar(128) DEFAULT NULL COMMENT '商户头像',
`mer_banner` varchar(128) DEFAULT NULL COMMENT '商户banner图片',
`mini_banner` varchar(128) DEFAULT NULL COMMENT '商户店店铺街图片',
`sales` int(11) unsigned DEFAULT '0' COMMENT '销量',
`product_score` decimal(11,1) DEFAULT '5.0' COMMENT '商品描述评分',
`service_score` decimal(11,1) DEFAULT '5.0' COMMENT '服务评分',
`postage_score` decimal(11,1) DEFAULT '5.0' COMMENT '物流评分',
`mark` varchar(256) NOT NULL COMMENT '商户备注',
`reg_admin_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '总后台管理员ID',
`sort` int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商户是否禁用0锁定,1正常',
`commission_rate` decimal(6,2) unsigned DEFAULT NULL COMMENT '提成比例',
`commission_switch` int(10) DEFAULT '0' COMMENT '商户手续费单独设置 0 关闭 1 开启',
`long` varchar(16) DEFAULT NULL COMMENT '经度',
`lat` varchar(16) DEFAULT NULL COMMENT '纬度',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0未删除1删除',
`is_audit` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '添加的产品是否审核0不审核1审核',
`is_bro_room` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否审核直播间0不审核1审核',
`is_bro_goods` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否审核直播商品0不审核1审核',
`is_best` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否推荐',
`is_trader` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否自营',
`mer_state` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '商户是否1开启0关闭',
`mer_info` varchar(256) NOT NULL DEFAULT '' COMMENT '店铺简介',
`service_phone` varchar(13) NOT NULL DEFAULT '' COMMENT '店铺电话',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`care_count` int(11) unsigned DEFAULT '0' COMMENT '关注总数',
`copy_product_num` int(11) unsigned DEFAULT '0' COMMENT '剩余复制商品次数',
`export_dump_num` int(11) unsigned DEFAULT '0' COMMENT '电子面单剩余次数',
`mer_money` decimal(12,2) NOT NULL DEFAULT '0.00' COMMENT '商户余额',
`financial_bank` varchar(255) DEFAULT NULL COMMENT '银行卡转账信息',
`financial_wechat` varchar(255) DEFAULT NULL COMMENT '微信转账信息',
`financial_alipay` varchar(255) DEFAULT NULL COMMENT '支付宝转账信息',
`financial_type` tinyint(2) unsigned DEFAULT '1' COMMENT '默认使用类型',
`sub_mchid` varchar(16) NOT NULL DEFAULT '' COMMENT '微信支付分配的分账号',
`delivery_way` varchar(50) DEFAULT '' COMMENT '配送方式',
`delivery_balance` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '配送余额',
`margin` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '保证金',
`margin_remind_time` varchar(255) DEFAULT NULL COMMENT '保证金补缴提醒结束时间,时间点到了就自动关闭店铺',
`ot_margin` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '保证金额度',
`is_margin` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否有保证金0无1有未支付10已支付-1 申请退款, -10 拒绝退款)',
PRIMARY KEY (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8 COMMENT='商户表';
#
# Structure for table "eb_merchant_admin"
#
CREATE TABLE `eb_merchant_admin` (
`merchant_admin_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT '商户管理员表ID',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户ID(属于哪一个商户)',
`account` varchar(32) NOT NULL COMMENT '商户管理员账号',
`pwd` char(64) NOT NULL COMMENT '商户管理员密码',
`real_name` varchar(16) NOT NULL COMMENT '商户管理员姓名',
`phone` varchar(13) DEFAULT NULL COMMENT '商户管理员手机号',
`last_ip` varchar(16) DEFAULT NULL COMMENT '商户管理员最后一次登录IP地址',
`last_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '商户管理员最后一次登录时间',
`roles` varchar(128) DEFAULT '',
`login_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户管理员登录次数',
`level` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '商户管理员等级(管理员添加的为0, 商户添加的为1)',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否有效 1有效 0无效 ',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '商户管理员添加时间',
PRIMARY KEY (`merchant_admin_id`) USING BTREE,
KEY `account` (`account`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8 COMMENT='商户管理员表';
#
# Structure for table "eb_merchant_applyments"
#
CREATE TABLE `eb_merchant_applyments` (
`mer_applyments_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`out_request_no` varchar(128) DEFAULT NULL COMMENT '业务申请编号',
`applyment_id` varchar(100) DEFAULT NULL COMMENT '微信支付分配的申请单号',
`mer_id` int(11) DEFAULT '0' COMMENT '商户ID',
`sub_mchid` varchar(100) DEFAULT NULL COMMENT '二级商户号',
`mer_name` varchar(50) DEFAULT NULL COMMENT '商户名',
`info` text COMMENT '申请资料',
`status` int(11) DEFAULT '0' COMMENT '申请状态: 0.平台未提交,-1.平台驳回10.平台提交审核中11.需用户操作 20.已完成30.已冻结40.驳回',
`message` varchar(1000) DEFAULT NULL COMMENT '返回信息',
`mark` varchar(255) DEFAULT NULL COMMENT '备注',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`is_del` int(11) DEFAULT '0' COMMENT '删除',
PRIMARY KEY (`mer_applyments_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商户申请分账商户号表';
#
# Structure for table "eb_merchant_category"
#
CREATE TABLE `eb_merchant_category` (
`merchant_category_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商户分类 id',
`commission_rate` decimal(6,4) unsigned NOT NULL DEFAULT '0.0000' COMMENT '手续费',
`category_name` varchar(32) NOT NULL COMMENT '商户分类名称',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`merchant_category_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COMMENT='商户分类表';
#
# Structure for table "eb_merchant_intention"
#
CREATE TABLE `eb_merchant_intention` (
`mer_intention_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`uid` int(11) unsigned DEFAULT '0' COMMENT '用户ID',
`phone` varchar(11) DEFAULT NULL COMMENT '手机号',
`mer_name` varchar(30) DEFAULT NULL COMMENT '商户名称',
`name` varchar(30) DEFAULT NULL COMMENT '客户姓名',
`create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '提交时间',
`status` tinyint(2) DEFAULT '0' COMMENT '处理状态 1通过 2未通过',
`fail_msg` varchar(255) DEFAULT NULL COMMENT '未通过原因',
`is_del` tinyint(2) DEFAULT '0' COMMENT '删除状态 1删除 0未删除',
`mark` varchar(255) DEFAULT NULL COMMENT '备注',
`mer_id` int(11) unsigned DEFAULT '0' COMMENT '关联商户',
`images` varchar(2000) DEFAULT NULL COMMENT '多图',
`merchant_category_id` int(11) unsigned DEFAULT '0' COMMENT '商户分类',
`mer_type_id` int(10) unsigned DEFAULT '0' COMMENT '店铺类型',
PRIMARY KEY (`mer_intention_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商户申请表';
#
# Structure for table "eb_merchant_reconciliation"
#
CREATE TABLE `eb_merchant_reconciliation` (
`reconciliation_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '对账id',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户id',
`admin_id` int(10) unsigned NOT NULL COMMENT '后台管理员id',
`mer_admin_id` int(10) unsigned NOT NULL COMMENT '商户管理员id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '对账时间',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '对账状态0等待对账1取消对账2确定对账',
`price` decimal(10,2) NOT NULL COMMENT '对账总金额',
`order_price` decimal(10,2) unsigned DEFAULT NULL COMMENT '订单金额',
`order_extension` decimal(10,2) NOT NULL COMMENT '订单佣金',
`order_rate` decimal(10,2) DEFAULT NULL COMMENT '订单手续费',
`refund_price` decimal(10,2) NOT NULL COMMENT '退款单金额',
`refund_extension` decimal(10,2) NOT NULL COMMENT '退款单佣金',
`refund_rate` decimal(10,2) DEFAULT NULL,
`bank` varchar(128) DEFAULT NULL COMMENT '银行卡开户行',
`bank_number` varchar(20) DEFAULT NULL COMMENT '银行卡卡号',
`bank_name` varchar(64) DEFAULT NULL COMMENT '银行卡持卡人姓名',
`bank_address` varchar(256) DEFAULT NULL COMMENT '银行卡开户行地址',
`mark` varchar(255) DEFAULT NULL COMMENT '备注',
`admin_mark` varchar(255) DEFAULT NULL COMMENT '管理员备注',
`is_accounts` tinyint(1) unsigned NOT NULL COMMENT '转账状态0未转账1已转账',
`order_ids` varchar(255) DEFAULT NULL COMMENT '已对账的订单id',
`accounts_time` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`reconciliation_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商户对账记录表';
#
# Structure for table "eb_merchant_reconciliation_order"
#
CREATE TABLE `eb_merchant_reconciliation_order` (
`reconciliation_id` int(11) DEFAULT NULL COMMENT '对账单id',
`order_id` int(11) DEFAULT NULL COMMENT '订单id',
`type` tinyint(1) DEFAULT NULL COMMENT '0.订单 1 . 退款订单'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='对账单中间表';
#
# Structure for table "eb_merchant_type"
#
CREATE TABLE `eb_merchant_type` (
`mer_type_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '商户类型 id',
`type_name` varchar(16) NOT NULL COMMENT '类型名称',
`type_info` varchar(512) DEFAULT NULL COMMENT '类型要求',
`description` varchar(512) DEFAULT NULL COMMENT '类型说明',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`margin` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '保证金',
`is_margin` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否有保证金0无1有',
`mark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`mer_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='商户类型表';
#
# Structure for table "eb_open_auth"
#
CREATE TABLE `eb_open_auth` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(50) DEFAULT NULL COMMENT '标题',
`access_key` varchar(50) DEFAULT NULL,
`secret_key` varchar(255) DEFAULT NULL,
`status` tinyint(2) DEFAULT NULL COMMENT '状态',
`mark` varchar(255) DEFAULT NULL COMMENT '备注',
`mer_id` int(11) DEFAULT NULL COMMENT '商户ID',
`auth` varchar(255) DEFAULT NULL COMMENT '权限',
`sort` int(11) DEFAULT NULL,
`is_del` tinyint(2) DEFAULT '0' COMMENT '是否删除',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间',
`delete_time` timestamp NULL DEFAULT NULL COMMENT '删除时间',
`last_ip` varchar(50) DEFAULT NULL COMMENT '最后登录的IP',
`last_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '最后登录的时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_operate_log"
#
CREATE TABLE `eb_operate_log` (
`operate_log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户id',
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`relevance_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联id',
`relevance_title` varchar(255) DEFAULT NULL COMMENT '关联标题',
`relevance_type` varchar(255) NOT NULL COMMENT '关联类型',
`type` enum('1','2') NOT NULL DEFAULT '1' COMMENT '1|平台 2|商户',
`category` varchar(255) NOT NULL COMMENT '类别',
`action` varchar(255) NOT NULL DEFAULT '' COMMENT '操作类型',
`operator_role_id` int(11) DEFAULT NULL COMMENT '操作角色id',
`operator_role_nickname` varchar(255) DEFAULT NULL COMMENT '操作角色昵称',
`operator_uid` varchar(255) NOT NULL COMMENT '操作用户id',
`operator_nickname` varchar(255) DEFAULT NULL COMMENT '操作用户昵称',
`mark` varchar(2000) DEFAULT NULL COMMENT '备注',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`operate_log_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_page_category"
#
CREATE TABLE `eb_page_category` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`pid` int(10) NOT NULL DEFAULT '0' COMMENT '父类id',
`type` varchar(50) NOT NULL DEFAULT 'link' COMMENT '类型:link、special、product、product_category、custom',
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '分类名称',
`sort` smallint(5) NOT NULL DEFAULT '0' COMMENT '排序',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
`add_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`level` tinyint(1) NOT NULL DEFAULT '0',
`is_mer` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_page_link"
#
CREATE TABLE `eb_page_link` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`cate_id` int(10) NOT NULL DEFAULT '0' COMMENT '分类id',
`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '分组1:基础2:分销3:个人中心',
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '页面名称',
`url` varchar(255) NOT NULL DEFAULT '' COMMENT '页面链接',
`param` varchar(255) NOT NULL DEFAULT '' COMMENT '参数',
`example` varchar(255) NOT NULL DEFAULT '' COMMENT '事例',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态',
`sort` smallint(5) NOT NULL DEFAULT '0' COMMENT '排序',
`add_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`is_mer` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1是商户的链接',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_parameter"
#
CREATE TABLE `eb_parameter` (
`parameter_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`template_id` int(10) unsigned NOT NULL COMMENT '模板 id',
`mer_id` int(10) unsigned DEFAULT '0' COMMENT '商户 id',
`name` varchar(32) NOT NULL COMMENT '参数名称',
`value` varchar(255) DEFAULT NULL COMMENT '参数值',
`create_time` datetime DEFAULT CURRENT_TIMESTAMP,
`sort` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`parameter_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `template_id` (`template_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_parameter_template"
#
CREATE TABLE `eb_parameter_template` (
`template_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户id',
`template_name` varchar(64) NOT NULL COMMENT '模板名称',
`sort` int(10) unsigned DEFAULT '0',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`template_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_parameter_value"
#
CREATE TABLE `eb_parameter_value` (
`parameter_value_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parameter_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '关联参数 id',
`product_id` int(10) unsigned NOT NULL COMMENT '商品 id',
`name` varchar(64) DEFAULT NULL COMMENT '参数名称',
`value` varchar(64) DEFAULT NULL COMMENT '参数值',
`sort` int(10) unsigned DEFAULT '0' COMMENT '排序',
`create_time` datetime DEFAULT NULL,
`mer_id` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`parameter_value_id`) USING BTREE,
KEY `parameter_id` (`parameter_id`) USING BTREE,
KEY `product_id` (`product_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_presell_order"
#
CREATE TABLE `eb_presell_order` (
`presell_order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '预售尾款订单id',
`presell_order_sn` varchar(32) NOT NULL COMMENT '预售订单号',
`uid` int(10) unsigned NOT NULL COMMENT '用户 id',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`order_id` int(10) unsigned NOT NULL COMMENT '订单id',
`transaction_id` varchar(60) DEFAULT NULL COMMENT '微信支付订单号(分账时有效)',
`final_start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '支付开始时间',
`final_end_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '尾款支付结时间',
`paid` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '0:未支付 1:已支付',
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '0:无效 1:有效',
`pay_type` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '支付方式 0余额 1微信 2小程序 3,4支付宝',
`pay_price` decimal(8,2) unsigned NOT NULL COMMENT '尾款',
`refun_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额',
`pay_time` timestamp NULL DEFAULT NULL COMMENT '支付时间',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`is_combine` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为合并支付',
PRIMARY KEY (`presell_order_id`) USING BTREE,
UNIQUE KEY `order_id` (`order_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_price_rule"
#
CREATE TABLE `eb_price_rule` (
`rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`rule_name` varchar(64) NOT NULL COMMENT '名称',
`sort` int(10) unsigned DEFAULT '0' COMMENT '排序',
`is_show` tinyint(3) unsigned DEFAULT '1' COMMENT '是否显示',
`is_default` tinyint(3) unsigned DEFAULT '0' COMMENT '是否默认',
`content` longtext COMMENT '内容',
`create_time` datetime DEFAULT CURRENT_TIMESTAMP,
`update_time` datetime DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`rule_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_record"
#
CREATE TABLE `eb_record` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(20) NOT NULL DEFAULT '',
`uid` int(11) NOT NULL DEFAULT '0',
`link_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
`title` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_relevance"
#
CREATE TABLE `eb_relevance` (
`relevance_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`left_id` int(11) unsigned NOT NULL,
`right_id` int(11) unsigned NOT NULL,
`type` varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (`relevance_id`) USING BTREE,
KEY `type` (`type`,`left_id`,`right_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2072 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_routine_qrcode"
#
CREATE TABLE `eb_routine_qrcode` (
`routine_qrcode_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信二维码ID',
`third_type` varchar(32) NOT NULL COMMENT '二维码类型 spread(用户推广) product_spread(商品推广)',
`third_id` int(11) unsigned NOT NULL COMMENT '用户id',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态 0不可用 1可用',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`page` varchar(255) DEFAULT NULL COMMENT '小程序页面路径带参数',
`qrcode_url` varchar(255) DEFAULT NULL COMMENT '小程序二维码路径',
`url_time` timestamp NULL DEFAULT NULL COMMENT '二维码添加时间',
PRIMARY KEY (`routine_qrcode_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='小程序二维码管理表';
#
# Structure for table "eb_serve_meal"
#
CREATE TABLE `eb_serve_meal` (
`meal_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) DEFAULT NULL COMMENT '套餐名称',
`type` int(11) DEFAULT '0' COMMENT '套餐类型,1复制商品2电子面单',
`price` decimal(8,2) DEFAULT '0.00' COMMENT '价格',
`num` int(11) DEFAULT '1' COMMENT '数量',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`status` int(11) DEFAULT '1' COMMENT '状态',
`is_del` int(11) DEFAULT '0',
`create_time` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`meal_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_serve_order"
#
CREATE TABLE `eb_serve_order` (
`order_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`meal_id` int(11) DEFAULT NULL COMMENT '套餐ID',
`pay_type` int(11) DEFAULT NULL COMMENT '支付方式1微信2支付宝,3 平台操作',
`order_sn` varchar(50) DEFAULT NULL COMMENT '订单ID',
`pay_price` decimal(8,2) DEFAULT NULL COMMENT '价格',
`order_info` varchar(255) DEFAULT NULL COMMENT '套餐信息',
`type` int(11) DEFAULT NULL COMMENT '套餐类型 1 采集 2 电子面单 10 保证金 20同城配送 30 会员充值',
`status` int(11) DEFAULT '0' COMMENT '状态默认0支付成功 1支付失败 -120已退款',
`mer_id` int(11) DEFAULT NULL COMMENT '商户ID/用户ID',
`create_time` timestamp NULL DEFAULT NULL,
`is_del` int(11) DEFAULT '0',
`pay_time` timestamp NULL DEFAULT NULL COMMENT '支付时间',
PRIMARY KEY (`order_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_shipping_template"
#
CREATE TABLE `eb_shipping_template` (
`shipping_template_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '编号',
`name` varchar(255) NOT NULL COMMENT '模板名称',
`type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '计费方式 0=数量 1=重量 2=体积',
`appoint` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '开启指定包邮',
`undelivery` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '开启指定区域不配送',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`is_default` tinyint(1) unsigned DEFAULT '0' COMMENT '默认模板',
`sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`info` varchar(1000) DEFAULT NULL COMMENT '运费说明',
PRIMARY KEY (`shipping_template_id`) USING BTREE,
KEY `mer_id` (`mer_id`,`sort`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8 COMMENT='运费表';
#
# Structure for table "eb_shipping_template_free"
#
CREATE TABLE `eb_shipping_template_free` (
`shipping_template_free_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '编号',
`temp_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '模板ID',
`city_id` text NOT NULL COMMENT '城市ID /id/id/id/id/',
`number` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '包邮件数',
`price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '包邮金额',
PRIMARY KEY (`shipping_template_free_id`) USING BTREE,
KEY `temp_id` (`temp_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8 COMMENT='指定包邮信息表';
#
# Structure for table "eb_shipping_template_region"
#
CREATE TABLE `eb_shipping_template_region` (
`shipping_template_region_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '编号',
`temp_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '模板ID',
`city_id` text NOT NULL COMMENT '城市ID /id/id/id/',
`first` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '首件',
`first_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '首件运费',
`continue` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '续件',
`continue_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '续件运费',
PRIMARY KEY (`shipping_template_region_id`) USING BTREE,
KEY `temp_id` (`temp_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=405 DEFAULT CHARSET=utf8 COMMENT='配送区域表';
#
# Structure for table "eb_shipping_template_undelivery"
#
CREATE TABLE `eb_shipping_template_undelivery` (
`shipping_template_undelivery_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '编号',
`temp_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '模板ID',
`city_id` text NOT NULL COMMENT '城市ID /id/id/id/',
PRIMARY KEY (`shipping_template_undelivery_id`) USING BTREE,
KEY `temp_id` (`temp_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8 COMMENT='指定不配送区域表';
#
# Structure for table "eb_sms_record"
#
CREATE TABLE `eb_sms_record` (
`sms_record_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '短信发送记录编号',
`uid` varchar(255) NOT NULL COMMENT '短信平台账号',
`phone` char(11) NOT NULL COMMENT '接受短信的手机号',
`content` text NOT NULL COMMENT '短信内容',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '发送短信时间',
`ip` varchar(16) NOT NULL DEFAULT '' COMMENT '添加记录ip',
`template` varchar(255) NOT NULL COMMENT '短信模板ID',
`resultcode` int(6) unsigned DEFAULT NULL COMMENT '状态码 100=成功,130=失败,131=空号,132=停机,133=关机,134=无状态',
`record_id` int(11) unsigned NOT NULL COMMENT '发送记录id',
PRIMARY KEY (`sms_record_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='短信发送记录表';
#
# Structure for table "eb_store_activity"
#
CREATE TABLE `eb_store_activity` (
`activity_id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`activity_name` varchar(128) NOT NULL DEFAULT '' COMMENT '活动名称',
`start_time` timestamp NULL DEFAULT NULL COMMENT '开始时间',
`end_time` timestamp NULL DEFAULT NULL COMMENT '结束时间',
`pic` varchar(128) DEFAULT '' COMMENT '图片',
`is_show` tinyint(1) DEFAULT '0' COMMENT '是否显示',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态0未开始1进行中2已结束',
`activity_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1.氛围图 2.边框',
`create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
`scope_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '指定类型0全部商品1指定商品2指定分类3指定商户4秒杀活动',
`images` varchar(500) DEFAULT '' COMMENT '多图',
`info` varchar(500) DEFAULT '' COMMENT '简介',
`color` varchar(128) DEFAULT '' COMMENT '背景色',
`sort` int(10) DEFAULT '0' COMMENT '排序',
`mer_id` int(10) DEFAULT '0' COMMENT '商户ID',
`link_id` int(10) DEFAULT NULL COMMENT '关联ID',
`update_time` timestamp NULL DEFAULT NULL,
`count` int(10) unsigned DEFAULT '0' COMMENT '需要的总数',
`total` int(10) unsigned DEFAULT '0' COMMENT '已有的总数',
`is_display` tinyint(1) DEFAULT '1' COMMENT '是否在活动列表中显示',
PRIMARY KEY (`activity_id`) USING BTREE,
KEY `start_time` (`start_time`,`end_time`) USING BTREE,
KEY `activity_type` (`activity_type`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4;
#
# Structure for table "eb_store_activity_related"
#
CREATE TABLE `eb_store_activity_related` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`activity_id` int(11) NOT NULL DEFAULT '0' COMMENT '活动ID',
`activity_type` varchar(255) DEFAULT NULL COMMENT '活动类型',
`keys` varchar(2000) DEFAULT NULL COMMENT '主要信息',
`value` varchar(2000) DEFAULT NULL COMMENT '活动值',
`form_value` text COMMENT '表单内容',
`uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
`link_id` int(11) DEFAULT NULL,
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`nickname` varchar(255) DEFAULT NULL,
`avatar` varchar(255) DEFAULT NULL,
`phone` varchar(20) DEFAULT NULL,
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除 1|是 0|否',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `join_id` (`id`) USING BTREE,
KEY `activity_id` (`activity_id`,`activity_type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_attr_template"
#
CREATE TABLE `eb_store_attr_template` (
`attr_template_id` int(10) NOT NULL AUTO_INCREMENT,
`template_name` varchar(32) NOT NULL COMMENT '规格名称',
`template_value` text NOT NULL COMMENT '规格值',
`mer_id` int(11) NOT NULL COMMENT '商户 id',
PRIMARY KEY (`attr_template_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COMMENT='商品规则值(规格)表';
#
# Structure for table "eb_store_brand"
#
CREATE TABLE `eb_store_brand` (
`brand_id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '商品品牌表ID',
`brand_category_id` mediumint(11) NOT NULL COMMENT '父id',
`brand_name` varchar(100) NOT NULL COMMENT '品牌名称',
`sort` mediumint(11) NOT NULL COMMENT '排序',
`pic` varchar(128) NOT NULL DEFAULT '' COMMENT '图标',
`is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否显示',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`brand_id`) USING BTREE,
KEY `pid` (`brand_category_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8 COMMENT='商品品牌表';
#
# Structure for table "eb_store_brand_category"
#
CREATE TABLE `eb_store_brand_category` (
`store_brand_category_id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '品牌分类表ID',
`pid` mediumint(11) NOT NULL COMMENT '父id',
`cate_name` varchar(100) NOT NULL COMMENT '分类名称',
`path` varchar(255) NOT NULL DEFAULT '' COMMENT '路径',
`sort` mediumint(11) NOT NULL COMMENT '排序',
`is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否显示',
`level` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '等级',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`store_brand_category_id`) USING BTREE,
KEY `pid` (`pid`) USING BTREE,
KEY `sort` (`sort`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=158 DEFAULT CHARSET=utf8 COMMENT='品牌分类表';
#
# Structure for table "eb_store_cart"
#
CREATE TABLE `eb_store_cart` (
`cart_id` bigint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '购物车表ID',
`uid` int(10) unsigned NOT NULL COMMENT '用户ID',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`product_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '类型 0=普通产品2.预售商品',
`product_id` int(10) unsigned NOT NULL COMMENT '商品ID',
`product_attr_unique` varchar(16) NOT NULL DEFAULT '' COMMENT '商品属性',
`cart_num` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '商品数量',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`source` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '来源 1.直播间,2.预售商品,3.助力商品',
`source_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '来源关联 id',
`is_pay` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0 = 未购买 1 = 已购买',
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
`is_new` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为立即购买',
`is_fail` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否失效',
`spread_id` int(11) unsigned DEFAULT '0' COMMENT '推广人',
PRIMARY KEY (`cart_id`) USING BTREE,
KEY `user_id` (`uid`) USING BTREE,
KEY `product_id` (`product_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='购物车表';
#
# Structure for table "eb_store_category"
#
CREATE TABLE `eb_store_category` (
`store_category_id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '商品分类表ID',
`pid` mediumint(11) NOT NULL COMMENT '父id',
`cate_name` varchar(100) NOT NULL COMMENT '分类名称',
`path` varchar(255) NOT NULL DEFAULT '' COMMENT '路径',
`sort` mediumint(11) NOT NULL COMMENT '排序',
`pic` varchar(128) NOT NULL DEFAULT '' COMMENT '图标',
`is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否显示',
`level` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '等级',
`mer_id` int(11) unsigned DEFAULT '0' COMMENT '商户id',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '添加时间',
`is_hot` tinyint(1) DEFAULT '0' COMMENT '是否推荐',
`type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0 商品1 积分商品',
PRIMARY KEY (`store_category_id`) USING BTREE,
KEY `pid` (`pid`) USING BTREE,
KEY `sort` (`sort`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=334 DEFAULT CHARSET=utf8 COMMENT='商品分类表';
#
# Structure for table "eb_store_coupon"
#
CREATE TABLE `eb_store_coupon` (
`coupon_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '优惠券表ID',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`is_timeout` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否限时',
`start_time` timestamp NULL DEFAULT NULL COMMENT '优惠券领取开启时间',
`end_time` timestamp NULL DEFAULT NULL COMMENT '优惠券领取结束时间',
`is_limited` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否限量',
`total_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '优惠券领取数量',
`remain_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '优惠券剩余领取数量',
`send_type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0=领取 1=消费满赠 2=新人 3=买增 4=首单赠送',
`full_reduction` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '消费满多少赠送优惠券',
`title` varchar(64) NOT NULL COMMENT '优惠券名称',
`coupon_price` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券面值',
`use_min_price` int(11) NOT NULL DEFAULT '0' COMMENT '最低消费多少金额可用优惠券',
`coupon_type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '优惠券类型 0=有效天数 1=固定时间段',
`coupon_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '优惠券有效期限(单位:天)',
`use_start_time` timestamp NULL DEFAULT NULL COMMENT '开始时间',
`use_end_time` timestamp NULL DEFAULT NULL COMMENT '到期时间',
`sort` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '排序',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态0关闭1开启 -1: 失效)',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除',
`type` tinyint(2) NOT NULL DEFAULT '0' COMMENT '优惠券类型 0-店铺 1-商品券 10 平台通用券 11平台品类券 12 平台跨店券',
PRIMARY KEY (`coupon_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='优惠券表';
#
# Structure for table "eb_store_coupon_issue_user"
#
CREATE TABLE `eb_store_coupon_issue_user` (
`uid` int(10) NOT NULL DEFAULT '0' COMMENT '领取优惠券用户ID',
`coupon_id` int(10) NOT NULL DEFAULT '0' COMMENT '优惠券ID',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '领取时间',
KEY `uid` (`uid`,`coupon_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠券前台用户领取记录表';
#
# Structure for table "eb_store_coupon_product"
#
CREATE TABLE `eb_store_coupon_product` (
`product_id` int(11) NOT NULL DEFAULT '0' COMMENT '产品id',
`coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '优惠卷id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠卷关联商品辅助表';
#
# Structure for table "eb_store_coupon_send"
#
CREATE TABLE `eb_store_coupon_send` (
`coupon_send_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`coupon_id` int(10) unsigned NOT NULL COMMENT '优惠券 id',
`coupon_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '发送数量',
`mark` varchar(512) NOT NULL COMMENT '发送群体',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:发送中 1:全部发送',
PRIMARY KEY (`coupon_send_id`),
KEY `mer_id` (`mer_id`),
KEY `coupon_id` (`coupon_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠券发送记录';
#
# Structure for table "eb_store_coupon_user"
#
CREATE TABLE `eb_store_coupon_user` (
`coupon_user_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '优惠券发放记录id',
`coupon_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '兑换的项目id',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '优惠券所属用户',
`coupon_title` varchar(32) NOT NULL COMMENT '优惠券名称',
`coupon_price` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券的面值',
`use_min_price` int(11) NOT NULL DEFAULT '0' COMMENT '最低消费多少金额可用优惠券',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '优惠券创建时间',
`start_time` timestamp NULL DEFAULT NULL COMMENT '优惠券开启时间',
`end_time` timestamp NULL DEFAULT NULL COMMENT '优惠券结束时间',
`use_time` timestamp NULL DEFAULT NULL COMMENT '使用时间',
`type` varchar(16) NOT NULL DEFAULT 'send' COMMENT '获取方式(receive:自己领取 send:后台发送 give:满赠 new:新人 buy:买赠送)',
`send_id` int(10) unsigned DEFAULT '0' COMMENT '批量发送 id',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态0未使用1已使用, 2:已过期)',
`is_fail` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否有效',
PRIMARY KEY (`coupon_user_id`) USING BTREE,
KEY `coupon_id` (`coupon_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `type` (`type`,`send_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='优惠券发放记录表';
#
# Structure for table "eb_store_discounts"
#
CREATE TABLE `eb_store_discounts` (
`discount_id` int(10) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '套餐名称',
`image` varchar(500) NOT NULL DEFAULT '' COMMENT '组合套餐主图',
`type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '套餐类型0固定1搭配',
`is_limit` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否限量0不限量1限量',
`limit_num` int(10) NOT NULL DEFAULT '0' COMMENT '限量个数',
`link_ids` varchar(255) NOT NULL DEFAULT '' COMMENT '关联标签',
`product_ids` varchar(255) DEFAULT '' COMMENT '商品IDS',
`is_time` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否限时0不限时1限时',
`start_time` int(11) NOT NULL DEFAULT '0' COMMENT '开始时间',
`stop_time` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
`sort` int(10) NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`free_shipping` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否包邮0不包邮1包邮',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '平台是否上架0不上架1上架',
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除0未删除1已删除',
`mer_id` int(11) DEFAULT NULL COMMENT '商户ID',
`is_show` tinyint(1) DEFAULT '0' COMMENT '商户是否上架0不上架1上架',
`sales` int(11) unsigned DEFAULT NULL COMMENT '销量',
PRIMARY KEY (`discount_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_discounts_product"
#
CREATE TABLE `eb_store_discounts_product` (
`discount_product_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`discount_id` int(11) NOT NULL COMMENT '优惠套餐ID',
`product_id` int(11) NOT NULL COMMENT '商品ID',
`store_name` varchar(255) NOT NULL COMMENT '商品名称',
`image` varchar(500) NOT NULL DEFAULT '' COMMENT '商品图',
`type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否搭配0不是1是',
`temp_id` int(11) NOT NULL DEFAULT '0' COMMENT '运费模版Id',
`mer_id` int(11) DEFAULT NULL,
PRIMARY KEY (`discount_product_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `product_id` (`product_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_group_order"
#
CREATE TABLE `eb_store_group_order` (
`group_order_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`group_order_sn` varchar(32) NOT NULL COMMENT '订单号',
`uid` int(10) unsigned NOT NULL COMMENT '用户 ID',
`total_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '邮费',
`total_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单总额',
`total_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品数',
`integral` int(8) unsigned DEFAULT '0' COMMENT '使用积分数量',
`integral_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '积分抵扣金额',
`give_integral` int(8) unsigned DEFAULT '0' COMMENT '赠送积分',
`coupon_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '优惠金额',
`real_name` varchar(32) NOT NULL COMMENT '联系人',
`user_phone` varchar(18) NOT NULL COMMENT '联系电话',
`user_address` varchar(128) NOT NULL COMMENT '收货地址',
`pay_price` decimal(8,2) unsigned NOT NULL COMMENT '支付金额',
`pay_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '支付邮费',
`cost` decimal(8,2) unsigned NOT NULL COMMENT '成本价',
`coupon_id` varchar(128) DEFAULT NULL COMMENT ' 平台优惠券',
`give_coupon_ids` varchar(500) DEFAULT '' COMMENT '赠送优惠券',
`paid` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '是否支付',
`pay_time` timestamp NULL DEFAULT NULL COMMENT '支付时间',
`pay_type` tinyint(1) NOT NULL COMMENT '支付方式 0=余额 1=微信 2=小程序 3=h5',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`is_remind` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否提醒',
`is_del` tinyint(3) unsigned NOT NULL DEFAULT '0',
`is_combine` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为合并支付 ',
`activity_type` tinyint(3) unsigned DEFAULT '0',
`is_first` tinyint(1) DEFAULT '0' COMMENT '是否为用户首单',
PRIMARY KEY (`group_order_id`) USING BTREE,
UNIQUE KEY `group_order_id` (`group_order_sn`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `paid` (`paid`) USING BTREE,
KEY `create_time` (`create_time`,`paid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='用户订单表';
#
# Structure for table "eb_store_import"
#
CREATE TABLE `eb_store_import` (
`import_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`import_type` varchar(20) DEFAULT NULL COMMENT 'delivery发货单',
`type` int(11) DEFAULT '1' COMMENT '类型1发货2送货3虚拟4电子面单',
`count` int(11) DEFAULT NULL COMMENT '总数',
`success` int(11) DEFAULT NULL COMMENT '成功数',
`status` int(2) DEFAULT '0' COMMENT '0.处理中1成功10部分完成-1失败',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`mer_id` int(11) DEFAULT NULL,
PRIMARY KEY (`import_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='导入批次记录';
#
# Structure for table "eb_store_import_delivery"
#
CREATE TABLE `eb_store_import_delivery` (
`import_delivery_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`import_id` int(10) unsigned NOT NULL,
`order_sn` varchar(32) DEFAULT NULL COMMENT '订单sn',
`delivery_type` int(11) DEFAULT '1' COMMENT '类型1发货2送货3虚拟4电子面单',
`delivery_name` varchar(64) DEFAULT NULL COMMENT '快递公司',
`delivery_id` varchar(64) DEFAULT NULL COMMENT '快递单号',
`status` tinyint(2) DEFAULT NULL COMMENT '状态',
`mark` varchar(255) DEFAULT NULL COMMENT '备注',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`mer_id` int(11) DEFAULT NULL,
PRIMARY KEY (`import_delivery_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='导入发货单详细记录';
#
# Structure for table "eb_store_order"
#
CREATE TABLE `eb_store_order` (
`order_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单ID',
`main_id` int(11) unsigned DEFAULT '0' COMMENT '拆单前 id',
`group_order_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '订单组 id',
`order_sn` varchar(32) NOT NULL COMMENT '订单号',
`uid` int(11) unsigned NOT NULL COMMENT '用户id',
`spread_uid` int(11) unsigned DEFAULT '0' COMMENT '推荐人id',
`top_uid` int(11) unsigned DEFAULT '0' COMMENT '二级推荐人 id',
`real_name` varchar(32) NOT NULL COMMENT '用户姓名',
`user_phone` varchar(18) NOT NULL COMMENT '用户电话',
`user_address` varchar(128) NOT NULL COMMENT '详细地址',
`cart_id` varchar(256) NOT NULL COMMENT '购物车id',
`total_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '订单商品总数',
`total_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单总价',
`total_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '邮费',
`pay_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '实际支付金额',
`pay_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '支付邮费',
`is_selfbuy` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否为自购',
`extension_one` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '一级佣金',
`extension_two` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '二级佣金',
`commission_rate` decimal(7,4) unsigned NOT NULL DEFAULT '0.0000' COMMENT '平台手续费',
`integral` int(8) unsigned DEFAULT '0' COMMENT '使用积分数量',
`integral_price` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '积分抵扣金额',
`give_integral` int(8) unsigned DEFAULT '0' COMMENT '赠送积分',
`coupon_id` varchar(128) NOT NULL DEFAULT '' COMMENT '优惠券id',
`coupon_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '优惠券金额',
`platform_coupon_price` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '平台优惠券金额',
`svip_discount` decimal(8,2) unsigned DEFAULT '0.00' COMMENT 'svip优惠金额',
`order_type` tinyint(1) unsigned DEFAULT '0' COMMENT '0普通1自提',
`paid` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '支付状态',
`pay_time` timestamp NULL DEFAULT NULL COMMENT '支付时间',
`pay_type` tinyint(1) NOT NULL COMMENT '支付方式 0余额 1微信 2小程序 3 h5 4支付宝 5 支付宝扫码 6 微信扫码',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '订单状态0待发货1待收货2待评价3已完成 9: 拼团中 10: 待付尾款 11:尾款超时未付 -1已退款',
`delivery_type` varchar(32) DEFAULT NULL COMMENT '发货类型(1:发货 2: 送货 3: 虚拟,4电子面单5同城 6 卡密自动发货)',
`is_virtual` tinyint(1) unsigned DEFAULT '0' COMMENT '0:实物订单 1:虚拟订单',
`delivery_name` varchar(50) DEFAULT NULL COMMENT '快递名称/送货人姓名',
`delivery_id` varchar(255) DEFAULT NULL COMMENT '快递单号/手机号',
`mark` varchar(512) NOT NULL COMMENT '备注',
`remark` varchar(512) DEFAULT NULL COMMENT '管理员备注',
`admin_mark` varchar(512) DEFAULT NULL COMMENT '总后台备注',
`verify_code` char(16) DEFAULT NULL COMMENT '核销码',
`verify_time` timestamp NULL DEFAULT NULL COMMENT '核销时间/收货时间',
`verify_service_id` int(10) unsigned DEFAULT NULL COMMENT '核销客服 id',
`transaction_id` varchar(60) DEFAULT NULL COMMENT '微信支付订单号(分账时有效)',
`activity_type` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '1:秒杀 2:预售 3:助力 10:套餐',
`order_extend` varchar(1024) DEFAULT NULL COMMENT '自定义表单数据',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID',
`reconciliation_id` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '对账id',
`cost` decimal(8,2) unsigned NOT NULL COMMENT '成本价',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除',
`is_system_del` tinyint(1) DEFAULT '0' COMMENT '后台是否删除',
`verify_status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '核销订单状态0 默认 1 部分核销 2 全部核销',
`refund_switch` tinyint(1) unsigned DEFAULT '1' COMMENT '是否支持退款',
`kuaidi_label` varchar(255) DEFAULT NULL COMMENT '快递单号图片',
PRIMARY KEY (`order_id`) USING BTREE,
UNIQUE KEY `order_id_2` (`order_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `verify_code` (`verify_code`),
KEY `main_id` (`main_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='订单表';
#
# Structure for table "eb_store_order_product"
#
CREATE TABLE `eb_store_order_product` (
`order_product_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单产品 id',
`order_id` int(11) unsigned NOT NULL COMMENT '订单id',
`uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户 id',
`cart_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '购物车id',
`product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID',
`extension_one` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '一级佣金',
`extension_two` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '二级佣金',
`integral` int(8) unsigned DEFAULT '0' COMMENT '使用积分(单数)',
`integral_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '积分抵扣金额',
`integral_total` int(9) unsigned DEFAULT '0' COMMENT '使用积分(总数)',
`coupon_price` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '优惠金额',
`platform_coupon_price` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '平台优惠金额',
`svip_discount` decimal(8,2) unsigned DEFAULT '0.00' COMMENT 'svip优惠金额',
`postage_price` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '运费',
`product_sku` char(12) NOT NULL COMMENT '商品 sku',
`is_refund` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否退款 0:未退款 1:退款中 2:部分退款 3=全退',
`product_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '购买数量',
`product_type` int(11) NOT NULL DEFAULT '0' COMMENT '0.普通商品 1.秒杀商品,2.预售商品',
`activity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '活动关联 id',
`refund_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '可申请退货数量',
`is_reply` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否评价',
`cost` decimal(10,2) unsigned NOT NULL COMMENT '商品成本价',
`product_price` decimal(10,2) unsigned NOT NULL COMMENT '商品金额',
`total_price` decimal(10,2) unsigned NOT NULL COMMENT '商品售价',
`cart_info` text NOT NULL COMMENT '购买东西的详细信息',
`refund_switch` tinyint(1) unsigned DEFAULT '1' COMMENT '是否支持退款',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`order_product_id`) USING BTREE,
KEY `product_id` (`product_id`) USING BTREE,
KEY `oid` (`order_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='订单购物详情表';
#
# Structure for table "eb_store_order_profitsharing"
#
CREATE TABLE `eb_store_order_profitsharing` (
`profitsharing_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`profitsharing_sn` varchar(32) NOT NULL COMMENT '分账 id',
`order_id` int(10) unsigned NOT NULL COMMENT '订单 id',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`transaction_id` varchar(60) NOT NULL COMMENT '微信支付订单号',
`profitsharing_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '分账金额',
`profitsharing_refund` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额',
`profitsharing_mer_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '分账给商户金额',
`type` varchar(32) NOT NULL COMMENT '分类',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:未分账 1:已分账 -1已退款 -2失败',
`error_msg` varchar(255) DEFAULT NULL COMMENT '失败原因',
`profitsharing_time` timestamp NULL DEFAULT NULL COMMENT '分账时间',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`profitsharing_id`),
KEY `order_id` (`order_id`),
KEY `mer_id` (`mer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='分账表';
#
# Structure for table "eb_store_order_receipt"
#
CREATE TABLE `eb_store_order_receipt` (
`order_receipt_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`order_id` varchar(255) NOT NULL DEFAULT '0' COMMENT '订单ID',
`uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
`receipt_info` varchar(500) DEFAULT '' COMMENT '发票类型1.普通发票2.增值税发票',
`status` tinyint(2) DEFAULT '0' COMMENT '开票状态1.已出票,10.已寄出',
`receipt_sn` varchar(255) DEFAULT '' COMMENT '发票单号',
`receipt_no` varchar(255) DEFAULT NULL COMMENT '发票编号',
`delivery_info` varchar(255) DEFAULT NULL COMMENT '收票联系信息',
`mark` varchar(255) DEFAULT NULL COMMENT '用户备注',
`receipt_price` decimal(10,2) DEFAULT NULL COMMENT '开票金额',
`order_price` decimal(10,2) DEFAULT NULL COMMENT '订单金额',
`status_time` datetime NOT NULL COMMENT '状态变更时间',
`is_del` tinyint(1) DEFAULT '0',
`create_time` timestamp NULL DEFAULT NULL,
`mer_id` int(11) DEFAULT '0',
`mer_mark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`order_receipt_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单发票信息';
#
# Structure for table "eb_store_order_status"
#
CREATE TABLE `eb_store_order_status` (
`order_id` int(10) unsigned NOT NULL COMMENT '订单id',
`order_sn` varchar(256) DEFAULT NULL COMMENT '订单号',
`type` varchar(20) DEFAULT NULL COMMENT '订单类型',
`change_type` varchar(32) NOT NULL COMMENT '操作类型',
`change_message` varchar(256) NOT NULL COMMENT '操作备注',
`nickname` varchar(20) DEFAULT NULL,
`uid` int(11) DEFAULT NULL COMMENT '操作者ID',
`user_type` tinyint(2) DEFAULT NULL COMMENT '操作者类型',
`change_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '操作时间',
KEY `order_id` (`order_id`) USING BTREE,
KEY `change_type` (`change_type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单操作记录表';
#
# Structure for table "eb_store_printer"
#
CREATE TABLE `eb_store_printer` (
`printer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`printer_name` varchar(50) NOT NULL DEFAULT '' COMMENT '名称',
`printer_appkey` varchar(50) NOT NULL DEFAULT '' COMMENT '打印机的应用ID',
`printer_terminal` varchar(50) NOT NULL DEFAULT '' COMMENT '打印机终端号',
`printer_appid` varchar(50) NOT NULL DEFAULT '' COMMENT '打印机应用用户ID',
`printer_secret` varchar(50) NOT NULL DEFAULT '' COMMENT '打印机应用密匙',
`status` tinyint(2) NOT NULL DEFAULT '0',
`mer_id` int(11) NOT NULL DEFAULT '0',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`type` tinyint(2) DEFAULT '0' COMMENT '0 易联云 1 飞鹅云',
PRIMARY KEY (`printer_id`) USING BTREE,
UNIQUE KEY `id` (`printer_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_product"
#
CREATE TABLE `eb_store_product` (
`product_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '商品id',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户Id',
`store_name` varchar(128) NOT NULL COMMENT '商品名称',
`store_info` varchar(256) NOT NULL COMMENT '商品简介',
`keyword` varchar(128) NOT NULL COMMENT '关键字',
`bar_code` varchar(15) NOT NULL DEFAULT '' COMMENT '产品条码(一维码)',
`brand_id` int(11) DEFAULT NULL COMMENT '品牌 id',
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '商户 状态0:未上架1:上架2:定时上架)',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '管理员 状态0审核中1审核通过 -1: 未通过 -2: 下架)',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除',
`mer_status` tinyint(1) DEFAULT '1' COMMENT '商铺状态是否 1.正常 0. 非正常',
`cate_id` int(11) NOT NULL COMMENT '分类id',
`unit_name` varchar(16) NOT NULL COMMENT '单位名',
`sort` smallint(11) NOT NULL DEFAULT '0' COMMENT '排序',
`rank` smallint(11) NOT NULL DEFAULT '0' COMMENT '总后台排序',
`sales` mediumint(11) unsigned NOT NULL DEFAULT '0' COMMENT '销量',
`price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '最低价格',
`cost` decimal(10,2) DEFAULT '0.00' COMMENT '成本价',
`ot_price` decimal(10,2) DEFAULT '0.00' COMMENT '原价',
`stock` int(11) unsigned DEFAULT '0' COMMENT '总库存',
`is_hot` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否热卖',
`is_benefit` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '促销单品',
`is_best` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否精品',
`is_new` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否新品',
`is_good` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否优品推荐',
`product_type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0.普通商品 1.秒杀商品,2.预售商品3.助力商品4.拼团商品',
`ficti` mediumint(11) DEFAULT '0' COMMENT '虚拟销量',
`browse` int(11) DEFAULT '0' COMMENT '浏览量',
`code_path` varchar(64) NOT NULL DEFAULT '' COMMENT '产品二维码地址(用户小程序海报)',
`video_link` varchar(200) NOT NULL DEFAULT '' COMMENT '主图视频链接',
`temp_id` int(11) NOT NULL DEFAULT '1' COMMENT '运费模板ID',
`spec_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '规格 0单 1多',
`extension_type` tinyint(1) DEFAULT '0' COMMENT '佣金比例 0.系统1.自定义',
`refusal` varchar(255) DEFAULT NULL COMMENT '审核拒绝理由',
`rate` decimal(2,1) DEFAULT '5.0' COMMENT '评价分数',
`reply_count` int(11) unsigned DEFAULT '0' COMMENT '评论数',
`give_coupon_ids` varchar(500) DEFAULT NULL COMMENT '赠送优惠券',
`is_gift_bag` tinyint(1) DEFAULT '0' COMMENT '是否为礼包',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`care_count` int(11) NOT NULL DEFAULT '0' COMMENT '收藏数',
`is_used` int(1) DEFAULT '1' COMMENT '显示/隐藏',
`old_product_id` int(11) DEFAULT '0' COMMENT '原商品ID',
`image` varchar(256) NOT NULL DEFAULT '' COMMENT '商品图片',
`slider_image` varchar(2000) NOT NULL COMMENT '轮播图',
`guarantee_template_id` int(11) DEFAULT '0' COMMENT '保障服务模板',
`once_max_count` int(11) DEFAULT '0' COMMENT '订单单次购买数量最大限制',
`once_min_count` int(11) NOT NULL DEFAULT '0' COMMENT '单次购买最低限购',
`integral_rate` int(11) NOT NULL DEFAULT '-1' COMMENT '积分抵扣比例',
`integral_total` int(10) unsigned DEFAULT '0' COMMENT '使用积分抵扣总数',
`integral_price_total` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '使用积分抵扣金额总数',
`labels` varchar(255) DEFAULT '' COMMENT '标签id',
`delivery_way` varchar(100) DEFAULT NULL COMMENT '1.仅到店自提2快递计价配送3全国包邮',
`delivery_free` int(11) DEFAULT '0' COMMENT '全国包邮',
`type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '0.实体商品1.虚拟商品',
`extend` varchar(1000) NOT NULL DEFAULT '' COMMENT '扩展信息',
`pay_limit` tinyint(2) NOT NULL DEFAULT '0' COMMENT '购买总数限制 0:不限购1单次限购 2 长期限购',
`svip_price_type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '0不参加1默认比例2自定义',
`svip_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '会员价',
`mer_svip_status` tinyint(2) unsigned NOT NULL DEFAULT '1' COMMENT '商户会员状态',
`param_temp_id` varchar(255) DEFAULT NULL COMMENT '参数模板ID',
`refund_switch` tinyint(2) DEFAULT '1' COMMENT '是否支持退款',
`delete` tinyint(2) DEFAULT '0',
`mer_form_id` int(11) DEFAULT '0' COMMENT '系统表单ID',
`good_ids` varchar(2000) DEFAULT '' COMMENT '推荐商品',
`auto_on_time` int(11) DEFAULT NULL COMMENT '自动上架时间',
`auto_off_time` int(11) DEFAULT NULL COMMENT '自动下架时间',
`active_id` int(11) DEFAULT NULL COMMENT '秒杀活动ID',
PRIMARY KEY (`product_id`) USING BTREE,
KEY `cate_id` (`cate_id`) USING BTREE,
KEY `sort` (`sort`) USING BTREE,
KEY `sales` (`sales`) USING BTREE,
KEY `create_time` (`create_time`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=255 DEFAULT CHARSET=utf8 COMMENT='商品表';
#
# Structure for table "eb_store_product_assist"
#
CREATE TABLE `eb_store_product_assist` (
`product_assist_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '开始时间',
`end_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '结束时间',
`status` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '平台控制状态1开启0.结束',
`pay_count` int(11) unsigned DEFAULT '0' COMMENT '限购数量0为不限制',
`assist_count` int(11) unsigned DEFAULT '0' COMMENT '助力总需人数',
`assist_user_count` int(11) unsigned DEFAULT '0' COMMENT '单人可助力次数',
`product_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID',
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '商户控制状态 0.下架1.上架',
`store_name` varchar(128) NOT NULL COMMENT '商品活动标题',
`mer_id` int(11) unsigned NOT NULL DEFAULT '0',
`store_info` varchar(255) DEFAULT NULL COMMENT '商品简介',
`is_del` int(11) unsigned NOT NULL DEFAULT '0',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`product_status` int(11) DEFAULT '0' COMMENT '审核状态0.待审核1审核通过-1 审核失败,-2 强制下架',
`refusal` varchar(255) DEFAULT NULL,
`action_status` int(11) DEFAULT '1' COMMENT '活动状态1开启-1 结束',
PRIMARY KEY (`product_assist_id`) USING BTREE,
KEY `start_time` (`start_time`,`end_time`) USING BTREE,
KEY `product_id` (`product_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='商品助力活动表';
#
# Structure for table "eb_store_product_assist_set"
#
CREATE TABLE `eb_store_product_assist_set` (
`product_assist_set_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`product_assist_id` int(11) unsigned NOT NULL,
`product_id` int(11) unsigned NOT NULL,
`uid` int(11) unsigned NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1' COMMENT '状态:-1 未完成 1 进行中, 10 已完成20.已支付',
`assist_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '需助力总人数',
`assist_user_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '单人可助力次数',
`yet_assist_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '已助力人数',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '时间',
`mer_id` int(11) unsigned DEFAULT '0',
`share_num` int(11) unsigned DEFAULT '0',
`view_num` int(11) unsigned DEFAULT '0',
`is_del` int(11) unsigned DEFAULT '0',
PRIMARY KEY (`product_assist_set_id`) USING BTREE,
KEY `product_assist_id` (`product_assist_id`,`product_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='助力发起列表';
#
# Structure for table "eb_store_product_assist_sku"
#
CREATE TABLE `eb_store_product_assist_sku` (
`product_assist_id` int(11) unsigned NOT NULL DEFAULT '0',
`product_id` int(11) unsigned NOT NULL,
`unique` char(12) NOT NULL,
`assist_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '助力售价',
`stock` int(11) unsigned NOT NULL DEFAULT '0',
`stock_count` int(11) unsigned DEFAULT '0' COMMENT '总限购',
KEY `product_assist_id` (`product_assist_id`,`product_id`) USING BTREE,
KEY `unique` (`unique`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_product_assist_user"
#
CREATE TABLE `eb_store_product_assist_user` (
`product_assist_user_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`product_assist_set_id` int(11) unsigned NOT NULL,
`product_assist_id` int(11) unsigned NOT NULL,
`uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'id',
`avatar_img` varchar(256) DEFAULT NULL COMMENT '头像',
`nickname` varchar(50) DEFAULT NULL COMMENT '昵称',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`product_assist_user_id`) USING BTREE,
KEY `uid` (`uid`,`product_assist_set_id`) USING BTREE,
KEY `product_assist_id` (`product_assist_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='助力记录表';
#
# Structure for table "eb_store_product_attr"
#
CREATE TABLE `eb_store_product_attr` (
`product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID',
`attr_name` varchar(32) NOT NULL COMMENT '属性名',
`attr_values` varchar(2000) NOT NULL COMMENT '属性值',
`type` tinyint(1) DEFAULT '0' COMMENT '活动类型 0=商品',
KEY `product_id` (`product_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品属性表';
#
# Structure for table "eb_store_product_attr_value"
#
CREATE TABLE `eb_store_product_attr_value` (
`value_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
`product_id` int(10) unsigned NOT NULL COMMENT '商品ID',
`detail` varchar(1000) NOT NULL DEFAULT '',
`sku` varchar(128) NOT NULL COMMENT '商品属性索引值 (attr_value|attr_value[|....])',
`stock` int(10) unsigned NOT NULL COMMENT '属性对应的库存',
`sales` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '销量',
`image` varchar(128) DEFAULT NULL COMMENT '图片',
`bar_code` varchar(50) NOT NULL DEFAULT '' COMMENT '产品条码',
`cost` decimal(8,2) unsigned NOT NULL COMMENT '成本价',
`ot_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '原价',
`price` decimal(8,2) unsigned NOT NULL COMMENT '价格',
`volume` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '体积',
`weight` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '重量',
`type` tinyint(1) DEFAULT '0' COMMENT '活动类型 0=商品; 20 积分商品',
`extension_one` decimal(8,2) DEFAULT '0.00' COMMENT '一级佣金',
`extension_two` decimal(8,2) DEFAULT '0.00' COMMENT '二级佣金',
`unique` char(12) NOT NULL DEFAULT '' COMMENT '唯一值',
`svip_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '会员价',
PRIMARY KEY (`value_id`),
KEY `store_id` (`product_id`,`sku`) USING BTREE,
KEY `unique` (`unique`,`sku`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1791 DEFAULT CHARSET=utf8 COMMENT='商品属性值表';
#
# Structure for table "eb_store_product_cate"
#
CREATE TABLE `eb_store_product_cate` (
`product_id` int(11) DEFAULT NULL,
`mer_cate_id` int(11) DEFAULT NULL,
`mer_id` int(11) DEFAULT NULL,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `mer_cate_id` (`mer_cate_id`,`product_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品商户分类关联表';
#
# Structure for table "eb_store_product_cdkey"
#
CREATE TABLE `eb_store_product_cdkey` (
`cdkey_id` int(11) NOT NULL AUTO_INCREMENT,
`is_type` tinyint(2) DEFAULT '0' COMMENT '卡密类型: 0 固定卡密, 1 一次性卡密',
`value_id` int(11) DEFAULT NULL COMMENT '商品规格ID',
`key` varchar(255) DEFAULT NULL COMMENT '卡密内容',
`pwd` varchar(255) DEFAULT NULL COMMENT '卡密密码',
`status` tinyint(2) DEFAULT '1' COMMENT '状态: 1 可用 -1 不可用/已使用',
`product_id` int(11) DEFAULT NULL COMMENT '商品ID',
PRIMARY KEY (`cdkey_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_product_content"
#
CREATE TABLE `eb_store_product_content` (
`product_id` int(11) unsigned NOT NULL COMMENT '商品id',
`content` longtext NOT NULL COMMENT '商品详情',
`type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商品类型 0=普通',
KEY `product_id` (`product_id`,`type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品详情表';
#
# Structure for table "eb_store_product_copy"
#
CREATE TABLE `eb_store_product_copy` (
`store_product_copy_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(255) DEFAULT NULL COMMENT '''taobao'', ''tmall'', ''jd'', ''pinduoduo'', ''suning'', ''yangkeduo''\n',
`mer_id` int(11) DEFAULT NULL COMMENT '商户id',
`num` int(11) DEFAULT NULL COMMENT '数量',
`number` int(11) DEFAULT '1' COMMENT '剩余数量',
`message` varchar(255) DEFAULT NULL,
`info` varchar(500) DEFAULT '1' COMMENT '信息',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`store_product_copy_id`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_product_group"
#
CREATE TABLE `eb_store_product_group` (
`product_group_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`product_id` int(11) unsigned DEFAULT '0' COMMENT '商品ID',
`start_time` datetime DEFAULT NULL COMMENT '开始时间',
`end_time` datetime DEFAULT NULL COMMENT '结束时间',
`time` int(10) unsigned DEFAULT '0' COMMENT '开团时长',
`buying_count_num` int(11) DEFAULT '0' COMMENT '拼团总人数',
`buying_num` int(11) DEFAULT '0' COMMENT '最少真实购买人数',
`pay_count` int(11) unsigned DEFAULT '0' COMMENT '活动购买总人数',
`once_pay_count` int(11) unsigned DEFAULT '0' COMMENT '单次购买数量',
`status` int(11) DEFAULT '0' COMMENT '平台控制状态',
`mer_id` int(11) unsigned DEFAULT '0' COMMENT '商户ID',
`ficti_status` int(11) DEFAULT '0' COMMENT '虚拟成团状态',
`ficti_num` int(11) DEFAULT '0' COMMENT '最多虚拟人数',
`is_show` int(11) DEFAULT '0' COMMENT '上下架',
`is_del` int(11) unsigned DEFAULT '0',
`success_num` int(11) unsigned DEFAULT '0' COMMENT '成功团数',
`product_status` int(11) DEFAULT '0',
`price` decimal(10,2) DEFAULT '0.00',
`action_status` int(11) DEFAULT '0' COMMENT '活动状态',
`create_time` datetime DEFAULT NULL,
`refusal` varchar(255) DEFAULT NULL,
PRIMARY KEY (`product_group_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='拼团商品信息表';
#
# Structure for table "eb_store_product_group_buying"
#
CREATE TABLE `eb_store_product_group_buying` (
`group_buying_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`product_group_id` int(11) unsigned DEFAULT '0' COMMENT '活动商品ID',
`status` int(11) DEFAULT '0' COMMENT '状态0。默认进行中10.已完成,-1 时间到未完成',
`ficti_status` int(11) DEFAULT '0' COMMENT '虚拟成团状态0.未开启1开启',
`ficti_num` int(11) unsigned DEFAULT '0' COMMENT '虚拟成团人数',
`buying_count_num` int(11) unsigned DEFAULT '0' COMMENT '成团总人数',
`buying_num` int(11) unsigned DEFAULT '0' COMMENT '真实人数',
`yet_buying_num` int(11) unsigned DEFAULT '0' COMMENT '已参团人数',
`is_del` int(11) DEFAULT '0',
`mer_id` int(11) unsigned DEFAULT '0',
`end_time` int(11) DEFAULT NULL COMMENT '结束时间',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`group_buying_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='拼团活动表';
#
# Structure for table "eb_store_product_group_sku"
#
CREATE TABLE `eb_store_product_group_sku` (
`product_group_id` int(11) unsigned NOT NULL DEFAULT '0',
`product_id` int(11) unsigned NOT NULL,
`unique` char(12) NOT NULL,
`active_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '活动价',
`stock` int(11) unsigned NOT NULL DEFAULT '0',
`stock_count` int(11) unsigned DEFAULT '0',
KEY `product_group_id` (`product_group_id`,`product_id`),
KEY `unique` (`unique`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_product_group_user"
#
CREATE TABLE `eb_store_product_group_user` (
`group_buying_id` int(11) unsigned DEFAULT '0' COMMENT '团ID',
`product_group_id` int(11) unsigned DEFAULT '0' COMMENT '活动商品ID',
`status` int(11) DEFAULT '0' COMMENT '状态',
`is_initiator` int(11) unsigned DEFAULT '0' COMMENT '是否为 团长',
`order_id` int(11) unsigned DEFAULT '0' COMMENT '订单ID',
`uid` int(11) unsigned DEFAULT '0' COMMENT '用户ID ',
`nickname` varchar(255) DEFAULT NULL COMMENT '昵称',
`avatar` varchar(255) DEFAULT NULL COMMENT '头像',
`is_del` int(11) unsigned DEFAULT '0',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='拼团成员表';
#
# Structure for table "eb_store_product_label"
#
CREATE TABLE `eb_store_product_label` (
`product_label_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`label_name` varchar(50) DEFAULT NULL COMMENT '标签名',
`status` tinyint(1) DEFAULT NULL COMMENT '状态',
`info` varchar(255) DEFAULT NULL COMMENT '说明',
`sort` int(11) DEFAULT NULL COMMENT '排序',
`type` int(11) DEFAULT '0' COMMENT '类型 ',
`mer_id` int(11) DEFAULT '0' COMMENT '商户ID',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`is_del` tinyint(1) DEFAULT '0',
PRIMARY KEY (`product_label_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_product_presell"
#
CREATE TABLE `eb_store_product_presell` (
`product_presell_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '预售开始时间',
`end_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '预售结束时间',
`final_start_time` varchar(30) DEFAULT '' COMMENT '尾款支付开始时间',
`final_end_time` varchar(30) DEFAULT '' COMMENT '尾款支付结时间',
`status` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '平台控制状态1开启0.结束',
`presell_type` int(1) unsigned NOT NULL DEFAULT '0' COMMENT '预售类型1.全款预售2.定金预售',
`pay_count` int(11) unsigned DEFAULT '0' COMMENT '限购数量0为不限制',
`delivery_type` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '发货类型1.支付成功后 2. 预售结束后',
`delivery_day` int(11) unsigned DEFAULT '0' COMMENT '发货时间',
`product_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID',
`price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '预售最低价',
`is_show` tinyint(1) unsigned DEFAULT NULL COMMENT '商户控制状态 0.下架1.上架',
`store_name` varchar(128) NOT NULL COMMENT '商品活动标题',
`mer_id` int(11) unsigned NOT NULL DEFAULT '0',
`store_info` varchar(255) DEFAULT NULL COMMENT '商品简介',
`is_del` int(11) unsigned NOT NULL DEFAULT '0',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`product_status` int(11) DEFAULT '0' COMMENT '审核状态0.待审核1审核通过-1 审核失败,-2 强制下架',
`refusal` varchar(255) DEFAULT NULL,
`action_status` int(11) DEFAULT '1' COMMENT '活动状态1开启-1 结束',
PRIMARY KEY (`product_presell_id`) USING BTREE,
KEY `start_time` (`start_time`,`end_time`) USING BTREE,
KEY `product_id` (`product_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='商品预售活动表';
#
# Structure for table "eb_store_product_presell_sku"
#
CREATE TABLE `eb_store_product_presell_sku` (
`product_presell_id` int(11) unsigned NOT NULL DEFAULT '0',
`product_id` int(11) unsigned NOT NULL,
`unique` char(12) NOT NULL,
`presell_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '预售价',
`stock` int(11) unsigned NOT NULL DEFAULT '0',
`stock_count` int(11) NOT NULL DEFAULT '0' COMMENT '总限购',
`down_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '订金',
`final_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '尾款金额',
`one_take` int(11) unsigned DEFAULT '0' COMMENT '第一阶段参与人数',
`one_pay` int(11) unsigned DEFAULT '0' COMMENT '第一阶段支付人数',
`two_pay` int(11) unsigned DEFAULT '0' COMMENT '第二阶段支付人数',
`seles` int(11) unsigned DEFAULT '0' COMMENT '销量',
KEY `product_presell_id` (`product_presell_id`,`product_id`) USING BTREE,
KEY `unique` (`unique`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_product_reply"
#
CREATE TABLE `eb_store_product_reply` (
`reply_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '评论ID',
`uid` int(11) NOT NULL COMMENT '用户ID',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`order_product_id` int(11) NOT NULL COMMENT '订单商品ID',
`unique` char(12) DEFAULT NULL COMMENT '商品 sku',
`product_id` int(11) NOT NULL COMMENT '商品id',
`product_type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0=普通商品',
`product_score` tinyint(1) NOT NULL COMMENT '商品分数',
`service_score` tinyint(1) NOT NULL COMMENT '服务分数',
`postage_score` tinyint(1) NOT NULL COMMENT '物流分数',
`rate` float(2,1) DEFAULT '5.0' COMMENT '平均值',
`comment` varchar(512) NOT NULL COMMENT '评论内容',
`pics` text COMMENT '评论图片',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '评论时间',
`merchant_reply_content` varchar(300) DEFAULT NULL COMMENT '管理员回复内容',
`merchant_reply_time` timestamp NULL DEFAULT NULL COMMENT '管理员回复时间',
`sort` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT '商家排序',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0未删除1已删除',
`is_reply` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0未回复1已回复',
`is_virtual` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0不是虚拟评价1是虚拟评价',
`nickname` varchar(64) NOT NULL COMMENT '用户名称',
`avatar` varchar(255) NOT NULL COMMENT '用户头像',
PRIMARY KEY (`reply_id`) USING BTREE,
UNIQUE KEY `order_id` (`order_product_id`,`unique`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `product_id` (`product_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商品评论表';
#
# Structure for table "eb_store_product_sku"
#
CREATE TABLE `eb_store_product_sku` (
`product_sku_id` int(11) NOT NULL AUTO_INCREMENT,
`active_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '活动ID',
`active_product_id` int(11) unsigned DEFAULT NULL COMMENT '活动商品的ID',
`active_type` int(11) unsigned DEFAULT '0' COMMENT '活动类型',
`product_id` int(11) unsigned NOT NULL,
`unique` char(12) NOT NULL,
`price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '原价',
`active_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '活动售价',
`stock` int(11) unsigned NOT NULL DEFAULT '0',
`stock_count` int(11) unsigned DEFAULT '0' COMMENT '总限购',
PRIMARY KEY (`product_sku_id`) USING BTREE,
KEY `active_id` (`active_id`,`product_id`) USING BTREE,
KEY `active_id_2` (`active_id`,`unique`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_product_take"
#
CREATE TABLE `eb_store_product_take` (
`product_take_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`product_id` int(11) DEFAULT NULL,
`unique` char(12) DEFAULT NULL,
`status` int(2) unsigned DEFAULT '0' COMMENT '默认0发送 1',
`uid` int(11) DEFAULT NULL COMMENT '用户',
`type` varchar(255) DEFAULT NULL COMMENT '1.PC,2.公众号,3.小程序',
`is_del` int(11) DEFAULT '0',
PRIMARY KEY (`product_take_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户到货通知记录';
#
# Structure for table "eb_store_product_unit"
#
CREATE TABLE `eb_store_product_unit` (
`product_unit_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户id',
`value` varchar(255) NOT NULL DEFAULT '' COMMENT '',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态 1|开启 0|关闭',
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除 0|正常 1|删除',
`sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`product_unit_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_refund_order"
#
CREATE TABLE `eb_store_refund_order` (
`refund_order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '退款单id',
`refund_order_sn` varchar(32) NOT NULL COMMENT '退款单号',
`order_id` int(11) unsigned NOT NULL COMMENT '订单id',
`uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户 id',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`extension_one` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退还一级佣金',
`extension_two` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退还二级佣金',
`integral` int(8) unsigned DEFAULT '0' COMMENT '退还积分',
`delivery_type` varchar(32) DEFAULT NULL COMMENT '快递公司',
`delivery_id` varchar(32) DEFAULT NULL COMMENT '快递单号',
`delivery_mark` varchar(200) DEFAULT NULL COMMENT '快递备注',
`delivery_pics` varchar(255) DEFAULT NULL COMMENT '快递凭证',
`delivery_phone` varchar(18) DEFAULT NULL COMMENT '联系电话',
`mer_delivery_user` varchar(32) DEFAULT NULL COMMENT '收货人',
`mer_delivery_address` varchar(32) DEFAULT NULL COMMENT '收货地址',
`phone` varchar(18) DEFAULT NULL COMMENT '联系电话',
`mark` varchar(200) DEFAULT '' COMMENT '备注',
`mer_mark` varchar(255) DEFAULT '' COMMENT '商户备注',
`admin_mark` varchar(255) DEFAULT '' COMMENT '平台备注',
`pics` varchar(255) DEFAULT NULL COMMENT '图片',
`refund_type` tinyint(1) NOT NULL COMMENT '退款类型 1:退款 2:退款退货',
`refund_message` varchar(128) NOT NULL COMMENT '退款原因',
`refund_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '退款金额',
`platform_refund_price` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '退款平台优惠券金额',
`refund_postage` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '退的运费',
`refund_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '退款数',
`fail_message` varchar(200) DEFAULT NULL COMMENT '未通过原因',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态 0:待审核 -1:审核未通过 1:待退货 2:待收货 3:已退款',
`status_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '状态改变时间',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`reconciliation_id` int(10) unsigned DEFAULT '0' COMMENT '对账id',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0',
`is_system_del` tinyint(1) DEFAULT '0' COMMENT '商户删除',
`admin_id` int(10) unsigned DEFAULT '0' COMMENT '管理/客服ID',
`user_type` tinyint(1) DEFAULT '1' COMMENT '用户类型 1 用户 2 平台 3 商户 4 客服 ',
PRIMARY KEY (`refund_order_id`) USING BTREE,
UNIQUE KEY `refund_order_sn` (`refund_order_sn`) USING BTREE,
KEY `oid` (`order_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单退款表';
#
# Structure for table "eb_store_refund_product"
#
CREATE TABLE `eb_store_refund_product` (
`refund_product_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单产品 id',
`refund_order_id` int(10) unsigned NOT NULL COMMENT '退款单',
`order_product_id` int(11) unsigned NOT NULL COMMENT '订单产品id',
`refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额',
`platform_refund_price` decimal(8,2) DEFAULT NULL COMMENT '平台券退款金额',
`refund_postage` decimal(8,2) DEFAULT NULL COMMENT '退邮费金额',
`refund_integral` int(10) unsigned DEFAULT '0' COMMENT '退金额',
`refund_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '退货数',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`refund_product_id`) USING BTREE,
KEY `refund_order_id` (`refund_order_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='退款单产品表';
#
# Structure for table "eb_store_refund_status"
#
CREATE TABLE `eb_store_refund_status` (
`refund_order_id` int(10) unsigned NOT NULL COMMENT '退款单订单id',
`change_type` varchar(32) NOT NULL COMMENT '操作类型',
`change_message` varchar(256) NOT NULL COMMENT '操作备注',
`change_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '操作时间',
KEY `refund_order_id` (`refund_order_id`) USING BTREE,
KEY `change_type` (`change_type`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单操作记录表';
#
# Structure for table "eb_store_seckill_active"
#
CREATE TABLE `eb_store_seckill_active` (
`seckill_active_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(64) NOT NULL COMMENT '活动名称',
`seckill_time_ids` varchar(255) DEFAULT '' COMMENT '活动场次',
`start_day` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '开始日期',
`end_day` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '结束日期',
`start_time` int(10) unsigned NOT NULL COMMENT '开始时间',
`end_time` int(10) unsigned NOT NULL COMMENT '结束时间',
`mer_id` int(11) unsigned NOT NULL COMMENT '商户ID',
`all_pay_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '活动有效期内每个用户可购买该商品总数限制',
`once_pay_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '单次购买最大数量限制',
`product_id` int(11) unsigned NOT NULL COMMENT '商品ID',
`product_category_ids` varchar(255) DEFAULT NULL COMMENT '平台一级商品分类/为空均可参与',
`merchant_count` int(11) NOT NULL DEFAULT '0' COMMENT '商户数量',
`product_count` int(11) NOT NULL DEFAULT '0' COMMENT '商品数量',
`active_status` enum('0','1','-1') DEFAULT '0' COMMENT '活动状态: 0未开始 1 进行中 -1 已结束',
`sign` int(1) NOT NULL COMMENT '标识 1=秒杀活动',
`status` tinyint(1) unsigned DEFAULT '0' COMMENT '0=未开启,1=已开启',
`create_time` int(11) NOT NULL COMMENT '创建时间',
`update_time` int(11) NOT NULL COMMENT '修改时间',
`delete_time` int(11) DEFAULT NULL COMMENT '删除时间',
PRIMARY KEY (`seckill_active_id`) USING BTREE,
KEY `start_day` (`start_day`,`end_day`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `status` (`status`,`active_status`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COMMENT='商户设置秒杀商品关联表';
#
# Structure for table "eb_store_seckill_time"
#
CREATE TABLE `eb_store_seckill_time` (
`seckill_time_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT '',
`start_time` int(11) unsigned NOT NULL COMMENT '开始时间',
`end_time` int(11) unsigned NOT NULL COMMENT '结束时间',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '10状态',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`pic` varchar(255) DEFAULT NULL COMMENT '图片',
PRIMARY KEY (`seckill_time_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='秒杀时间段配置';
#
# Structure for table "eb_store_service"
#
CREATE TABLE `eb_store_service` (
`service_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '客服id',
`mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户id',
`uid` int(11) NOT NULL COMMENT '客服uid',
`avatar` varchar(250) NOT NULL COMMENT '客服头像',
`nickname` varchar(50) NOT NULL COMMENT '客服名称',
`account` varchar(32) DEFAULT NULL COMMENT '客服账号',
`pwd` varchar(64) DEFAULT NULL COMMENT '客服密码',
`is_open` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '开启 pc 登录',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0隐藏1显示',
`notify` int(2) DEFAULT '0' COMMENT '订单通知1开启0关闭',
`phone` varchar(18) DEFAULT '' COMMENT '电话',
`customer` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否展示统计管理',
`is_verify` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否有核销权限',
`is_goods` tinyint(1) unsigned DEFAULT '0' COMMENT '是否有商品管理权限',
`sort` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除',
PRIMARY KEY (`service_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `account` (`account`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='客服表';
#
# Structure for table "eb_store_service_log"
#
CREATE TABLE `eb_store_service_log` (
`service_log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '客服用户对话记录表ID',
`mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户id',
`msn` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_estonian_ci NOT NULL COMMENT '消息内容',
`uid` int(11) NOT NULL COMMENT '发送人uid',
`service_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '客服 id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '发送时间',
`type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否已读01',
`service_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '客服是否已读01',
`remind` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否提醒过01',
`send_type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0:用户发送 1:客服回复',
`msn_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '消息类型 1=文字 2=表情 3=图片 4=商品 5=订单 6=退款单',
PRIMARY KEY (`service_log_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `service_id` (`service_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='客服用户对话记录表';
#
# Structure for table "eb_store_service_reply"
#
CREATE TABLE `eb_store_service_reply` (
`service_reply_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1:文字 2:图片',
`keyword` varchar(64) NOT NULL COMMENT '回复的关键字',
`content` varchar(512) NOT NULL COMMENT '回复内容',
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '是否开启',
`create_time` datetime DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`service_reply_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_service_user"
#
CREATE TABLE `eb_store_service_user` (
`service_user_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '聊天用户 id',
`service_id` int(10) unsigned NOT NULL COMMENT '客服 id',
`uid` int(11) NOT NULL COMMENT '用户 id',
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`is_online` tinyint(1) unsigned DEFAULT '0' COMMENT '是否在线',
`service_unread` smallint(5) unsigned DEFAULT '0' COMMENT '客服未读数',
`user_unread` smallint(5) unsigned DEFAULT '0' COMMENT '用户未读数',
`last_log_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最后一条记录 id',
`last_time` datetime NOT NULL COMMENT '最后发送时间',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`service_user_id`) USING BTREE,
KEY `service_id` (`service_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE,
KEY `user_id` (`uid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_store_spu"
#
CREATE TABLE `eb_store_spu` (
`spu_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mer_id` int(10) unsigned DEFAULT '0' COMMENT '商户ID',
`product_id` int(10) unsigned DEFAULT '0' COMMENT '商品ID',
`product_type` int(255) unsigned DEFAULT '0' COMMENT '活动类型0普通1秒杀2预售3助力',
`activity_id` int(10) unsigned DEFAULT '0' COMMENT '活动ID',
`status` int(11) DEFAULT '0' COMMENT '0.下架1.上架',
`store_name` varchar(128) DEFAULT NULL COMMENT '商品名称',
`ot_price` decimal(10,2) unsigned DEFAULT '0.00',
`keyword` varchar(255) DEFAULT NULL COMMENT '关键词',
`price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '最低价格',
`rank` int(11) DEFAULT NULL COMMENT '排序',
`create_time` datetime DEFAULT NULL,
`temp_id` int(11) unsigned DEFAULT '0' COMMENT '运费模板',
`sort` int(11) unsigned DEFAULT '0' COMMENT '商户排序',
`star` int(11) DEFAULT '1' COMMENT '星级',
`image` varchar(255) DEFAULT NULL COMMENT '主图',
`is_del` int(11) unsigned DEFAULT '0',
`mer_labels` varchar(255) DEFAULT '' COMMENT '标签id',
`sys_labels` varchar(255) DEFAULT '' COMMENT '标签id',
PRIMARY KEY (`spu_id`),
KEY `mer_id` (`mer_id`,`product_id`),
KEY `activity_id` (`activity_id`,`product_type`),
KEY `product_id` (`product_id`,`product_type`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=102 DEFAULT CHARSET=utf8 COMMENT='商品搜索信息表';
#
# Structure for table "eb_system_admin"
#
CREATE TABLE `eb_system_admin` (
`admin_id` int(5) unsigned NOT NULL AUTO_INCREMENT COMMENT '后台管理员表ID',
`account` varchar(32) NOT NULL COMMENT '后台管理员账号',
`pwd` varchar(64) NOT NULL COMMENT '后台管理员密码',
`real_name` varchar(16) NOT NULL COMMENT '后台管理员姓名',
`phone` varchar(12) DEFAULT NULL COMMENT '联系电话',
`roles` varchar(128) NOT NULL COMMENT '后台管理员权限(role_id), 多个逗号分隔',
`last_ip` varchar(16) DEFAULT NULL COMMENT '后台管理员最后一次登录ip',
`last_time` timestamp NULL DEFAULT NULL COMMENT '后台管理员最后一次登录时间',
`login_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '登录次数',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '后台管理员状态 1有效0无效',
`level` tinyint(3) unsigned NOT NULL DEFAULT '1',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '后台管理员添加时间',
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '后台管理员编辑时间',
PRIMARY KEY (`admin_id`) USING BTREE,
KEY `account` (`account`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='后台管理员表';
#
# Structure for table "eb_system_attachment"
#
CREATE TABLE `eb_system_attachment` (
`attachment_id` int(11) NOT NULL AUTO_INCREMENT,
`attachment_category_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '分类ID 0编辑器,1产品图片,2拼团图片,3砍价图片,4秒杀图片,5文章图片,6组合数据图',
`attachment_name` varchar(100) NOT NULL COMMENT '附件名称',
`attachment_src` varchar(200) NOT NULL COMMENT '附件路径',
`upload_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '图片上传类型 1本地 2七牛云 3OSS 4COS ',
`user_type` int(11) NOT NULL DEFAULT '0' COMMENT '图片上传模块类型 0总后台后台 >0商户后台 -1用户生成',
`user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '上传用户的 id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '上传时间',
PRIMARY KEY (`attachment_id`) USING BTREE,
KEY `attachment_category_id` (`attachment_category_id`) USING BTREE,
KEY `user_type` (`user_type`,`user_id`,`upload_type`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6049 DEFAULT CHARSET=utf8 COMMENT='附件管理表';
#
# Structure for table "eb_system_attachment_category"
#
CREATE TABLE `eb_system_attachment_category` (
`attachment_category_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父级ID',
`path` varchar(512) NOT NULL DEFAULT '' COMMENT '路径',
`attachment_category_name` varchar(32) NOT NULL COMMENT '分类名称',
`attachment_category_enname` varchar(16) NOT NULL COMMENT '分类目录',
`sort` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`attachment_category_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8 COMMENT='附件分类表';
#
# Structure for table "eb_system_config"
#
CREATE TABLE `eb_system_config` (
`config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '配置id',
`config_classify_id` int(10) unsigned NOT NULL COMMENT '配置分类id',
`config_name` varchar(64) NOT NULL COMMENT '字段名称',
`config_key` varchar(64) NOT NULL COMMENT '字段 key',
`config_type` varchar(20) NOT NULL DEFAULT 'input' COMMENT '配置类型',
`config_rule` varchar(255) DEFAULT NULL COMMENT '规则',
`config_props` varchar(255) DEFAULT '' COMMENT '配置',
`required` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '必填',
`info` varchar(255) DEFAULT '' COMMENT '配置说明',
`sort` smallint(10) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`user_type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0=总后台配置 1=商户后台配置',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否显示',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`config_id`) USING BTREE,
UNIQUE KEY `config_name` (`config_key`) USING BTREE,
KEY `config_classify_id` (`config_classify_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=513 DEFAULT CHARSET=utf8 COMMENT='配置表';
#
# Structure for table "eb_system_config_classify"
#
CREATE TABLE `eb_system_config_classify` (
`config_classify_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '配置分类id',
`pid` int(10) DEFAULT '0' COMMENT '父级ID',
`classify_name` varchar(255) NOT NULL COMMENT '配置分类名称',
`classify_key` varchar(255) NOT NULL COMMENT '配置分类英文名称',
`info` varchar(30) DEFAULT NULL COMMENT '配置分类说明',
`sort` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`icon` varchar(30) DEFAULT NULL COMMENT '图标',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '配置分类状态',
PRIMARY KEY (`config_classify_id`) USING BTREE,
UNIQUE KEY `classify_key` (`classify_key`) USING BTREE,
KEY `pid` (`pid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8 COMMENT='配置分类表';
#
# Structure for table "eb_system_config_value"
#
CREATE TABLE `eb_system_config_value` (
`config_value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '配置id',
`config_key` varchar(32) NOT NULL COMMENT '配置分类key',
`value` varchar(2000) NOT NULL COMMENT '',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`config_value_id`) USING BTREE,
UNIQUE KEY `config_name` (`config_key`,`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1291 DEFAULT CHARSET=utf8 COMMENT='配置表';
#
# Structure for table "eb_system_form"
#
CREATE TABLE `eb_system_form` (
`form_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '表单标题',
`form_keys` text COMMENT '表单所有的key',
`value` text COMMENT '表单内容',
`status` tinyint(2) NOT NULL DEFAULT '1' COMMENT '状态',
`is_del` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否删除',
`mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户ID',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`update_time` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`form_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_system_group"
#
CREATE TABLE `eb_system_group` (
`group_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '组合数据ID',
`group_name` varchar(50) NOT NULL COMMENT '数据组名称',
`group_info` varchar(256) NOT NULL COMMENT '数据提示',
`group_key` varchar(50) NOT NULL COMMENT '数据字段',
`fields` text COMMENT '数据组字段以及类型json数据',
`user_type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0=总后台配置 1=商户后台配置',
`sort` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`group_id`) USING BTREE,
UNIQUE KEY `group_key` (`group_key`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=104 DEFAULT CHARSET=utf8 COMMENT='组合数据表';
#
# Structure for table "eb_system_group_data"
#
CREATE TABLE `eb_system_group_data` (
`group_data_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '组合数据详情ID',
`group_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '对应的数据组id',
`value` text NOT NULL COMMENT '数据组对应的数据值json数据',
`sort` int(11) NOT NULL DEFAULT '0' COMMENT '数据排序',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态1开启0关闭',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加数据时间',
PRIMARY KEY (`group_data_id`) USING BTREE,
KEY `group_id` (`group_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=853 DEFAULT CHARSET=utf8 COMMENT='组合数据详情表';
#
# Structure for table "eb_system_log"
#
CREATE TABLE `eb_system_log` (
`log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '管理员操作记录ID',
`admin_id` int(10) unsigned NOT NULL COMMENT '管理员id',
`admin_name` varchar(64) NOT NULL COMMENT '管理员姓名',
`route` varchar(128) NOT NULL COMMENT '路由',
`method` varchar(12) NOT NULL COMMENT '方式',
`url` varchar(256) NOT NULL COMMENT '链接',
`ip` varchar(16) NOT NULL COMMENT '登录IP',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`log_id`) USING BTREE,
KEY `admin_id` (`admin_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=792 DEFAULT CHARSET=utf8 COMMENT='管理员操作记录表';
#
# Structure for table "eb_system_menu"
#
CREATE TABLE `eb_system_menu` (
`menu_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '菜单ID',
`pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父级id',
`path` varchar(512) NOT NULL COMMENT '路径',
`icon` varchar(32) DEFAULT '' COMMENT '图标',
`menu_name` varchar(128) NOT NULL DEFAULT '' COMMENT '按钮名',
`route` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '路由名称',
`params` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '参数',
`sort` tinyint(3) NOT NULL DEFAULT '1' COMMENT '排序',
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否显示',
`is_mer` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '模块1 平台, 2商户',
`is_menu` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '类型1菜单 2 权限',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`menu_id`) USING BTREE,
KEY `pid` (`pid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=9329 DEFAULT CHARSET=utf8 COMMENT='菜单表';
#
# Structure for table "eb_system_notice"
#
CREATE TABLE `eb_system_notice` (
`notice_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`admin_id` int(10) unsigned NOT NULL COMMENT '管理员 id',
`notice_title` varchar(128) NOT NULL COMMENT '通知标题',
`notice_content` text NOT NULL COMMENT '通知内容',
`type` tinyint(1) unsigned NOT NULL COMMENT '通知类型',
`type_str` varchar(512) NOT NULL COMMENT '通知说明',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0:正常 1:删除',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`notice_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商户公告';
#
# Structure for table "eb_system_notice_config"
#
CREATE TABLE `eb_system_notice_config` (
`notice_config_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`notice_title` varchar(20) DEFAULT NULL COMMENT '消息名称',
`const_key` varchar(100) DEFAULT NULL COMMENT '通知标识',
`notice_info` varchar(50) DEFAULT NULL COMMENT '消息说明',
`notice_sys` tinyint(2) DEFAULT '-1' COMMENT '站内消息',
`notice_sms` tinyint(2) DEFAULT '-1' COMMENT '短信消息',
`notice_wechat` tinyint(2) DEFAULT '-1' COMMENT '公众号模板消息',
`wechat_tempkey` varchar(100) DEFAULT NULL COMMENT '微信模板关联ID',
`wechat_content` varchar(255) NOT NULL DEFAULT '' COMMENT '微信模板内容',
`wechat_tempid` varchar(255) DEFAULT NULL COMMENT '微信模板ID',
`notice_routine` tinyint(2) DEFAULT '-1' COMMENT '小程序订阅消息',
`routine_tempkey` varchar(100) DEFAULT NULL COMMENT '订阅消息关联ID',
`routine_content` varchar(255) NOT NULL DEFAULT '' COMMENT '小程序订阅消息内容',
`routine_tempid` varchar(255) DEFAULT NULL COMMENT '小程序消息ID',
`type` int(11) unsigned DEFAULT '0' COMMENT '1商户通知 0用户通知',
`sms_tempid` varchar(50) DEFAULT NULL COMMENT '一号通短信模板ID',
`sms_ali_tempid` varchar(50) DEFAULT NULL COMMENT '阿里云短信模板ID',
`sms_content` varchar(100) DEFAULT NULL COMMENT '阿里云短信模板内容',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间 ',
`update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
`kid` char(100) DEFAULT '0',
PRIMARY KEY (`notice_config_id`) USING BTREE,
UNIQUE KEY `notic_config_id` (`notice_config_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_system_notice_log"
#
CREATE TABLE `eb_system_notice_log` (
`notice_log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`mer_id` int(10) unsigned NOT NULL COMMENT '商户 id',
`notice_id` int(10) unsigned NOT NULL COMMENT '公告 id',
`is_read` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '是否已读',
`read_time` timestamp NULL DEFAULT NULL COMMENT '读取时间',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除',
PRIMARY KEY (`notice_log_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_system_role"
#
CREATE TABLE `eb_system_role` (
`role_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '身份管理id',
`role_name` varchar(32) NOT NULL COMMENT '身份管理名称',
`rules` text NOT NULL COMMENT '身份管理权限(menus_id)',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`role_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='身份管理表';
#
# Structure for table "eb_system_storage"
#
CREATE TABLE `eb_system_storage` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`type` tinyint(2) NOT NULL DEFAULT '1',
`access_key` varchar(100) NOT NULL DEFAULT '',
`name` varchar(100) NOT NULL DEFAULT '',
`region` varchar(100) NOT NULL DEFAULT '',
`acl` varchar(100) NOT NULL DEFAULT '',
`domain` varchar(255) NOT NULL DEFAULT '',
`cdn` varchar(255) DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '0',
`is_del` tinyint(2) NOT NULL DEFAULT '0',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
#
# Structure for table "eb_template_message"
#
CREATE TABLE `eb_template_message` (
`template_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '模板id',
`type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=订阅消息,1=微信模板消息',
`tempkey` char(50) NOT NULL COMMENT '模板编号',
`name` char(100) NOT NULL COMMENT '模板名',
`content` varchar(1000) NOT NULL COMMENT '回复内容',
`tempid` char(100) DEFAULT NULL COMMENT '模板ID',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '添加时间',
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态',
`kid` char(100) DEFAULT '0',
PRIMARY KEY (`template_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COMMENT='微信模板';
#
# Structure for table "eb_user"
#
CREATE TABLE `eb_user` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户id',
`wechat_user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '微信用户 id',
`account` varchar(32) NOT NULL COMMENT '用户账号',
`pwd` varchar(128) NOT NULL COMMENT '用户密码',
`real_name` varchar(25) NOT NULL DEFAULT '' COMMENT '真实姓名',
`sex` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '性别',
`birthday` date DEFAULT NULL COMMENT '生日',
`card_id` varchar(20) NOT NULL DEFAULT '' COMMENT '身份证号码',
`mark` varchar(255) NOT NULL DEFAULT '' COMMENT '用户备注',
`label_id` varchar(64) DEFAULT NULL COMMENT '用户标签 id',
`group_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户分组id',
`nickname` varchar(16) NOT NULL COMMENT '用户昵称',
`avatar` varchar(256) NOT NULL COMMENT '用户头像',
`phone` char(15) DEFAULT NULL COMMENT '手机号码',
`addres` varchar(128) DEFAULT NULL COMMENT '地址',
`cancel_time` timestamp NULL DEFAULT NULL COMMENT '注销时间',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`last_time` timestamp NULL DEFAULT NULL COMMENT '最后一次登录时间',
`last_ip` varchar(16) NOT NULL COMMENT '最后一次登录ip',
`now_money` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '用户余额',
`brokerage_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '佣金金额',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1为正常0为禁止',
`spread_uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '推广员id',
`spread_time` timestamp NULL DEFAULT NULL COMMENT '推广员关联时间',
`spread_limit` timestamp NULL DEFAULT NULL COMMENT '推广员到期时间',
`brokerage_level` int(10) unsigned DEFAULT '0' COMMENT '推广员等级',
`user_type` varchar(32) NOT NULL COMMENT '用户类型',
`promoter_time` timestamp NULL DEFAULT NULL COMMENT '成功推广时间',
`is_promoter` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否为推广员',
`main_uid` int(10) unsigned DEFAULT '0' COMMENT '主账号',
`pay_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户购买次数',
`pay_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '用户消费金额',
`spread_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '下级人数',
`spread_pay_count` int(11) unsigned DEFAULT '0' COMMENT '下级订单数',
`spread_pay_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '下级订单金额',
`integral` int(11) unsigned DEFAULT '0' COMMENT '积分',
`member_level` int(11) unsigned DEFAULT '0' COMMENT '免费会员等级',
`member_value` int(11) unsigned DEFAULT '0' COMMENT '免费会员成长值',
`count_start` int(11) unsigned DEFAULT '0' COMMENT '用户获赞数',
`count_fans` int(11) unsigned DEFAULT '0' COMMENT '用户粉丝数',
`count_content` int(11) unsigned DEFAULT '0' COMMENT '用户内容数量',
`is_svip` tinyint(1) NOT NULL DEFAULT '-1' COMMENT '是否为付费会员 -1未开通过 0到期 1体验卡 2 有效期 3 永久',
`svip_endtime` timestamp NULL DEFAULT NULL COMMENT '会员结束时间',
`svip_save_money` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '会员节省金额',
PRIMARY KEY (`uid`) USING BTREE,
KEY `account` (`account`) USING BTREE,
KEY `spreaduid` (`spread_uid`) USING BTREE,
KEY `wechat_user_id` (`wechat_user_id`) USING BTREE,
KEY `main_uid` (`main_uid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=327677 DEFAULT CHARSET=utf8 COMMENT='用户表';
#
# Structure for table "eb_user_address"
#
CREATE TABLE `eb_user_address` (
`address_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户地址id',
`uid` int(10) unsigned NOT NULL COMMENT '用户id',
`real_name` varchar(32) NOT NULL DEFAULT '' COMMENT '收货人姓名',
`phone` varchar(16) NOT NULL DEFAULT '' COMMENT '收货人电话',
`province` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在省',
`province_id` int(10) unsigned DEFAULT '0' COMMENT '省 id',
`city` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在市',
`city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市id',
`district` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在区',
`district_id` int(10) unsigned DEFAULT '0' COMMENT '区域 id',
`street` varchar(64) DEFAULT NULL COMMENT '街/镇',
`street_id` int(10) unsigned DEFAULT '0' COMMENT '街镇 id',
`detail` varchar(256) NOT NULL DEFAULT '' COMMENT '收货人详细地址',
`post_code` int(10) unsigned NOT NULL COMMENT '邮编',
`longitude` varchar(16) NOT NULL DEFAULT '0' COMMENT '经度',
`latitude` varchar(16) NOT NULL DEFAULT '0' COMMENT '纬度',
`is_default` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否默认',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`address_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='用户地址表';
#
# Structure for table "eb_user_bill"
#
CREATE TABLE `eb_user_bill` (
`bill_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户账单id',
`uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户uid',
`link_id` varchar(32) NOT NULL DEFAULT '0' COMMENT '关联id',
`pm` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0 = 支出 1 = 获得',
`title` varchar(64) NOT NULL COMMENT '账单标题',
`category` varchar(64) NOT NULL COMMENT '明细种类',
`type` varchar(64) NOT NULL DEFAULT '' COMMENT '明细类型',
`number` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '明细数字',
`balance` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '剩余',
`mark` varchar(512) NOT NULL COMMENT '备注',
`mer_id` int(10) unsigned DEFAULT '0' COMMENT '商户 id',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0 = 待确定 1 = 有效 -1 = 无效',
PRIMARY KEY (`bill_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `create_time` (`create_time`) USING BTREE,
KEY `type` (`category`,`type`,`link_id`) USING BTREE,
KEY `mer_id` (`mer_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='用户账单表';
#
# Structure for table "eb_user_brokerage"
#
CREATE TABLE `eb_user_brokerage` (
`user_brokerage_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`brokerage_level` tinyint(3) unsigned NOT NULL COMMENT '等级',
`brokerage_name` varchar(32) NOT NULL COMMENT 'vip 名称',
`brokerage_icon` varchar(128) NOT NULL COMMENT 'vip 图标',
`brokerage_rule` varchar(1500) NOT NULL COMMENT '升级规则',
`user_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'vip 人数',
`extension_one` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '一级佣金',
`extension_two` decimal(8,2) unsigned NOT NULL COMMENT '二级佣金',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '默认0分销会员等级1 免费会员等级',
PRIMARY KEY (`user_brokerage_id`) USING BTREE,
UNIQUE KEY `vip_level` (`brokerage_level`,`type`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_user_extract"
#
CREATE TABLE `eb_user_extract` (
`extract_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户 id',
`extract_sn` varchar(255) DEFAULT NULL,
`real_name` varchar(64) DEFAULT NULL COMMENT '姓名',
`extract_type` tinyint(1) DEFAULT '0' COMMENT '0 银行卡 1 支付宝 2微信 3 零钱',
`bank_code` varchar(32) DEFAULT '0' COMMENT '银行卡',
`bank_address` varchar(256) DEFAULT '' COMMENT '开户地址',
`alipay_code` varchar(64) DEFAULT '' COMMENT '支付宝账号',
`wechat` varchar(15) DEFAULT NULL COMMENT '微信号',
`extract_pic` varchar(128) DEFAULT NULL COMMENT '收款码',
`extract_price` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '提现金额',
`balance` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '余额',
`mark` varchar(512) DEFAULT NULL COMMENT '管理员备注',
`admin_id` int(10) DEFAULT '0' COMMENT '审核管理员',
`fail_msg` varchar(128) DEFAULT NULL COMMENT '无效原因',
`status_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '无效时间',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
`status` tinyint(2) DEFAULT '0' COMMENT '-1 未通过 0 审核中 1 已提现',
`bank_name` varchar(255) DEFAULT NULL COMMENT '银行名称',
PRIMARY KEY (`extract_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户提现表';
#
# Structure for table "eb_user_fields"
#
CREATE TABLE `eb_user_fields` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uid` bigint(20) NOT NULL DEFAULT '0' COMMENT '用户id',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
#
# Structure for table "eb_user_group"
#
CREATE TABLE `eb_user_group` (
`group_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`group_name` varchar(64) NOT NULL COMMENT '用户分组名称',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`group_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COMMENT='用户分组表';
#
# Structure for table "eb_user_history"
#
CREATE TABLE `eb_user_history` (
`user_history_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`res_id` int(11) unsigned DEFAULT NULL COMMENT '历史记录对象的ID',
`res_type` int(11) DEFAULT NULL COMMENT '历史记录类型',
`uid` int(11) DEFAULT NULL,
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`update_time` int(11) DEFAULT NULL,
PRIMARY KEY (`user_history_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='浏览记录表';
#
# Structure for table "eb_user_info"
#
CREATE TABLE `eb_user_info` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`field` varchar(255) NOT NULL DEFAULT '' COMMENT '字段',
`title` varchar(255) NOT NULL DEFAULT '字段名' COMMENT '字段名',
`is_used` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否使用',
`is_require` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否必填',
`is_show` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否在用户端展示',
`type` varchar(255) NOT NULL DEFAULT '' COMMENT '信息格式',
`msg` varchar(255) NOT NULL DEFAULT '' COMMENT '提示信息',
`content` varchar(255) DEFAULT NULL COMMENT '配置内容',
`is_default` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否系统默认字段',
`sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`update_time` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `id` (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_user_label"
#
CREATE TABLE `eb_user_label` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`label_name` varchar(255) NOT NULL DEFAULT '' COMMENT '标签名称',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`type` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0=手动标签 1=自动标签',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`label_id`) USING BTREE,
KEY `mer_id` (`mer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=229 DEFAULT CHARSET=utf8 COMMENT='用户标签表';
#
# Structure for table "eb_user_merchant"
#
CREATE TABLE `eb_user_merchant` (
`user_merchant_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL COMMENT '用户 id',
`mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户 id',
`first_pay_time` timestamp NULL DEFAULT NULL COMMENT '首次消费时间',
`last_pay_time` timestamp NULL DEFAULT NULL COMMENT '最后一次消费时间',
`pay_num` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '消费次数',
`pay_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '消费金额',
`label_id` varchar(256) DEFAULT NULL COMMENT '用户标签',
`last_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '最后一次访问时间',
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '状态',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`user_merchant_id`),
UNIQUE KEY `uid` (`uid`,`mer_id`) USING BTREE,
KEY `mer_id` (`mer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1087 DEFAULT CHARSET=utf8 COMMENT='商户用户表';
#
# Structure for table "eb_user_order"
#
CREATE TABLE `eb_user_order` (
`order_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`link_id` int(11) DEFAULT NULL COMMENT '关联ID',
`pay_type` varchar(10) DEFAULT NULL COMMENT '支付方式1微信2支付宝',
`title` varchar(50) NOT NULL,
`order_sn` varchar(50) DEFAULT NULL COMMENT '订单ID',
`pay_price` decimal(8,2) unsigned DEFAULT NULL COMMENT '价格',
`order_info` varchar(255) DEFAULT NULL COMMENT '订单信息信息',
`order_type` varchar(255) DEFAULT NULL COMMENT '订单类型 S 付费会员 ',
`paid` int(11) NOT NULL DEFAULT '0' COMMENT '支付状态',
`pay_time` timestamp NULL DEFAULT NULL COMMENT '支付时间',
`status` int(11) NOT NULL DEFAULT '0' COMMENT '状态默认1',
`mer_id` int(11) DEFAULT NULL COMMENT '商户ID',
`uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
`create_time` timestamp NULL DEFAULT NULL,
`is_del` int(11) NOT NULL DEFAULT '0',
`admin_id` int(11) unsigned DEFAULT NULL COMMENT '管理员ID',
`other` varchar(50) DEFAULT NULL COMMENT '其他参数',
`end_time` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=804 DEFAULT CHARSET=utf8 COMMENT='支付订单信息';
#
# Structure for table "eb_user_receipt"
#
CREATE TABLE `eb_user_receipt` (
`user_receipt_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`receipt_type` tinyint(1) DEFAULT '0' COMMENT '发票类型1.普通发票2.增值税发票',
`receipt_title` varchar(128) DEFAULT '' COMMENT '发票抬头',
`receipt_title_type` varchar(255) DEFAULT '0' COMMENT '发票抬头类型1.个人2.企业',
`duty_paragraph` varchar(255) DEFAULT '' COMMENT '税号',
`email` varchar(255) DEFAULT '' COMMENT '邮箱',
`bank_name` varchar(255) DEFAULT '' COMMENT '开户行',
`bank_code` varchar(255) DEFAULT '0' COMMENT '银行账号',
`address` varchar(255) DEFAULT '' COMMENT '企业地址',
`tel` varchar(255) DEFAULT '' COMMENT '企业电话',
`is_default` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否默认',
`uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
`is_del` tinyint(1) DEFAULT '0',
`create_time` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`user_receipt_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8 COMMENT='用户发票信息';
#
# Structure for table "eb_user_recharge"
#
CREATE TABLE `eb_user_recharge` (
`recharge_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL COMMENT '充值用户UID',
`order_id` varchar(32) NOT NULL COMMENT '订单号',
`price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '充值金额',
`give_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '购买赠送金额',
`recharge_type` varchar(32) NOT NULL COMMENT '充值类型',
`paid` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否充值',
`pay_time` timestamp NULL DEFAULT NULL COMMENT '充值支付时间',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '充值时间',
`refund_price` decimal(10,2) unsigned DEFAULT '0.00' COMMENT '退款金额',
PRIMARY KEY (`recharge_id`) USING BTREE,
UNIQUE KEY `order_id` (`order_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=471 DEFAULT CHARSET=utf8 COMMENT='用户充值表';
#
# Structure for table "eb_user_relation"
#
CREATE TABLE `eb_user_relation` (
`uid` int(10) unsigned NOT NULL COMMENT '用户ID',
`type_id` int(10) unsigned NOT NULL COMMENT '类型的 id',
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '关联类型(0 普通商品、1秒杀2、预售3、助力4、拼团、10 = 店铺、12=购买过)',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
UNIQUE KEY `uid` (`type`,`type_id`,`uid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户记录表';
#
# Structure for table "eb_user_sign"
#
CREATE TABLE `eb_user_sign` (
`sign_id` int(11) NOT NULL AUTO_INCREMENT,
`uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid',
`title` varchar(255) NOT NULL DEFAULT '' COMMENT '签到说明',
`number` int(11) NOT NULL DEFAULT '0' COMMENT '获得积分',
`integral` int(11) NOT NULL DEFAULT '0' COMMENT '剩余积分',
`sign_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '连续签到天数',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`sign_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8 COMMENT='签到记录表';
#
# Structure for table "eb_user_spread_log"
#
CREATE TABLE `eb_user_spread_log` (
`user_spread_log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL COMMENT 'uid',
`old_spread_uid` int(10) unsigned NOT NULL COMMENT '原来的推荐人uid',
`spread_uid` int(10) unsigned NOT NULL COMMENT '新的推荐人 uid',
`admin_id` int(10) unsigned NOT NULL COMMENT '修改的管理员',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`user_spread_log_id`),
KEY `uid` (`uid`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8;
#
# Structure for table "eb_user_visit"
#
CREATE TABLE `eb_user_visit` (
`user_visit_id` int(10) NOT NULL AUTO_INCREMENT,
`uid` int(11) DEFAULT NULL COMMENT '用户ID',
`type` varchar(32) NOT NULL COMMENT '记录类型',
`type_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID',
`content` varchar(255) DEFAULT NULL COMMENT '备注描述',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`user_visit_id`) USING BTREE,
KEY `uid` (`uid`) USING BTREE,
KEY `type` (`type`,`type_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=547888 DEFAULT CHARSET=utf8 COMMENT='商品浏览分析表';
#
# Structure for table "eb_wechat_news"
#
CREATE TABLE `eb_wechat_news` (
`wechat_news_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '图文消息管理ID',
`mer_id` int(11) DEFAULT '0' COMMENT '商户id',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`wechat_news_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=utf8 COMMENT='图文消息管理表';
#
# Structure for table "eb_wechat_qrcode"
#
CREATE TABLE `eb_wechat_qrcode` (
`wechat_qrcode_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信二维码ID',
`third_type` varchar(32) NOT NULL COMMENT '二维码类型',
`third_id` int(11) unsigned NOT NULL COMMENT '类型id',
`ticket` varchar(255) NOT NULL COMMENT '二维码参数',
`expire_seconds` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '二维码有效时间',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态',
`url` varchar(255) NOT NULL COMMENT '微信访问url',
`qrcode_url` varchar(255) NOT NULL COMMENT '微信二维码url',
`scan` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '被扫的次数',
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间',
PRIMARY KEY (`wechat_qrcode_id`) USING BTREE,
UNIQUE KEY `third_type` (`third_type`,`third_id`) USING BTREE,
KEY `ticket` (`ticket`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信二维码管理表';
#
# Structure for table "eb_wechat_reply"
#
CREATE TABLE `eb_wechat_reply` (
`wechat_reply_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信关键字回复id',
`key` varchar(64) NOT NULL COMMENT '关键字',
`type` varchar(32) NOT NULL COMMENT '回复类型',
`data` text NOT NULL COMMENT '回复数据',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '0=不可用 1 =可用',
`hidden` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否显示',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`wechat_reply_id`) USING BTREE,
UNIQUE KEY `key` (`key`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8 COMMENT='微信关键字回复表';
#
# Structure for table "eb_wechat_user"
#
CREATE TABLE `eb_wechat_user` (
`wechat_user_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信用户id',
`unionid` varchar(60) DEFAULT NULL COMMENT '只有在用户将公众号绑定到微信开放平台帐号后,才会出现该字段',
`openid` varchar(30) DEFAULT NULL COMMENT '用户的标识,对当前公众号唯一',
`routine_openid` varchar(32) DEFAULT NULL COMMENT '小程序唯一身份ID',
`nickname` varchar(64) NOT NULL COMMENT '用户的昵称',
`headimgurl` varchar(256) NOT NULL COMMENT '用户头像',
`sex` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '用户的性别值为1时是男性值为2时是女性值为0时是未知',
`city` varchar(32) NOT NULL COMMENT '用户所在城市',
`language` varchar(32) NOT NULL COMMENT '用户的语言简体中文为zh_CN',
`province` varchar(32) NOT NULL COMMENT '用户所在省份',
`country` varchar(32) NOT NULL COMMENT '用户所在国家',
`remark` varchar(256) DEFAULT NULL COMMENT '公众号运营者对粉丝的备注,公众号运营者可在微信公众平台用户管理界面对粉丝添加备注',
`groupid` smallint(5) unsigned DEFAULT '0' COMMENT '用户所在的分组ID兼容旧的用户分组接口',
`tagid_list` varchar(256) DEFAULT NULL COMMENT '用户被打上的标签ID列表',
`subscribe` tinyint(3) unsigned DEFAULT '0' COMMENT '用户是否订阅该公众号标识',
`subscribe_time` int(10) unsigned DEFAULT NULL COMMENT '关注公众号时间',
`session_key` varchar(32) DEFAULT NULL COMMENT '小程序用户会话密匙',
`user_type` varchar(32) DEFAULT 'wechat' COMMENT '用户类型',
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
PRIMARY KEY (`wechat_user_id`) USING BTREE,
KEY `groupid` (`groupid`) USING BTREE,
KEY `subscribe_time` (`subscribe_time`) USING BTREE,
KEY `unionid` (`unionid`) USING BTREE,
KEY `routine_openid` (`routine_openid`) USING BTREE,
KEY `openid` (`openid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=9545 DEFAULT CHARSET=utf8 COMMENT='微信用户表';
# Host: localhost (Version: 5.7.26)
# Date: 2024-05-16 14:47:53
# Generator: MySQL-Front 5.3 (Build 4.234)
/*!40101 SET NAMES utf8 */;
#
# Data for table "eb_article"
#
INSERT INTO `eb_article` (`article_id`,`cid`,`title`,`author`,`image_input`,`synopsis`,`visit`,`sort`,`url`,`admin_id`,`mer_id`,`is_hot`,`is_banner`,`status`,`create_time`,`wechat_news_id`) VALUES (149,16,'未来电商风向标','crmeb','https://mer1.crmeb.net/uploads/def/20230509/8383b42e63bf59c67b6f9681984cbc17.png','未来电商风向标',NULL,0,'',12,0,1,1,1,'2020-07-14 10:41:13',0),(150,18,'抖音带货怎么玩?','crmeb','https://mer1.crmeb.net/uploads/def/20230509/397fe337d6f6bec1b0fc2919a8784f9e.png','抖音带货怎么玩?',NULL,0,'',12,0,1,1,1,'2020-07-14 10:42:30',0);
#
# Data for table "eb_article_category"
#
INSERT INTO `eb_article_category` (`article_category_id`,`pid`,`mer_id`,`title`,`info`,`image`,`status`,`sort`,`create_time`) VALUES (16,0,0,'平台活动','最新活动介绍','https://cremb.oss-cn-beijing.aliyuncs.com/c57f7202007092057158018.jpeg',1,5,'2020-07-14 02:37:01'),(17,0,0,'最新优惠','优惠活动','https://cremb.oss-cn-beijing.aliyuncs.com/10a33202007092100053405.jpeg',1,4,'2020-07-14 02:37:26'),(18,0,0,'平台公告','官方公告','https://cremb.oss-cn-beijing.aliyuncs.com/f7797202007092058528666.jpeg',1,3,'2020-07-14 02:37:51');
#
# Data for table "eb_article_content"
#
INSERT INTO `eb_article_content` (`article_content_id`,`content`) VALUES (149,'<p style=\"overflow-y: auto; max-width: 100%; line-height: 30px; border: 0px; text-align: center; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px; color: rgb(0, 0, 0);\"><strong style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px; --tt-darkmode-color: #D92142;\">风向已变,平台经济迎来发展好时机</span></strong></span></p><p style=\"overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;\"><br/></p><p style=\"overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;\"><span style=\"color: rgb(51, 51, 51); text-align: justify;\">近日举行的经济工作会议上,明确提出要大力发展数字经济,提升常态化监管水平,支持平台企业在引领发展、创造就业、国际竞争中大显身手。</span></p><p style=\"overflow-y: auto; max-width: 100%; line-height: 30px; border: 0px; text-align: justify; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); --tt-darkmode-color: #A3A3A3;\">从电商行业的维度对以上表述进行分解,不难找到以下几个重点。</span></span></p><p style=\"overflow-y: auto; max-width: 100%; line-height: 30px; border: 0px; text-align: justify; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); --tt-darkmode-color: #A3A3A3;\"><br/></span></span></p><p style=\"overflow-y: auto; max-width: 100%; line-height: 30px; border: 0px; text-align: justify; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px;\"><strong style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); --tt-darkmode-color: #A3A3A3;\">首先,发展数字经济,还要“大力发展”,意义非常不一般。</span></strong></span></p><p style=\"overflow-y: auto; max-width: 100%; line-height: 30px; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;\"><br/></p><p style=\"overflow-y: auto; max-width: 100%; line-height: 30px; border: 0px; text-align: justify; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); --tt-darkmode-color: #A3A3A3;\">事实上,通过新技术优势,加强线上和线下融合发展,是近年来一些主要电商平台正在全力以赴所做的事。比如说,阿里巴巴、京东都在通过云技术助力传统制造业降低成本的同时提高企业的运营效率,阿里云的增长,甚至正在描画出阿里巴巴集团增长的第二曲线。</span></span></p><p class=\"pgc-img-caption\" style=\"margin-top: 20px; margin-bottom: 0px; padding: 0px; overflow-y: auto; max-width: 100%; line-height: 30px; border: 0px;\"><strong style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px;\"><span style=\"max-width: 100%; margin: 0px; padding: 0px; border: 0px; color: rgb(51, 51, 51); --tt-darkmode-color: #A3A3A3;\">其次,鼓励平台企业在一些方面可以“大显身手”,这样对平台经济的肯定近年来并不多见。</span></strong><br style=\"display: block; max
#
# Data for table "eb_broadcast_assistant"
#
#
# Data for table "eb_broadcast_goods"
#
#
# Data for table "eb_broadcast_room"
#
#
# Data for table "eb_broadcast_room_goods"
#
#
# Data for table "eb_cache"
#
#
# Data for table "eb_city_area"
#
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (1,'/',0,'province','北京市',1,'11',1,'2023-08-08 02:23:08'),(2,'/1/',1,'city','市辖区',2,'110100000000',16,'2023-08-08 02:23:08'),(3,'/1/2/',2,'area','东城区',3,'110101000000',17,'2023-08-08 02:23:08'),(4,'/1/2/3/',3,'street','东华门街道',4,'110101001000',0,'2023-08-08 02:23:08'),(5,'/1/2/3/',3,'street','景山街道',4,'110101002000',0,'2023-08-08 02:23:08'),(6,'/1/2/3/',3,'street','交道口街道',4,'110101003000',0,'2023-08-08 02:23:08'),(7,'/1/2/3/',3,'street','安定门街道',4,'110101004000',0,'2023-08-08 02:23:08'),(8,'/1/2/3/',3,'street','北新桥街道',4,'110101005000',0,'2023-08-08 02:23:08'),(9,'/1/2/3/',3,'street','东四街道',4,'110101006000',0,'2023-08-08 02:23:08'),(10,'/1/2/3/',3,'street','朝阳门街道',4,'110101007000',0,'2023-08-08 02:23:08'),(11,'/1/2/3/',3,'street','建国门街道',4,'110101008000',0,'2023-08-08 02:23:08'),(12,'/1/2/3/',3,'street','东直门街道',4,'110101009000',0,'2023-08-08 02:23:08'),(13,'/1/2/3/',3,'street','和平里街道',4,'110101010000',0,'2023-08-08 02:23:08'),(14,'/1/2/3/',3,'street','前门街道',4,'110101011000',0,'2023-08-08 02:23:08'),(15,'/1/2/3/',3,'street','崇文门外街道',4,'110101012000',0,'2023-08-08 02:23:08'),(16,'/1/2/3/',3,'street','东花市街道',4,'110101013000',0,'2023-08-08 02:23:08'),(17,'/1/2/3/',3,'street','龙潭街道',4,'110101014000',0,'2023-08-08 02:23:08'),(18,'/1/2/3/',3,'street','体育馆路街道',4,'110101015000',0,'2023-08-08 02:23:08'),(19,'/1/2/3/',3,'street','天坛街道',4,'110101016000',0,'2023-08-08 02:23:08'),(20,'/1/2/3/',3,'street','永定门外街道',4,'110101017000',0,'2023-08-08 02:23:08'),(21,'/1/2/',2,'area','西城区',3,'110102000000',15,'2023-08-08 02:23:08'),(22,'/1/2/21/',21,'street','西长安街街道',4,'110102001000',0,'2023-08-08 02:23:08'),(23,'/1/2/21/',21,'street','新街口街道',4,'110102003000',0,'2023-08-08 02:23:08'),(24,'/1/2/21/',21,'street','月坛街道',4,'110102007000',0,'2023-08-08 02:23:08'),(25,'/1/2/21/',21,'street','展览路街道',4,'110102009000',0,'2023-08-08 02:23:08'),(26,'/1/2/21/',21,'street','德胜街道',4,'110102010000',0,'2023-08-08 02:23:08'),(27,'/1/2/21/',21,'street','金融街街道',4,'110102011000',0,'2023-08-08 02:23:08'),(28,'/1/2/21/',21,'street','什刹海街道',4,'110102012000',0,'2023-08-08 02:23:08'),(29,'/1/2/21/',21,'street','大栅栏街道',4,'110102013000',0,'2023-08-08 02:23:08'),(30,'/1/2/21/',21,'street','天桥街道',4,'110102014000',0,'2023-08-08 02:23:08'),(31,'/1/2/21/',21,'street','椿树街道',4,'110102015000',0,'2023-08-08 02:23:08'),(32,'/1/2/21/',21,'street','陶然亭街道',4,'110102016000',0,'2023-08-08 02:23:08'),(33,'/1/2/21/',21,'street','广安门内街道',4,'110102017000',0,'2023-08-08 02:23:08'),(34,'/1/2/21/',21,'street','牛街街道',4,'110102018000',0,'2023-08-08 02:23:08'),(35,'/1/2/21/',21,'street','白纸坊街道',4,'110102019000',0,'2023-08-08 02:23:08'),(36,'/1/2/21/',21,'street','广安门外街道',4,'110102020000',0,'2023-08-08 02:23:08'),(37,'/1/2/',2,'area','朝阳区',3,'110105000000',43,'2023-08-08 02:23:08'),(38,'/1/2/37/',37,'street','建外街道',4,'110105001000',0,'2023-08-08 02:23:08'),(39,'/1/2/37/',37,'street','朝外街道',4,'110105002000',0,'2023-08-08 02:23:08'),(40,'/1/2/37/',37,'street','呼家楼街道',4,'110105003000',0,'2023-08-08 02:23:08'),(41,'/1/2/37/',37,'street','三里屯街道',4,'110105004000',0,'2023-08-08 02:23:08'),(42,'/1/2/37/',37,'street','左家庄街道',4,'110105005000',0,'2023-08-08 02:23:08'),(43,'/1/2/37/',37,'street','香河园街道',4,'110105006000',0,'2023-08-08 02:23:08'),(44,'/1/2/37/',37,'street','和平街街道',4,'110105007000',0,'2023-08-08 02:23:08'),(45,'/1/2/37/',37,'street','安贞街道',4,'110105008000',0,'2023-08-08 02:23:08'),(46,'/1/2/37/',37,'street','亚运村街道',4,'110105009000',0,'2023-08-08 02:23:08'),(47,'/1/2/37/',37,'street','小关街道',4,'110105010000',0,'2023-08-08 02:23:08'),(48,'/1/2/37/',37,'street','
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (1248,'/685/991/1246/',1246,'street','古城街道',4,'130284002000',0,'2023-08-08 02:23:10'),(1249,'/685/991/1246/',1246,'street','滦城路街道',4,'130284003000',0,'2023-08-08 02:23:10'),(1250,'/685/991/1246/',1246,'street','响嘡街道',4,'130284004000',0,'2023-08-08 02:23:10'),(1251,'/685/991/1246/',1246,'street','东安各庄镇',4,'130284102000',0,'2023-08-08 02:23:10'),(1252,'/685/991/1246/',1246,'street','雷庄镇',4,'130284103000',0,'2023-08-08 02:23:10'),(1253,'/685/991/1246/',1246,'street','茨榆坨镇',4,'130284104000',0,'2023-08-08 02:23:10'),(1254,'/685/991/1246/',1246,'street','榛子镇',4,'130284105000',0,'2023-08-08 02:23:10'),(1255,'/685/991/1246/',1246,'street','杨柳庄镇',4,'130284106000',0,'2023-08-08 02:23:10'),(1256,'/685/991/1246/',1246,'street','油榨镇',4,'130284107000',0,'2023-08-08 02:23:10'),(1257,'/685/991/1246/',1246,'street','古马镇',4,'130284108000',0,'2023-08-08 02:23:10'),(1258,'/685/991/1246/',1246,'street','小马庄镇',4,'130284109000',0,'2023-08-08 02:23:10'),(1259,'/685/991/1246/',1246,'street','九百户镇',4,'130284110000',0,'2023-08-08 02:23:10'),(1260,'/685/991/1246/',1246,'street','王店子镇',4,'130284111000',0,'2023-08-08 02:23:10'),(1261,'/685/',685,'city','秦皇岛市',2,'130300000000',9,'2023-08-08 02:23:10'),(1262,'/685/1261/',1261,'area','海港区',3,'130302000000',20,'2023-08-08 02:23:10'),(1263,'/685/1261/1262/',1262,'street','文化路街道',4,'130302001000',0,'2023-08-08 02:23:10'),(1264,'/685/1261/1262/',1262,'street','海滨路街道',4,'130302002000',0,'2023-08-08 02:23:10'),(1265,'/685/1261/1262/',1262,'street','北环路街道',4,'130302003000',0,'2023-08-08 02:23:10'),(1266,'/685/1261/1262/',1262,'street','建设大街街道',4,'130302004000',0,'2023-08-08 02:23:10'),(1267,'/685/1261/1262/',1262,'street','河东街道',4,'130302005000',0,'2023-08-08 02:23:10'),(1268,'/685/1261/1262/',1262,'street','西港路街道',4,'130302006000',0,'2023-08-08 02:23:10'),(1269,'/685/1261/1262/',1262,'street','燕山大街街道',4,'130302007000',0,'2023-08-08 02:23:10'),(1270,'/685/1261/1262/',1262,'street','港城大街街道',4,'130302008000',0,'2023-08-08 02:23:10'),(1271,'/685/1261/1262/',1262,'street','东环路街道',4,'130302009000',0,'2023-08-08 02:23:10'),(1272,'/685/1261/1262/',1262,'street','白塔岭街道',4,'130302010000',0,'2023-08-08 02:23:10'),(1273,'/685/1261/1262/',1262,'street','东港镇',4,'130302100000',0,'2023-08-08 02:23:10'),(1274,'/685/1261/1262/',1262,'street','海港镇',4,'130302101000',0,'2023-08-08 02:23:10'),(1275,'/685/1261/1262/',1262,'street','西港镇',4,'130302102000',0,'2023-08-08 02:23:10'),(1276,'/685/1261/1262/',1262,'street','海阳镇',4,'130302103000',0,'2023-08-08 02:23:10'),(1277,'/685/1261/1262/',1262,'street','北港镇',4,'130302104000',0,'2023-08-08 02:23:10'),(1278,'/685/1261/1262/',1262,'street','杜庄镇',4,'130302105000',0,'2023-08-08 02:23:10'),(1279,'/685/1261/1262/',1262,'street','石门寨镇',4,'130302106000',0,'2023-08-08 02:23:10'),(1280,'/685/1261/1262/',1262,'street','驻操营镇',4,'130302107000',0,'2023-08-08 02:23:10'),(1281,'/685/1261/1262/',1262,'street','临港物流园区',4,'130302403000',0,'2023-08-08 02:23:10'),(1282,'/685/1261/1262/',1262,'street','海港经济开发区',4,'130302404000',0,'2023-08-08 02:23:10'),(1283,'/685/1261/',1261,'area','山海关区',3,'130303000000',7,'2023-08-08 02:23:10'),(1284,'/685/1261/1283/',1283,'street','南关街道',4,'130303001000',0,'2023-08-08 02:23:10'),(1285,'/685/1261/1283/',1283,'street','古城街道',4,'130303002000',0,'2023-08-08 02:23:10'),(1286,'/685/1261/1283/',1283,'street','西关街道',4,'130303003000',0,'2023-08-08 02:23:10'),(1287,'/685/1261/1283/',1283,'street','路南街道',4,'130303004000',0,'2023-08-08 02:23:10'),(1288,'/685/1261/1283/',1283,'street','第一关镇',4,'130303100000',0,'2023-08-08 02:23:10'),(1289,'/685/1261/1283/',1283,'street','石河镇',4,'130303101000',0,'2023-08-08 02:23:10'),(1290,'/685/1
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (2433,'/685/2244/2423/',2423,'street','王虎屯乡',4,'130728205000',0,'2023-08-08 02:23:12'),(2434,'/685/2244/2423/',2423,'street','第三堡乡',4,'130728206000',0,'2023-08-08 02:23:12'),(2435,'/685/2244/',2244,'area','怀来县',3,'130730000000',17,'2023-08-08 02:23:12'),(2436,'/685/2244/2435/',2435,'street','沙城镇',4,'130730100000',0,'2023-08-08 02:23:12'),(2437,'/685/2244/2435/',2435,'street','北辛堡镇',4,'130730101000',0,'2023-08-08 02:23:12'),(2438,'/685/2244/2435/',2435,'street','新保安镇',4,'130730102000',0,'2023-08-08 02:23:12'),(2439,'/685/2244/2435/',2435,'street','东花园镇',4,'130730103000',0,'2023-08-08 02:23:13'),(2440,'/685/2244/2435/',2435,'street','官厅镇',4,'130730104000',0,'2023-08-08 02:23:13'),(2441,'/685/2244/2435/',2435,'street','桑园镇',4,'130730105000',0,'2023-08-08 02:23:13'),(2442,'/685/2244/2435/',2435,'street','存瑞镇',4,'130730106000',0,'2023-08-08 02:23:13'),(2443,'/685/2244/2435/',2435,'street','土木镇',4,'130730107000',0,'2023-08-08 02:23:13'),(2444,'/685/2244/2435/',2435,'street','大黄庄镇',4,'130730108000',0,'2023-08-08 02:23:13'),(2445,'/685/2244/2435/',2435,'street','西八里镇',4,'130730109000',0,'2023-08-08 02:23:13'),(2446,'/685/2244/2435/',2435,'street','小南辛堡镇',4,'130730110000',0,'2023-08-08 02:23:13'),(2447,'/685/2244/2435/',2435,'street','狼山乡',4,'130730200000',0,'2023-08-08 02:23:13'),(2448,'/685/2244/2435/',2435,'street','鸡鸣驿乡',4,'130730203000',0,'2023-08-08 02:23:13'),(2449,'/685/2244/2435/',2435,'street','东八里乡',4,'130730205000',0,'2023-08-08 02:23:13'),(2450,'/685/2244/2435/',2435,'street','瑞云观乡',4,'130730207000',0,'2023-08-08 02:23:13'),(2451,'/685/2244/2435/',2435,'street','孙庄子乡',4,'130730208000',0,'2023-08-08 02:23:13'),(2452,'/685/2244/2435/',2435,'street','王家楼回族乡',4,'130730210000',0,'2023-08-08 02:23:13'),(2453,'/685/2244/',2244,'area','涿鹿县',3,'130731000000',17,'2023-08-08 02:23:13'),(2454,'/685/2244/2453/',2453,'street','涿鹿镇',4,'130731100000',0,'2023-08-08 02:23:13'),(2455,'/685/2244/2453/',2453,'street','张家堡镇',4,'130731101000',0,'2023-08-08 02:23:13'),(2456,'/685/2244/2453/',2453,'street','武家沟镇',4,'130731102000',0,'2023-08-08 02:23:13'),(2457,'/685/2244/2453/',2453,'street','五堡镇',4,'130731103000',0,'2023-08-08 02:23:13'),(2458,'/685/2244/2453/',2453,'street','保岱镇',4,'130731104000',0,'2023-08-08 02:23:13'),(2459,'/685/2244/2453/',2453,'street','矾山镇',4,'130731105000',0,'2023-08-08 02:23:13'),(2460,'/685/2244/2453/',2453,'street','大堡镇',4,'130731106000',0,'2023-08-08 02:23:13'),(2461,'/685/2244/2453/',2453,'street','河东镇',4,'130731107000',0,'2023-08-08 02:23:13'),(2462,'/685/2244/2453/',2453,'street','东小庄镇',4,'130731108000',0,'2023-08-08 02:23:13'),(2463,'/685/2244/2453/',2453,'street','辉耀镇',4,'130731109000',0,'2023-08-08 02:23:13'),(2464,'/685/2244/2453/',2453,'street','大河南镇',4,'130731110000',0,'2023-08-08 02:23:13'),(2465,'/685/2244/2453/',2453,'street','温泉屯镇',4,'130731111000',0,'2023-08-08 02:23:13'),(2466,'/685/2244/2453/',2453,'street','蟒石口镇',4,'130731112000',0,'2023-08-08 02:23:13'),(2467,'/685/2244/2453/',2453,'street','卧佛寺镇',4,'130731113000',0,'2023-08-08 02:23:13'),(2468,'/685/2244/2453/',2453,'street','栾庄乡',4,'130731201000',0,'2023-08-08 02:23:13'),(2469,'/685/2244/2453/',2453,'street','黑山寺乡',4,'130731204000',0,'2023-08-08 02:23:13'),(2470,'/685/2244/2453/',2453,'street','谢家堡乡',4,'130731206000',0,'2023-08-08 02:23:13'),(2471,'/685/2244/',2244,'area','赤城县',3,'130732000000',18,'2023-08-08 02:23:13'),(2472,'/685/2244/2471/',2471,'street','赤城镇',4,'130732100000',0,'2023-08-08 02:23:13'),(2473,'/685/2244/2471/',2471,'street','田家窑镇',4,'130732101000',0,'2023-08-08 02:23:13'),(2474,'/685/2244/2471/',2471,'street','龙关镇',4,'130732102000',0,'2023-08-08 02:23:13'),(2475,'/685/2244/2471/',2471,'street','雕鹗镇',4,'13073210
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (3610,'/3247/3555/3605/',3605,'street','微子镇',4,'140406101000',0,'2023-08-08 02:23:15'),(3611,'/3247/3555/3605/',3605,'street','辛安泉镇',4,'140406102000',0,'2023-08-08 02:23:15'),(3612,'/3247/3555/3605/',3605,'street','史回镇',4,'140406104000',0,'2023-08-08 02:23:15'),(3613,'/3247/3555/3605/',3605,'street','黄牛蹄乡',4,'140406201000',0,'2023-08-08 02:23:15'),(3614,'/3247/3555/3605/',3605,'street','潞城经济技术开发区',4,'140406400000',0,'2023-08-08 02:23:15'),(3615,'/3247/3555/',3555,'area','襄垣县',3,'140423000000',10,'2023-08-08 02:23:15'),(3616,'/3247/3555/3615/',3615,'street','古韩镇',4,'140423100000',0,'2023-08-08 02:23:15'),(3617,'/3247/3555/3615/',3615,'street','王桥镇',4,'140423101000',0,'2023-08-08 02:23:15'),(3618,'/3247/3555/3615/',3615,'street','侯堡镇',4,'140423102000',0,'2023-08-08 02:23:15'),(3619,'/3247/3555/3615/',3615,'street','夏店镇',4,'140423103000',0,'2023-08-08 02:23:15'),(3620,'/3247/3555/3615/',3615,'street','虒亭镇',4,'140423104000',0,'2023-08-08 02:23:15'),(3621,'/3247/3555/3615/',3615,'street','西营镇',4,'140423105000',0,'2023-08-08 02:23:15'),(3622,'/3247/3555/3615/',3615,'street','王村镇',4,'140423106000',0,'2023-08-08 02:23:15'),(3623,'/3247/3555/3615/',3615,'street','下良镇',4,'140423107000',0,'2023-08-08 02:23:15'),(3624,'/3247/3555/3615/',3615,'street','善福镇',4,'140423108000',0,'2023-08-08 02:23:15'),(3625,'/3247/3555/3615/',3615,'street','襄垣经济技术开发区',4,'140423402000',0,'2023-08-08 02:23:15'),(3626,'/3247/3555/',3555,'area','平顺县',3,'140425000000',13,'2023-08-08 02:23:15'),(3627,'/3247/3555/3626/',3626,'street','青羊镇',4,'140425100000',0,'2023-08-08 02:23:15'),(3628,'/3247/3555/3626/',3626,'street','龙溪镇',4,'140425101000',0,'2023-08-08 02:23:15'),(3629,'/3247/3555/3626/',3626,'street','石城镇',4,'140425102000',0,'2023-08-08 02:23:15'),(3630,'/3247/3555/3626/',3626,'street','苗庄镇',4,'140425103000',0,'2023-08-08 02:23:15'),(3631,'/3247/3555/3626/',3626,'street','玉峡关镇',4,'140425104000',0,'2023-08-08 02:23:15'),(3632,'/3247/3555/3626/',3626,'street','西沟乡',4,'140425200000',0,'2023-08-08 02:23:15'),(3633,'/3247/3555/3626/',3626,'street','东寺头乡',4,'140425201000',0,'2023-08-08 02:23:15'),(3634,'/3247/3555/3626/',3626,'street','虹梯关乡',4,'140425202000',0,'2023-08-08 02:23:15'),(3635,'/3247/3555/3626/',3626,'street','阳高乡',4,'140425203000',0,'2023-08-08 02:23:15'),(3636,'/3247/3555/3626/',3626,'street','北耽车乡',4,'140425204000',0,'2023-08-08 02:23:15'),(3637,'/3247/3555/3626/',3626,'street','北社乡',4,'140425206000',0,'2023-08-08 02:23:15'),(3638,'/3247/3555/3626/',3626,'street','平顺经济技术开发区',4,'140425400000',0,'2023-08-08 02:23:15'),(3639,'/3247/3555/3626/',3626,'street','平顺生态文化旅游示范区',4,'140425401000',0,'2023-08-08 02:23:15'),(3640,'/3247/3555/',3555,'area','黎城县',3,'140426000000',9,'2023-08-08 02:23:15'),(3641,'/3247/3555/3640/',3640,'street','东阳关镇',4,'140426101000',0,'2023-08-08 02:23:15'),(3642,'/3247/3555/3640/',3640,'street','上遥镇',4,'140426102000',0,'2023-08-08 02:23:15'),(3643,'/3247/3555/3640/',3640,'street','西井镇',4,'140426103000',0,'2023-08-08 02:23:15'),(3644,'/3247/3555/3640/',3640,'street','黄崖洞镇',4,'140426104000',0,'2023-08-08 02:23:15'),(3645,'/3247/3555/3640/',3640,'street','黎侯镇',4,'140426105000',0,'2023-08-08 02:23:15'),(3646,'/3247/3555/3640/',3640,'street','洪井镇',4,'140426106000',0,'2023-08-08 02:23:15'),(3647,'/3247/3555/3640/',3640,'street','西仵镇',4,'140426107000',0,'2023-08-08 02:23:15'),(3648,'/3247/3555/3640/',3640,'street','程家山镇',4,'140426108000',0,'2023-08-08 02:23:15'),(3649,'/3247/3555/3640/',3640,'street','黎城县经济技术开发区',4,'140426400000',0,'2023-08-08 02:23:15'),(3650,'/3247/3555/',3555,'area','壶关县',3,'140427000000',11,'2023-08-08 02:23:15'),(3651,'/3247/3555/3650/',3650,'street','龙泉镇',4,'140427100000',0,'
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (4784,'/4736/4737/4782/',4782,'street','毕克齐镇',4,'150121101000',0,'2023-08-08 02:23:16'),(4785,'/4736/4737/4782/',4782,'street','善岱镇',4,'150121102000',0,'2023-08-08 02:23:16'),(4786,'/4736/4737/4782/',4782,'street','台阁牧镇',4,'150121103000',0,'2023-08-08 02:23:16'),(4787,'/4736/4737/4782/',4782,'street','白庙子镇',4,'150121104000',0,'2023-08-08 02:23:16'),(4788,'/4736/4737/4782/',4782,'street','沙尔沁镇',4,'150121105000',0,'2023-08-08 02:23:16'),(4789,'/4736/4737/4782/',4782,'street','敕勒川镇',4,'150121106000',0,'2023-08-08 02:23:16'),(4790,'/4736/4737/4782/',4782,'street','北什轴乡',4,'150121207000',0,'2023-08-08 02:23:16'),(4791,'/4736/4737/4782/',4782,'street','塔布赛乡',4,'150121208000',0,'2023-08-08 02:23:16'),(4792,'/4736/4737/4782/',4782,'street','呼和浩特金山经济技术开发区',4,'150121401000',0,'2023-08-08 02:23:16'),(4793,'/4736/4737/',4737,'area','托克托县',3,'150122000000',6,'2023-08-08 02:23:16'),(4794,'/4736/4737/4793/',4793,'street','双河镇',4,'150122100000',0,'2023-08-08 02:23:16'),(4795,'/4736/4737/4793/',4793,'street','新营子镇',4,'150122101000',0,'2023-08-08 02:23:16'),(4796,'/4736/4737/4793/',4793,'street','五申镇',4,'150122102000',0,'2023-08-08 02:23:16'),(4797,'/4736/4737/4793/',4793,'street','伍什家镇',4,'150122103000',0,'2023-08-08 02:23:16'),(4798,'/4736/4737/4793/',4793,'street','古城镇',4,'150122104000',0,'2023-08-08 02:23:16'),(4799,'/4736/4737/4793/',4793,'street','托县工业园区',4,'150122400000',0,'2023-08-08 02:23:16'),(4800,'/4736/4737/',4737,'area','和林格尔县',3,'150123000000',10,'2023-08-08 02:23:16'),(4801,'/4736/4737/4800/',4800,'street','城关镇',4,'150123100000',0,'2023-08-08 02:23:16'),(4802,'/4736/4737/4800/',4800,'street','盛乐镇',4,'150123101000',0,'2023-08-08 02:23:16'),(4803,'/4736/4737/4800/',4800,'street','新店子镇',4,'150123102000',0,'2023-08-08 02:23:16'),(4804,'/4736/4737/4800/',4800,'street','巧什营镇',4,'150123103000',0,'2023-08-08 02:23:16'),(4805,'/4736/4737/4800/',4800,'street','舍必崖乡',4,'150123203000',0,'2023-08-08 02:23:16'),(4806,'/4736/4737/4800/',4800,'street','大红城乡',4,'150123205000',0,'2023-08-08 02:23:16'),(4807,'/4736/4737/4800/',4800,'street','羊群沟乡',4,'150123206000',0,'2023-08-08 02:23:16'),(4808,'/4736/4737/4800/',4800,'street','黑老夭乡',4,'150123207000',0,'2023-08-08 02:23:16'),(4809,'/4736/4737/4800/',4800,'street','盛乐经济工业园区',4,'150123400000',0,'2023-08-08 02:23:16'),(4810,'/4736/4737/4800/',4800,'street','内蒙古和林格尔新区',4,'150123401000',0,'2023-08-08 02:23:16'),(4811,'/4736/4737/',4737,'area','清水河县',3,'150124000000',9,'2023-08-08 02:23:16'),(4812,'/4736/4737/4811/',4811,'street','城关镇',4,'150124100000',0,'2023-08-08 02:23:16'),(4813,'/4736/4737/4811/',4811,'street','宏河镇',4,'150124101000',0,'2023-08-08 02:23:16'),(4814,'/4736/4737/4811/',4811,'street','喇嘛湾镇',4,'150124102000',0,'2023-08-08 02:23:16'),(4815,'/4736/4737/4811/',4811,'street','老牛湾镇',4,'150124103000',0,'2023-08-08 02:23:16'),(4816,'/4736/4737/4811/',4811,'street','窑沟乡',4,'150124200000',0,'2023-08-08 02:23:16'),(4817,'/4736/4737/4811/',4811,'street','北堡乡',4,'150124201000',0,'2023-08-08 02:23:16'),(4818,'/4736/4737/4811/',4811,'street','韭菜庄乡',4,'150124202000',0,'2023-08-08 02:23:16'),(4819,'/4736/4737/4811/',4811,'street','五良太乡',4,'150124203000',0,'2023-08-08 02:23:16'),(4820,'/4736/4737/4811/',4811,'street','内蒙古清水河工业园区',4,'150124401000',0,'2023-08-08 02:23:16'),(4821,'/4736/4737/',4737,'area','武川县',3,'150125000000',11,'2023-08-08 02:23:16'),(4822,'/4736/4737/4821/',4821,'street','可可以力更镇',4,'150125100000',0,'2023-08-08 02:23:16'),(4823,'/4736/4737/4821/',4821,'street','哈乐镇',4,'150125101000',0,'2023-08-08 02:23:16'),(4824,'/4736/4737/4821/',4821,'street','西乌兰不浪镇',4,'150125102000',0,'2023-08-08 02:23:16'),(4825,'/4736/4737/
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (5940,'/4736/5917/5939/',5939,'street','别力古台镇',4,'152522100000',0,'2023-08-08 02:23:18'),(5941,'/4736/5917/5939/',5939,'street','洪格尔高勒镇',4,'152522101000',0,'2023-08-08 02:23:18'),(5942,'/4736/5917/5939/',5939,'street','查干淖尔镇',4,'152522102000',0,'2023-08-08 02:23:18'),(5943,'/4736/5917/5939/',5939,'street','那仁宝拉格苏木',4,'152522200000',0,'2023-08-08 02:23:18'),(5944,'/4736/5917/5939/',5939,'street','伊和高勒苏木',4,'152522201000',0,'2023-08-08 02:23:18'),(5945,'/4736/5917/5939/',5939,'street','吉尔嘎郎图苏木',4,'152522202000',0,'2023-08-08 02:23:18'),(5946,'/4736/5917/5939/',5939,'street','巴彦图嘎苏木',4,'152522203000',0,'2023-08-08 02:23:18'),(5947,'/4736/5917/5939/',5939,'street','玛尼图煤矿',4,'152522400000',0,'2023-08-08 02:23:18'),(5948,'/4736/5917/',5917,'area','苏尼特左旗',3,'152523000000',9,'2023-08-08 02:23:18'),(5949,'/4736/5917/5948/',5948,'street','满都拉图镇',4,'152523100000',0,'2023-08-08 02:23:18'),(5950,'/4736/5917/5948/',5948,'street','查干敖包镇',4,'152523101000',0,'2023-08-08 02:23:18'),(5951,'/4736/5917/5948/',5948,'street','巴彦淖尔镇',4,'152523102000',0,'2023-08-08 02:23:18'),(5952,'/4736/5917/5948/',5948,'street','巴彦乌拉苏木',4,'152523200000',0,'2023-08-08 02:23:18'),(5953,'/4736/5917/5948/',5948,'street','赛罕高毕苏木',4,'152523201000',0,'2023-08-08 02:23:18'),(5954,'/4736/5917/5948/',5948,'street','洪格尔苏木',4,'152523202000',0,'2023-08-08 02:23:18'),(5955,'/4736/5917/5948/',5948,'street','达来苏木',4,'152523203000',0,'2023-08-08 02:23:18'),(5956,'/4736/5917/5948/',5948,'street','苏尼特左旗芒来循环经济产业园区',4,'152523400000',0,'2023-08-08 02:23:18'),(5957,'/4736/5917/5948/',5948,'street','恩格尔河灌区',4,'152523500000',0,'2023-08-08 02:23:18'),(5958,'/4736/5917/',5917,'area','苏尼特右旗',3,'152524000000',8,'2023-08-08 02:23:18'),(5959,'/4736/5917/5958/',5958,'street','赛汉塔拉镇',4,'152524100000',0,'2023-08-08 02:23:18'),(5960,'/4736/5917/5958/',5958,'street','朱日和镇',4,'152524101000',0,'2023-08-08 02:23:18'),(5961,'/4736/5917/5958/',5958,'street','乌日根塔拉镇',4,'152524102000',0,'2023-08-08 02:23:18'),(5962,'/4736/5917/5958/',5958,'street','桑宝拉格苏木',4,'152524200000',0,'2023-08-08 02:23:18'),(5963,'/4736/5917/5958/',5958,'street','额仁淖尔苏木',4,'152524201000',0,'2023-08-08 02:23:18'),(5964,'/4736/5917/5958/',5958,'street','赛罕乌力吉苏木',4,'152524202000',0,'2023-08-08 02:23:18'),(5965,'/4736/5917/5958/',5958,'street','阿其图乌拉苏木',4,'152524203000',0,'2023-08-08 02:23:18'),(5966,'/4736/5917/5958/',5958,'street','苏尼特右旗朱日和工业园',4,'152524400000',0,'2023-08-08 02:23:18'),(5967,'/4736/5917/',5917,'area','东乌珠穆沁旗',3,'152525000000',10,'2023-08-08 02:23:18'),(5968,'/4736/5917/5967/',5967,'street','乌里雅斯太镇',4,'152525100000',0,'2023-08-08 02:23:18'),(5969,'/4736/5917/5967/',5967,'street','道特淖尔镇',4,'152525101000',0,'2023-08-08 02:23:18'),(5970,'/4736/5917/5967/',5967,'street','嘎达布其镇',4,'152525102000',0,'2023-08-08 02:23:18'),(5971,'/4736/5917/5967/',5967,'street','满都呼宝拉格镇',4,'152525103000',0,'2023-08-08 02:23:18'),(5972,'/4736/5917/5967/',5967,'street','额吉淖尔镇',4,'152525104000',0,'2023-08-08 02:23:18'),(5973,'/4736/5917/5967/',5967,'street','呼热图淖尔苏木',4,'152525200000',0,'2023-08-08 02:23:18'),(5974,'/4736/5917/5967/',5967,'street','萨麦苏木',4,'152525201000',0,'2023-08-08 02:23:18'),(5975,'/4736/5917/5967/',5967,'street','嘎海乐苏木',4,'152525202000',0,'2023-08-08 02:23:18'),(5976,'/4736/5917/5967/',5967,'street','阿拉坦合力苏木',4,'152525203000',0,'2023-08-08 02:23:18'),(5977,'/4736/5917/5967/',5967,'street','宝格达乌拉总场',4,'152525503000',0,'2023-08-08 02:23:18'),(5978,'/4736/5917/',5917,'area','西乌珠穆沁旗',3,'152526000000',9,'2023-08-08 02:23:18'),(5979,'/4736/5917/5978/',597
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (7106,'/6075/7061/7104/',7104,'street','万宝桥街道',4,'211081002000',0,'2023-08-08 02:23:20'),(7107,'/6075/7061/7104/',7104,'street','古城街道',4,'211081003000',0,'2023-08-08 02:23:20'),(7108,'/6075/7061/7104/',7104,'street','佟二堡镇',4,'211081101000',0,'2023-08-08 02:23:20'),(7109,'/6075/7061/7104/',7104,'street','铧子镇',4,'211081102000',0,'2023-08-08 02:23:20'),(7110,'/6075/7061/7104/',7104,'street','张台子镇',4,'211081103000',0,'2023-08-08 02:23:20'),(7111,'/6075/7061/7104/',7104,'street','西大窑镇',4,'211081104000',0,'2023-08-08 02:23:20'),(7112,'/6075/7061/7104/',7104,'street','沈旦堡镇',4,'211081105000',0,'2023-08-08 02:23:20'),(7113,'/6075/7061/7104/',7104,'street','西马峰镇',4,'211081106000',0,'2023-08-08 02:23:20'),(7114,'/6075/7061/7104/',7104,'street','柳条寨镇',4,'211081107000',0,'2023-08-08 02:23:20'),(7115,'/6075/7061/7104/',7104,'street','柳河子镇',4,'211081108000',0,'2023-08-08 02:23:20'),(7116,'/6075/7061/7104/',7104,'street','大河南镇',4,'211081111000',0,'2023-08-08 02:23:20'),(7117,'/6075/7061/7104/',7104,'street','五星镇',4,'211081114000',0,'2023-08-08 02:23:20'),(7118,'/6075/7061/7104/',7104,'street','鸡冠山乡',4,'211081205000',0,'2023-08-08 02:23:20'),(7119,'/6075/',6075,'city','盘锦市',2,'211100000000',4,'2023-08-08 02:23:20'),(7120,'/6075/7119/',7119,'area','双台子区',3,'211102000000',8,'2023-08-08 02:23:20'),(7121,'/6075/7119/7120/',7120,'street','胜利街道',4,'211102002000',0,'2023-08-08 02:23:20'),(7122,'/6075/7119/7120/',7120,'street','建设街道',4,'211102003000',0,'2023-08-08 02:23:20'),(7123,'/6075/7119/7120/',7120,'street','红旗街道',4,'211102004000',0,'2023-08-08 02:23:20'),(7124,'/6075/7119/7120/',7120,'street','辽河街道',4,'211102005000',0,'2023-08-08 02:23:20'),(7125,'/6075/7119/7120/',7120,'street','铁东街道',4,'211102008000',0,'2023-08-08 02:23:20'),(7126,'/6075/7119/7120/',7120,'street','双盛街道',4,'211102009000',0,'2023-08-08 02:23:20'),(7127,'/6075/7119/7120/',7120,'street','统一镇',4,'211102100000',0,'2023-08-08 02:23:20'),(7128,'/6075/7119/7120/',7120,'street','陆家镇',4,'211102101000',0,'2023-08-08 02:23:20'),(7129,'/6075/7119/',7119,'area','兴隆台区',3,'211103000000',11,'2023-08-08 02:23:20'),(7130,'/6075/7119/7129/',7129,'street','振兴街道',4,'211103001000',0,'2023-08-08 02:23:20'),(7131,'/6075/7119/7129/',7129,'street','兴隆街道',4,'211103002000',0,'2023-08-08 02:23:20'),(7132,'/6075/7119/7129/',7129,'street','渤海街道',4,'211103003000',0,'2023-08-08 02:23:20'),(7133,'/6075/7119/7129/',7129,'street','新工街道',4,'211103004000',0,'2023-08-08 02:23:20'),(7134,'/6075/7119/7129/',7129,'street','曙光街道',4,'211103007000',0,'2023-08-08 02:23:20'),(7135,'/6075/7119/7129/',7129,'street','欢喜岭街道',4,'211103008000',0,'2023-08-08 02:23:20'),(7136,'/6075/7119/7129/',7129,'street','沈采街道',4,'211103013000',0,'2023-08-08 02:23:20'),(7137,'/6075/7119/7129/',7129,'street','创新街道',4,'211103016000',0,'2023-08-08 02:23:20'),(7138,'/6075/7119/7129/',7129,'street','兴盛街道',4,'211103017000',0,'2023-08-08 02:23:20'),(7139,'/6075/7119/7129/',7129,'street','兴海街道',4,'211103018000',0,'2023-08-08 02:23:20'),(7140,'/6075/7119/7129/',7129,'street','惠宾街道',4,'211103019000',0,'2023-08-08 02:23:20'),(7141,'/6075/7119/',7119,'area','大洼区',3,'211104000000',16,'2023-08-08 02:23:20'),(7142,'/6075/7119/7141/',7141,'street','二界沟街道',4,'211104002000',0,'2023-08-08 02:23:20'),(7143,'/6075/7119/7141/',7141,'street','大洼街道',4,'211104004000',0,'2023-08-08 02:23:20'),(7144,'/6075/7119/7141/',7141,'street','田家街道',4,'211104005000',0,'2023-08-08 02:23:20'),(7145,'/6075/7119/7141/',7141,'street','榆树街道',4,'211104006000',0,'2023-08-08 02:23:20'),(7146,'/6075/7119/7141/',7141,'street','王家街道',4,'211104007000',0,'2023-08-08 02:23:20'),(7147,'/6075/7119/7141/',7141,'street','于楼街道',4,'211104009000',0,'2023-08-08 02:2
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (8272,'/7590/8246/8271/',8271,'street','抚松镇',4,'220621100000',0,'2023-08-08 02:23:22'),(8273,'/7590/8246/8271/',8271,'street','松江河镇',4,'220621101000',0,'2023-08-08 02:23:22'),(8274,'/7590/8246/8271/',8271,'street','泉阳镇',4,'220621102000',0,'2023-08-08 02:23:22'),(8275,'/7590/8246/8271/',8271,'street','露水河镇',4,'220621103000',0,'2023-08-08 02:23:22'),(8276,'/7590/8246/8271/',8271,'street','仙人桥镇',4,'220621104000',0,'2023-08-08 02:23:22'),(8277,'/7590/8246/8271/',8271,'street','万良镇',4,'220621105000',0,'2023-08-08 02:23:22'),(8278,'/7590/8246/8271/',8271,'street','新屯子镇',4,'220621106000',0,'2023-08-08 02:23:22'),(8279,'/7590/8246/8271/',8271,'street','东岗镇',4,'220621107000',0,'2023-08-08 02:23:22'),(8280,'/7590/8246/8271/',8271,'street','漫江镇',4,'220621108000',0,'2023-08-08 02:23:22'),(8281,'/7590/8246/8271/',8271,'street','北岗镇',4,'220621109000',0,'2023-08-08 02:23:22'),(8282,'/7590/8246/8271/',8271,'street','兴参镇',4,'220621110000',0,'2023-08-08 02:23:22'),(8283,'/7590/8246/8271/',8271,'street','长白山保护开发区池西区特殊乡镇',4,'220621120000',0,'2023-08-08 02:23:22'),(8284,'/7590/8246/8271/',8271,'street','长白山保护开发区池南区特殊乡镇',4,'220621121000',0,'2023-08-08 02:23:22'),(8285,'/7590/8246/8271/',8271,'street','兴隆乡',4,'220621200000',0,'2023-08-08 02:23:22'),(8286,'/7590/8246/8271/',8271,'street','抽水乡',4,'220621201000',0,'2023-08-08 02:23:22'),(8287,'/7590/8246/8271/',8271,'street','沿江乡',4,'220621202000',0,'2023-08-08 02:23:22'),(8288,'/7590/8246/',8246,'area','靖宇县',3,'220622000000',8,'2023-08-08 02:23:22'),(8289,'/7590/8246/8288/',8288,'street','靖宇镇',4,'220622100000',0,'2023-08-08 02:23:22'),(8290,'/7590/8246/8288/',8288,'street','三道湖镇',4,'220622101000',0,'2023-08-08 02:23:22'),(8291,'/7590/8246/8288/',8288,'street','龙泉镇',4,'220622102000',0,'2023-08-08 02:23:22'),(8292,'/7590/8246/8288/',8288,'street','那尔轰镇',4,'220622103000',0,'2023-08-08 02:23:22'),(8293,'/7590/8246/8288/',8288,'street','花园口镇',4,'220622104000',0,'2023-08-08 02:23:22'),(8294,'/7590/8246/8288/',8288,'street','景山镇',4,'220622105000',0,'2023-08-08 02:23:22'),(8295,'/7590/8246/8288/',8288,'street','赤松镇',4,'220622106000',0,'2023-08-08 02:23:22'),(8296,'/7590/8246/8288/',8288,'street','濛江乡',4,'220622201000',0,'2023-08-08 02:23:22'),(8297,'/7590/8246/',8246,'area','长白朝鲜族自治县',3,'220623000000',8,'2023-08-08 02:23:22'),(8298,'/7590/8246/8297/',8297,'street','长白镇',4,'220623100000',0,'2023-08-08 02:23:22'),(8299,'/7590/8246/8297/',8297,'street','八道沟镇',4,'220623101000',0,'2023-08-08 02:23:22'),(8300,'/7590/8246/8297/',8297,'street','十四道沟镇',4,'220623102000',0,'2023-08-08 02:23:22'),(8301,'/7590/8246/8297/',8297,'street','马鹿沟镇',4,'220623103000',0,'2023-08-08 02:23:22'),(8302,'/7590/8246/8297/',8297,'street','宝泉山镇',4,'220623104000',0,'2023-08-08 02:23:22'),(8303,'/7590/8246/8297/',8297,'street','新房子镇',4,'220623105000',0,'2023-08-08 02:23:22'),(8304,'/7590/8246/8297/',8297,'street','十二道沟镇',4,'220623106000',0,'2023-08-08 02:23:22'),(8305,'/7590/8246/8297/',8297,'street','金华乡',4,'220623200000',0,'2023-08-08 02:23:22'),(8306,'/7590/8246/',8246,'area','临江市',3,'220681000000',13,'2023-08-08 02:23:22'),(8307,'/7590/8246/8306/',8306,'street','建国街道',4,'220681001000',0,'2023-08-08 02:23:22'),(8308,'/7590/8246/8306/',8306,'street','新市街道',4,'220681002000',0,'2023-08-08 02:23:22'),(8309,'/7590/8246/8306/',8306,'street','兴隆街道',4,'220681003000',0,'2023-08-08 02:23:22'),(8310,'/7590/8246/8306/',8306,'street','大湖街道',4,'220681004000',0,'2023-08-08 02:23:22'),(8311,'/7590/8246/8306/',8306,'street','森工街道',4,'220681005000',0,'2023-08-08 02:23:22'),(8312,'/7590/8246/8306/',8306,'street','大栗子街道',4,'220681006000',0,'2023-08-08 02:23:22'),(8313,'/7590/8246/8306/',8306,'street',
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (9438,'/8732/9421/9433/',9433,'street','富力街道',4,'230404005000',0,'2023-08-08 02:23:24'),(9439,'/8732/9421/9433/',9433,'street','麓林山街道',4,'230404006000',0,'2023-08-08 02:23:24'),(9440,'/8732/9421/',9421,'area','兴安区',3,'230405000000',7,'2023-08-08 02:23:24'),(9441,'/8732/9421/9440/',9440,'street','兴安路街道',4,'230405001000',0,'2023-08-08 02:23:24'),(9442,'/8732/9421/9440/',9440,'street','兴建路街道',4,'230405002000',0,'2023-08-08 02:23:24'),(9443,'/8732/9421/9440/',9440,'street','兴长路街道',4,'230405003000',0,'2023-08-08 02:23:24'),(9444,'/8732/9421/9440/',9440,'street','峻德路街道',4,'230405004000',0,'2023-08-08 02:23:24'),(9445,'/8732/9421/9440/',9440,'street','河东路街道',4,'230405005000',0,'2023-08-08 02:23:24'),(9446,'/8732/9421/9440/',9440,'street','光宇街道',4,'230405006000',0,'2023-08-08 02:23:24'),(9447,'/8732/9421/9440/',9440,'street','红旗镇',4,'230405100000',0,'2023-08-08 02:23:24'),(9448,'/8732/9421/',9421,'area','东山区',3,'230406000000',9,'2023-08-08 02:23:24'),(9449,'/8732/9421/9448/',9448,'street','工人村办街道',4,'230406001000',0,'2023-08-08 02:23:24'),(9450,'/8732/9421/9448/',9448,'street','新一办街道',4,'230406002000',0,'2023-08-08 02:23:24'),(9451,'/8732/9421/9448/',9448,'street','东山办街道',4,'230406004000',0,'2023-08-08 02:23:24'),(9452,'/8732/9421/9448/',9448,'street','鹤兴办街道',4,'230406005000',0,'2023-08-08 02:23:24'),(9453,'/8732/9421/9448/',9448,'street','新华镇',4,'230406100000',0,'2023-08-08 02:23:24'),(9454,'/8732/9421/9448/',9448,'street','蔬园乡',4,'230406201000',0,'2023-08-08 02:23:24'),(9455,'/8732/9421/9448/',9448,'street','东方红乡',4,'230406202000',0,'2023-08-08 02:23:24'),(9456,'/8732/9421/9448/',9448,'street','鹤岗市林业局生活区',4,'230406400000',0,'2023-08-08 02:23:24'),(9457,'/8732/9421/9448/',9448,'street','新华农场',4,'230406501000',0,'2023-08-08 02:23:24'),(9458,'/8732/9421/',9421,'area','兴山区',3,'230407000000',4,'2023-08-08 02:23:24'),(9459,'/8732/9421/9458/',9458,'street','岭北街道',4,'230407001000',0,'2023-08-08 02:23:24'),(9460,'/8732/9421/9458/',9458,'street','岭南街道',4,'230407002000',0,'2023-08-08 02:23:24'),(9461,'/8732/9421/9458/',9458,'street','沟北街道',4,'230407003000',0,'2023-08-08 02:23:24'),(9462,'/8732/9421/9458/',9458,'street','沟南街道',4,'230407004000',0,'2023-08-08 02:23:24'),(9463,'/8732/9421/',9421,'area','萝北县',3,'230421000000',18,'2023-08-08 02:23:24'),(9464,'/8732/9421/9463/',9463,'street','凤翔镇',4,'230421100000',0,'2023-08-08 02:23:24'),(9465,'/8732/9421/9463/',9463,'street','鹤北镇',4,'230421101000',0,'2023-08-08 02:23:24'),(9466,'/8732/9421/9463/',9463,'street','名山镇',4,'230421102000',0,'2023-08-08 02:23:24'),(9467,'/8732/9421/9463/',9463,'street','团结镇',4,'230421103000',0,'2023-08-08 02:23:24'),(9468,'/8732/9421/9463/',9463,'street','肇兴镇',4,'230421104000',0,'2023-08-08 02:23:24'),(9469,'/8732/9421/9463/',9463,'street','云山镇',4,'230421105000',0,'2023-08-08 02:23:24'),(9470,'/8732/9421/9463/',9463,'street','东明朝鲜族乡',4,'230421200000',0,'2023-08-08 02:23:24'),(9471,'/8732/9421/9463/',9463,'street','太平沟乡',4,'230421203000',0,'2023-08-08 02:23:24'),(9472,'/8732/9421/9463/',9463,'street','萝北县林业局',4,'230421400000',0,'2023-08-08 02:23:24'),(9473,'/8732/9421/9463/',9463,'street','鹤北林业局',4,'230421401000',0,'2023-08-08 02:23:24'),(9474,'/8732/9421/9463/',9463,'street','宝泉岭管理局局直',4,'230421500000',0,'2023-08-08 02:23:24'),(9475,'/8732/9421/9463/',9463,'street','江滨农场',4,'230421501000',0,'2023-08-08 02:23:24'),(9476,'/8732/9421/9463/',9463,'street','军川农场',4,'230421502000',0,'2023-08-08 02:23:24'),(9477,'/8732/9421/9463/',9463,'street','名山农场',4,'230421503000',0,'2023-08-08 02:23:24'),(9478,'/8732/9421/9463/',9463,'street','延军农场',4,'230421504000',0,'2023-08-08 02:23:24'),(9479,'/8732/9421/9463/',9463,'street','
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (10580,'/8732/10542/',10542,'area','新林区',3,'232763000000',7,'2023-08-08 02:23:26'),(10581,'/8732/10542/10580/',10580,'street','新林镇',4,'232763100000',0,'2023-08-08 02:23:26'),(10582,'/8732/10542/10580/',10580,'street','翠岗镇',4,'232763101000',0,'2023-08-08 02:23:26'),(10583,'/8732/10542/10580/',10580,'street','塔源镇',4,'232763102000',0,'2023-08-08 02:23:26'),(10584,'/8732/10542/10580/',10580,'street','大乌苏镇',4,'232763103000',0,'2023-08-08 02:23:26'),(10585,'/8732/10542/10580/',10580,'street','塔尔根镇',4,'232763104000',0,'2023-08-08 02:23:26'),(10586,'/8732/10542/10580/',10580,'street','碧洲镇',4,'232763105000',0,'2023-08-08 02:23:26'),(10587,'/8732/10542/10580/',10580,'street','宏图镇',4,'232763106000',0,'2023-08-08 02:23:26'),(10588,'/8732/10542/',10542,'area','呼中区',3,'232764000000',4,'2023-08-08 02:23:26'),(10589,'/8732/10542/10588/',10588,'street','呼中镇',4,'232764100000',0,'2023-08-08 02:23:26'),(10590,'/8732/10542/10588/',10588,'street','碧水镇',4,'232764101000',0,'2023-08-08 02:23:26'),(10591,'/8732/10542/10588/',10588,'street','呼源镇',4,'232764102000',0,'2023-08-08 02:23:26'),(10592,'/8732/10542/10588/',10588,'street','宏伟镇',4,'232764103000',0,'2023-08-08 02:23:26'),(10593,'/',0,'province','上海市',1,'31',1,'2023-08-08 02:23:26'),(10594,'/10593/',10593,'city','市辖区',2,'310100000000',16,'2023-08-08 02:23:26'),(10595,'/10593/10594/',10594,'area','黄浦区',3,'310101000000',10,'2023-08-08 02:23:26'),(10596,'/10593/10594/10595/',10595,'street','南京东路街道',4,'310101002000',0,'2023-08-08 02:23:26'),(10597,'/10593/10594/10595/',10595,'street','外滩街道',4,'310101013000',0,'2023-08-08 02:23:26'),(10598,'/10593/10594/10595/',10595,'street','半淞园路街道',4,'310101015000',0,'2023-08-08 02:23:26'),(10599,'/10593/10594/10595/',10595,'street','小东门街道',4,'310101017000',0,'2023-08-08 02:23:26'),(10600,'/10593/10594/10595/',10595,'street','豫园街道',4,'310101018000',0,'2023-08-08 02:23:26'),(10601,'/10593/10594/10595/',10595,'street','老西门街道',4,'310101019000',0,'2023-08-08 02:23:26'),(10602,'/10593/10594/10595/',10595,'street','五里桥街道',4,'310101020000',0,'2023-08-08 02:23:26'),(10603,'/10593/10594/10595/',10595,'street','打浦桥街道',4,'310101021000',0,'2023-08-08 02:23:26'),(10604,'/10593/10594/10595/',10595,'street','淮海中路街道',4,'310101022000',0,'2023-08-08 02:23:26'),(10605,'/10593/10594/10595/',10595,'street','瑞金二路街道',4,'310101023000',0,'2023-08-08 02:23:26'),(10606,'/10593/10594/',10594,'area','徐汇区',3,'310104000000',14,'2023-08-08 02:23:26'),(10607,'/10593/10594/10606/',10606,'street','天平路街道',4,'310104003000',0,'2023-08-08 02:23:26'),(10608,'/10593/10594/10606/',10606,'street','湖南路街道',4,'310104004000',0,'2023-08-08 02:23:26'),(10609,'/10593/10594/10606/',10606,'street','斜土路街道',4,'310104007000',0,'2023-08-08 02:23:26'),(10610,'/10593/10594/10606/',10606,'street','枫林路街道',4,'310104008000',0,'2023-08-08 02:23:26'),(10611,'/10593/10594/10606/',10606,'street','长桥街道',4,'310104010000',0,'2023-08-08 02:23:26'),(10612,'/10593/10594/10606/',10606,'street','田林街道',4,'310104011000',0,'2023-08-08 02:23:26'),(10613,'/10593/10594/10606/',10606,'street','虹梅路街道',4,'310104012000',0,'2023-08-08 02:23:26'),(10614,'/10593/10594/10606/',10606,'street','康健新村街道',4,'310104013000',0,'2023-08-08 02:23:26'),(10615,'/10593/10594/10606/',10606,'street','徐家汇街道',4,'310104014000',0,'2023-08-08 02:23:26'),(10616,'/10593/10594/10606/',10606,'street','凌云路街道',4,'310104015000',0,'2023-08-08 02:23:26'),(10617,'/10593/10594/10606/',10606,'street','龙华街道',4,'310104016000',0,'2023-08-08 02:23:26'),(10618,'/10593/10594/10606/',10606,'street','漕河泾街道',4,'310104017000',0,'2023-08-08 02:23:26'),(10619,'/10593/10594/10606/',10606,'street','华泾镇',4,'310104103000',0,'2023-08-08 02:23:26'),(10620,'/1059
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (11681,'/10845/11644/11659/',11659,'street','海州经济开发区',4,'320706404000',0,'2023-08-08 02:23:28'),(11682,'/10845/11644/11659/',11659,'street','高新技术开发区',4,'320706405000',0,'2023-08-08 02:23:28'),(11683,'/10845/11644/11659/',11659,'street','云台农场',4,'320706406000',0,'2023-08-08 02:23:28'),(11684,'/10845/11644/',11644,'area','赣榆区',3,'320707000000',18,'2023-08-08 02:23:28'),(11685,'/10845/11644/11684/',11684,'street','青口镇',4,'320707100000',0,'2023-08-08 02:23:28'),(11686,'/10845/11644/11684/',11684,'street','柘汪镇',4,'320707101000',0,'2023-08-08 02:23:28'),(11687,'/10845/11644/11684/',11684,'street','石桥镇',4,'320707102000',0,'2023-08-08 02:23:28'),(11688,'/10845/11644/11684/',11684,'street','金山镇',4,'320707103000',0,'2023-08-08 02:23:28'),(11689,'/10845/11644/11684/',11684,'street','黑林镇',4,'320707104000',0,'2023-08-08 02:23:28'),(11690,'/10845/11644/11684/',11684,'street','厉庄镇',4,'320707105000',0,'2023-08-08 02:23:28'),(11691,'/10845/11644/11684/',11684,'street','海头镇',4,'320707106000',0,'2023-08-08 02:23:28'),(11692,'/10845/11644/11684/',11684,'street','塔山镇',4,'320707107000',0,'2023-08-08 02:23:28'),(11693,'/10845/11644/11684/',11684,'street','赣马镇',4,'320707108000',0,'2023-08-08 02:23:28'),(11694,'/10845/11644/11684/',11684,'street','班庄镇',4,'320707109000',0,'2023-08-08 02:23:28'),(11695,'/10845/11644/11684/',11684,'street','城头镇',4,'320707110000',0,'2023-08-08 02:23:28'),(11696,'/10845/11644/11684/',11684,'street','城西镇',4,'320707112000',0,'2023-08-08 02:23:28'),(11697,'/10845/11644/11684/',11684,'street','宋庄镇',4,'320707114000',0,'2023-08-08 02:23:28'),(11698,'/10845/11644/11684/',11684,'street','沙河镇',4,'320707115000',0,'2023-08-08 02:23:28'),(11699,'/10845/11644/11684/',11684,'street','墩尚镇',4,'320707116000',0,'2023-08-08 02:23:28'),(11700,'/10845/11644/11684/',11684,'street','沙河子园艺场',4,'320707400000',0,'2023-08-08 02:23:28'),(11701,'/10845/11644/11684/',11684,'street','赣榆海洋经济开发区',4,'320707402000',0,'2023-08-08 02:23:28'),(11702,'/10845/11644/11684/',11684,'street','赣榆经济开发区',4,'320707403000',0,'2023-08-08 02:23:28'),(11703,'/10845/11644/',11644,'area','东海县',3,'320722000000',21,'2023-08-08 02:23:28'),(11704,'/10845/11644/11703/',11703,'street','牛山街道',4,'320722001000',0,'2023-08-08 02:23:28'),(11705,'/10845/11644/11703/',11703,'street','石榴街道',4,'320722002000',0,'2023-08-08 02:23:28'),(11706,'/10845/11644/11703/',11703,'street','白塔埠镇',4,'320722101000',0,'2023-08-08 02:23:28'),(11707,'/10845/11644/11703/',11703,'street','黄川镇',4,'320722103000',0,'2023-08-08 02:23:28'),(11708,'/10845/11644/11703/',11703,'street','石梁河镇',4,'320722104000',0,'2023-08-08 02:23:28'),(11709,'/10845/11644/11703/',11703,'street','青湖镇',4,'320722105000',0,'2023-08-08 02:23:28'),(11710,'/10845/11644/11703/',11703,'street','温泉镇',4,'320722107000',0,'2023-08-08 02:23:28'),(11711,'/10845/11644/11703/',11703,'street','双店镇',4,'320722108000',0,'2023-08-08 02:23:28'),(11712,'/10845/11644/11703/',11703,'street','桃林镇',4,'320722109000',0,'2023-08-08 02:23:28'),(11713,'/10845/11644/11703/',11703,'street','洪庄镇',4,'320722110000',0,'2023-08-08 02:23:28'),(11714,'/10845/11644/11703/',11703,'street','安峰镇',4,'320722111000',0,'2023-08-08 02:23:28'),(11715,'/10845/11644/11703/',11703,'street','房山镇',4,'320722112000',0,'2023-08-08 02:23:28'),(11716,'/10845/11644/11703/',11703,'street','平明镇',4,'320722113000',0,'2023-08-08 02:23:28'),(11717,'/10845/11644/11703/',11703,'street','曲阳镇',4,'320722114000',0,'2023-08-08 02:23:28'),(11718,'/10845/11644/11703/',11703,'street','山左口镇',4,'320722115000',0,'2023-08-08 02:23:28'),(11719,'/10845/11644/11703/',11703,'street','驼峰乡',4,'320722200000',0,'2023-08-08 02:23:28'),(11720,'/10845/11644/11703/',11703,'street','李埝乡',4,'320722203000',0,'2023-08-08 02:23:28'
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (12789,'/12459/12670/12777/',12777,'street','大佳何镇',4,'330226109000',0,'2023-08-08 02:23:30'),(12790,'/12459/12670/12777/',12777,'street','强蛟镇',4,'330226110000',0,'2023-08-08 02:23:30'),(12791,'/12459/12670/12777/',12777,'street','西店镇',4,'330226111000',0,'2023-08-08 02:23:30'),(12792,'/12459/12670/12777/',12777,'street','深甽镇',4,'330226112000',0,'2023-08-08 02:23:30'),(12793,'/12459/12670/12777/',12777,'street','胡陈乡',4,'330226200000',0,'2023-08-08 02:23:30'),(12794,'/12459/12670/12777/',12777,'street','茶院乡',4,'330226201000',0,'2023-08-08 02:23:30'),(12795,'/12459/12670/12777/',12777,'street','越溪乡',4,'330226202000',0,'2023-08-08 02:23:30'),(12796,'/12459/12670/',12670,'area','余姚市',3,'330281000000',21,'2023-08-08 02:23:30'),(12797,'/12459/12670/12796/',12796,'street','梨洲街道',4,'330281001000',0,'2023-08-08 02:23:30'),(12798,'/12459/12670/12796/',12796,'street','凤山街道',4,'330281002000',0,'2023-08-08 02:23:30'),(12799,'/12459/12670/12796/',12796,'street','兰江街道',4,'330281003000',0,'2023-08-08 02:23:30'),(12800,'/12459/12670/12796/',12796,'street','阳明街道',4,'330281004000',0,'2023-08-08 02:23:30'),(12801,'/12459/12670/12796/',12796,'street','低塘街道',4,'330281005000',0,'2023-08-08 02:23:30'),(12802,'/12459/12670/12796/',12796,'street','朗霞街道',4,'330281006000',0,'2023-08-08 02:23:30'),(12803,'/12459/12670/12796/',12796,'street','临山镇',4,'330281100000',0,'2023-08-08 02:23:30'),(12804,'/12459/12670/12796/',12796,'street','黄家埠镇',4,'330281101000',0,'2023-08-08 02:23:30'),(12805,'/12459/12670/12796/',12796,'street','小曹娥镇',4,'330281102000',0,'2023-08-08 02:23:30'),(12806,'/12459/12670/12796/',12796,'street','泗门镇',4,'330281103000',0,'2023-08-08 02:23:30'),(12807,'/12459/12670/12796/',12796,'street','马渚镇',4,'330281106000',0,'2023-08-08 02:23:30'),(12808,'/12459/12670/12796/',12796,'street','牟山镇',4,'330281108000',0,'2023-08-08 02:23:30'),(12809,'/12459/12670/12796/',12796,'street','丈亭镇',4,'330281109000',0,'2023-08-08 02:23:30'),(12810,'/12459/12670/12796/',12796,'street','三七市镇',4,'330281110000',0,'2023-08-08 02:23:30'),(12811,'/12459/12670/12796/',12796,'street','河姆渡镇',4,'330281111000',0,'2023-08-08 02:23:30'),(12812,'/12459/12670/12796/',12796,'street','大隐镇',4,'330281112000',0,'2023-08-08 02:23:30'),(12813,'/12459/12670/12796/',12796,'street','陆埠镇',4,'330281113000',0,'2023-08-08 02:23:30'),(12814,'/12459/12670/12796/',12796,'street','梁弄镇',4,'330281114000',0,'2023-08-08 02:23:30'),(12815,'/12459/12670/12796/',12796,'street','大岚镇',4,'330281115000',0,'2023-08-08 02:23:30'),(12816,'/12459/12670/12796/',12796,'street','四明山镇',4,'330281116000',0,'2023-08-08 02:23:30'),(12817,'/12459/12670/12796/',12796,'street','鹿亭乡',4,'330281201000',0,'2023-08-08 02:23:30'),(12818,'/12459/12670/',12670,'area','慈溪市',3,'330282000000',20,'2023-08-08 02:23:30'),(12819,'/12459/12670/12818/',12818,'street','宗汉街道',4,'330282002000',0,'2023-08-08 02:23:30'),(12820,'/12459/12670/12818/',12818,'street','坎墩街道',4,'330282003000',0,'2023-08-08 02:23:30'),(12821,'/12459/12670/12818/',12818,'street','浒山街道',4,'330282004000',0,'2023-08-08 02:23:30'),(12822,'/12459/12670/12818/',12818,'street','白沙路街道',4,'330282005000',0,'2023-08-08 02:23:30'),(12823,'/12459/12670/12818/',12818,'street','古塘街道',4,'330282006000',0,'2023-08-08 02:23:30'),(12824,'/12459/12670/12818/',12818,'street','掌起镇',4,'330282104000',0,'2023-08-08 02:23:30'),(12825,'/12459/12670/12818/',12818,'street','观海卫镇',4,'330282107000',0,'2023-08-08 02:23:30'),(12826,'/12459/12670/12818/',12818,'street','附海镇',4,'330282108000',0,'2023-08-08 02:23:30'),(12827,'/12459/12670/12818/',12818,'street','桥头镇',4,'330282109000',0,'2023-08-08 02:23:30'),(12828,'/12459/12670/12818/',12818,'street','匡堰镇',4,'330282110000',0,'2023-08-08 02:23:30'),(12829,'/12459/12670/1
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (13901,'/12459/13762/13883/',13883,'street','龙溪乡',4,'331126209000',0,'2023-08-08 02:23:31'),(13902,'/12459/13762/13883/',13883,'street','官塘乡',4,'331126211000',0,'2023-08-08 02:23:31'),(13903,'/12459/13762/',13762,'area','景宁畲族自治县',3,'331127000000',21,'2023-08-08 02:23:31'),(13904,'/12459/13762/13903/',13903,'street','红星街道',4,'331127001000',0,'2023-08-08 02:23:31'),(13905,'/12459/13762/13903/',13903,'street','鹤溪街道',4,'331127002000',0,'2023-08-08 02:23:31'),(13906,'/12459/13762/13903/',13903,'street','渤海镇',4,'331127101000',0,'2023-08-08 02:23:31'),(13907,'/12459/13762/13903/',13903,'street','东坑镇',4,'331127102000',0,'2023-08-08 02:23:31'),(13908,'/12459/13762/13903/',13903,'street','英川镇',4,'331127103000',0,'2023-08-08 02:23:31'),(13909,'/12459/13762/13903/',13903,'street','沙湾镇',4,'331127104000',0,'2023-08-08 02:23:31'),(13910,'/12459/13762/13903/',13903,'street','大均乡',4,'331127201000',0,'2023-08-08 02:23:31'),(13911,'/12459/13762/13903/',13903,'street','澄照乡',4,'331127202000',0,'2023-08-08 02:23:31'),(13912,'/12459/13762/13903/',13903,'street','梅岐乡',4,'331127203000',0,'2023-08-08 02:23:31'),(13913,'/12459/13762/13903/',13903,'street','郑坑乡',4,'331127205000',0,'2023-08-08 02:23:32'),(13914,'/12459/13762/13903/',13903,'street','大漈乡',4,'331127208000',0,'2023-08-08 02:23:32'),(13915,'/12459/13762/13903/',13903,'street','景南乡',4,'331127209000',0,'2023-08-08 02:23:32'),(13916,'/12459/13762/13903/',13903,'street','雁溪乡',4,'331127210000',0,'2023-08-08 02:23:32'),(13917,'/12459/13762/13903/',13903,'street','鸬鹚乡',4,'331127212000',0,'2023-08-08 02:23:32'),(13918,'/12459/13762/13903/',13903,'street','梧桐乡',4,'331127213000',0,'2023-08-08 02:23:32'),(13919,'/12459/13762/13903/',13903,'street','标溪乡',4,'331127214000',0,'2023-08-08 02:23:32'),(13920,'/12459/13762/13903/',13903,'street','毛垟乡',4,'331127215000',0,'2023-08-08 02:23:32'),(13921,'/12459/13762/13903/',13903,'street','秋炉乡',4,'331127216000',0,'2023-08-08 02:23:32'),(13922,'/12459/13762/13903/',13903,'street','大地乡',4,'331127217000',0,'2023-08-08 02:23:32'),(13923,'/12459/13762/13903/',13903,'street','家地乡',4,'331127218000',0,'2023-08-08 02:23:32'),(13924,'/12459/13762/13903/',13903,'street','九龙乡',4,'331127219000',0,'2023-08-08 02:23:32'),(13925,'/12459/13762/',13762,'area','龙泉市',3,'331181000000',19,'2023-08-08 02:23:32'),(13926,'/12459/13762/13925/',13925,'street','龙渊街道',4,'331181001000',0,'2023-08-08 02:23:32'),(13927,'/12459/13762/13925/',13925,'street','西街街道',4,'331181002000',0,'2023-08-08 02:23:32'),(13928,'/12459/13762/13925/',13925,'street','剑池街道',4,'331181003000',0,'2023-08-08 02:23:32'),(13929,'/12459/13762/13925/',13925,'street','石达石街道',4,'331181004000',0,'2023-08-08 02:23:32'),(13930,'/12459/13762/13925/',13925,'street','八都镇',4,'331181100000',0,'2023-08-08 02:23:32'),(13931,'/12459/13762/13925/',13925,'street','上垟镇',4,'331181101000',0,'2023-08-08 02:23:32'),(13932,'/12459/13762/13925/',13925,'street','小梅镇',4,'331181102000',0,'2023-08-08 02:23:32'),(13933,'/12459/13762/13925/',13925,'street','查田镇',4,'331181103000',0,'2023-08-08 02:23:32'),(13934,'/12459/13762/13925/',13925,'street','安仁镇',4,'331181104000',0,'2023-08-08 02:23:32'),(13935,'/12459/13762/13925/',13925,'street','锦溪镇',4,'331181105000',0,'2023-08-08 02:23:32'),(13936,'/12459/13762/13925/',13925,'street','住龙镇',4,'331181106000',0,'2023-08-08 02:23:32'),(13937,'/12459/13762/13925/',13925,'street','屏南镇',4,'331181107000',0,'2023-08-08 02:23:32'),(13938,'/12459/13762/13925/',13925,'street','兰巨乡',4,'331181200000',0,'2023-08-08 02:23:32'),(13939,'/12459/13762/13925/',13925,'street','宝溪乡',4,'331181202000',0,'2023-08-08 02:23:32'),(13940,'/12459/13762/13925/',13925,'street','竹垟畲族乡',4,'331181203000',0,'2023-08-08 02:23:32'),(13941,'/12459/13762/13925/',13925,'stre
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (15008,'/13945/14877/14994/',14994,'street','古沛镇',4,'341182109000',0,'2023-08-08 02:23:33'),(15009,'/13945/14877/14994/',14994,'street','潘村镇',4,'341182110000',0,'2023-08-08 02:23:33'),(15010,'/13945/14877/14994/',14994,'street','柳巷镇',4,'341182111000',0,'2023-08-08 02:23:33'),(15011,'/13945/14877/14994/',14994,'street','泊岗乡',4,'341182200000',0,'2023-08-08 02:23:33'),(15012,'/13945/',13945,'city','阜阳市',2,'341200000000',10,'2023-08-08 02:23:33'),(15013,'/13945/15012/',15012,'area','颍州区',3,'341202000000',13,'2023-08-08 02:23:33'),(15014,'/13945/15012/15013/',15013,'street','鼓楼街道',4,'341202001000',0,'2023-08-08 02:23:33'),(15015,'/13945/15012/15013/',15013,'street','文峰街道',4,'341202002000',0,'2023-08-08 02:23:33'),(15016,'/13945/15012/15013/',15013,'street','清河街道',4,'341202003000',0,'2023-08-08 02:23:33'),(15017,'/13945/15012/15013/',15013,'street','颍西街道',4,'341202004000',0,'2023-08-08 02:23:33'),(15018,'/13945/15012/15013/',15013,'street','王店镇',4,'341202100000',0,'2023-08-08 02:23:33'),(15019,'/13945/15012/15013/',15013,'street','程集镇',4,'341202101000',0,'2023-08-08 02:23:33'),(15020,'/13945/15012/15013/',15013,'street','三合镇',4,'341202102000',0,'2023-08-08 02:23:33'),(15021,'/13945/15012/15013/',15013,'street','西湖镇',4,'341202103000',0,'2023-08-08 02:23:33'),(15022,'/13945/15012/15013/',15013,'street','九龙镇',4,'341202104000',0,'2023-08-08 02:23:33'),(15023,'/13945/15012/15013/',15013,'street','三十里铺镇',4,'341202105000',0,'2023-08-08 02:23:33'),(15024,'/13945/15012/15013/',15013,'street','三塔集镇',4,'341202106000',0,'2023-08-08 02:23:33'),(15025,'/13945/15012/15013/',15013,'street','马寨乡',4,'341202200000',0,'2023-08-08 02:23:33'),(15026,'/13945/15012/15013/',15013,'street','安徽颍州经济开发区',4,'341202400000',0,'2023-08-08 02:23:33'),(15027,'/13945/15012/',15012,'area','颍东区',3,'341203000000',12,'2023-08-08 02:23:33'),(15028,'/13945/15012/15027/',15027,'street','河东街道',4,'341203001000',0,'2023-08-08 02:23:33'),(15029,'/13945/15012/15027/',15027,'street','新华街道',4,'341203002000',0,'2023-08-08 02:23:33'),(15030,'/13945/15012/15027/',15027,'street','向阳街道',4,'341203003000',0,'2023-08-08 02:23:33'),(15031,'/13945/15012/15027/',15027,'street','口孜镇',4,'341203100000',0,'2023-08-08 02:23:33'),(15032,'/13945/15012/15027/',15027,'street','插花镇',4,'341203101000',0,'2023-08-08 02:23:33'),(15033,'/13945/15012/15027/',15027,'street','袁寨镇',4,'341203102000',0,'2023-08-08 02:23:33'),(15034,'/13945/15012/15027/',15027,'street','枣庄镇',4,'341203103000',0,'2023-08-08 02:23:33'),(15035,'/13945/15012/15027/',15027,'street','老庙镇',4,'341203104000',0,'2023-08-08 02:23:33'),(15036,'/13945/15012/15027/',15027,'street','正午镇',4,'341203105000',0,'2023-08-08 02:23:33'),(15037,'/13945/15012/15027/',15027,'street','杨楼孜镇',4,'341203106000',0,'2023-08-08 02:23:33'),(15038,'/13945/15012/15027/',15027,'street','新乌江镇',4,'341203107000',0,'2023-08-08 02:23:33'),(15039,'/13945/15012/15027/',15027,'street','冉庙乡',4,'341203200000',0,'2023-08-08 02:23:33'),(15040,'/13945/15012/',15012,'area','颍泉区',3,'341204000000',6,'2023-08-08 02:23:33'),(15041,'/13945/15012/15040/',15040,'street','中市街道',4,'341204001000',0,'2023-08-08 02:23:33'),(15042,'/13945/15012/15040/',15040,'street','周棚街道',4,'341204002000',0,'2023-08-08 02:23:33'),(15043,'/13945/15012/15040/',15040,'street','伍明镇',4,'341204100000',0,'2023-08-08 02:23:33'),(15044,'/13945/15012/15040/',15040,'street','宁老庄镇',4,'341204101000',0,'2023-08-08 02:23:33'),(15045,'/13945/15012/15040/',15040,'street','闻集镇',4,'341204102000',0,'2023-08-08 02:23:33'),(15046,'/13945/15012/15040/',15040,'street','行流镇',4,'341204103000',0,'2023-08-08 02:23:33'),(15047,'/13945/15012/',15012,'area','临泉县',3,'341221000000',28,'2023-08-08 02:23:33'),(15048,'/13945/15012/15047/',15047,'street',
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (16118,'/15763/16088/16103/',16103,'street','青山纸业工业区',4,'350405402000',0,'2023-08-08 02:23:35'),(16119,'/15763/16088/16103/',16103,'street','海西三明生态工贸区',4,'350405403000',0,'2023-08-08 02:23:35'),(16120,'/15763/16088/',16088,'area','明溪县',3,'350421000000',9,'2023-08-08 02:23:35'),(16121,'/15763/16088/16120/',16120,'street','雪峰镇',4,'350421100000',0,'2023-08-08 02:23:35'),(16122,'/15763/16088/16120/',16120,'street','盖洋镇',4,'350421101000',0,'2023-08-08 02:23:35'),(16123,'/15763/16088/16120/',16120,'street','胡坊镇',4,'350421102000',0,'2023-08-08 02:23:35'),(16124,'/15763/16088/16120/',16120,'street','瀚仙镇',4,'350421103000',0,'2023-08-08 02:23:35'),(16125,'/15763/16088/16120/',16120,'street','城关乡',4,'350421200000',0,'2023-08-08 02:23:35'),(16126,'/15763/16088/16120/',16120,'street','沙溪乡',4,'350421201000',0,'2023-08-08 02:23:35'),(16127,'/15763/16088/16120/',16120,'street','夏阳乡',4,'350421202000',0,'2023-08-08 02:23:35'),(16128,'/15763/16088/16120/',16120,'street','枫溪乡',4,'350421203000',0,'2023-08-08 02:23:35'),(16129,'/15763/16088/16120/',16120,'street','夏坊乡',4,'350421204000',0,'2023-08-08 02:23:35'),(16130,'/15763/16088/',16088,'area','清流县',3,'350423000000',13,'2023-08-08 02:23:35'),(16131,'/15763/16088/16130/',16130,'street','龙津镇',4,'350423100000',0,'2023-08-08 02:23:35'),(16132,'/15763/16088/16130/',16130,'street','嵩溪镇',4,'350423101000',0,'2023-08-08 02:23:35'),(16133,'/15763/16088/16130/',16130,'street','嵩口镇',4,'350423102000',0,'2023-08-08 02:23:35'),(16134,'/15763/16088/16130/',16130,'street','灵地镇',4,'350423103000',0,'2023-08-08 02:23:35'),(16135,'/15763/16088/16130/',16130,'street','长校镇',4,'350423104000',0,'2023-08-08 02:23:35'),(16136,'/15763/16088/16130/',16130,'street','赖坊镇',4,'350423105000',0,'2023-08-08 02:23:35'),(16137,'/15763/16088/16130/',16130,'street','林畲镇',4,'350423106000',0,'2023-08-08 02:23:35'),(16138,'/15763/16088/16130/',16130,'street','温郊乡',4,'350423201000',0,'2023-08-08 02:23:35'),(16139,'/15763/16088/16130/',16130,'street','田源乡',4,'350423203000',0,'2023-08-08 02:23:35'),(16140,'/15763/16088/16130/',16130,'street','沙芜乡',4,'350423204000',0,'2023-08-08 02:23:35'),(16141,'/15763/16088/16130/',16130,'street','余朋乡',4,'350423206000',0,'2023-08-08 02:23:35'),(16142,'/15763/16088/16130/',16130,'street','李家乡',4,'350423208000',0,'2023-08-08 02:23:35'),(16143,'/15763/16088/16130/',16130,'street','里田乡',4,'350423209000',0,'2023-08-08 02:23:35'),(16144,'/15763/16088/',16088,'area','宁化县',3,'350424000000',16,'2023-08-08 02:23:35'),(16145,'/15763/16088/16144/',16144,'street','翠江镇',4,'350424100000',0,'2023-08-08 02:23:35'),(16146,'/15763/16088/16144/',16144,'street','泉上镇',4,'350424101000',0,'2023-08-08 02:23:35'),(16147,'/15763/16088/16144/',16144,'street','湖村镇',4,'350424102000',0,'2023-08-08 02:23:35'),(16148,'/15763/16088/16144/',16144,'street','石壁镇',4,'350424103000',0,'2023-08-08 02:23:35'),(16149,'/15763/16088/16144/',16144,'street','曹坊镇',4,'350424104000',0,'2023-08-08 02:23:35'),(16150,'/15763/16088/16144/',16144,'street','安远镇',4,'350424105000',0,'2023-08-08 02:23:35'),(16151,'/15763/16088/16144/',16144,'street','淮土镇',4,'350424106000',0,'2023-08-08 02:23:35'),(16152,'/15763/16088/16144/',16144,'street','安乐镇',4,'350424107000',0,'2023-08-08 02:23:35'),(16153,'/15763/16088/16144/',16144,'street','水茜镇',4,'350424108000',0,'2023-08-08 02:23:35'),(16154,'/15763/16088/16144/',16144,'street','城郊镇',4,'350424109000',0,'2023-08-08 02:23:35'),(16155,'/15763/16088/16144/',16144,'street','城南镇',4,'350424110000',0,'2023-08-08 02:23:35'),(16156,'/15763/16088/16144/',16144,'street','济村乡',4,'350424202000',0,'2023-08-08 02:23:35'),(16157,'/15763/16088/16144/',16144,'street','方田乡',4,'350424204000',0,'2023-08-08 02:23:35'),(16158,'/15763/16088/16144/',16144,'street','治平畲族
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (17230,'/17026/17175/17218/',17218,'street','双田镇',4,'360281109000',0,'2023-08-08 02:23:37'),(17231,'/17026/17175/17218/',17218,'street','临港镇',4,'360281110000',0,'2023-08-08 02:23:37'),(17232,'/17026/17175/17218/',17218,'street','高家镇',4,'360281111000',0,'2023-08-08 02:23:37'),(17233,'/17026/17175/17218/',17218,'street','名口镇',4,'360281112000',0,'2023-08-08 02:23:37'),(17234,'/17026/17175/17218/',17218,'street','浯口镇',4,'360281113000',0,'2023-08-08 02:23:37'),(17235,'/17026/17175/17218/',17218,'street','十里岗镇',4,'360281114000',0,'2023-08-08 02:23:37'),(17236,'/17026/17175/17218/',17218,'street','鸬鹚乡',4,'360281200000',0,'2023-08-08 02:23:37'),(17237,'/17026/17175/17218/',17218,'street','农业高新园',4,'360281400000',0,'2023-08-08 02:23:37'),(17238,'/17026/17175/17218/',17218,'street','江西乐平工业园区',4,'360281401000',0,'2023-08-08 02:23:37'),(17239,'/17026/',17026,'city','萍乡市',2,'360300000000',5,'2023-08-08 02:23:37'),(17240,'/17026/17239/',17239,'area','安源区',3,'360302000000',13,'2023-08-08 02:23:37'),(17241,'/17026/17239/17240/',17240,'street','东大街街道',4,'360302001000',0,'2023-08-08 02:23:37'),(17242,'/17026/17239/17240/',17240,'street','凤凰街街道',4,'360302002000',0,'2023-08-08 02:23:37'),(17243,'/17026/17239/17240/',17240,'street','八一街街道',4,'360302003000',0,'2023-08-08 02:23:37'),(17244,'/17026/17239/17240/',17240,'street','后埠街街道',4,'360302004000',0,'2023-08-08 02:23:37'),(17245,'/17026/17239/17240/',17240,'street','丹江街街道',4,'360302005000',0,'2023-08-08 02:23:37'),(17246,'/17026/17239/17240/',17240,'street','白源街街道',4,'360302006000',0,'2023-08-08 02:23:37'),(17247,'/17026/17239/17240/',17240,'street','光丰街道',4,'360302008000',0,'2023-08-08 02:23:37'),(17248,'/17026/17239/17240/',17240,'street','安源镇',4,'360302100000',0,'2023-08-08 02:23:37'),(17249,'/17026/17239/17240/',17240,'street','高坑镇',4,'360302101000',0,'2023-08-08 02:23:37'),(17250,'/17026/17239/17240/',17240,'street','五陂镇',4,'360302102000',0,'2023-08-08 02:23:37'),(17251,'/17026/17239/17240/',17240,'street','青山镇',4,'360302103000',0,'2023-08-08 02:23:37'),(17252,'/17026/17239/17240/',17240,'street','五陂下垦殖场',4,'360302400000',0,'2023-08-08 02:23:37'),(17253,'/17026/17239/17240/',17240,'street','城郊管委会',4,'360302401000',0,'2023-08-08 02:23:37'),(17254,'/17026/17239/',17239,'area','湘东区',3,'360313000000',11,'2023-08-08 02:23:37'),(17255,'/17026/17239/17254/',17254,'street','峡山口街道',4,'360313001000',0,'2023-08-08 02:23:37'),(17256,'/17026/17239/17254/',17254,'street','湘东镇',4,'360313101000',0,'2023-08-08 02:23:37'),(17257,'/17026/17239/17254/',17254,'street','荷尧镇',4,'360313102000',0,'2023-08-08 02:23:37'),(17258,'/17026/17239/17254/',17254,'street','老关镇',4,'360313103000',0,'2023-08-08 02:23:37'),(17259,'/17026/17239/17254/',17254,'street','腊市镇',4,'360313104000',0,'2023-08-08 02:23:37'),(17260,'/17026/17239/17254/',17254,'street','下埠镇',4,'360313105000',0,'2023-08-08 02:23:37'),(17261,'/17026/17239/17254/',17254,'street','排上镇',4,'360313106000',0,'2023-08-08 02:23:37'),(17262,'/17026/17239/17254/',17254,'street','东桥镇',4,'360313107000',0,'2023-08-08 02:23:37'),(17263,'/17026/17239/17254/',17254,'street','麻山镇',4,'360313108000',0,'2023-08-08 02:23:37'),(17264,'/17026/17239/17254/',17254,'street','广寒寨乡',4,'360313200000',0,'2023-08-08 02:23:37'),(17265,'/17026/17239/17254/',17254,'street','白竺乡',4,'360313201000',0,'2023-08-08 02:23:37'),(17266,'/17026/17239/',17239,'area','莲花县',3,'360321000000',13,'2023-08-08 02:23:37'),(17267,'/17026/17239/17266/',17266,'street','琴亭镇',4,'360321101000',0,'2023-08-08 02:23:37'),(17268,'/17026/17239/17266/',17266,'street','路口镇',4,'360321102000',0,'2023-08-08 02:23:37'),(17269,'/17026/17239/17266/',17266,'street','良坊镇',4,'360321103000',0,'2023-08-08 02:23:37'),(17270,'/1702
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (18340,'/17026/18241/18339/',18339,'street','新昌镇',4,'360924100000',0,'2023-08-08 02:23:38'),(18341,'/17026/18241/18339/',18339,'street','澄塘镇',4,'360924101000',0,'2023-08-08 02:23:38'),(18342,'/17026/18241/18339/',18339,'street','棠浦镇',4,'360924102000',0,'2023-08-08 02:23:38'),(18343,'/17026/18241/18339/',18339,'street','新庄镇',4,'360924103000',0,'2023-08-08 02:23:38'),(18344,'/17026/18241/18339/',18339,'street','潭山镇',4,'360924104000',0,'2023-08-08 02:23:38'),(18345,'/17026/18241/18339/',18339,'street','芳溪镇',4,'360924105000',0,'2023-08-08 02:23:38'),(18346,'/17026/18241/18339/',18339,'street','石市镇',4,'360924106000',0,'2023-08-08 02:23:38'),(18347,'/17026/18241/18339/',18339,'street','黄岗镇',4,'360924107000',0,'2023-08-08 02:23:39'),(18348,'/17026/18241/18339/',18339,'street','黄垦镇',4,'360924108000',0,'2023-08-08 02:23:39'),(18349,'/17026/18241/18339/',18339,'street','花桥乡',4,'360924200000',0,'2023-08-08 02:23:39'),(18350,'/17026/18241/18339/',18339,'street','同安乡',4,'360924201000',0,'2023-08-08 02:23:39'),(18351,'/17026/18241/18339/',18339,'street','天宝乡',4,'360924202000',0,'2023-08-08 02:23:39'),(18352,'/17026/18241/18339/',18339,'street','桥西乡',4,'360924204000',0,'2023-08-08 02:23:39'),(18353,'/17026/18241/18339/',18339,'street','宜丰县工业园区',4,'360924400000',0,'2023-08-08 02:23:39'),(18354,'/17026/18241/18339/',18339,'street','车上林场',4,'360924500000',0,'2023-08-08 02:23:39'),(18355,'/17026/18241/18339/',18339,'street','双峰林场',4,'360924501000',0,'2023-08-08 02:23:39'),(18356,'/17026/18241/18339/',18339,'street','石花尖垦殖场',4,'360924502000',0,'2023-08-08 02:23:39'),(18357,'/17026/18241/',18241,'area','靖安县',3,'360925000000',12,'2023-08-08 02:23:39'),(18358,'/17026/18241/18357/',18357,'street','双溪镇',4,'360925100000',0,'2023-08-08 02:23:39'),(18359,'/17026/18241/18357/',18357,'street','仁首镇',4,'360925101000',0,'2023-08-08 02:23:39'),(18360,'/17026/18241/18357/',18357,'street','宝峰镇',4,'360925102000',0,'2023-08-08 02:23:39'),(18361,'/17026/18241/18357/',18357,'street','高湖镇',4,'360925103000',0,'2023-08-08 02:23:39'),(18362,'/17026/18241/18357/',18357,'street','璪都镇',4,'360925104000',0,'2023-08-08 02:23:39'),(18363,'/17026/18241/18357/',18357,'street','官庄镇',4,'360925105000',0,'2023-08-08 02:23:39'),(18364,'/17026/18241/18357/',18357,'street','香田乡',4,'360925200000',0,'2023-08-08 02:23:39'),(18365,'/17026/18241/18357/',18357,'street','水口乡',4,'360925201000',0,'2023-08-08 02:23:39'),(18366,'/17026/18241/18357/',18357,'street','中源乡',4,'360925202000',0,'2023-08-08 02:23:39'),(18367,'/17026/18241/18357/',18357,'street','三爪仑乡',4,'360925205000',0,'2023-08-08 02:23:39'),(18368,'/17026/18241/18357/',18357,'street','雷公尖乡',4,'360925206000',0,'2023-08-08 02:23:39'),(18369,'/17026/18241/18357/',18357,'street','靖安县工业园区',4,'360925400000',0,'2023-08-08 02:23:39'),(18370,'/17026/18241/',18241,'area','铜鼓县',3,'360926000000',14,'2023-08-08 02:23:39'),(18371,'/17026/18241/18370/',18370,'street','永宁镇',4,'360926100000',0,'2023-08-08 02:23:39'),(18372,'/17026/18241/18370/',18370,'street','温泉镇',4,'360926101000',0,'2023-08-08 02:23:39'),(18373,'/17026/18241/18370/',18370,'street','棋坪镇',4,'360926102000',0,'2023-08-08 02:23:39'),(18374,'/17026/18241/18370/',18370,'street','排埠镇',4,'360926103000',0,'2023-08-08 02:23:39'),(18375,'/17026/18241/18370/',18370,'street','三都镇',4,'360926104000',0,'2023-08-08 02:23:39'),(18376,'/17026/18241/18370/',18370,'street','大塅镇',4,'360926105000',0,'2023-08-08 02:23:39'),(18377,'/17026/18241/18370/',18370,'street','高桥乡',4,'360926200000',0,'2023-08-08 02:23:39'),(18378,'/17026/18241/18370/',18370,'street','港口乡',4,'360926201000',0,'2023-08-08 02:23:39'),(18379,'/17026/18241/18370/',18370,'street','带溪乡',4,'360926202000',0,'2023-08-08 02:23:39'),(18380,'/17026/18241/18370/',18370
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (19448,'/18907/19410/19444/',19444,'street','盐窝镇',4,'370522102000',0,'2023-08-08 02:23:40'),(19449,'/18907/19410/19444/',19444,'street','陈庄镇',4,'370522103000',0,'2023-08-08 02:23:40'),(19450,'/18907/19410/19444/',19444,'street','汀罗镇',4,'370522104000',0,'2023-08-08 02:23:40'),(19451,'/18907/19410/19444/',19444,'street','明集乡',4,'370522201000',0,'2023-08-08 02:23:40'),(19452,'/18907/19410/19444/',19444,'street','刁口乡',4,'370522206000',0,'2023-08-08 02:23:40'),(19453,'/18907/19410/19444/',19444,'street','利津县经济开发区',4,'370522400000',0,'2023-08-08 02:23:40'),(19454,'/18907/19410/',19410,'area','广饶县',3,'370523000000',11,'2023-08-08 02:23:40'),(19455,'/18907/19410/19454/',19454,'street','广饶街道',4,'370523001000',0,'2023-08-08 02:23:40'),(19456,'/18907/19410/19454/',19454,'street','乐安街道',4,'370523002000',0,'2023-08-08 02:23:40'),(19457,'/18907/19410/19454/',19454,'street','丁庄街道',4,'370523003000',0,'2023-08-08 02:23:40'),(19458,'/18907/19410/19454/',19454,'street','大王镇',4,'370523101000',0,'2023-08-08 02:23:40'),(19459,'/18907/19410/19454/',19454,'street','稻庄镇',4,'370523102000',0,'2023-08-08 02:23:40'),(19460,'/18907/19410/19454/',19454,'street','李鹊镇',4,'370523106000',0,'2023-08-08 02:23:40'),(19461,'/18907/19410/19454/',19454,'street','大码头镇',4,'370523107000',0,'2023-08-08 02:23:40'),(19462,'/18907/19410/19454/',19454,'street','花官镇',4,'370523108000',0,'2023-08-08 02:23:40'),(19463,'/18907/19410/19454/',19454,'street','陈官镇',4,'370523109000',0,'2023-08-08 02:23:40'),(19464,'/18907/19410/19454/',19454,'street','东营农业高新技术产业示范区',4,'370523400000',0,'2023-08-08 02:23:40'),(19465,'/18907/19410/19454/',19454,'street','滨海新动能产业园',4,'370523401000',0,'2023-08-08 02:23:40'),(19466,'/18907/19410/',19410,'area','东营经济技术开发区',3,'370571000000',1,'2023-08-08 02:23:40'),(19467,'/18907/19410/19466/',19466,'street','经济开发区直属乡镇',4,'370571400000',0,'2023-08-08 02:23:40'),(19468,'/18907/19410/',19410,'area','东营港经济开发区',3,'370572000000',1,'2023-08-08 02:23:40'),(19469,'/18907/19410/19468/',19468,'street','经济开发区直属乡镇',4,'370572402000',0,'2023-08-08 02:23:40'),(19470,'/18907/',18907,'city','烟台市',2,'370600000000',13,'2023-08-08 02:23:40'),(19471,'/18907/19470/',19470,'area','芝罘区',3,'370602000000',12,'2023-08-08 02:23:40'),(19472,'/18907/19470/19471/',19471,'street','向阳街道',4,'370602001000',0,'2023-08-08 02:23:40'),(19473,'/18907/19470/19471/',19471,'street','东山街道',4,'370602002000',0,'2023-08-08 02:23:40'),(19474,'/18907/19470/19471/',19471,'street','毓璜顶街道',4,'370602003000',0,'2023-08-08 02:23:40'),(19475,'/18907/19470/19471/',19471,'street','通伸街道',4,'370602004000',0,'2023-08-08 02:23:40'),(19476,'/18907/19470/19471/',19471,'street','凤凰台街道',4,'370602005000',0,'2023-08-08 02:23:40'),(19477,'/18907/19470/19471/',19471,'street','奇山街道',4,'370602006000',0,'2023-08-08 02:23:40'),(19478,'/18907/19470/19471/',19471,'street','白石街道',4,'370602007000',0,'2023-08-08 02:23:40'),(19479,'/18907/19470/19471/',19471,'street','芝罘岛街道',4,'370602008000',0,'2023-08-08 02:23:40'),(19480,'/18907/19470/19471/',19471,'street','黄务街道',4,'370602009000',0,'2023-08-08 02:23:40'),(19481,'/18907/19470/19471/',19471,'street','只楚街道',4,'370602010000',0,'2023-08-08 02:23:40'),(19482,'/18907/19470/19471/',19471,'street','世回尧街道',4,'370602011000',0,'2023-08-08 02:23:40'),(19483,'/18907/19470/19471/',19471,'street','幸福街道',4,'370602012000',0,'2023-08-08 02:23:40'),(19484,'/18907/19470/',19470,'area','福山区',3,'370611000000',9,'2023-08-08 02:23:40'),(19485,'/18907/19470/19484/',19484,'street','清洋街道',4,'370611001000',0,'2023-08-08 02:23:40'),(19486,'/18907/19470/19484/',19484,'street','福新街道',4,'370611002000',0,'2023-08-08 02:23:40'),(19487,'/18907/1947
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (20558,'/18907/20506/20547/',20547,'street','寿张镇',4,'371521109000',0,'2023-08-08 02:23:42'),(20559,'/18907/20506/20547/',20547,'street','十五里园镇',4,'371521111000',0,'2023-08-08 02:23:42'),(20560,'/18907/20506/20547/',20547,'street','张秋镇',4,'371521112000',0,'2023-08-08 02:23:42'),(20561,'/18907/20506/20547/',20547,'street','郭店屯镇',4,'371521113000',0,'2023-08-08 02:23:42'),(20562,'/18907/20506/20547/',20547,'street','西湖镇',4,'371521114000',0,'2023-08-08 02:23:42'),(20563,'/18907/20506/20547/',20547,'street','高庙王镇',4,'371521115000',0,'2023-08-08 02:23:42'),(20564,'/18907/20506/20547/',20547,'street','金斗营镇',4,'371521116000',0,'2023-08-08 02:23:42'),(20565,'/18907/20506/20547/',20547,'street','大布乡',4,'371521203000',0,'2023-08-08 02:23:42'),(20566,'/18907/20506/',20506,'area','莘县',3,'371522000000',24,'2023-08-08 02:23:42'),(20567,'/18907/20506/20566/',20566,'street','燕塔街道',4,'371522001000',0,'2023-08-08 02:23:42'),(20568,'/18907/20506/20566/',20566,'street','莘亭街道',4,'371522002000',0,'2023-08-08 02:23:42'),(20569,'/18907/20506/20566/',20566,'street','莘州街道',4,'371522003000',0,'2023-08-08 02:23:42'),(20570,'/18907/20506/20566/',20566,'street','东鲁街道',4,'371522004000',0,'2023-08-08 02:23:42'),(20571,'/18907/20506/20566/',20566,'street','张鲁镇',4,'371522101000',0,'2023-08-08 02:23:42'),(20572,'/18907/20506/20566/',20566,'street','朝城镇',4,'371522102000',0,'2023-08-08 02:23:42'),(20573,'/18907/20506/20566/',20566,'street','观城镇',4,'371522103000',0,'2023-08-08 02:23:42'),(20574,'/18907/20506/20566/',20566,'street','古城镇',4,'371522104000',0,'2023-08-08 02:23:42'),(20575,'/18907/20506/20566/',20566,'street','大张家镇',4,'371522105000',0,'2023-08-08 02:23:42'),(20576,'/18907/20506/20566/',20566,'street','古云镇',4,'371522106000',0,'2023-08-08 02:23:42'),(20577,'/18907/20506/20566/',20566,'street','十八里铺镇',4,'371522107000',0,'2023-08-08 02:23:42'),(20578,'/18907/20506/20566/',20566,'street','燕店镇',4,'371522109000',0,'2023-08-08 02:23:42'),(20579,'/18907/20506/20566/',20566,'street','董杜庄镇',4,'371522110000',0,'2023-08-08 02:23:42'),(20580,'/18907/20506/20566/',20566,'street','王奉镇',4,'371522111000',0,'2023-08-08 02:23:42'),(20581,'/18907/20506/20566/',20566,'street','樱桃园镇',4,'371522112000',0,'2023-08-08 02:23:42'),(20582,'/18907/20506/20566/',20566,'street','河店镇',4,'371522113000',0,'2023-08-08 02:23:42'),(20583,'/18907/20506/20566/',20566,'street','妹冢镇',4,'371522114000',0,'2023-08-08 02:23:42'),(20584,'/18907/20506/20566/',20566,'street','魏庄镇',4,'371522115000',0,'2023-08-08 02:23:42'),(20585,'/18907/20506/20566/',20566,'street','张寨镇',4,'371522116000',0,'2023-08-08 02:23:42'),(20586,'/18907/20506/20566/',20566,'street','大王寨镇',4,'371522117000',0,'2023-08-08 02:23:42'),(20587,'/18907/20506/20566/',20566,'street','徐庄镇',4,'371522118000',0,'2023-08-08 02:23:42'),(20588,'/18907/20506/20566/',20566,'street','王庄集镇',4,'371522119000',0,'2023-08-08 02:23:42'),(20589,'/18907/20506/20566/',20566,'street','柿子园镇',4,'371522120000',0,'2023-08-08 02:23:42'),(20590,'/18907/20506/20566/',20566,'street','俎店镇',4,'371522121000',0,'2023-08-08 02:23:42'),(20591,'/18907/20506/',20506,'area','东阿县',3,'371524000000',10,'2023-08-08 02:23:42'),(20592,'/18907/20506/20591/',20591,'street','铜城街道',4,'371524001000',0,'2023-08-08 02:23:42'),(20593,'/18907/20506/20591/',20591,'street','新城街道',4,'371524002000',0,'2023-08-08 02:23:42'),(20594,'/18907/20506/20591/',20591,'street','刘集镇',4,'371524101000',0,'2023-08-08 02:23:42'),(20595,'/18907/20506/20591/',20591,'street','牛角店镇',4,'371524102000',0,'2023-08-08 02:23:42'),(20596,'/18907/20506/20591/',20591,'street','大桥镇',4,'371524103000',0,'2023-08-08 02:23:42'),(20597,'/18907/20506/20591/',20591,'street','高集镇',4,'371524104000',0,'2023-08-08 02:23:42'),(20598,'/18907/20506/2
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (21666,'/20930/21659/21660/',21660,'street','西大街街道',4,'410502006000',0,'2023-08-08 02:23:44'),(21667,'/20930/21659/21660/',21660,'street','北大街街道',4,'410502008000',0,'2023-08-08 02:23:44'),(21668,'/20930/21659/21660/',21660,'street','西关街道',4,'410502011000',0,'2023-08-08 02:23:44'),(21669,'/20930/21659/21660/',21660,'street','紫薇大道街道',4,'410502012000',0,'2023-08-08 02:23:44'),(21670,'/20930/21659/21660/',21660,'street','光华路街道',4,'410502013000',0,'2023-08-08 02:23:44'),(21671,'/20930/21659/21660/',21660,'street','永明路街道',4,'410502014000',0,'2023-08-08 02:23:44'),(21672,'/20930/21659/21660/',21660,'street','中华路街道',4,'410502015000',0,'2023-08-08 02:23:44'),(21673,'/20930/21659/21660/',21660,'street','宝莲寺镇',4,'410502101000',0,'2023-08-08 02:23:44'),(21674,'/20930/21659/21660/',21660,'street','步行街综合治理办公室',4,'410502561000',0,'2023-08-08 02:23:44'),(21675,'/20930/21659/21660/',21660,'street','北大街综合治理办公室',4,'410502562000',0,'2023-08-08 02:23:44'),(21676,'/20930/21659/',21659,'area','北关区',3,'410503000000',10,'2023-08-08 02:23:44'),(21677,'/20930/21659/21676/',21676,'street','红旗路街道',4,'410503001000',0,'2023-08-08 02:23:44'),(21678,'/20930/21659/21676/',21676,'street','解放路街道',4,'410503003000',0,'2023-08-08 02:23:44'),(21679,'/20930/21659/21676/',21676,'street','灯塔路街道',4,'410503004000',0,'2023-08-08 02:23:44'),(21680,'/20930/21659/21676/',21676,'street','豆腐营街道',4,'410503005000',0,'2023-08-08 02:23:44'),(21681,'/20930/21659/21676/',21676,'street','洹北街道',4,'410503006000',0,'2023-08-08 02:23:44'),(21682,'/20930/21659/21676/',21676,'street','彰东街道',4,'410503008000',0,'2023-08-08 02:23:44'),(21683,'/20930/21659/21676/',21676,'street','彰北街道',4,'410503009000',0,'2023-08-08 02:23:44'),(21684,'/20930/21659/21676/',21676,'street','民航路街道',4,'410503010000',0,'2023-08-08 02:23:44'),(21685,'/20930/21659/21676/',21676,'street','曙光路街道',4,'410503011000',0,'2023-08-08 02:23:44'),(21686,'/20930/21659/21676/',21676,'street','柏庄镇',4,'410503100000',0,'2023-08-08 02:23:44'),(21687,'/20930/21659/',21659,'area','殷都区',3,'410505000000',12,'2023-08-08 02:23:44'),(21688,'/20930/21659/21687/',21687,'street','梅园庄街道',4,'410505001000',0,'2023-08-08 02:23:44'),(21689,'/20930/21659/21687/',21687,'street','李珍街道',4,'410505002000',0,'2023-08-08 02:23:44'),(21690,'/20930/21659/21687/',21687,'street','电厂路街道',4,'410505003000',0,'2023-08-08 02:23:44'),(21691,'/20930/21659/21687/',21687,'street','纱厂路街道',4,'410505004000',0,'2023-08-08 02:23:44'),(21692,'/20930/21659/21687/',21687,'street','铁西路街道',4,'410505005000',0,'2023-08-08 02:23:44'),(21693,'/20930/21659/21687/',21687,'street','水冶街道',4,'410505006000',0,'2023-08-08 02:23:44'),(21694,'/20930/21659/21687/',21687,'street','清风街街道',4,'410505007000',0,'2023-08-08 02:23:44'),(21695,'/20930/21659/21687/',21687,'street','北蒙街道',4,'410505008000',0,'2023-08-08 02:23:44'),(21696,'/20930/21659/21687/',21687,'street','相台街道',4,'410505009000',0,'2023-08-08 02:23:44'),(21697,'/20930/21659/21687/',21687,'street','曲沟镇',4,'410505100000',0,'2023-08-08 02:23:44'),(21698,'/20930/21659/21687/',21687,'street','水冶镇',4,'410505101000',0,'2023-08-08 02:23:44'),(21699,'/20930/21659/21687/',21687,'street','西郊乡',4,'410505200000',0,'2023-08-08 02:23:44'),(21700,'/20930/21659/',21659,'area','龙安区',3,'410506000000',11,'2023-08-08 02:23:44'),(21701,'/20930/21659/21700/',21700,'street','田村街道',4,'410506001000',0,'2023-08-08 02:23:44'),(21702,'/20930/21659/21700/',21700,'street','彰武街道',4,'410506002000',0,'2023-08-08 02:23:44'),(21703,'/20930/21659/21700/',21700,'street','文昌大道街道',4,'410506003000',0,'2023-08-08 02:23:44'),(21704,'/20930/21659/21700/',21700,'street','文明大道街道',4,'410506004000',0,'2023-08-
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (22775,'/20930/22537/22774/',22774,'street','白河街道',4,'411372005000',0,'2023-08-08 02:23:46'),(22776,'/20930/22537/22774/',22774,'street','枣林街道',4,'411372006000',0,'2023-08-08 02:23:46'),(22777,'/20930/22537/22774/',22774,'street','姜营街道',4,'411372007000',0,'2023-08-08 02:23:46'),(22778,'/20930/22537/22774/',22774,'street','新店乡',4,'411372306000',0,'2023-08-08 02:23:46'),(22779,'/20930/22537/',22537,'area','邓州市',3,'411381000000',29,'2023-08-08 02:23:46'),(22780,'/20930/22537/22779/',22779,'street','古城街道',4,'411381001000',0,'2023-08-08 02:23:46'),(22781,'/20930/22537/22779/',22779,'street','花洲街道',4,'411381002000',0,'2023-08-08 02:23:46'),(22782,'/20930/22537/22779/',22779,'street','湍河街道',4,'411381003000',0,'2023-08-08 02:23:46'),(22783,'/20930/22537/22779/',22779,'street','罗庄镇',4,'411381102000',0,'2023-08-08 02:23:46'),(22784,'/20930/22537/22779/',22779,'street','汲滩镇',4,'411381103000',0,'2023-08-08 02:23:46'),(22785,'/20930/22537/22779/',22779,'street','穰东镇',4,'411381104000',0,'2023-08-08 02:23:46'),(22786,'/20930/22537/22779/',22779,'street','孟楼镇',4,'411381105000',0,'2023-08-08 02:23:46'),(22787,'/20930/22537/22779/',22779,'street','林扒镇',4,'411381106000',0,'2023-08-08 02:23:46'),(22788,'/20930/22537/22779/',22779,'street','构林镇',4,'411381107000',0,'2023-08-08 02:23:46'),(22789,'/20930/22537/22779/',22779,'street','十林镇',4,'411381108000',0,'2023-08-08 02:23:46'),(22790,'/20930/22537/22779/',22779,'street','张村镇',4,'411381109000',0,'2023-08-08 02:23:46'),(22791,'/20930/22537/22779/',22779,'street','都司镇',4,'411381110000',0,'2023-08-08 02:23:46'),(22792,'/20930/22537/22779/',22779,'street','赵集镇',4,'411381111000',0,'2023-08-08 02:23:46'),(22793,'/20930/22537/22779/',22779,'street','刘集镇',4,'411381112000',0,'2023-08-08 02:23:46'),(22794,'/20930/22537/22779/',22779,'street','桑庄镇',4,'411381113000',0,'2023-08-08 02:23:46'),(22795,'/20930/22537/22779/',22779,'street','彭桥镇',4,'411381114000',0,'2023-08-08 02:23:46'),(22796,'/20930/22537/22779/',22779,'street','白牛镇',4,'411381115000',0,'2023-08-08 02:23:46'),(22797,'/20930/22537/22779/',22779,'street','腰店镇',4,'411381116000',0,'2023-08-08 02:23:46'),(22798,'/20930/22537/22779/',22779,'street','九龙镇',4,'411381117000',0,'2023-08-08 02:23:46'),(22799,'/20930/22537/22779/',22779,'street','文渠镇',4,'411381118000',0,'2023-08-08 02:23:46'),(22800,'/20930/22537/22779/',22779,'street','高集镇',4,'411381119000',0,'2023-08-08 02:23:46'),(22801,'/20930/22537/22779/',22779,'street','夏集镇',4,'411381120000',0,'2023-08-08 02:23:46'),(22802,'/20930/22537/22779/',22779,'street','陶营镇',4,'411381121000',0,'2023-08-08 02:23:46'),(22803,'/20930/22537/22779/',22779,'street','小杨营镇',4,'411381122000',0,'2023-08-08 02:23:46'),(22804,'/20930/22537/22779/',22779,'street','张楼乡',4,'411381301000',0,'2023-08-08 02:23:46'),(22805,'/20930/22537/22779/',22779,'street','裴营乡',4,'411381305000',0,'2023-08-08 02:23:46'),(22806,'/20930/22537/22779/',22779,'street','龙堰乡',4,'411381319000',0,'2023-08-08 02:23:46'),(22807,'/20930/22537/22779/',22779,'street','南阳市黄牛良种繁育场',4,'411381400000',0,'2023-08-08 02:23:46'),(22808,'/20930/22537/22779/',22779,'street','杏山旅游管理区',4,'411381560000',0,'2023-08-08 02:23:46'),(22809,'/20930/',20930,'city','商丘市',2,'411400000000',11,'2023-08-08 02:23:46'),(22810,'/20930/22809/',22809,'area','梁园区',3,'411402000000',17,'2023-08-08 02:23:46'),(22811,'/20930/22809/22810/',22810,'street','平原街道',4,'411402001000',0,'2023-08-08 02:23:46'),(22812,'/20930/22809/22810/',22810,'street','长征街道',4,'411402002000',0,'2023-08-08 02:23:46'),(22813,'/20930/22809/22810/',22810,'street','前进街道',4,'411402003000',0,'2023-08-08 02:23:46'),(22814,'/20930/22809/22810/',22810,'street','白云街道',4,'411402004000',0,'2023-08-08 02:23:46'),(22815,'/20930/22809/22810
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (23881,'/23715/23716/23865/',23865,'street','武汉江夏经济开发区庙山高新技术产业园',4,'420115401000',0,'2023-08-08 02:23:48'),(23882,'/23715/23716/23865/',23865,'street','武汉江夏经济开发区藏龙岛高新技术产业园',4,'420115402000',0,'2023-08-08 02:23:48'),(23883,'/23715/23716/23865/',23865,'street','武汉江夏经济开发区大桥现代产业园',4,'420115403000',0,'2023-08-08 02:23:48'),(23884,'/23715/23716/23865/',23865,'street','江夏梁子湖风景区',4,'420115404000',0,'2023-08-08 02:23:48'),(23885,'/23715/23716/23865/',23865,'street','武汉江夏经济开发区金港汽车产业园',4,'420115405000',0,'2023-08-08 02:23:48'),(23886,'/23715/23716/',23716,'area','黄陂区',3,'420116000000',20,'2023-08-08 02:23:48'),(23887,'/23715/23716/23886/',23886,'street','前川街道',4,'420116001000',0,'2023-08-08 02:23:48'),(23888,'/23715/23716/23886/',23886,'street','祁家湾街道',4,'420116002000',0,'2023-08-08 02:23:48'),(23889,'/23715/23716/23886/',23886,'street','横店街道',4,'420116003000',0,'2023-08-08 02:23:48'),(23890,'/23715/23716/23886/',23886,'street','罗汉寺街道',4,'420116004000',0,'2023-08-08 02:23:48'),(23891,'/23715/23716/23886/',23886,'street','滠口街道',4,'420116005000',0,'2023-08-08 02:23:48'),(23892,'/23715/23716/23886/',23886,'street','六指街道',4,'420116006000',0,'2023-08-08 02:23:48'),(23893,'/23715/23716/23886/',23886,'street','天河街道',4,'420116007000',0,'2023-08-08 02:23:48'),(23894,'/23715/23716/23886/',23886,'street','王家河街道',4,'420116008000',0,'2023-08-08 02:23:48'),(23895,'/23715/23716/23886/',23886,'street','长轩岭街道',4,'420116009000',0,'2023-08-08 02:23:48'),(23896,'/23715/23716/23886/',23886,'street','李集街道',4,'420116010000',0,'2023-08-08 02:23:48'),(23897,'/23715/23716/23886/',23886,'street','姚集街道',4,'420116011000',0,'2023-08-08 02:23:48'),(23898,'/23715/23716/23886/',23886,'street','蔡榨街道',4,'420116012000',0,'2023-08-08 02:23:48'),(23899,'/23715/23716/23886/',23886,'street','武湖街道',4,'420116013000',0,'2023-08-08 02:23:48'),(23900,'/23715/23716/23886/',23886,'street','三里桥街道',4,'420116014000',0,'2023-08-08 02:23:48'),(23901,'/23715/23716/23886/',23886,'street','蔡店街道',4,'420116015000',0,'2023-08-08 02:23:48'),(23902,'/23715/23716/23886/',23886,'street','木兰乡',4,'420116201000',0,'2023-08-08 02:23:48'),(23903,'/23715/23716/23886/',23886,'street','木兰山风景区管理处',4,'420116401000',0,'2023-08-08 02:23:48'),(23904,'/23715/23716/23886/',23886,'street','大潭办事处',4,'420116402000',0,'2023-08-08 02:23:48'),(23905,'/23715/23716/23886/',23886,'street','盘龙城经济开发区',4,'420116403000',0,'2023-08-08 02:23:48'),(23906,'/23715/23716/23886/',23886,'street','汉口北商贸物流枢纽区管委会',4,'420116404000',0,'2023-08-08 02:23:48'),(23907,'/23715/23716/',23716,'area','新洲区',3,'420117000000',15,'2023-08-08 02:23:48'),(23908,'/23715/23716/23907/',23907,'street','邾城街道',4,'420117001000',0,'2023-08-08 02:23:48'),(23909,'/23715/23716/23907/',23907,'street','阳逻街道',4,'420117002000',0,'2023-08-08 02:23:48'),(23910,'/23715/23716/23907/',23907,'street','仓埠街道',4,'420117003000',0,'2023-08-08 02:23:48'),(23911,'/23715/23716/23907/',23907,'street','汪集街道',4,'420117004000',0,'2023-08-08 02:23:48'),(23912,'/23715/23716/23907/',23907,'street','李集街道',4,'420117005000',0,'2023-08-08 02:23:48'),(23913,'/23715/23716/23907/',23907,'street','三店街道',4,'420117006000',0,'2023-08-08 02:23:48'),(23914,'/23715/23716/23907/',23907,'street','潘塘街道',4,'420117007000',0,'2023-08-08 02:23:48'),(23915,'/23715/23716/23907/',23907,'street','旧街街道',4,'420117008000',0,'2023-08-08 02:23:48'),(23916,'/23715/23716/23907/',23907,'street','双柳街道',4,'420117009000',0,'2023-08-08 02:23:48'),(23917,'/23715/23716/23907/',23907,'street','涨渡湖街道',4,'420117010000',0,'2023-08-08 02:23:48'),(23918,'/23715/23716/2390
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (24986,'/23715/24966/24985/',24985,'street','陆溪镇',4,'421221100000',0,'2023-08-08 02:23:49'),(24987,'/23715/24966/24985/',24985,'street','高铁岭镇',4,'421221101000',0,'2023-08-08 02:23:49'),(24988,'/23715/24966/24985/',24985,'street','官桥镇',4,'421221102000',0,'2023-08-08 02:23:49'),(24989,'/23715/24966/24985/',24985,'street','鱼岳镇',4,'421221103000',0,'2023-08-08 02:23:49'),(24990,'/23715/24966/24985/',24985,'street','新街镇',4,'421221104000',0,'2023-08-08 02:23:49'),(24991,'/23715/24966/24985/',24985,'street','渡普镇',4,'421221105000',0,'2023-08-08 02:23:49'),(24992,'/23715/24966/24985/',24985,'street','潘家湾镇',4,'421221106000',0,'2023-08-08 02:23:49'),(24993,'/23715/24966/24985/',24985,'street','牌洲湾镇',4,'421221107000',0,'2023-08-08 02:23:49'),(24994,'/23715/24966/24985/',24985,'street','头墩农场',4,'421221450000',0,'2023-08-08 02:23:49'),(24995,'/23715/24966/24985/',24985,'street','嘉鱼县经济开发区',4,'421221570000',0,'2023-08-08 02:23:49'),(24996,'/23715/24966/',24966,'area','通城县',3,'421222000000',16,'2023-08-08 02:23:49'),(24997,'/23715/24966/24996/',24996,'street','隽水镇',4,'421222100000',0,'2023-08-08 02:23:49'),(24998,'/23715/24966/24996/',24996,'street','麦市镇',4,'421222101000',0,'2023-08-08 02:23:49'),(24999,'/23715/24966/24996/',24996,'street','塘湖镇',4,'421222102000',0,'2023-08-08 02:23:49'),(25000,'/23715/24966/24996/',24996,'street','关刀镇',4,'421222103000',0,'2023-08-08 02:23:49'),(25001,'/23715/24966/24996/',24996,'street','沙堆镇',4,'421222104000',0,'2023-08-08 02:23:49'),(25002,'/23715/24966/24996/',24996,'street','五里镇',4,'421222105000',0,'2023-08-08 02:23:49'),(25003,'/23715/24966/24996/',24996,'street','石南镇',4,'421222106000',0,'2023-08-08 02:23:49'),(25004,'/23715/24966/24996/',24996,'street','北港镇',4,'421222107000',0,'2023-08-08 02:23:49'),(25005,'/23715/24966/24996/',24996,'street','马港镇',4,'421222108000',0,'2023-08-08 02:23:49'),(25006,'/23715/24966/24996/',24996,'street','四庄乡',4,'421222200000',0,'2023-08-08 02:23:49'),(25007,'/23715/24966/24996/',24996,'street','大坪乡',4,'421222201000',0,'2023-08-08 02:23:49'),(25008,'/23715/24966/24996/',24996,'street','鹿角山林场',4,'421222500000',0,'2023-08-08 02:23:49'),(25009,'/23715/24966/24996/',24996,'street','锡山森林公园管理处',4,'421222501000',0,'2023-08-08 02:23:49'),(25010,'/23715/24966/24996/',24996,'street','黄龙林场',4,'421222502000',0,'2023-08-08 02:23:49'),(25011,'/23715/24966/24996/',24996,'street','黄袍林场',4,'421222503000',0,'2023-08-08 02:23:49'),(25012,'/23715/24966/24996/',24996,'street','药姑林场',4,'421222504000',0,'2023-08-08 02:23:49'),(25013,'/23715/24966/',24966,'area','崇阳县',3,'421223000000',13,'2023-08-08 02:23:49'),(25014,'/23715/24966/25013/',25013,'street','天城镇',4,'421223100000',0,'2023-08-08 02:23:49'),(25015,'/23715/24966/25013/',25013,'street','沙坪镇',4,'421223101000',0,'2023-08-08 02:23:49'),(25016,'/23715/24966/25013/',25013,'street','石城镇',4,'421223102000',0,'2023-08-08 02:23:49'),(25017,'/23715/24966/25013/',25013,'street','桂花泉镇',4,'421223103000',0,'2023-08-08 02:23:49'),(25018,'/23715/24966/25013/',25013,'street','白霓镇',4,'421223104000',0,'2023-08-08 02:23:49'),(25019,'/23715/24966/25013/',25013,'street','路口镇',4,'421223105000',0,'2023-08-08 02:23:49'),(25020,'/23715/24966/25013/',25013,'street','金塘镇',4,'421223106000',0,'2023-08-08 02:23:49'),(25021,'/23715/24966/25013/',25013,'street','青山镇',4,'421223107000',0,'2023-08-08 02:23:49'),(25022,'/23715/24966/25013/',25013,'street','肖岭乡',4,'421223200000',0,'2023-08-08 02:23:50'),(25023,'/23715/24966/25013/',25013,'street','铜钟乡',4,'421223201000',0,'2023-08-08 02:23:50'),(25024,'/23715/24966/25013/',25013,'street','港口乡',4,'421223202000',0,'2023-08-08 02:23:50'),(25025,'/23715/24966/25013/',25013,'street','高枧乡',4,'421223203000',0,'2023-08-08 02:23:50'),(25026,'/23715/2
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (26094,'/25310/25901/',25901,'area','邵东市',3,'430582000000',25,'2023-08-08 02:23:51'),(26095,'/25310/25901/26094/',26094,'street','大禾塘街道',4,'430582001000',0,'2023-08-08 02:23:51'),(26096,'/25310/25901/26094/',26094,'street','两市塘街道',4,'430582002000',0,'2023-08-08 02:23:51'),(26097,'/25310/25901/26094/',26094,'street','宋家塘街道',4,'430582003000',0,'2023-08-08 02:23:51'),(26098,'/25310/25901/26094/',26094,'street','牛马司镇',4,'430582101000',0,'2023-08-08 02:23:51'),(26099,'/25310/25901/26094/',26094,'street','界岭镇',4,'430582102000',0,'2023-08-08 02:23:51'),(26100,'/25310/25901/26094/',26094,'street','九龙岭镇',4,'430582103000',0,'2023-08-08 02:23:51'),(26101,'/25310/25901/26094/',26094,'street','仙槎桥镇',4,'430582104000',0,'2023-08-08 02:23:51'),(26102,'/25310/25901/26094/',26094,'street','火厂坪镇',4,'430582105000',0,'2023-08-08 02:23:51'),(26103,'/25310/25901/26094/',26094,'street','佘田桥镇',4,'430582106000',0,'2023-08-08 02:23:51'),(26104,'/25310/25901/26094/',26094,'street','灵官殿镇',4,'430582107000',0,'2023-08-08 02:23:51'),(26105,'/25310/25901/26094/',26094,'street','团山镇',4,'430582108000',0,'2023-08-08 02:23:51'),(26106,'/25310/25901/26094/',26094,'street','砂石镇',4,'430582109000',0,'2023-08-08 02:23:51'),(26107,'/25310/25901/26094/',26094,'street','廉桥镇',4,'430582110000',0,'2023-08-08 02:23:51'),(26108,'/25310/25901/26094/',26094,'street','流光岭镇',4,'430582111000',0,'2023-08-08 02:23:51'),(26109,'/25310/25901/26094/',26094,'street','流泽镇',4,'430582112000',0,'2023-08-08 02:23:51'),(26110,'/25310/25901/26094/',26094,'street','魏家桥镇',4,'430582113000',0,'2023-08-08 02:23:51'),(26111,'/25310/25901/26094/',26094,'street','野鸡坪镇',4,'430582114000',0,'2023-08-08 02:23:51'),(26112,'/25310/25901/26094/',26094,'street','杨桥镇',4,'430582115000',0,'2023-08-08 02:23:51'),(26113,'/25310/25901/26094/',26094,'street','水东江镇',4,'430582116000',0,'2023-08-08 02:23:51'),(26114,'/25310/25901/26094/',26094,'street','黑田铺镇',4,'430582117000',0,'2023-08-08 02:23:51'),(26115,'/25310/25901/26094/',26094,'street','简家陇镇',4,'430582118000',0,'2023-08-08 02:23:51'),(26116,'/25310/25901/26094/',26094,'street','双凤乡',4,'430582201000',0,'2023-08-08 02:23:51'),(26117,'/25310/25901/26094/',26094,'street','周官桥乡',4,'430582202000',0,'2023-08-08 02:23:51'),(26118,'/25310/25901/26094/',26094,'street','堡面前乡',4,'430582203000',0,'2023-08-08 02:23:51'),(26119,'/25310/25901/26094/',26094,'street','斫曹乡',4,'430582204000',0,'2023-08-08 02:23:51'),(26120,'/25310/',25310,'city','岳阳市',2,'430600000000',10,'2023-08-08 02:23:51'),(26121,'/25310/26120/',26120,'area','岳阳楼区',3,'430602000000',25,'2023-08-08 02:23:51'),(26122,'/25310/26120/26121/',26121,'street','岳阳楼街道',4,'430602001000',0,'2023-08-08 02:23:51'),(26123,'/25310/26120/26121/',26121,'street','三眼桥街道',4,'430602002000',0,'2023-08-08 02:23:51'),(26124,'/25310/26120/26121/',26121,'street','吕仙亭街道',4,'430602003000',0,'2023-08-08 02:23:51'),(26125,'/25310/26120/26121/',26121,'street','金鹗山街道',4,'430602004000',0,'2023-08-08 02:23:51'),(26126,'/25310/26120/26121/',26121,'street','东茅岭街道',4,'430602005000',0,'2023-08-08 02:23:51'),(26127,'/25310/26120/26121/',26121,'street','五里牌街道',4,'430602006000',0,'2023-08-08 02:23:51'),(26128,'/25310/26120/26121/',26121,'street','望岳路街道',4,'430602007000',0,'2023-08-08 02:23:51'),(26129,'/25310/26120/26121/',26121,'street','城陵矶街道',4,'430602008000',0,'2023-08-08 02:23:51'),(26130,'/25310/26120/26121/',26121,'street','枫桥湖街道',4,'430602009000',0,'2023-08-08 02:23:51'),(26131,'/25310/26120/26121/',26121,'street','奇家岭街道',4,'430602010000',0,'2023-08-08 02:23:51'),(26132,'/25310/26120/26121/',26121,'street','洛王街道',4,'430602012000',0,'2023-08-08 02:23:51'),(26133,'/25310/26120/26121/',26121,'street','南湖街道',4,'43
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (27200,'/25310/27027/27194/',27194,'street','平茶镇',4,'431229105000',0,'2023-08-08 02:23:53'),(27201,'/25310/27027/27194/',27194,'street','太阳坪乡',4,'431229200000',0,'2023-08-08 02:23:53'),(27202,'/25310/27027/27194/',27194,'street','三锹乡',4,'431229201000',0,'2023-08-08 02:23:53'),(27203,'/25310/27027/27194/',27194,'street','文溪乡',4,'431229202000',0,'2023-08-08 02:23:53'),(27204,'/25310/27027/27194/',27194,'street','寨牙乡',4,'431229203000',0,'2023-08-08 02:23:53'),(27205,'/25310/27027/27194/',27194,'street','藕团乡',4,'431229206000',0,'2023-08-08 02:23:53'),(27206,'/25310/27027/',27027,'area','通道侗族自治县',3,'431230000000',13,'2023-08-08 02:23:53'),(27207,'/25310/27027/27206/',27206,'street','双江镇',4,'431230100000',0,'2023-08-08 02:23:53'),(27208,'/25310/27027/27206/',27206,'street','县溪镇',4,'431230101000',0,'2023-08-08 02:23:53'),(27209,'/25310/27027/27206/',27206,'street','播阳镇',4,'431230102000',0,'2023-08-08 02:23:53'),(27210,'/25310/27027/27206/',27206,'street','牙屯堡镇',4,'431230104000',0,'2023-08-08 02:23:53'),(27211,'/25310/27027/27206/',27206,'street','菁芜洲镇',4,'431230105000',0,'2023-08-08 02:23:53'),(27212,'/25310/27027/27206/',27206,'street','溪口镇',4,'431230106000',0,'2023-08-08 02:23:53'),(27213,'/25310/27027/27206/',27206,'street','陇城镇',4,'431230107000',0,'2023-08-08 02:23:53'),(27214,'/25310/27027/27206/',27206,'street','万佛山镇',4,'431230108000',0,'2023-08-08 02:23:53'),(27215,'/25310/27027/27206/',27206,'street','独坡镇',4,'431230109000',0,'2023-08-08 02:23:53'),(27216,'/25310/27027/27206/',27206,'street','大高坪苗族乡',4,'431230203000',0,'2023-08-08 02:23:53'),(27217,'/25310/27027/27206/',27206,'street','坪坦乡',4,'431230216000',0,'2023-08-08 02:23:53'),(27218,'/25310/27027/27206/',27206,'street','通道县地连林场',4,'431230400000',0,'2023-08-08 02:23:53'),(27219,'/25310/27027/27206/',27206,'street','通道县播阳农场',4,'431230401000',0,'2023-08-08 02:23:53'),(27220,'/25310/27027/',27027,'area','怀化市洪江管理区',3,'431271000000',6,'2023-08-08 02:23:53'),(27221,'/25310/27027/27220/',27220,'street','河滨路街道',4,'431271001000',0,'2023-08-08 02:23:53'),(27222,'/25310/27027/27220/',27220,'street','沅江路街道',4,'431271002000',0,'2023-08-08 02:23:53'),(27223,'/25310/27027/27220/',27220,'street','新街街道',4,'431271003000',0,'2023-08-08 02:23:53'),(27224,'/25310/27027/27220/',27220,'street','高坡街街道',4,'431271004000',0,'2023-08-08 02:23:53'),(27225,'/25310/27027/27220/',27220,'street','横岩乡',4,'431271218000',0,'2023-08-08 02:23:53'),(27226,'/25310/27027/27220/',27220,'street','桂花园乡',4,'431271220000',0,'2023-08-08 02:23:53'),(27227,'/25310/27027/',27027,'area','洪江市',3,'431281000000',20,'2023-08-08 02:23:53'),(27228,'/25310/27027/27227/',27227,'street','黔城镇',4,'431281101000',0,'2023-08-08 02:23:53'),(27229,'/25310/27027/27227/',27227,'street','安江镇',4,'431281102000',0,'2023-08-08 02:23:53'),(27230,'/25310/27027/27227/',27227,'street','托口镇',4,'431281103000',0,'2023-08-08 02:23:53'),(27231,'/25310/27027/27227/',27227,'street','雪峰镇',4,'431281104000',0,'2023-08-08 02:23:53'),(27232,'/25310/27027/27227/',27227,'street','江市镇',4,'431281106000',0,'2023-08-08 02:23:53'),(27233,'/25310/27027/27227/',27227,'street','沅河镇',4,'431281107000',0,'2023-08-08 02:23:53'),(27234,'/25310/27027/27227/',27227,'street','塘湾镇',4,'431281108000',0,'2023-08-08 02:23:53'),(27235,'/25310/27027/27227/',27227,'street','岔头乡',4,'431281202000',0,'2023-08-08 02:23:53'),(27236,'/25310/27027/27227/',27227,'street','茅渡乡',4,'431281203000',0,'2023-08-08 02:23:53'),(27237,'/25310/27027/27227/',27227,'street','大崇乡',4,'431281204000',0,'2023-08-08 02:23:53'),(27238,'/25310/27027/27227/',27227,'street','熟坪乡',4,'431281205000',0,'2023-08-08 02:23:53'),(27239,'/25310/27027/27227/',27227,'street','铁山乡',4,'431281206000',0,'2023-08-08 02
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (28311,'/27468/28254/28302/',28302,'street','分界镇',4,'440981103000',0,'2023-08-08 02:23:55'),(28312,'/27468/28254/28302/',28302,'street','根子镇',4,'440981104000',0,'2023-08-08 02:23:55'),(28313,'/27468/28254/28302/',28302,'street','泗水镇',4,'440981105000',0,'2023-08-08 02:23:55'),(28314,'/27468/28254/28302/',28302,'street','镇江镇',4,'440981107000',0,'2023-08-08 02:23:55'),(28315,'/27468/28254/28302/',28302,'street','沙田镇',4,'440981109000',0,'2023-08-08 02:23:55'),(28316,'/27468/28254/28302/',28302,'street','南塘镇',4,'440981110000',0,'2023-08-08 02:23:55'),(28317,'/27468/28254/28302/',28302,'street','荷花镇',4,'440981111000',0,'2023-08-08 02:23:55'),(28318,'/27468/28254/28302/',28302,'street','石板镇',4,'440981112000',0,'2023-08-08 02:23:55'),(28319,'/27468/28254/28302/',28302,'street','大井镇',4,'440981115000',0,'2023-08-08 02:23:55'),(28320,'/27468/28254/28302/',28302,'street','潭头镇',4,'440981116000',0,'2023-08-08 02:23:55'),(28321,'/27468/28254/28302/',28302,'street','大坡镇',4,'440981119000',0,'2023-08-08 02:23:55'),(28322,'/27468/28254/28302/',28302,'street','平山镇',4,'440981120000',0,'2023-08-08 02:23:55'),(28323,'/27468/28254/28302/',28302,'street','深镇镇',4,'440981121000',0,'2023-08-08 02:23:55'),(28324,'/27468/28254/28302/',28302,'street','马贵镇',4,'440981122000',0,'2023-08-08 02:23:55'),(28325,'/27468/28254/28302/',28302,'street','古丁镇',4,'440981123000',0,'2023-08-08 02:23:55'),(28326,'/27468/28254/28302/',28302,'street','曹江镇',4,'440981124000',0,'2023-08-08 02:23:55'),(28327,'/27468/28254/28302/',28302,'street','荷塘镇',4,'440981126000',0,'2023-08-08 02:23:55'),(28328,'/27468/28254/28302/',28302,'street','石鼓镇',4,'440981127000',0,'2023-08-08 02:23:55'),(28329,'/27468/28254/28302/',28302,'street','东岸镇',4,'440981128000',0,'2023-08-08 02:23:55'),(28330,'/27468/28254/28302/',28302,'street','长坡镇',4,'440981129000',0,'2023-08-08 02:23:55'),(28331,'/27468/28254/28302/',28302,'street','团结农场',4,'440981450000',0,'2023-08-08 02:23:55'),(28332,'/27468/28254/28302/',28302,'street','胜利农场',4,'440981451000',0,'2023-08-08 02:23:55'),(28333,'/27468/28254/28302/',28302,'street','火星农场',4,'440981452000',0,'2023-08-08 02:23:55'),(28334,'/27468/28254/',28254,'area','化州市',3,'440982000000',30,'2023-08-08 02:23:55'),(28335,'/27468/28254/28334/',28334,'street','河西街道',4,'440982001000',0,'2023-08-08 02:23:55'),(28336,'/27468/28254/28334/',28334,'street','东山街道',4,'440982002000',0,'2023-08-08 02:23:55'),(28337,'/27468/28254/28334/',28334,'street','下郭街道',4,'440982003000',0,'2023-08-08 02:23:55'),(28338,'/27468/28254/28334/',28334,'street','南盛街道',4,'440982004000',0,'2023-08-08 02:23:55'),(28339,'/27468/28254/28334/',28334,'street','石湾街道',4,'440982005000',0,'2023-08-08 02:23:55'),(28340,'/27468/28254/28334/',28334,'street','鉴江街道',4,'440982006000',0,'2023-08-08 02:23:55'),(28341,'/27468/28254/28334/',28334,'street','长岐镇',4,'440982100000',0,'2023-08-08 02:23:55'),(28342,'/27468/28254/28334/',28334,'street','同庆镇',4,'440982101000',0,'2023-08-08 02:23:55'),(28343,'/27468/28254/28334/',28334,'street','杨梅镇',4,'440982102000',0,'2023-08-08 02:23:55'),(28344,'/27468/28254/28334/',28334,'street','良光镇',4,'440982103000',0,'2023-08-08 02:23:55'),(28345,'/27468/28254/28334/',28334,'street','笪桥镇',4,'440982104000',0,'2023-08-08 02:23:55'),(28346,'/27468/28254/28334/',28334,'street','丽岗镇',4,'440982106000',0,'2023-08-08 02:23:55'),(28347,'/27468/28254/28334/',28334,'street','新安镇',4,'440982107000',0,'2023-08-08 02:23:55'),(28348,'/27468/28254/28334/',28334,'street','官桥镇',4,'440982108000',0,'2023-08-08 02:23:55'),(28349,'/27468/28254/28334/',28334,'street','林尘镇',4,'440982110000',0,'2023-08-08 02:23:55'),(28350,'/27468/28254/28334/',28334,'street','合江镇',4,'440982112000',0,'2023-08-08 02:23:55'),(28351,'/27468/28254/28334/',28334,'street','
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (29422,'/29312/29313/29415/',29415,'street','西燕镇',4,'450125106000',0,'2023-08-08 02:23:57'),(29423,'/29312/29313/29415/',29415,'street','澄泰乡',4,'450125200000',0,'2023-08-08 02:23:57'),(29424,'/29312/29313/29415/',29415,'street','木山乡',4,'450125202000',0,'2023-08-08 02:23:57'),(29425,'/29312/29313/29415/',29415,'street','塘红乡',4,'450125203000',0,'2023-08-08 02:23:57'),(29426,'/29312/29313/29415/',29415,'street','镇圩瑶族乡',4,'450125205000',0,'2023-08-08 02:23:57'),(29427,'/29312/29313/',29313,'area','宾阳县',3,'450126000000',17,'2023-08-08 02:23:57'),(29428,'/29312/29313/29427/',29427,'street','宾州镇',4,'450126100000',0,'2023-08-08 02:23:57'),(29429,'/29312/29313/29427/',29427,'street','黎塘镇',4,'450126101000',0,'2023-08-08 02:23:57'),(29430,'/29312/29313/29427/',29427,'street','甘棠镇',4,'450126102000',0,'2023-08-08 02:23:57'),(29431,'/29312/29313/29427/',29427,'street','思陇镇',4,'450126103000',0,'2023-08-08 02:23:57'),(29432,'/29312/29313/29427/',29427,'street','新桥镇',4,'450126104000',0,'2023-08-08 02:23:57'),(29433,'/29312/29313/29427/',29427,'street','新圩镇',4,'450126105000',0,'2023-08-08 02:23:57'),(29434,'/29312/29313/29427/',29427,'street','邹圩镇',4,'450126106000',0,'2023-08-08 02:23:57'),(29435,'/29312/29313/29427/',29427,'street','大桥镇',4,'450126107000',0,'2023-08-08 02:23:57'),(29436,'/29312/29313/29427/',29427,'street','武陵镇',4,'450126108000',0,'2023-08-08 02:23:57'),(29437,'/29312/29313/29427/',29427,'street','中华镇',4,'450126109000',0,'2023-08-08 02:23:57'),(29438,'/29312/29313/29427/',29427,'street','古辣镇',4,'450126110000',0,'2023-08-08 02:23:57'),(29439,'/29312/29313/29427/',29427,'street','露圩镇',4,'450126111000',0,'2023-08-08 02:23:57'),(29440,'/29312/29313/29427/',29427,'street','王灵镇',4,'450126112000',0,'2023-08-08 02:23:57'),(29441,'/29312/29313/29427/',29427,'street','和吉镇',4,'450126113000',0,'2023-08-08 02:23:57'),(29442,'/29312/29313/29427/',29427,'street','洋桥镇',4,'450126114000',0,'2023-08-08 02:23:57'),(29443,'/29312/29313/29427/',29427,'street','陈平镇',4,'450126115000',0,'2023-08-08 02:23:57'),(29444,'/29312/29313/29427/',29427,'street','廖平农场',4,'450126451000',0,'2023-08-08 02:23:57'),(29445,'/29312/29313/',29313,'area','横州市',3,'450181000000',18,'2023-08-08 02:23:57'),(29446,'/29312/29313/29445/',29445,'street','横州镇',4,'450181100000',0,'2023-08-08 02:23:57'),(29447,'/29312/29313/29445/',29445,'street','百合镇',4,'450181101000',0,'2023-08-08 02:23:57'),(29448,'/29312/29313/29445/',29445,'street','那阳镇',4,'450181102000',0,'2023-08-08 02:23:57'),(29449,'/29312/29313/29445/',29445,'street','南乡镇',4,'450181103000',0,'2023-08-08 02:23:57'),(29450,'/29312/29313/29445/',29445,'street','新福镇',4,'450181104000',0,'2023-08-08 02:23:57'),(29451,'/29312/29313/29445/',29445,'street','莲塘镇',4,'450181105000',0,'2023-08-08 02:23:57'),(29452,'/29312/29313/29445/',29445,'street','平马镇',4,'450181106000',0,'2023-08-08 02:23:57'),(29453,'/29312/29313/29445/',29445,'street','峦城镇',4,'450181107000',0,'2023-08-08 02:23:57'),(29454,'/29312/29313/29445/',29445,'street','六景镇',4,'450181108000',0,'2023-08-08 02:23:57'),(29455,'/29312/29313/29445/',29445,'street','石塘镇',4,'450181110000',0,'2023-08-08 02:23:57'),(29456,'/29312/29313/29445/',29445,'street','陶圩镇',4,'450181112000',0,'2023-08-08 02:23:57'),(29457,'/29312/29313/29445/',29445,'street','校椅镇',4,'450181113000',0,'2023-08-08 02:23:57'),(29458,'/29312/29313/29445/',29445,'street','云表镇',4,'450181114000',0,'2023-08-08 02:23:57'),(29459,'/29312/29313/29445/',29445,'street','马岭镇',4,'450181115000',0,'2023-08-08 02:23:57'),(29460,'/29312/29313/29445/',29445,'street','马山镇',4,'450181118000',0,'2023-08-08 02:23:57'),(29461,'/29312/29313/29445/',29445,'street','平朗镇',4,'450181119000',0,'2023-08-08 02:23:57'),(29462,'/29312/29313/29445/',29445,'street','镇龙乡',4,'45018120400
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (30537,'/29312/30395/30531/',30531,'street','贡川乡',4,'451229201000',0,'2023-08-08 02:23:59'),(30538,'/29312/30395/30531/',30531,'street','百马乡',4,'451229202000',0,'2023-08-08 02:23:59'),(30539,'/29312/30395/30531/',30531,'street','古河乡',4,'451229203000',0,'2023-08-08 02:23:59'),(30540,'/29312/30395/30531/',30531,'street','古文乡',4,'451229204000',0,'2023-08-08 02:23:59'),(30541,'/29312/30395/30531/',30531,'street','江南乡',4,'451229205000',0,'2023-08-08 02:23:59'),(30542,'/29312/30395/30531/',30531,'street','羌圩乡',4,'451229206000',0,'2023-08-08 02:23:59'),(30543,'/29312/30395/30531/',30531,'street','乙圩乡',4,'451229207000',0,'2023-08-08 02:23:59'),(30544,'/29312/30395/30531/',30531,'street','板升乡',4,'451229210000',0,'2023-08-08 02:23:59'),(30545,'/29312/30395/30531/',30531,'street','七百弄乡',4,'451229211000',0,'2023-08-08 02:23:59'),(30546,'/29312/30395/30531/',30531,'street','雅龙乡',4,'451229213000',0,'2023-08-08 02:23:59'),(30547,'/29312/30395/30531/',30531,'street','六也乡',4,'451229214000',0,'2023-08-08 02:23:59'),(30548,'/29312/',29312,'city','来宾市',2,'451300000000',6,'2023-08-08 02:23:59'),(30549,'/29312/30548/',30548,'area','兴宾区',3,'451302000000',25,'2023-08-08 02:23:59'),(30550,'/29312/30548/30549/',30549,'street','城东街道',4,'451302001000',0,'2023-08-08 02:23:59'),(30551,'/29312/30548/30549/',30549,'street','城北街道',4,'451302002000',0,'2023-08-08 02:23:59'),(30552,'/29312/30548/30549/',30549,'street','河西街道',4,'451302003000',0,'2023-08-08 02:23:59'),(30553,'/29312/30548/30549/',30549,'street','来华街道',4,'451302005000',0,'2023-08-08 02:23:59'),(30554,'/29312/30548/30549/',30549,'street','凤凰镇',4,'451302101000',0,'2023-08-08 02:23:59'),(30555,'/29312/30548/30549/',30549,'street','良江镇',4,'451302102000',0,'2023-08-08 02:23:59'),(30556,'/29312/30548/30549/',30549,'street','小平阳镇',4,'451302103000',0,'2023-08-08 02:23:59'),(30557,'/29312/30548/30549/',30549,'street','迁江镇',4,'451302104000',0,'2023-08-08 02:23:59'),(30558,'/29312/30548/30549/',30549,'street','石陵镇',4,'451302105000',0,'2023-08-08 02:23:59'),(30559,'/29312/30548/30549/',30549,'street','平阳镇',4,'451302106000',0,'2023-08-08 02:23:59'),(30560,'/29312/30548/30549/',30549,'street','蒙村镇',4,'451302107000',0,'2023-08-08 02:23:59'),(30561,'/29312/30548/30549/',30549,'street','大湾镇',4,'451302108000',0,'2023-08-08 02:23:59'),(30562,'/29312/30548/30549/',30549,'street','桥巩镇',4,'451302109000',0,'2023-08-08 02:23:59'),(30563,'/29312/30548/30549/',30549,'street','寺山镇',4,'451302110000',0,'2023-08-08 02:23:59'),(30564,'/29312/30548/30549/',30549,'street','城厢镇',4,'451302111000',0,'2023-08-08 02:23:59'),(30565,'/29312/30548/30549/',30549,'street','三五镇',4,'451302112000',0,'2023-08-08 02:23:59'),(30566,'/29312/30548/30549/',30549,'street','陶邓镇',4,'451302113000',0,'2023-08-08 02:23:59'),(30567,'/29312/30548/30549/',30549,'street','石牙镇',4,'451302114000',0,'2023-08-08 02:23:59'),(30568,'/29312/30548/30549/',30549,'street','五山镇',4,'451302115000',0,'2023-08-08 02:23:59'),(30569,'/29312/30548/30549/',30549,'street','良塘镇',4,'451302116000',0,'2023-08-08 02:23:59'),(30570,'/29312/30548/30549/',30549,'street','七洞乡',4,'451302206000',0,'2023-08-08 02:23:59'),(30571,'/29312/30548/30549/',30549,'street','南泗乡',4,'451302213000',0,'2023-08-08 02:23:59'),(30572,'/29312/30548/30549/',30549,'street','高安乡',4,'451302214000',0,'2023-08-08 02:23:59'),(30573,'/29312/30548/30549/',30549,'street','正龙乡',4,'451302216000',0,'2023-08-08 02:23:59'),(30574,'/29312/30548/30549/',30549,'street','来华投资区',4,'451302402000',0,'2023-08-08 02:23:59'),(30575,'/29312/30548/',30548,'area','忻城县',3,'451321000000',12,'2023-08-08 02:23:59'),(30576,'/29312/30548/30575/',30575,'street','城关镇',4,'451321100000',0,'2023-08-08 02:23:59'),(30577,'/29312/30548/30575/',30575,'street','大塘镇',4,'4513211010
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (31648,'/30979/30980/31630/',31630,'street','沧沟乡',4,'500156204000',0,'2023-08-08 02:24:01'),(31649,'/30979/30980/31630/',31630,'street','文复苗族土家族乡',4,'500156205000',0,'2023-08-08 02:24:01'),(31650,'/30979/30980/31630/',31630,'street','土地乡',4,'500156206000',0,'2023-08-08 02:24:01'),(31651,'/30979/30980/31630/',31630,'street','白云乡',4,'500156207000',0,'2023-08-08 02:24:01'),(31652,'/30979/30980/31630/',31630,'street','后坪苗族土家族乡',4,'500156208000',0,'2023-08-08 02:24:01'),(31653,'/30979/30980/31630/',31630,'street','浩口苗族仡佬族乡',4,'500156209000',0,'2023-08-08 02:24:01'),(31654,'/30979/30980/31630/',31630,'street','接龙乡',4,'500156210000',0,'2023-08-08 02:24:01'),(31655,'/30979/30980/31630/',31630,'street','赵家乡',4,'500156211000',0,'2023-08-08 02:24:01'),(31656,'/30979/30980/31630/',31630,'street','大洞河乡',4,'500156212000',0,'2023-08-08 02:24:01'),(31657,'/30979/',30979,'city','',2,'500200000000',12,'2023-08-08 02:24:01'),(31658,'/30979/31657/',31657,'area','城口县',3,'500229000000',25,'2023-08-08 02:24:01'),(31659,'/30979/31657/31658/',31658,'street','葛城街道',4,'500229001000',0,'2023-08-08 02:24:01'),(31660,'/30979/31657/31658/',31658,'street','复兴街道',4,'500229002000',0,'2023-08-08 02:24:01'),(31661,'/30979/31657/31658/',31658,'street','巴山镇',4,'500229102000',0,'2023-08-08 02:24:01'),(31662,'/30979/31657/31658/',31658,'street','坪坝镇',4,'500229103000',0,'2023-08-08 02:24:01'),(31663,'/30979/31657/31658/',31658,'street','庙坝镇',4,'500229104000',0,'2023-08-08 02:24:01'),(31664,'/30979/31657/31658/',31658,'street','明通镇',4,'500229105000',0,'2023-08-08 02:24:01'),(31665,'/30979/31657/31658/',31658,'street','修齐镇',4,'500229106000',0,'2023-08-08 02:24:01'),(31666,'/30979/31657/31658/',31658,'street','高观镇',4,'500229107000',0,'2023-08-08 02:24:01'),(31667,'/30979/31657/31658/',31658,'street','高燕镇',4,'500229108000',0,'2023-08-08 02:24:01'),(31668,'/30979/31657/31658/',31658,'street','东安镇',4,'500229109000',0,'2023-08-08 02:24:01'),(31669,'/30979/31657/31658/',31658,'street','咸宜镇',4,'500229110000',0,'2023-08-08 02:24:01'),(31670,'/30979/31657/31658/',31658,'street','高楠镇',4,'500229111000',0,'2023-08-08 02:24:01'),(31671,'/30979/31657/31658/',31658,'street','龙田乡',4,'500229201000',0,'2023-08-08 02:24:01'),(31672,'/30979/31657/31658/',31658,'street','北屏乡',4,'500229202000',0,'2023-08-08 02:24:01'),(31673,'/30979/31657/31658/',31658,'street','左岚乡',4,'500229205000',0,'2023-08-08 02:24:01'),(31674,'/30979/31657/31658/',31658,'street','沿河乡',4,'500229208000',0,'2023-08-08 02:24:01'),(31675,'/30979/31657/31658/',31658,'street','双河乡',4,'500229210000',0,'2023-08-08 02:24:01'),(31676,'/30979/31657/31658/',31658,'street','蓼子乡',4,'500229211000',0,'2023-08-08 02:24:01'),(31677,'/30979/31657/31658/',31658,'street','鸡鸣乡',4,'500229212000',0,'2023-08-08 02:24:01'),(31678,'/30979/31657/31658/',31658,'street','周溪乡',4,'500229214000',0,'2023-08-08 02:24:01'),(31679,'/30979/31657/31658/',31658,'street','明中乡',4,'500229216000',0,'2023-08-08 02:24:01'),(31680,'/30979/31657/31658/',31658,'street','治平乡',4,'500229217000',0,'2023-08-08 02:24:01'),(31681,'/30979/31657/31658/',31658,'street','岚天乡',4,'500229219000',0,'2023-08-08 02:24:01'),(31682,'/30979/31657/31658/',31658,'street','厚坪乡',4,'500229220000',0,'2023-08-08 02:24:01'),(31683,'/30979/31657/31658/',31658,'street','河鱼乡',4,'500229221000',0,'2023-08-08 02:24:01'),(31684,'/30979/31657/',31657,'area','丰都县',3,'500230000000',30,'2023-08-08 02:24:01'),(31685,'/30979/31657/31684/',31684,'street','三合街道',4,'500230001000',0,'2023-08-08 02:24:01'),(31686,'/30979/31657/31684/',31684,'street','名山街道',4,'500230002000',0,'2023-08-08 02:24:01'),(31687,'/30979/31657/31684/',31684,'street','虎威镇',4,'500230101000',0,'2023-08-08 02:24:01'),(31688,'/30979/31657/31684/',31684,'st
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (32759,'/32051/32711/32753/',32753,'street','三元镇',4,'510722109000',0,'2023-08-08 02:24:02'),(32760,'/32051/32711/32753/',32753,'street','秋林镇',4,'510722110000',0,'2023-08-08 02:24:02'),(32761,'/32051/32711/32753/',32753,'street','新德镇',4,'510722112000',0,'2023-08-08 02:24:02'),(32762,'/32051/32711/32753/',32753,'street','新生镇',4,'510722113000',0,'2023-08-08 02:24:02'),(32763,'/32051/32711/32753/',32753,'street','鲁班镇',4,'510722114000',0,'2023-08-08 02:24:02'),(32764,'/32051/32711/32753/',32753,'street','景福镇',4,'510722115000',0,'2023-08-08 02:24:02'),(32765,'/32051/32711/32753/',32753,'street','紫河镇',4,'510722116000',0,'2023-08-08 02:24:02'),(32766,'/32051/32711/32753/',32753,'street','观桥镇',4,'510722118000',0,'2023-08-08 02:24:02'),(32767,'/32051/32711/32753/',32753,'street','郪江镇',4,'510722119000',0,'2023-08-08 02:24:02'),(32768,'/32051/32711/32753/',32753,'street','中新镇',4,'510722120000',0,'2023-08-08 02:24:02'),(32769,'/32051/32711/32753/',32753,'street','古井镇',4,'510722121000',0,'2023-08-08 02:24:02'),(32770,'/32051/32711/32753/',32753,'street','西平镇',4,'510722123000',0,'2023-08-08 02:24:02'),(32771,'/32051/32711/32753/',32753,'street','八洞镇',4,'510722124000',0,'2023-08-08 02:24:02'),(32772,'/32051/32711/32753/',32753,'street','乐安镇',4,'510722126000',0,'2023-08-08 02:24:02'),(32773,'/32051/32711/32753/',32753,'street','建平镇',4,'510722127000',0,'2023-08-08 02:24:02'),(32774,'/32051/32711/32753/',32753,'street','中太镇',4,'510722131000',0,'2023-08-08 02:24:02'),(32775,'/32051/32711/32753/',32753,'street','金石镇',4,'510722132000',0,'2023-08-08 02:24:02'),(32776,'/32051/32711/32753/',32753,'street','新鲁镇',4,'510722133000',0,'2023-08-08 02:24:02'),(32777,'/32051/32711/32753/',32753,'street','刘营镇',4,'510722135000',0,'2023-08-08 02:24:02'),(32778,'/32051/32711/32753/',32753,'street','灵兴镇',4,'510722136000',0,'2023-08-08 02:24:02'),(32779,'/32051/32711/32753/',32753,'street','芦溪镇',4,'510722137000',0,'2023-08-08 02:24:02'),(32780,'/32051/32711/32753/',32753,'street','立新镇',4,'510722138000',0,'2023-08-08 02:24:02'),(32781,'/32051/32711/32753/',32753,'street','永明镇',4,'510722140000',0,'2023-08-08 02:24:02'),(32782,'/32051/32711/32753/',32753,'street','建中镇',4,'510722141000',0,'2023-08-08 02:24:02'),(32783,'/32051/32711/32753/',32753,'street','老马镇',4,'510722145000',0,'2023-08-08 02:24:02'),(32784,'/32051/32711/32753/',32753,'street','北坝镇',4,'510722151000',0,'2023-08-08 02:24:02'),(32785,'/32051/32711/32753/',32753,'street','忠孝乡',4,'510722201000',0,'2023-08-08 02:24:02'),(32786,'/32051/32711/32753/',32753,'street','断石乡',4,'510722204000',0,'2023-08-08 02:24:02'),(32787,'/32051/32711/',32711,'area','盐亭县',3,'510723000000',17,'2023-08-08 02:24:02'),(32788,'/32051/32711/32787/',32787,'street','凤灵街道',4,'510723001000',0,'2023-08-08 02:24:02'),(32789,'/32051/32711/32787/',32787,'street','云溪镇',4,'510723100000',0,'2023-08-08 02:24:02'),(32790,'/32051/32711/32787/',32787,'street','玉龙镇',4,'510723101000',0,'2023-08-08 02:24:02'),(32791,'/32051/32711/32787/',32787,'street','富驿镇',4,'510723102000',0,'2023-08-08 02:24:02'),(32792,'/32051/32711/32787/',32787,'street','金孔镇',4,'510723103000',0,'2023-08-08 02:24:02'),(32793,'/32051/32711/32787/',32787,'street','黄甸镇',4,'510723105000',0,'2023-08-08 02:24:02'),(32794,'/32051/32711/32787/',32787,'street','巨龙镇',4,'510723113000',0,'2023-08-08 02:24:02'),(32795,'/32051/32711/32787/',32787,'street','高渠镇',4,'510723114000',0,'2023-08-08 02:24:02'),(32796,'/32051/32711/32787/',32787,'street','鹅溪镇',4,'510723115000',0,'2023-08-08 02:24:02'),(32797,'/32051/32711/32787/',32787,'street','岐伯镇',4,'510723116000',0,'2023-08-08 02:24:02'),(32798,'/32051/32711/32787/',32787,'street','文通镇',4,'510723117000',0,'2023-08-08 02:24:02'),(32799,'/32051/32711/32787/',32787,'street','永泰镇',4,'5107231180
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (33872,'/32051/33862/33863/',33863,'street','浓溪镇',4,'511602103000',0,'2023-08-08 02:24:04'),(33873,'/32051/33862/33863/',33863,'street','悦来镇',4,'511602104000',0,'2023-08-08 02:24:04'),(33874,'/32051/33862/33863/',33863,'street','兴平镇',4,'511602105000',0,'2023-08-08 02:24:04'),(33875,'/32051/33862/33863/',33863,'street','井河镇',4,'511602106000',0,'2023-08-08 02:24:04'),(33876,'/32051/33862/33863/',33863,'street','花桥镇',4,'511602107000',0,'2023-08-08 02:24:04'),(33877,'/32051/33862/33863/',33863,'street','龙台镇',4,'511602108000',0,'2023-08-08 02:24:04'),(33878,'/32051/33862/33863/',33863,'street','肖溪镇',4,'511602109000',0,'2023-08-08 02:24:04'),(33879,'/32051/33862/33863/',33863,'street','恒升镇',4,'511602110000',0,'2023-08-08 02:24:04'),(33880,'/32051/33862/33863/',33863,'street','石笋镇',4,'511602111000',0,'2023-08-08 02:24:04'),(33881,'/32051/33862/33863/',33863,'street','白市镇',4,'511602112000',0,'2023-08-08 02:24:04'),(33882,'/32051/33862/33863/',33863,'street','大安镇',4,'511602113000',0,'2023-08-08 02:24:04'),(33883,'/32051/33862/33863/',33863,'street','穿石镇',4,'511602121000',0,'2023-08-08 02:24:04'),(33884,'/32051/33862/33863/',33863,'street','大龙镇',4,'511602122000',0,'2023-08-08 02:24:04'),(33885,'/32051/33862/33863/',33863,'street','东岳镇',4,'511602123000',0,'2023-08-08 02:24:04'),(33886,'/32051/33862/33863/',33863,'street','龙安乡',4,'511602207000',0,'2023-08-08 02:24:04'),(33887,'/32051/33862/33863/',33863,'street','彭家乡',4,'511602208000',0,'2023-08-08 02:24:04'),(33888,'/32051/33862/33863/',33863,'street','白马乡',4,'511602216000',0,'2023-08-08 02:24:04'),(33889,'/32051/33862/',33862,'area','前锋区',3,'511603000000',12,'2023-08-08 02:24:04'),(33890,'/32051/33862/33889/',33889,'street','奎阁街道',4,'511603001000',0,'2023-08-08 02:24:04'),(33891,'/32051/33862/33889/',33889,'street','大佛寺街道',4,'511603002000',0,'2023-08-08 02:24:04'),(33892,'/32051/33862/33889/',33889,'street','龙塘街道',4,'511603003000',0,'2023-08-08 02:24:04'),(33893,'/32051/33862/33889/',33889,'street','新桥街道',4,'511603004000',0,'2023-08-08 02:24:04'),(33894,'/32051/33862/33889/',33889,'street','桂兴镇',4,'511603101000',0,'2023-08-08 02:24:04'),(33895,'/32051/33862/33889/',33889,'street','观阁镇',4,'511603102000',0,'2023-08-08 02:24:04'),(33896,'/32051/33862/33889/',33889,'street','广兴镇',4,'511603103000',0,'2023-08-08 02:24:04'),(33897,'/32051/33862/33889/',33889,'street','代市镇',4,'511603104000',0,'2023-08-08 02:24:04'),(33898,'/32051/33862/33889/',33889,'street','观塘镇',4,'511603105000',0,'2023-08-08 02:24:04'),(33899,'/32051/33862/33889/',33889,'street','护安镇',4,'511603106000',0,'2023-08-08 02:24:04'),(33900,'/32051/33862/33889/',33889,'street','龙滩镇',4,'511603107000',0,'2023-08-08 02:24:04'),(33901,'/32051/33862/33889/',33889,'street','虎城镇',4,'511603108000',0,'2023-08-08 02:24:04'),(33902,'/32051/33862/',33862,'area','岳池县',3,'511621000000',27,'2023-08-08 02:24:04'),(33903,'/32051/33862/33902/',33902,'street','九龙街道',4,'511621001000',0,'2023-08-08 02:24:04'),(33904,'/32051/33862/33902/',33902,'street','朝阳街道',4,'511621002000',0,'2023-08-08 02:24:04'),(33905,'/32051/33862/33902/',33902,'street','花园镇',4,'511621101000',0,'2023-08-08 02:24:04'),(33906,'/32051/33862/33902/',33902,'street','坪滩镇',4,'511621102000',0,'2023-08-08 02:24:04'),(33907,'/32051/33862/33902/',33902,'street','龙孔镇',4,'511621103000',0,'2023-08-08 02:24:04'),(33908,'/32051/33862/33902/',33902,'street','镇裕镇',4,'511621104000',0,'2023-08-08 02:24:04'),(33909,'/32051/33862/33902/',33902,'street','白庙镇',4,'511621105000',0,'2023-08-08 02:24:04'),(33910,'/32051/33862/33902/',33902,'street','酉溪镇',4,'511621106000',0,'2023-08-08 02:24:04'),(33911,'/32051/33862/33902/',33902,'street','同兴镇',4,'511621107000',0,'2023-08-08 02:24:04'),(33912,'/32051/33862/33902/',33902,'street','兴隆镇',4,
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (34984,'/32051/34737/34968/',34968,'street','曲登乡',4,'513334210000',0,'2023-08-08 02:24:06'),(34985,'/32051/34737/34968/',34968,'street','上木拉乡',4,'513334213000',0,'2023-08-08 02:24:06'),(34986,'/32051/34737/34968/',34968,'street','濯桑乡',4,'513334216000',0,'2023-08-08 02:24:06'),(34987,'/32051/34737/34968/',34968,'street','藏坝乡',4,'513334218000',0,'2023-08-08 02:24:06'),(34988,'/32051/34737/34968/',34968,'street','格木乡',4,'513334219000',0,'2023-08-08 02:24:06'),(34989,'/32051/34737/34968/',34968,'street','麦洼乡',4,'513334221000',0,'2023-08-08 02:24:06'),(34990,'/32051/34737/34968/',34968,'street','德巫乡',4,'513334222000',0,'2023-08-08 02:24:06'),(34991,'/32051/34737/',34737,'area','巴塘县',3,'513335000000',17,'2023-08-08 02:24:06'),(34992,'/32051/34737/34991/',34991,'street','夏邛镇',4,'513335100000',0,'2023-08-08 02:24:06'),(34993,'/32051/34737/34991/',34991,'street','中咱镇',4,'513335101000',0,'2023-08-08 02:24:06'),(34994,'/32051/34737/34991/',34991,'street','措拉镇',4,'513335102000',0,'2023-08-08 02:24:06'),(34995,'/32051/34737/34991/',34991,'street','甲英镇',4,'513335103000',0,'2023-08-08 02:24:06'),(34996,'/32051/34737/34991/',34991,'street','地巫镇',4,'513335104000',0,'2023-08-08 02:24:06'),(34997,'/32051/34737/34991/',34991,'street','拉哇乡',4,'513335200000',0,'2023-08-08 02:24:06'),(34998,'/32051/34737/34991/',34991,'street','竹巴龙乡',4,'513335202000',0,'2023-08-08 02:24:06'),(34999,'/32051/34737/34991/',34991,'street','苏哇龙乡',4,'513335204000',0,'2023-08-08 02:24:06'),(35000,'/32051/34737/34991/',34991,'street','昌波乡',4,'513335205000',0,'2023-08-08 02:24:06'),(35001,'/32051/34737/34991/',34991,'street','亚日贡乡',4,'513335208000',0,'2023-08-08 02:24:06'),(35002,'/32051/34737/34991/',34991,'street','波密乡',4,'513335209000',0,'2023-08-08 02:24:06'),(35003,'/32051/34737/34991/',34991,'street','莫多乡',4,'513335210000',0,'2023-08-08 02:24:06'),(35004,'/32051/34737/34991/',34991,'street','松多乡',4,'513335211000',0,'2023-08-08 02:24:06'),(35005,'/32051/34737/34991/',34991,'street','波戈溪乡',4,'513335212000',0,'2023-08-08 02:24:06'),(35006,'/32051/34737/34991/',34991,'street','茶洛乡',4,'513335215000',0,'2023-08-08 02:24:06'),(35007,'/32051/34737/34991/',34991,'street','列衣乡',4,'513335216000',0,'2023-08-08 02:24:06'),(35008,'/32051/34737/34991/',34991,'street','德达乡',4,'513335217000',0,'2023-08-08 02:24:06'),(35009,'/32051/34737/',34737,'area','乡城县',3,'513336000000',10,'2023-08-08 02:24:06'),(35010,'/32051/34737/35009/',35009,'street','香巴拉镇',4,'513336100000',0,'2023-08-08 02:24:06'),(35011,'/32051/34737/35009/',35009,'street','青德镇',4,'513336101000',0,'2023-08-08 02:24:06'),(35012,'/32051/34737/35009/',35009,'street','热打镇',4,'513336103000',0,'2023-08-08 02:24:06'),(35013,'/32051/34737/35009/',35009,'street','沙贡乡',4,'513336201000',0,'2023-08-08 02:24:06'),(35014,'/32051/34737/35009/',35009,'street','水洼乡',4,'513336202000',0,'2023-08-08 02:24:06'),(35015,'/32051/34737/35009/',35009,'street','然乌乡',4,'513336205000',0,'2023-08-08 02:24:06'),(35016,'/32051/34737/35009/',35009,'street','洞松乡',4,'513336206000',0,'2023-08-08 02:24:06'),(35017,'/32051/34737/35009/',35009,'street','定波乡',4,'513336208000',0,'2023-08-08 02:24:06'),(35018,'/32051/34737/35009/',35009,'street','正斗乡',4,'513336209000',0,'2023-08-08 02:24:06'),(35019,'/32051/34737/35009/',35009,'street','白依乡',4,'513336210000',0,'2023-08-08 02:24:06'),(35020,'/32051/34737/',34737,'area','稻城县',3,'513337000000',13,'2023-08-08 02:24:06'),(35021,'/32051/34737/35020/',35020,'street','金珠镇',4,'513337100000',0,'2023-08-08 02:24:06'),(35022,'/32051/34737/35020/',35020,'street','香格里拉镇',4,'513337101000',0,'2023-08-08 02:24:06'),(35023,'/32051/34737/35020/',35020,'street','桑堆镇',4,'513337102000',0,'2023-08-08 02:24:06'),(35024,'/32051/34737/35020/',35020,'street','吉呷镇',4,'513
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (36090,'/35367/35990/36081/',36081,'street','岚头镇',4,'520523105000',0,'2023-08-08 02:24:08'),(36091,'/35367/35990/36081/',36081,'street','清池镇',4,'520523106000',0,'2023-08-08 02:24:08'),(36092,'/35367/35990/36081/',36081,'street','柳塘镇',4,'520523107000',0,'2023-08-08 02:24:08'),(36093,'/35367/35990/36081/',36081,'street','平坝镇',4,'520523108000',0,'2023-08-08 02:24:08'),(36094,'/35367/35990/36081/',36081,'street','源村镇',4,'520523109000',0,'2023-08-08 02:24:08'),(36095,'/35367/35990/36081/',36081,'street','高坪镇',4,'520523110000',0,'2023-08-08 02:24:08'),(36096,'/35367/35990/36081/',36081,'street','化觉镇',4,'520523111000',0,'2023-08-08 02:24:08'),(36097,'/35367/35990/36081/',36081,'street','茶园镇',4,'520523112000',0,'2023-08-08 02:24:08'),(36098,'/35367/35990/36081/',36081,'street','木孔镇',4,'520523113000',0,'2023-08-08 02:24:08'),(36099,'/35367/35990/36081/',36081,'street','长坝镇',4,'520523114000',0,'2023-08-08 02:24:08'),(36100,'/35367/35990/36081/',36081,'street','后山镇',4,'520523115000',0,'2023-08-08 02:24:08'),(36101,'/35367/35990/36081/',36081,'street','石场苗族彝族乡',4,'520523202000',0,'2023-08-08 02:24:08'),(36102,'/35367/35990/36081/',36081,'street','桂花乡',4,'520523203000',0,'2023-08-08 02:24:08'),(36103,'/35367/35990/36081/',36081,'street','太平彝族苗族乡',4,'520523204000',0,'2023-08-08 02:24:08'),(36104,'/35367/35990/36081/',36081,'street','安洛苗族彝族满族乡',4,'520523215000',0,'2023-08-08 02:24:08'),(36105,'/35367/35990/36081/',36081,'street','新化苗族彝族满族乡',4,'520523216000',0,'2023-08-08 02:24:08'),(36106,'/35367/35990/36081/',36081,'street','大田彝族苗族布依族乡',4,'520523217000',0,'2023-08-08 02:24:08'),(36107,'/35367/35990/36081/',36081,'street','马路彝族苗族乡',4,'520523218000',0,'2023-08-08 02:24:08'),(36108,'/35367/35990/',35990,'area','织金县',3,'520524000000',33,'2023-08-08 02:24:08'),(36109,'/35367/35990/36108/',36108,'street','双堰街道',4,'520524001000',0,'2023-08-08 02:24:08'),(36110,'/35367/35990/36108/',36108,'street','文腾街道',4,'520524002000',0,'2023-08-08 02:24:08'),(36111,'/35367/35990/36108/',36108,'street','金凤街道',4,'520524003000',0,'2023-08-08 02:24:08'),(36112,'/35367/35990/36108/',36108,'street','三甲街道',4,'520524004000',0,'2023-08-08 02:24:08'),(36113,'/35367/35990/36108/',36108,'street','绮陌街道',4,'520524005000',0,'2023-08-08 02:24:08'),(36114,'/35367/35990/36108/',36108,'street','八步街道',4,'520524006000',0,'2023-08-08 02:24:08'),(36115,'/35367/35990/36108/',36108,'street','惠民街道',4,'520524007000',0,'2023-08-08 02:24:08'),(36116,'/35367/35990/36108/',36108,'street','桂果镇',4,'520524101000',0,'2023-08-08 02:24:08'),(36117,'/35367/35990/36108/',36108,'street','牛场镇',4,'520524102000',0,'2023-08-08 02:24:08'),(36118,'/35367/35990/36108/',36108,'street','猫场镇',4,'520524103000',0,'2023-08-08 02:24:08'),(36119,'/35367/35990/36108/',36108,'street','化起镇',4,'520524104000',0,'2023-08-08 02:24:08'),(36120,'/35367/35990/36108/',36108,'street','龙场镇',4,'520524105000',0,'2023-08-08 02:24:08'),(36121,'/35367/35990/36108/',36108,'street','以那镇',4,'520524107000',0,'2023-08-08 02:24:08'),(36122,'/35367/35990/36108/',36108,'street','三塘镇',4,'520524108000',0,'2023-08-08 02:24:08'),(36123,'/35367/35990/36108/',36108,'street','阿弓镇',4,'520524109000',0,'2023-08-08 02:24:08'),(36124,'/35367/35990/36108/',36108,'street','珠藏镇',4,'520524110000',0,'2023-08-08 02:24:08'),(36125,'/35367/35990/36108/',36108,'street','中寨镇',4,'520524111000',0,'2023-08-08 02:24:08'),(36126,'/35367/35990/36108/',36108,'street','马场镇',4,'520524112000',0,'2023-08-08 02:24:08'),(36127,'/35367/35990/36108/',36108,'street','板桥镇',4,'520524113000',0,'2023-08-08 02:24:08'),(36128,'/35367/35990/36108/',36108,'street','白泥镇',4,'520524114000',0,'2023-08-08 02:24:08'),(36129,'/35367/35990/36108/',36108,'street','少普镇',
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (37197,'/36975/37138/37191/',37191,'street','彩云镇',4,'530323104000',0,'2023-08-08 02:24:10'),(37198,'/36975/37138/37191/',37191,'street','竹基镇',4,'530323105000',0,'2023-08-08 02:24:10'),(37199,'/36975/37138/37191/',37191,'street','龙庆彝族壮族乡',4,'530323202000',0,'2023-08-08 02:24:10'),(37200,'/36975/37138/37191/',37191,'street','五龙壮族乡',4,'530323203000',0,'2023-08-08 02:24:10'),(37201,'/36975/37138/37191/',37191,'street','高良壮族苗族瑶族乡',4,'530323204000',0,'2023-08-08 02:24:10'),(37202,'/36975/37138/',37138,'area','罗平县',3,'530324000000',13,'2023-08-08 02:24:10'),(37203,'/36975/37138/37202/',37202,'street','罗雄街道',4,'530324001000',0,'2023-08-08 02:24:10'),(37204,'/36975/37138/37202/',37202,'street','腊山街道',4,'530324002000',0,'2023-08-08 02:24:10'),(37205,'/36975/37138/37202/',37202,'street','九龙街道',4,'530324003000',0,'2023-08-08 02:24:10'),(37206,'/36975/37138/37202/',37202,'street','板桥镇',4,'530324102000',0,'2023-08-08 02:24:10'),(37207,'/36975/37138/37202/',37202,'street','马街镇',4,'530324103000',0,'2023-08-08 02:24:10'),(37208,'/36975/37138/37202/',37202,'street','富乐镇',4,'530324104000',0,'2023-08-08 02:24:10'),(37209,'/36975/37138/37202/',37202,'street','阿岗镇',4,'530324106000',0,'2023-08-08 02:24:10'),(37210,'/36975/37138/37202/',37202,'street','大水井乡',4,'530324201000',0,'2023-08-08 02:24:10'),(37211,'/36975/37138/37202/',37202,'street','鲁布革布依族苗族乡',4,'530324202000',0,'2023-08-08 02:24:10'),(37212,'/36975/37138/37202/',37202,'street','旧屋基彝族乡',4,'530324203000',0,'2023-08-08 02:24:10'),(37213,'/36975/37138/37202/',37202,'street','钟山乡',4,'530324204000',0,'2023-08-08 02:24:10'),(37214,'/36975/37138/37202/',37202,'street','长底布依族乡',4,'530324205000',0,'2023-08-08 02:24:10'),(37215,'/36975/37138/37202/',37202,'street','老厂乡',4,'530324206000',0,'2023-08-08 02:24:10'),(37216,'/36975/37138/',37138,'area','富源县',3,'530325000000',12,'2023-08-08 02:24:10'),(37217,'/36975/37138/37216/',37216,'street','中安街道',4,'530325001000',0,'2023-08-08 02:24:10'),(37218,'/36975/37138/37216/',37216,'street','胜境街道',4,'530325002000',0,'2023-08-08 02:24:10'),(37219,'/36975/37138/37216/',37216,'street','营上镇',4,'530325102000',0,'2023-08-08 02:24:10'),(37220,'/36975/37138/37216/',37216,'street','黄泥河镇',4,'530325103000',0,'2023-08-08 02:24:10'),(37221,'/36975/37138/37216/',37216,'street','竹园镇',4,'530325104000',0,'2023-08-08 02:24:10'),(37222,'/36975/37138/37216/',37216,'street','后所镇',4,'530325105000',0,'2023-08-08 02:24:10'),(37223,'/36975/37138/37216/',37216,'street','大河镇',4,'530325106000',0,'2023-08-08 02:24:10'),(37224,'/36975/37138/37216/',37216,'street','墨红镇',4,'530325107000',0,'2023-08-08 02:24:10'),(37225,'/36975/37138/37216/',37216,'street','富村镇',4,'530325108000',0,'2023-08-08 02:24:10'),(37226,'/36975/37138/37216/',37216,'street','十八连山镇',4,'530325109000',0,'2023-08-08 02:24:10'),(37227,'/36975/37138/37216/',37216,'street','老厂镇',4,'530325110000',0,'2023-08-08 02:24:10'),(37228,'/36975/37138/37216/',37216,'street','古敢水族乡',4,'530325201000',0,'2023-08-08 02:24:10'),(37229,'/36975/37138/',37138,'area','会泽县',3,'530326000000',25,'2023-08-08 02:24:10'),(37230,'/36975/37138/37229/',37229,'street','古城街道',4,'530326001000',0,'2023-08-08 02:24:10'),(37231,'/36975/37138/37229/',37229,'street','宝云街道',4,'530326002000',0,'2023-08-08 02:24:10'),(37232,'/36975/37138/37229/',37229,'street','金钟街道',4,'530326003000',0,'2023-08-08 02:24:10'),(37233,'/36975/37138/37229/',37229,'street','以礼街道',4,'530326004000',0,'2023-08-08 02:24:10'),(37234,'/36975/37138/37229/',37229,'street','钟屏街道',4,'530326005000',0,'2023-08-08 02:24:10'),(37235,'/36975/37138/37229/',37229,'street','娜姑镇',4,'530326102000',0,'2023-08-08 02:24:10'),(37236,'/36975/37138/37229/',37229,'street','迤车镇',4,'53032
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (38307,'/36975/38278/38300/',38300,'street','勐宋乡',4,'532822201000',0,'2023-08-08 02:24:12'),(38308,'/36975/38278/38300/',38300,'street','勐往乡',4,'532822202000',0,'2023-08-08 02:24:12'),(38309,'/36975/38278/38300/',38300,'street','格朗和哈尼族乡',4,'532822203000',0,'2023-08-08 02:24:12'),(38310,'/36975/38278/38300/',38300,'street','布朗山布朗族乡',4,'532822204000',0,'2023-08-08 02:24:12'),(38311,'/36975/38278/38300/',38300,'street','西定哈尼族布朗族乡',4,'532822205000',0,'2023-08-08 02:24:12'),(38312,'/36975/38278/38300/',38300,'street','黎明农场',4,'532822401000',0,'2023-08-08 02:24:12'),(38313,'/36975/38278/',38278,'area','勐腊县',3,'532823000000',14,'2023-08-08 02:24:12'),(38314,'/36975/38278/38313/',38313,'street','勐腊镇',4,'532823101000',0,'2023-08-08 02:24:12'),(38315,'/36975/38278/38313/',38313,'street','勐捧镇',4,'532823102000',0,'2023-08-08 02:24:12'),(38316,'/36975/38278/38313/',38313,'street','勐满镇',4,'532823103000',0,'2023-08-08 02:24:12'),(38317,'/36975/38278/38313/',38313,'street','勐仑镇',4,'532823104000',0,'2023-08-08 02:24:12'),(38318,'/36975/38278/38313/',38313,'street','磨憨镇',4,'532823105000',0,'2023-08-08 02:24:12'),(38319,'/36975/38278/38313/',38313,'street','勐伴镇',4,'532823106000',0,'2023-08-08 02:24:12'),(38320,'/36975/38278/38313/',38313,'street','关累镇',4,'532823107000',0,'2023-08-08 02:24:12'),(38321,'/36975/38278/38313/',38313,'street','易武镇',4,'532823108000',0,'2023-08-08 02:24:12'),(38322,'/36975/38278/38313/',38313,'street','象明彝族乡',4,'532823202000',0,'2023-08-08 02:24:12'),(38323,'/36975/38278/38313/',38313,'street','瑶区瑶族乡',4,'532823203000',0,'2023-08-08 02:24:12'),(38324,'/36975/38278/38313/',38313,'street','勐腊农场',4,'532823401000',0,'2023-08-08 02:24:12'),(38325,'/36975/38278/38313/',38313,'street','勐捧农场',4,'532823402000',0,'2023-08-08 02:24:12'),(38326,'/36975/38278/38313/',38313,'street','勐满农场',4,'532823403000',0,'2023-08-08 02:24:12'),(38327,'/36975/38278/38313/',38313,'street','勐醒农场',4,'532823404000',0,'2023-08-08 02:24:12'),(38328,'/36975/',36975,'city','大理白族自治州',2,'532900000000',12,'2023-08-08 02:24:12'),(38329,'/36975/38328/',38328,'area','大理市',3,'532901000000',13,'2023-08-08 02:24:12'),(38330,'/36975/38328/38329/',38329,'street','下关街道',4,'532901003000',0,'2023-08-08 02:24:12'),(38331,'/36975/38328/38329/',38329,'street','太和街道',4,'532901004000',0,'2023-08-08 02:24:12'),(38332,'/36975/38328/38329/',38329,'street','满江街道',4,'532901005000',0,'2023-08-08 02:24:12'),(38333,'/36975/38328/38329/',38329,'street','大理镇',4,'532901102000',0,'2023-08-08 02:24:12'),(38334,'/36975/38328/38329/',38329,'street','凤仪镇',4,'532901103000',0,'2023-08-08 02:24:12'),(38335,'/36975/38328/38329/',38329,'street','喜洲镇',4,'532901104000',0,'2023-08-08 02:24:12'),(38336,'/36975/38328/38329/',38329,'street','海东镇',4,'532901105000',0,'2023-08-08 02:24:12'),(38337,'/36975/38328/38329/',38329,'street','挖色镇',4,'532901106000',0,'2023-08-08 02:24:12'),(38338,'/36975/38328/38329/',38329,'street','湾桥镇',4,'532901107000',0,'2023-08-08 02:24:12'),(38339,'/36975/38328/38329/',38329,'street','银桥镇',4,'532901108000',0,'2023-08-08 02:24:12'),(38340,'/36975/38328/38329/',38329,'street','双廊镇',4,'532901109000',0,'2023-08-08 02:24:12'),(38341,'/36975/38328/38329/',38329,'street','上关镇',4,'532901110000',0,'2023-08-08 02:24:12'),(38342,'/36975/38328/38329/',38329,'street','太邑彝族乡',4,'532901201000',0,'2023-08-08 02:24:12'),(38343,'/36975/38328/',38328,'area','漾濞彝族自治县',3,'532922000000',9,'2023-08-08 02:24:12'),(38344,'/36975/38328/38343/',38343,'street','苍山西镇',4,'532922101000',0,'2023-08-08 02:24:12'),(38345,'/36975/38328/38343/',38343,'street','漾江镇',4,'532922102000',0,'2023-08-08 02:24:12'),(38346,'/36975/38328/38343/',38343,'street','平坡镇',4,'532922103000',0,'2023-08-08
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (39423,'/39374/39375/39415/',39415,'street','六村堡街道',4,'610112008000',0,'2023-08-08 02:24:14'),(39424,'/39374/39375/39415/',39415,'street','未央宫街道',4,'610112009000',0,'2023-08-08 02:24:14'),(39425,'/39374/39375/39415/',39415,'street','汉城街道',4,'610112010000',0,'2023-08-08 02:24:14'),(39426,'/39374/39375/39415/',39415,'street','未央湖街道',4,'610112011000',0,'2023-08-08 02:24:14'),(39427,'/39374/39375/39415/',39415,'street','建章路街道',4,'610112012000',0,'2023-08-08 02:24:14'),(39428,'/39374/39375/',39375,'area','雁塔区',3,'610113000000',10,'2023-08-08 02:24:14'),(39429,'/39374/39375/39428/',39428,'street','小寨路街道',4,'610113001000',0,'2023-08-08 02:24:14'),(39430,'/39374/39375/39428/',39428,'street','大雁塔街道',4,'610113002000',0,'2023-08-08 02:24:14'),(39431,'/39374/39375/39428/',39428,'street','长延堡街道',4,'610113003000',0,'2023-08-08 02:24:14'),(39432,'/39374/39375/39428/',39428,'street','电子城街道',4,'610113004000',0,'2023-08-08 02:24:14'),(39433,'/39374/39375/39428/',39428,'street','等驾坡街道',4,'610113005000',0,'2023-08-08 02:24:14'),(39434,'/39374/39375/39428/',39428,'street','鱼化寨街道',4,'610113006000',0,'2023-08-08 02:24:14'),(39435,'/39374/39375/39428/',39428,'street','丈八沟街道',4,'610113007000',0,'2023-08-08 02:24:14'),(39436,'/39374/39375/39428/',39428,'street','曲江街道',4,'610113008000',0,'2023-08-08 02:24:14'),(39437,'/39374/39375/39428/',39428,'street','杜城街道',4,'610113009000',0,'2023-08-08 02:24:14'),(39438,'/39374/39375/39428/',39428,'street','漳浒寨街道',4,'610113010000',0,'2023-08-08 02:24:14'),(39439,'/39374/39375/',39375,'area','阎良区',3,'610114000000',7,'2023-08-08 02:24:14'),(39440,'/39374/39375/39439/',39439,'street','凤凰路街道',4,'610114001000',0,'2023-08-08 02:24:14'),(39441,'/39374/39375/39439/',39439,'street','新华路街道',4,'610114002000',0,'2023-08-08 02:24:14'),(39442,'/39374/39375/39439/',39439,'street','振兴街道',4,'610114003000',0,'2023-08-08 02:24:14'),(39443,'/39374/39375/39439/',39439,'street','新兴街道',4,'610114004000',0,'2023-08-08 02:24:14'),(39444,'/39374/39375/39439/',39439,'street','北屯街道',4,'610114005000',0,'2023-08-08 02:24:14'),(39445,'/39374/39375/39439/',39439,'street','武屯街道',4,'610114006000',0,'2023-08-08 02:24:14'),(39446,'/39374/39375/39439/',39439,'street','关山街道',4,'610114007000',0,'2023-08-08 02:24:14'),(39447,'/39374/39375/',39375,'area','临潼区',3,'610115000000',23,'2023-08-08 02:24:14'),(39448,'/39374/39375/39447/',39447,'street','骊山街道',4,'610115001000',0,'2023-08-08 02:24:14'),(39449,'/39374/39375/39447/',39447,'street','秦陵街道',4,'610115002000',0,'2023-08-08 02:24:14'),(39450,'/39374/39375/39447/',39447,'street','新丰街道',4,'610115003000',0,'2023-08-08 02:24:14'),(39451,'/39374/39375/39447/',39447,'street','代王街道',4,'610115004000',0,'2023-08-08 02:24:14'),(39452,'/39374/39375/39447/',39447,'street','斜口街道',4,'610115005000',0,'2023-08-08 02:24:14'),(39453,'/39374/39375/39447/',39447,'street','行者街道',4,'610115006000',0,'2023-08-08 02:24:14'),(39454,'/39374/39375/39447/',39447,'street','零口街道',4,'610115007000',0,'2023-08-08 02:24:14'),(39455,'/39374/39375/39447/',39447,'street','相桥街道',4,'610115008000',0,'2023-08-08 02:24:14'),(39456,'/39374/39375/39447/',39447,'street','雨金街道',4,'610115009000',0,'2023-08-08 02:24:14'),(39457,'/39374/39375/39447/',39447,'street','新市街道',4,'610115010000',0,'2023-08-08 02:24:14'),(39458,'/39374/39375/39447/',39447,'street','徐杨街道',4,'610115011000',0,'2023-08-08 02:24:14'),(39459,'/39374/39375/39447/',39447,'street','西泉街道',4,'610115012000',0,'2023-08-08 02:24:14'),(39460,'/39374/39375/39447/',39447,'street','栎阳街道',4,'610115013000',0,'2023-08-08 02:24:14'),(39461,'/39374/39375/39447/',39447,'street','马额街道',4,'610115014000',0,'2023-08-08 02:24:14'),(39462,'/39374/39375/39447/',39447,
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (40535,'/39374/40363/40525/',40525,'street','砖庙镇',4,'610831109000',0,'2023-08-08 02:24:16'),(40536,'/39374/40363/40525/',40525,'street','淮宁湾镇',4,'610831110000',0,'2023-08-08 02:24:16'),(40537,'/39374/40363/40525/',40525,'street','马岔镇',4,'610831111000',0,'2023-08-08 02:24:16'),(40538,'/39374/40363/40525/',40525,'street','驼耳巷乡',4,'610831200000',0,'2023-08-08 02:24:16'),(40539,'/39374/40363/',40363,'area','神木市',3,'610881000000',20,'2023-08-08 02:24:16'),(40540,'/39374/40363/40539/',40539,'street','滨河新区街道',4,'610881001000',0,'2023-08-08 02:24:16'),(40541,'/39374/40363/40539/',40539,'street','西沙街道',4,'610881002000',0,'2023-08-08 02:24:16'),(40542,'/39374/40363/40539/',40539,'street','麟州街道',4,'610881003000',0,'2023-08-08 02:24:16'),(40543,'/39374/40363/40539/',40539,'street','迎宾路街道',4,'610881004000',0,'2023-08-08 02:24:16'),(40544,'/39374/40363/40539/',40539,'street','永兴街道',4,'610881005000',0,'2023-08-08 02:24:16'),(40545,'/39374/40363/40539/',40539,'street','西沟街道',4,'610881006000',0,'2023-08-08 02:24:16'),(40546,'/39374/40363/40539/',40539,'street','高家堡镇',4,'610881101000',0,'2023-08-08 02:24:16'),(40547,'/39374/40363/40539/',40539,'street','店塔镇',4,'610881102000',0,'2023-08-08 02:24:16'),(40548,'/39374/40363/40539/',40539,'street','孙家岔镇',4,'610881103000',0,'2023-08-08 02:24:16'),(40549,'/39374/40363/40539/',40539,'street','大柳塔镇',4,'610881104000',0,'2023-08-08 02:24:16'),(40550,'/39374/40363/40539/',40539,'street','花石崖镇',4,'610881105000',0,'2023-08-08 02:24:16'),(40551,'/39374/40363/40539/',40539,'street','中鸡镇',4,'610881106000',0,'2023-08-08 02:24:16'),(40552,'/39374/40363/40539/',40539,'street','贺家川镇',4,'610881107000',0,'2023-08-08 02:24:16'),(40553,'/39374/40363/40539/',40539,'street','尔林兔镇',4,'610881108000',0,'2023-08-08 02:24:16'),(40554,'/39374/40363/40539/',40539,'street','万镇',4,'610881109000',0,'2023-08-08 02:24:16'),(40555,'/39374/40363/40539/',40539,'street','大保当镇',4,'610881110000',0,'2023-08-08 02:24:16'),(40556,'/39374/40363/40539/',40539,'street','马镇',4,'610881111000',0,'2023-08-08 02:24:16'),(40557,'/39374/40363/40539/',40539,'street','栏杆堡镇',4,'610881112000',0,'2023-08-08 02:24:16'),(40558,'/39374/40363/40539/',40539,'street','沙峁镇',4,'610881113000',0,'2023-08-08 02:24:16'),(40559,'/39374/40363/40539/',40539,'street','锦界镇',4,'610881114000',0,'2023-08-08 02:24:16'),(40560,'/39374/',39374,'city','安康市',2,'610900000000',10,'2023-08-08 02:24:16'),(40561,'/39374/40560/',40560,'area','汉滨区',3,'610902000000',28,'2023-08-08 02:24:16'),(40562,'/39374/40560/40561/',40561,'street','老城街道',4,'610902001000',0,'2023-08-08 02:24:16'),(40563,'/39374/40560/40561/',40561,'street','新城街道',4,'610902002000',0,'2023-08-08 02:24:16'),(40564,'/39374/40560/40561/',40561,'street','江北街道',4,'610902003000',0,'2023-08-08 02:24:16'),(40565,'/39374/40560/40561/',40561,'street','建民街道',4,'610902004000',0,'2023-08-08 02:24:16'),(40566,'/39374/40560/40561/',40561,'street','关庙镇',4,'610902100000',0,'2023-08-08 02:24:16'),(40567,'/39374/40560/40561/',40561,'street','张滩镇',4,'610902101000',0,'2023-08-08 02:24:16'),(40568,'/39374/40560/40561/',40561,'street','瀛湖镇',4,'610902102000',0,'2023-08-08 02:24:16'),(40569,'/39374/40560/40561/',40561,'street','五里镇',4,'610902104000',0,'2023-08-08 02:24:16'),(40570,'/39374/40560/40561/',40561,'street','恒口镇',4,'610902107000',0,'2023-08-08 02:24:16'),(40571,'/39374/40560/40561/',40561,'street','吉河镇',4,'610902109000',0,'2023-08-08 02:24:16'),(40572,'/39374/40560/40561/',40561,'street','流水镇',4,'610902110000',0,'2023-08-08 02:24:16'),(40573,'/39374/40560/40561/',40561,'street','大竹园镇',4,'610902111000',0,'2023-08-08 02:24:16'),(40574,'/39374/40560/40561/',40561,'street','洪山镇',4,'610902112000',0,'2023-08-08 02:24:16'),(40575,'/39374/40560/40561
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (41645,'/40828/41616/41644/',41644,'street','环城镇',4,'621022100000',0,'2023-08-08 02:24:17'),(41646,'/40828/41616/41644/',41644,'street','曲子镇',4,'621022101000',0,'2023-08-08 02:24:17'),(41647,'/40828/41616/41644/',41644,'street','甜水镇',4,'621022102000',0,'2023-08-08 02:24:17'),(41648,'/40828/41616/41644/',41644,'street','木钵镇',4,'621022103000',0,'2023-08-08 02:24:17'),(41649,'/40828/41616/41644/',41644,'street','洪德镇',4,'621022104000',0,'2023-08-08 02:24:17'),(41650,'/40828/41616/41644/',41644,'street','合道镇',4,'621022105000',0,'2023-08-08 02:24:17'),(41651,'/40828/41616/41644/',41644,'street','虎洞镇',4,'621022106000',0,'2023-08-08 02:24:17'),(41652,'/40828/41616/41644/',41644,'street','毛井镇',4,'621022107000',0,'2023-08-08 02:24:17'),(41653,'/40828/41616/41644/',41644,'street','樊家川镇',4,'621022108000',0,'2023-08-08 02:24:17'),(41654,'/40828/41616/41644/',41644,'street','车道镇',4,'621022109000',0,'2023-08-08 02:24:17'),(41655,'/40828/41616/41644/',41644,'street','天池乡',4,'621022200000',0,'2023-08-08 02:24:17'),(41656,'/40828/41616/41644/',41644,'street','演武乡',4,'621022201000',0,'2023-08-08 02:24:17'),(41657,'/40828/41616/41644/',41644,'street','八珠乡',4,'621022204000',0,'2023-08-08 02:24:17'),(41658,'/40828/41616/41644/',41644,'street','耿湾乡',4,'621022206000',0,'2023-08-08 02:24:17'),(41659,'/40828/41616/41644/',41644,'street','秦团庄乡',4,'621022207000',0,'2023-08-08 02:24:18'),(41660,'/40828/41616/41644/',41644,'street','山城乡',4,'621022208000',0,'2023-08-08 02:24:18'),(41661,'/40828/41616/41644/',41644,'street','南湫乡',4,'621022209000',0,'2023-08-08 02:24:18'),(41662,'/40828/41616/41644/',41644,'street','罗山川乡',4,'621022210000',0,'2023-08-08 02:24:18'),(41663,'/40828/41616/41644/',41644,'street','小南沟乡',4,'621022212000',0,'2023-08-08 02:24:18'),(41664,'/40828/41616/41644/',41644,'street','芦家湾乡',4,'621022215000',0,'2023-08-08 02:24:18'),(41665,'/40828/41616/',41616,'area','华池县',3,'621023000000',15,'2023-08-08 02:24:18'),(41666,'/40828/41616/41665/',41665,'street','悦乐镇',4,'621023100000',0,'2023-08-08 02:24:18'),(41667,'/40828/41616/41665/',41665,'street','柔远镇',4,'621023101000',0,'2023-08-08 02:24:18'),(41668,'/40828/41616/41665/',41665,'street','元城镇',4,'621023102000',0,'2023-08-08 02:24:18'),(41669,'/40828/41616/41665/',41665,'street','南梁镇',4,'621023103000',0,'2023-08-08 02:24:18'),(41670,'/40828/41616/41665/',41665,'street','城壕镇',4,'621023104000',0,'2023-08-08 02:24:18'),(41671,'/40828/41616/41665/',41665,'street','五蛟镇',4,'621023105000',0,'2023-08-08 02:24:18'),(41672,'/40828/41616/41665/',41665,'street','上里塬乡',4,'621023202000',0,'2023-08-08 02:24:18'),(41673,'/40828/41616/41665/',41665,'street','王咀子乡',4,'621023203000',0,'2023-08-08 02:24:18'),(41674,'/40828/41616/41665/',41665,'street','白马乡',4,'621023204000',0,'2023-08-08 02:24:18'),(41675,'/40828/41616/41665/',41665,'street','怀安乡',4,'621023205000',0,'2023-08-08 02:24:18'),(41676,'/40828/41616/41665/',41665,'street','乔川乡',4,'621023206000',0,'2023-08-08 02:24:18'),(41677,'/40828/41616/41665/',41665,'street','乔河乡',4,'621023207000',0,'2023-08-08 02:24:18'),(41678,'/40828/41616/41665/',41665,'street','山庄乡',4,'621023208000',0,'2023-08-08 02:24:18'),(41679,'/40828/41616/41665/',41665,'street','林镇乡',4,'621023210000',0,'2023-08-08 02:24:18'),(41680,'/40828/41616/41665/',41665,'street','紫坊畔乡',4,'621023211000',0,'2023-08-08 02:24:18'),(41681,'/40828/41616/',41616,'area','合水县',3,'621024000000',12,'2023-08-08 02:24:18'),(41682,'/40828/41616/41681/',41681,'street','西华池镇',4,'621024100000',0,'2023-08-08 02:24:18'),(41683,'/40828/41616/41681/',41681,'street','老城镇',4,'621024101000',0,'2023-08-08 02:24:18'),(41684,'/40828/41616/41681/',41681,'street','太白镇',4,'621024102000',0,'2023-08-08 02:24:18'),(41685,'/40828/41616/41681/',41681,'street','板桥<EFBFBD>
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (42758,'/42334/42756/42757/',42757,'street','昆仑路街道',4,'632801001000',0,'2023-08-08 02:24:19'),(42759,'/42334/42756/42757/',42757,'street','黄河路街道',4,'632801002000',0,'2023-08-08 02:24:19'),(42760,'/42334/42756/42757/',42757,'street','金峰路街道',4,'632801003000',0,'2023-08-08 02:24:19'),(42761,'/42334/42756/42757/',42757,'street','河西街道',4,'632801004000',0,'2023-08-08 02:24:19'),(42762,'/42334/42756/42757/',42757,'street','西藏路街道',4,'632801005000',0,'2023-08-08 02:24:19'),(42763,'/42334/42756/42757/',42757,'street','郭勒木德镇',4,'632801100000',0,'2023-08-08 02:24:19'),(42764,'/42334/42756/42757/',42757,'street','唐古拉镇',4,'632801101000',0,'2023-08-08 02:24:19'),(42765,'/42334/42756/42757/',42757,'street','大格勒乡',4,'632801200000',0,'2023-08-08 02:24:19'),(42766,'/42334/42756/42757/',42757,'street','乌图美仁乡',4,'632801201000',0,'2023-08-08 02:24:19'),(42767,'/42334/42756/42757/',42757,'street','察尔汗工行委',4,'632801400000',0,'2023-08-08 02:24:19'),(42768,'/42334/42756/42757/',42757,'street','格尔木农垦有限公司',4,'632801401000',0,'2023-08-08 02:24:19'),(42769,'/42334/42756/',42756,'area','德令哈市',3,'632802000000',7,'2023-08-08 02:24:19'),(42770,'/42334/42756/42769/',42769,'street','河西街道',4,'632802001000',0,'2023-08-08 02:24:19'),(42771,'/42334/42756/42769/',42769,'street','河东街道',4,'632802002000',0,'2023-08-08 02:24:19'),(42772,'/42334/42756/42769/',42769,'street','火车站街道',4,'632802003000',0,'2023-08-08 02:24:19'),(42773,'/42334/42756/42769/',42769,'street','尕海镇',4,'632802100000',0,'2023-08-08 02:24:19'),(42774,'/42334/42756/42769/',42769,'street','怀头他拉镇',4,'632802101000',0,'2023-08-08 02:24:19'),(42775,'/42334/42756/42769/',42769,'street','柯鲁柯镇',4,'632802102000',0,'2023-08-08 02:24:19'),(42776,'/42334/42756/42769/',42769,'street','蓄集乡',4,'632802200000',0,'2023-08-08 02:24:19'),(42777,'/42334/42756/',42756,'area','茫崖市',3,'632803000000',3,'2023-08-08 02:24:19'),(42778,'/42334/42756/42777/',42777,'street','花土沟镇',4,'632803100000',0,'2023-08-08 02:24:19'),(42779,'/42334/42756/42777/',42777,'street','茫崖镇',4,'632803101000',0,'2023-08-08 02:24:19'),(42780,'/42334/42756/42777/',42777,'street','冷湖镇',4,'632803102000',0,'2023-08-08 02:24:19'),(42781,'/42334/42756/',42756,'area','乌兰县',3,'632821000000',5,'2023-08-08 02:24:19'),(42782,'/42334/42756/42781/',42781,'street','希里沟镇',4,'632821100000',0,'2023-08-08 02:24:19'),(42783,'/42334/42756/42781/',42781,'street','茶卡镇',4,'632821101000',0,'2023-08-08 02:24:19'),(42784,'/42334/42756/42781/',42781,'street','柯柯镇',4,'632821102000',0,'2023-08-08 02:24:19'),(42785,'/42334/42756/42781/',42781,'street','铜普镇',4,'632821103000',0,'2023-08-08 02:24:19'),(42786,'/42334/42756/42781/',42781,'street','海西州莫河畜牧场',4,'632821500000',0,'2023-08-08 02:24:19'),(42787,'/42334/42756/',42756,'area','都兰县',3,'632822000000',8,'2023-08-08 02:24:19'),(42788,'/42334/42756/42787/',42787,'street','察汉乌苏镇',4,'632822100000',0,'2023-08-08 02:24:19'),(42789,'/42334/42756/42787/',42787,'street','香日德镇',4,'632822101000',0,'2023-08-08 02:24:19'),(42790,'/42334/42756/42787/',42787,'street','夏日哈镇',4,'632822102000',0,'2023-08-08 02:24:19'),(42791,'/42334/42756/42787/',42787,'street','宗加镇',4,'632822103000',0,'2023-08-08 02:24:19'),(42792,'/42334/42756/42787/',42787,'street','热水乡',4,'632822200000',0,'2023-08-08 02:24:19'),(42793,'/42334/42756/42787/',42787,'street','香加乡',4,'632822201000',0,'2023-08-08 02:24:19'),(42794,'/42334/42756/42787/',42787,'street','沟里乡',4,'632822202000',0,'2023-08-08 02:24:19'),(42795,'/42334/42756/42787/',42787,'street','巴隆乡',4,'632822203000',0,'2023-08-08 02:24:19'),(42796,'/42334/42756/',42756,'area','天峻县',3,'632823000000',10,'2023-08-08 02:24:19'),(42797,'/42334/42756/42796/',42796,'street','新源镇',4,'632823100000',
INSERT INTO `eb_city_area` (`id`,`path`,`parent_id`,`type`,`name`,`level`,`code`,`snum`,`create_time`) VALUES (43859,'/43098/43811/43848/',43848,'street','塔尕尔其乡',4,'653122207000',0,'2023-08-08 02:24:21'),(43860,'/43098/43811/43848/',43848,'street','艾尔木东乡',4,'653122208000',0,'2023-08-08 02:24:21'),(43861,'/43098/43811/43848/',43848,'street','阿拉力乡',4,'653122209000',0,'2023-08-08 02:24:21'),(43862,'/43098/43811/43848/',43848,'street','阿拉甫乡',4,'653122210000',0,'2023-08-08 02:24:21'),(43863,'/43098/43811/43848/',43848,'street','英阿瓦提乡',4,'653122211000',0,'2023-08-08 02:24:21'),(43864,'/43098/43811/43848/',43848,'street','高新技术产业孵化园区管委会',4,'653122400000',0,'2023-08-08 02:24:21'),(43865,'/43098/43811/',43811,'area','英吉沙县',3,'653123000000',16,'2023-08-08 02:24:21'),(43866,'/43098/43811/43865/',43865,'street','英吉沙镇',4,'653123100000',0,'2023-08-08 02:24:21'),(43867,'/43098/43811/43865/',43865,'street','乌恰镇',4,'653123101000',0,'2023-08-08 02:24:21'),(43868,'/43098/43811/43865/',43865,'street','芒辛镇',4,'653123102000',0,'2023-08-08 02:24:21'),(43869,'/43098/43811/43865/',43865,'street','萨罕镇',4,'653123103000',0,'2023-08-08 02:24:21'),(43870,'/43098/43811/43865/',43865,'street','城关乡',4,'653123200000',0,'2023-08-08 02:24:21'),(43871,'/43098/43811/43865/',43865,'street','乔勒潘乡',4,'653123201000',0,'2023-08-08 02:24:21'),(43872,'/43098/43811/43865/',43865,'street','龙甫乡',4,'653123202000',0,'2023-08-08 02:24:21'),(43873,'/43098/43811/43865/',43865,'street','色提力乡',4,'653123204000',0,'2023-08-08 02:24:21'),(43874,'/43098/43811/43865/',43865,'street','英也尔乡',4,'653123206000',0,'2023-08-08 02:24:21'),(43875,'/43098/43811/43865/',43865,'street','克孜勒乡',4,'653123207000',0,'2023-08-08 02:24:21'),(43876,'/43098/43811/43865/',43865,'street','托普鲁克乡',4,'653123208000',0,'2023-08-08 02:24:21'),(43877,'/43098/43811/43865/',43865,'street','苏盖提乡',4,'653123209000',0,'2023-08-08 02:24:21'),(43878,'/43098/43811/43865/',43865,'street','艾古斯乡',4,'653123211000',0,'2023-08-08 02:24:21'),(43879,'/43098/43811/43865/',43865,'street','依格孜也尔乡',4,'653123212000',0,'2023-08-08 02:24:21'),(43880,'/43098/43811/43865/',43865,'street','英吉沙工业园区',4,'653123401000',0,'2023-08-08 02:24:21'),(43881,'/43098/43811/43865/',43865,'street','兵团东风农场',4,'653123500000',0,'2023-08-08 02:24:21'),(43882,'/43098/43811/',43811,'area','泽普县',3,'653124000000',15,'2023-08-08 02:24:21'),(43883,'/43098/43811/43882/',43882,'street','泽普镇',4,'653124100000',0,'2023-08-08 02:24:21'),(43884,'/43098/43811/43882/',43882,'street','奎依巴格镇',4,'653124101000',0,'2023-08-08 02:24:21'),(43885,'/43098/43811/43882/',43882,'street','波斯喀木乡',4,'653124200000',0,'2023-08-08 02:24:21'),(43886,'/43098/43811/43882/',43882,'street','泽普县依玛乡',4,'653124201000',0,'2023-08-08 02:24:21'),(43887,'/43098/43811/43882/',43882,'street','古勒巴格乡',4,'653124202000',0,'2023-08-08 02:24:21'),(43888,'/43098/43811/43882/',43882,'street','赛力乡',4,'653124203000',0,'2023-08-08 02:24:21'),(43889,'/43098/43811/43882/',43882,'street','依肯苏乡',4,'653124204000',0,'2023-08-08 02:24:21'),(43890,'/43098/43811/43882/',43882,'street','图呼其乡',4,'653124205000',0,'2023-08-08 02:24:21'),(43891,'/43098/43811/43882/',43882,'street','奎依巴格乡',4,'653124206000',0,'2023-08-08 02:24:21'),(43892,'/43098/43811/43882/',43882,'street','阿克塔木乡',4,'653124207000',0,'2023-08-08 02:24:21'),(43893,'/43098/43811/43882/',43882,'street','阿依库勒乡',4,'653124208000',0,'2023-08-08 02:24:21'),(43894,'/43098/43811/43882/',43882,'street','布依鲁克塔吉克族乡',4,'653124209000',0,'2023-08-08 02:24:21'),(43895,'/43098/43811/43882/',43882,'street','桐安乡',4,'653124210000',0,'2023-08-08 02:24:21'),(43896,'/43098/43811/43882/',43882,'street','泽普县良种场',4,'653124401000',0,'2023-08-08 02:24:21'),(43897,'/43098/43811/43882/',43882,'street','国营林场',4,'653124403000',0,'2023
#
# Data for table "eb_community"
#
#
# Data for table "eb_community_category"
#
INSERT INTO `eb_community_category` (`category_id`,`cate_name`,`pid`,`path`,`is_show`,`level`,`sort`) VALUES (64,'家居',0,'/',1,0,0),(65,'美妆',0,'/',1,0,0),(66,'美食',0,'/',1,0,0),(67,'穿搭',0,'/',1,0,0),(68,'旅游',0,'/',1,0,0);
#
# Data for table "eb_community_reply"
#
#
# Data for table "eb_community_topic"
#
INSERT INTO `eb_community_topic` (`topic_id`,`topic_name`,`status`,`is_hot`,`category_id`,`is_del`,`pic`,`count_use`,`count_view`,`create_time`,`sort`) VALUES (36,'设计感家居好物',1,1,64,0,'https://mer1.crmeb.net/uploads/def/20211110/9b809928e69f46eddc7eaceef8f40347.jpg',0,0,'2021-11-10 01:36:39',0),(37,'职场穿搭',1,1,67,0,'https://mer1.crmeb.net/uploads/def/20211110/f8db48357bd42307d51ef60905ef8516.jpg',0,0,'2021-11-10 01:37:33',0),(38,'早餐吃什么',1,1,66,0,'https://mer1.crmeb.net/uploads/def/20211110/6968c4026ff623ce73bed19612c21dfb.jpg',0,0,'2021-11-10 01:37:57',0),(39,'养猫那些事',1,0,68,0,'https://mer1.crmeb.net/uploads/def/20211110/e7bcce709b1eaebe63350e56b34d56ae.jpg',0,0,'2021-11-10 01:38:16',0);
#
# Data for table "eb_delivery_order"
#
#
# Data for table "eb_delivery_station"
#
#
# Data for table "eb_diy"
#
INSERT INTO `eb_diy` (`id`,`version`,`name`,`title`,`cover_image`,`template_name`,`default_value`,`add_time`,`update_time`,`status`,`type`,`is_show`,`is_bg_color`,`is_bg_pic`,`is_diy`,`color_picker`,`bg_pic`,`bg_tab_val`,`is_del`,`mer_id`,`is_default`,`scope_type`,`value`) VALUES (1,'1.0','商城默认模板','CRMEB商城','','',NULL,'2023-08-22 07:35:18','2023-09-05 08:17:23',0,1,1,0,0,1,'#f5f5f5','https://mer1.crmeb.net\\/uploads/def/3ddf3202306131432281894.jpg',2,0,0,1,4,'{\"1693896515820000\":{\"name\":\"homeComb\",\"timestamp\":1693896515820000,\"tabConfig\":{\"title\":\"\\u9009\\u62e9\\u6837\\u5f0f\",\"tabVal\":2,\"type\":1,\"tabList\":[{\"name\":\"\\u641c\\u7d22\\u6846\",\"icon\":\"iconsousuo\",\"count\":1},{\"name\":\"\\u9009\\u9879\\u5361\",\"icon\":\"iconfenleidaohang\",\"count\":2},{\"name\":\"\\u8f6e\\u64ad\\u56fe\",\"icon\":\"icontupian\",\"count\":3}]},\"hotWords\":{\"list\":[{\"val\":\"\\u96c5\\u8bd7\\u5170\\u9edb\\u5c0f\\u68d5\\u74f6\"},{\"val\":\"\\u624b\\u673a\"},{\"val\":\"\\u56fd\\u6f6e\"}]},\"logoConfig\":{\"type\":1,\"header\":\"\\u8bbe\\u7f6elogo\",\"title\":\"\\u5efa\\u8bae\\u4e0a\\u4f20\\u5927\\u5c0f\\uff1a\\u5bbd152px\\uff0c\\u9ad860px\",\"url\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/default\\/20220829\\/9aed8bc6c3fd2b019259c0b32ac3914b.png\"},\"titleConfig\":{\"title\":\"\\u663e\\u793a\\u65f6\\u95f4\",\"value\":\"5\",\"place\":\"\\u8bbe\\u7f6e\\u641c\\u7d22\\u70ed\\u8bcd\\u663e\\u793a\\u65f6\\u95f4\",\"max\":5000,\"unit\":\"\\u79d2\"},\"swiperConfig\":{\"title\":\"\\u6700\\u591a\\u53ef\\u6dfb\\u52a010\\u5f20\\u56fe\\u7247\\uff0c\\u5efa\\u8bae\\u5bbd\\u5ea6750px\\uff1b\\u9f20\\u6807\\u62d6\\u62fd\\u5de6\\u4fa7\\u5706\\u70b9\\u53ef\\u8c03\\u6574\\u56fe\\u7247\\u987a\\u5e8f\",\"maxList\":10,\"isSmall\":true,\"list\":[{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/974ba202309051616429369.jpg\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u6f14\\u793a\\u7f8e\\u5c45\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc710\\u4e2a\\u5b57\",\"max\":10},{\"title\":\"\\u94fe\\u63a5\",\"value\":\"\\/pages\\/small_page\\/index?id=9\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"max\":100}]},{\"img\":\"https:\\/\\/mer1.crmeb.net\\/def\\/ca477202209271916533745.jpg\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u6f14\\u793a\\u5962\\u54c1\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc710\\u4e2a\\u5b57\",\"max\":10},{\"title\":\"\\u94fe\\u63a5\",\"value\":\"\\/pages\\/small_page\\/index?id=8\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"max\":100}]},{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/a5c6220230905122919500.jpg\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u6f14\\u793a\\u7f8e\\u5986\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc710\\u4e2a\\u5b57\",\"max\":10},{\"title\":\"\\u94fe\\u63a5\",\"value\":\"\\/pages\\/small_page\\/index?id=7\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"max\":100}]}]},\"listConfig\":{\"title\":\"\\u6700\\u591a\\u53ef\\u6dfb\\u52a01\\u5f20\\u56fe\\u7247\\uff0c\\u5efa\\u8bae\\u5bbd\\u5ea6750px\\uff1b\",\"maxList\":100,\"isSmall\":true,\"list\":[{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/25ab2202309051015155929.png\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u670d\\u88c5\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc74\\u4e2a\\u5b57\",\"max\":4},{\"select\":true,\"title\":\"\\u94fe\\u63a5\",\"value\":8,\"tips\":\"\\u8bf7\\u9009\\u62e9\\u94fe\\u63a5\",\"max\":100}]},{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/a5c6220230905122919500.jpg\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u7f8e\\u5986\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc74\\u4e2a\\u5b57\",\"max\":4},{\"select\":true,\"title\":\"\\u94fe\\u63a5\",\"value\":7,\"tips\":\"\\u8bf7\\u9009\\u62e9\\u94fe\\u63a5\",\"max\":100}]},{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/695a2202309051015164437.png\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u5bb6\\u5c45\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc74\\u4e2a\\u5b57\",\"max\":
INSERT INTO `eb_diy` (`id`,`version`,`name`,`title`,`cover_image`,`template_name`,`default_value`,`add_time`,`update_time`,`status`,`type`,`is_show`,`is_bg_color`,`is_bg_pic`,`is_diy`,`color_picker`,`bg_pic`,`bg_tab_val`,`is_del`,`mer_id`,`is_default`,`scope_type`,`value`) VALUES (3,'1.0','饰品模板','首页','','',NULL,'2023-09-05 03:42:05','2023-09-05 03:42:05',0,2,1,0,0,1,'#f5f5f5','',0,0,0,1,4,'{\"1693885278691001\":{\"name\":\"pictureCube\",\"timestamp\":1693885278691001,\"tabConfig\":{\"title\":\"选择样式\",\"tabVal\":0,\"type\":1,\"tabList\":[{\"name\":\"样式一\",\"icon\":\"iconyangshi1\",\"count\":1},{\"name\":\"样式二\",\"icon\":\"iconyangshi2\",\"count\":2},{\"name\":\"样式三\",\"icon\":\"iconyangshi3\",\"count\":3},{\"name\":\"样式四\",\"icon\":\"iconyangshi9\",\"count\":3},{\"name\":\"样式五\",\"icon\":\"iconyangshi8\",\"count\":4},{\"name\":\"样式六\",\"icon\":\"iconyangshi4\",\"count\":4}]},\"picStyle\":{\"tabVal\":\"0\",\"picList\":[{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/273f0202309051036338671.jpg\",\"link\":\"\\/pages\\/goods_details\\/index?id=6\"}]},\"menuConfig\":{\"title\":\"\",\"maxList\":1,\"isCube\":1,\"list\":[{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/273f0202309051036338671.jpg\",\"info\":[{\"title\":\"链接\",\"tips\":\"请输入链接\",\"value\":\"\\/pages\\/goods_details\\/index?id=6\",\"max\":100}]}]},\"bgColor\":{\"title\":\"背景颜色\",\"default\":[{\"item\":\"#fff\"}],\"color\":[{\"item\":\"#fff\"}]},\"bgStyle\":{\"title\":\"背景样式\",\"name\":\"bgStyle\",\"type\":0,\"list\":[{\"val\":\"直角\",\"icon\":\"iconPic_square\"},{\"val\":\"圆角\",\"icon\":\"iconPic_fillet\"}]},\"prConfig\":{\"title\":\"背景边距\",\"val\":0,\"min\":0},\"mbConfig\":{\"title\":\"页面间距\",\"val\":0,\"min\":0},\"id\":\"id1693885278690000\"},\"1693885278691000\":{\"name\":\"pictureCube\",\"timestamp\":1693885278691000,\"tabConfig\":{\"title\":\"选择样式\",\"tabVal\":0,\"type\":1,\"tabList\":[{\"name\":\"样式一\",\"icon\":\"iconyangshi1\",\"count\":1},{\"name\":\"样式二\",\"icon\":\"iconyangshi2\",\"count\":2},{\"name\":\"样式三\",\"icon\":\"iconyangshi3\",\"count\":3},{\"name\":\"样式四\",\"icon\":\"iconyangshi9\",\"count\":3},{\"name\":\"样式五\",\"icon\":\"iconyangshi8\",\"count\":4},{\"name\":\"样式六\",\"icon\":\"iconyangshi4\",\"count\":4}]},\"picStyle\":{\"tabVal\":\"0\",\"picList\":[{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/a942a202309051036311630.jpg\",\"link\":\"\\/pages\\/columnGoods\\/goods_list\\/index?id=11&title=默认\"}]},\"menuConfig\":{\"title\":\"\",\"maxList\":1,\"isCube\":1,\"list\":[{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/a942a202309051036311630.jpg\",\"info\":[{\"title\":\"链接\",\"tips\":\"请输入链接\",\"value\":\"\\/pages\\/columnGoods\\/goods_list\\/index?id=11&title=默认\",\"max\":100}]}]},\"bgColor\":{\"title\":\"背景颜色\",\"default\":[{\"item\":\"#fff\"}],\"color\":[{\"item\":\"#fff\"}]},\"bgStyle\":{\"title\":\"背景样式\",\"name\":\"bgStyle\",\"type\":0,\"list\":[{\"val\":\"直角\",\"icon\":\"iconPic_square\"},{\"val\":\"圆角\",\"icon\":\"iconPic_fillet\"}]},\"prConfig\":{\"title\":\"背景边距\",\"val\":0,\"min\":0},\"mbConfig\":{\"title\":\"页面间距\",\"val\":0,\"min\":0},\"id\":\"id1693884354403000\"},\"1693885325570000\":{\"name\":\"pageFoot\",\"setUp\":{\"tabVal\":\"0\"},\"status\":{\"title\":\"是否自定义\",\"name\":\"status\",\"status\":false},\"txtColor\":{\"title\":\"文字颜色\",\"name\":\"txtColor\",\"default\":[{\"item\":\"#282828\"}],\"color\":[{\"item\":\"#282828\"}]},\"activeTxtColor\":{\"title\":\"选中文字颜色\",\"name\":\"txtColor\",\"default\":[{\"item\":\"#F62C2C\"}],\"color\":[{\"item\":\"#F62C2C\"}]},\"bgColor\":{\"title\":\"背景颜色\",\"name\":\"bgColor\",\"default\":[{\"item\":\"#fff\"}],\"isFoot\":true,\"color\":[{\"item\":\"#fff\"}]},\"menuList\":[{\"imgList\":[\"data:image\\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5cc
INSERT INTO `eb_diy` (`id`,`version`,`name`,`title`,`cover_image`,`template_name`,`default_value`,`add_time`,`update_time`,`status`,`type`,`is_show`,`is_bg_color`,`is_bg_pic`,`is_diy`,`color_picker`,`bg_pic`,`bg_tab_val`,`is_del`,`mer_id`,`is_default`,`scope_type`,`value`) VALUES (5,'1.0','水果模板','首页','','',NULL,'2023-09-05 04:21:01','2023-09-05 08:06:46',0,2,1,0,0,1,'#f5f5f5','',0,0,0,1,4,'{\"1693887734710000\":{\"name\":\"pictureCube\",\"timestamp\":1693887734710000,\"tabConfig\":{\"title\":\"\\u9009\\u62e9\\u6837\\u5f0f\",\"tabVal\":0,\"type\":1,\"tabList\":[{\"name\":\"\\u6837\\u5f0f\\u4e00\",\"icon\":\"iconyangshi1\",\"count\":1},{\"name\":\"\\u6837\\u5f0f\\u4e8c\",\"icon\":\"iconyangshi2\",\"count\":2},{\"name\":\"\\u6837\\u5f0f\\u4e09\",\"icon\":\"iconyangshi3\",\"count\":3},{\"name\":\"\\u6837\\u5f0f\\u56db\",\"icon\":\"iconyangshi9\",\"count\":3},{\"name\":\"\\u6837\\u5f0f\\u4e94\",\"icon\":\"iconyangshi8\",\"count\":4},{\"name\":\"\\u6837\\u5f0f\\u516d\",\"icon\":\"iconyangshi4\",\"count\":4}]},\"picStyle\":{\"tabVal\":0,\"picList\":[{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/e9992202309051015126774.png\",\"link\":\"\\/pages\\/goods_details\\/index?id=247\"}]},\"menuConfig\":{\"title\":\"\",\"maxList\":1,\"isCube\":1,\"list\":[{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/static\\/e9992202309051015126774.png\",\"info\":[{\"title\":\"\\u94fe\\u63a5\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"value\":\"\\/pages\\/goods_details\\/index?id=247\",\"max\":100}]}]},\"bgColor\":{\"title\":\"\\u80cc\\u666f\\u989c\\u8272\",\"default\":[{\"item\":\"#fff\"}],\"color\":[{\"item\":\"#fff\"}]},\"bgStyle\":{\"title\":\"\\u80cc\\u666f\\u6837\\u5f0f\",\"name\":\"bgStyle\",\"type\":0,\"list\":[{\"val\":\"\\u76f4\\u89d2\",\"icon\":\"iconPic_square\"},{\"val\":\"\\u5706\\u89d2\",\"icon\":\"iconPic_fillet\"}]},\"prConfig\":{\"title\":\"\\u80cc\\u666f\\u8fb9\\u8ddd\",\"val\":0,\"min\":0},\"mbConfig\":{\"title\":\"\\u9875\\u9762\\u95f4\\u8ddd\",\"val\":0,\"min\":0},\"id\":\"id1693887734710000\"},\"1693887734710001\":{\"name\":\"coupon\",\"timestamp\":1693887734710001,\"tabConfig\":{\"title\":\"\\u5c55\\u793a\\u6837\\u5f0f\",\"tabVal\":1,\"type\":1,\"tabList\":[{\"name\":\"\\u6837\\u5f0f\\u4e00\",\"icon\":\"iconyangshiyi\"},{\"name\":\"\\u6837\\u5f0f\\u4e8c\",\"icon\":\"iconyangshier\"}]},\"themeColor\":{\"title\":\"\\u4e3b\\u9898\\u98ce\\u683c\",\"name\":\"themeColor\",\"default\":[{\"item\":\"#E93323\"}],\"color\":[{\"item\":\"#E93323\"}]},\"bgStyle\":{\"title\":\"\\u80cc\\u666f\\u6837\\u5f0f\",\"name\":\"bgStyle\",\"type\":0,\"list\":[{\"val\":\"\\u76f4\\u89d2\",\"icon\":\"iconPic_square\"},{\"val\":\"\\u5706\\u89d2\",\"icon\":\"iconPic_fillet\"}]},\"prConfig\":{\"title\":\"\\u80cc\\u666f\\u8fb9\\u8ddd\",\"val\":0,\"min\":0},\"mbConfig\":{\"title\":\"\\u9875\\u9762\\u95f4\\u8ddd\",\"val\":0,\"min\":0},\"id\":\"id1693887734710001\"},\"1693887734710002\":{\"name\":\"combination\",\"timestamp\":1693887734710002,\"setUp\":{\"tabVal\":\"0\"},\"priceShow\":{\"title\":\"\\u662f\\u5426\\u663e\\u793a\\u4ef7\\u683c\",\"val\":true},\"bntShow\":{\"title\":\"\\u662f\\u5426\\u663e\\u793a\\u6309\\u94ae\",\"val\":true},\"titleShow\":{\"title\":\"\\u662f\\u5426\\u663e\\u793a\\u540d\\u79f0\",\"val\":true},\"pinkShow\":{\"title\":\"\\u662f\\u5426\\u663e\\u793a\\u62fc\\u56e2\\u6807\\u7b7e\",\"val\":true},\"tabConfig\":{\"title\":\"\\u5c55\\u793a\\u6837\\u5f0f\",\"tabVal\":0,\"type\":1,\"tabList\":[{\"name\":\"\\u5355\\u884c\\u5c55\\u793a\",\"icon\":\"icondanhang\"},{\"name\":\"\\u591a\\u884c\\u5c55\\u793a\",\"icon\":\"iconduohang\"},{\"name\":\"\\u677f\\u5757\\u6a21\\u5f0f\",\"icon\":\"iconyangshi9\"}]},\"txtColor\":{\"title\":\"\\u6587\\u5b57\\u80cc\\u666f\\u8272\",\"name\":\"themeColor\",\"default\":[{\"item\":\"rgba(255,68,68,0.1)\"}],\"color\":[{\"item\":\"rgba(255,68,68,0.1)\"}]},\"bgStyle\":{\"title\":\"\\u80cc\\u666f\\u6837\\u5f0f\",\"name\":\"bgStyle\",\"type\":1,\"list\":[{\"val\":\"\\u76f4\\u89d2\",\"icon\":\"iconPic_square\"},{\"val\":\"\\u5706\\u89d2\",\"icon\":\"iconPic_fillet\"}]},\"conStyle\":{\
INSERT INTO `eb_diy` (`id`,`version`,`name`,`title`,`cover_image`,`template_name`,`default_value`,`add_time`,`update_time`,`status`,`type`,`is_show`,`is_bg_color`,`is_bg_pic`,`is_diy`,`color_picker`,`bg_pic`,`bg_tab_val`,`is_del`,`mer_id`,`is_default`,`scope_type`,`value`) VALUES (7,'1.0','演示服饰','首页','','',NULL,'2022-09-29 02:27:03','2023-05-19 08:24:25',0,1,1,0,0,0,'#f5f5f5','',0,0,0,0,4,'{\"1684484517503001\":{\"name\":\"swiperBg\",\"timestamp\":1684484517503001,\"setUp\":{\"tabVal\":\"1\"},\"swiperConfig\":{\"title\":\"\\u6700\\u591a\\u53ef\\u6dfb\\u52a010\\u5f20\\u56fe\\u7247\\uff0c\\u5efa\\u8bae\\u5bbd\\u5ea6750*345px\\uff1b\\u9f20\\u6807\\u62d6\\u62fd\\u5de6\\u4fa7\\u5706\\u70b9\\u53ef\\u8c03\\u6574\\u56fe\\u7247 \\u987a\\u5e8f\",\"maxList\":10,\"list\":[{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/def\\/20230509\\/5663683950c9e062ec488a7522df5c07.jpg\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u6f6e\\u724c\\u670d\\u9970\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc74\\u4e2a\\u5b57\",\"max\":4},{\"title\":\"\\u94fe\\u63a5\",\"value\":\"\\/pages\\/goods_details\\/index?id=215\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"max\":100}]}]},\"isShow\":{\"title\":\"\\u662f\\u5426\\u663e\\u793a\\u80cc\\u666f\\u8272\",\"val\":true},\"bgColor\":{\"title\":\"\\u80cc\\u666f\\u989c\\u8272(\\u6e10\\u53d8)\",\"default\":[{\"item\":\"#FFFFFF\"},{\"item\":\"#FFFFFF\"}],\"color\":[{\"item\":\"#FFFFFF\"},{\"item\":\"#FFFFFF\"}]},\"lrConfig\":{\"title\":\"\\u5de6\\u53f3\\u8fb9\\u8ddd\",\"val\":10,\"min\":0},\"mbConfig\":{\"title\":\"\\u9875\\u9762\\u95f4\\u8ddd\",\"val\":0,\"min\":0},\"docConfig\":{\"cname\":\"swiper\",\"title\":\"\\u6307\\u793a\\u5668\\u6837\\u5f0f\",\"type\":0,\"list\":[{\"val\":\"\\u5706\\u5f62\",\"icon\":\"iconDot\"},{\"val\":\"\\u76f4\\u7ebf\",\"icon\":\"iconSquarepoint\"},{\"val\":\"\\u65e0\\u6307\\u793a\\u5668\",\"icon\":\"iconjinyong\"}]},\"txtStyle\":{\"title\":\"\\u6307\\u793a\\u5668\\u4f4d\\u7f6e\",\"type\":0,\"list\":[{\"val\":\"\\u5c45\\u5de6\",\"icon\":\"icondoc_left\"},{\"val\":\"\\u5c45\\u4e2d\",\"icon\":\"icondoc_center\"},{\"val\":\"\\u5c45\\u53f3\",\"icon\":\"icondoc_right\"}]},\"imgConfig\":{\"cname\":\"docStyle\",\"title\":\"\\u8f6e\\u64ad\\u56fe\\u6837\\u5f0f\",\"type\":0,\"list\":[{\"val\":\"\\u5706\\u89d2\",\"icon\":\"iconPic_fillet\"},{\"val\":\"\\u76f4\\u89d2\",\"icon\":\"iconPic_square\"}]},\"id\":\"id1684483819018000\"},\"1684484517503000\":{\"name\":\"menus\",\"timestamp\":1684484517503000,\"setUp\":{\"tabVal\":\"0\"},\"tabConfig\":{\"title\":\"\\u5c55\\u793a\\u6837\\u5f0f\",\"tabVal\":0,\"type\":1,\"tabList\":[{\"name\":\"\\u5355\\u884c\\u5c55\\u793a\",\"icon\":\"icondanhang\"},{\"name\":\"\\u591a\\u884c\\u5c55\\u793a\",\"icon\":\"iconduohang\"}]},\"rowsNum\":{\"title\":\"\\u663e\\u793a\\u884c\\u6570\",\"name\":\"rowsNum\",\"type\":0,\"list\":[{\"val\":\"2\\u884c\",\"icon\":\"icon2hang\"},{\"val\":\"3\\u884c\",\"icon\":\"icon3hang\"},{\"val\":\"4\\u884c\",\"icon\":\"icon4hang\"}]},\"menuStyle\":{\"title\":\"\\u56fe\\u6807\\u6837\\u5f0f\",\"name\":\"menuStyle\",\"type\":0,\"list\":[{\"val\":\"\\u65b9\\u5f62\",\"icon\":\"iconPic_square\"},{\"val\":\"\\u5706\\u5f62\",\"icon\":\"icondayuanjiao\"}]},\"number\":{\"title\":\"\\u663e\\u793a\\u4e2a\\u6570\",\"name\":\"number\",\"type\":0,\"list\":[{\"val\":\"3\\u4e2a\",\"icon\":\"icon3ge\"},{\"val\":\"4\\u4e2a\",\"icon\":\"icon4ge1\"},{\"val\":\"5\\u4e2a\",\"icon\":\"icon5ge1\"}]},\"bgStyle\":{\"title\":\"\\u80cc\\u666f\\u6837\\u5f0f\",\"name\":\"bgStyle\",\"type\":0,\"list\":[{\"val\":\"\\u76f4\\u89d2\",\"icon\":\"iconPic_square\"},{\"val\":\"\\u5706\\u89d2\",\"icon\":\"iconPic_fillet\"}]},\"prConfig\":{\"title\":\"\\u80cc\\u666f\\u8fb9\\u8ddd\",\"val\":0,\"min\":0},\"menuConfig\":{\"title\":\"\\u6700\\u591a\\u53ef\\u6dfb\\u52a01\\u5f20\\u56fe\\u7247\\uff0c\\u5efa\\u8bae\\u5bbd\\u5ea690 * 90px\",\"maxList\":100,\"list\":[{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/def\\/20230509\\/57c1c0e63c260548e7be51c586fd9b08.png\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u79ef\\u5206\\u4e2d\\u5
INSERT INTO `eb_diy` (`id`,`version`,`name`,`title`,`cover_image`,`template_name`,`default_value`,`add_time`,`update_time`,`status`,`type`,`is_show`,`is_bg_color`,`is_bg_pic`,`is_diy`,`color_picker`,`bg_pic`,`bg_tab_val`,`is_del`,`mer_id`,`is_default`,`scope_type`,`value`) VALUES (9,'1.0','演示奢品','首页','','',NULL,'2022-09-29 02:33:53','2023-05-19 08:33:58',0,1,1,0,0,0,'#f5f5f5','',0,0,0,0,4,'{\"1684484712096000\":{\"name\":\"activeParty\",\"timestamp\":1684484712096000,\"setUp\":{\"tabVal\":\"0\"},\"tabConfig\":{\"title\":\"\\u5c55\\u793a\\u6837\\u5f0f\",\"tabVal\":0,\"type\":1,\"tabList\":[{\"name\":\"\\u5355\\u884c\\u5c55\\u793a\",\"icon\":\"icondanhang\"},{\"name\":\"\\u591a\\u884c\\u5c55\\u793a\",\"icon\":\"iconduohang\"}]},\"menuConfig\":{\"title\":\"\\u6700\\u591a\\u53ef\\u6dfb\\u52a04\\u4e2a\\u677f\\u5757\\uff0c\\u56fe\\u7247\\u5efa\\u8bae\\u5c3a\\u5bf8140 * 140px\\uff1b\\u9f20\\u6807\\u62d6\\u62fd\\u5de6\\u4fa7\\u5706\\u70b9\\u53ef \\u8c03\\u6574\\u7248\\u5757\\u987a\\u5e8f\",\"maxList\":4,\"list\":[{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/merchant\\/20220929\\/cf50ab643eb2b9a3af6fb78a62dede63.png\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u9996\\u53d1\\u65b0\\u54c1\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc74\\u4e2a\\u5b57\",\"max\":4},{\"title\":\"\\u7b80\\u4ecb\",\"value\":\"\\u65b0\\u54c1\\u62a2\\u5148\\u8d2d\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc76\\u4e2a\\u5b57\",\"max\":6},{\"title\":\"\\u94fe\\u63a5\",\"value\":\"\\/pages\\/goods_details\\/index?id=34\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"max\":100}]},{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/merchant\\/20220929\\/ece3671d1f91eb6423e3a86ff0e20426.png\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u70ed\\u95e8\\u699c\\u5355\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc74\\u4e2a\\u5b57\",\"max\":4},{\"title\":\"\\u7b80\\u4ecb\",\"value\":\"\\u5241\\u624b\\u5fc5\\u5907\\u6307\\u5357\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc720\\u4e2a\\u5b57\",\"max\":20},{\"title\":\"\\u94fe\\u63a5\",\"value\":\"\\/pages\\/goods_details\\/index?id=33\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"max\":100}]},{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/merchant\\/20220929\\/484c7d7f29e612bb2700c9e4bc91a94e.png\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u7cbe\\u54c1\\u63a8\\u8350\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc74\\u4e2a\\u5b57\",\"max\":4},{\"title\":\"\\u7b80\\u4ecb\",\"value\":\"\\u53d1\\u73b0\\u54c1\\u8d28\\u597d\\u7269\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc720\\u4e2a\\u5b57\",\"max\":20},{\"title\":\"\\u94fe\\u63a5\",\"value\":\"\\/pages\\/goods_details\\/index?id=32\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"max\":100}]},{\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/merchant\\/20220929\\/bed20f1a74c76a8d18582d0972229f50.png\",\"info\":[{\"title\":\"\\u6807\\u9898\",\"value\":\"\\u4fc3\\u9500\\u5355\\u54c1\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc74\\u4e2a\\u5b57\",\"max\":4},{\"title\":\"\\u7b80\\u4ecb\",\"value\":\"\\u60ca\\u559c\\u6298\\u6263\\u4ef7\",\"tips\":\"\\u9009\\u586b\\uff0c\\u4e0d\\u8d85\\u8fc720\\u4e2a\\u5b57\",\"max\":20},{\"title\":\"\\u94fe\\u63a5\",\"value\":\"\\/pages\\/goods_details\\/index?id=205\",\"tips\":\"\\u8bf7\\u8f93\\u5165\\u94fe\\u63a5\",\"max\":100}]}]},\"themeColor\":{\"title\":\"\\u4e3b\\u9898\\u989c\\u8272\",\"name\":\"themeColor\",\"default\":[{\"item\":\"#fc3c3e\"}],\"color\":[{\"item\":\"#fc3c3e\"}]},\"bgColor\":{\"title\":\"\\u6807\\u7b7e\\u80cc\\u666f\\u989c\\u8272\",\"name\":\"bgColor\",\"default\":[{\"item\":\"#F62C2C\"},{\"item\":\"#F96E29\"}],\"color\":[{\"item\":\"#F62C2C\"},{\"item\":\"#F96E29\"}]},\"boxColor\":{\"title\":\"\\u80cc\\u666f\\u989c\\u8272\",\"name\":\"boxColor\",\"default\":[{\"item\":\"#ffe5e3\"}],\"color\":[{\"item\":\"#f5f5f5\"}]},\"mbConfig\":{\"title\":\"\\u9875\\u9762\\u95f4\\u8ddd\",\"val\":0,\"min\":0},\"id\":\"id1684484712096000\"},\"1684484712096002\":{\"name\":\"goodList\",\"timestamp\":16844847120960
#
# Data for table "eb_excel"
#
#
# Data for table "eb_express"
#
INSERT INTO `eb_express` (`id`,`code`,`name`,`mark`,`partner_id`,`partner_key`,`net`,`sort`,`is_show`,`check_man`,`partner_name`,`is_code`) VALUES (1,'yunda','韵达快递','国内运输商',1,1,0,0,1,0,0,0),(2,'shunfeng','顺丰速运','国际运输商',1,0,0,0,1,0,0,0),(3,'yuantong','圆通速递','国内运输商',1,1,0,0,1,0,0,0),(4,'zhongtong','中通快递','国内运输商',1,1,0,0,1,0,0,0),(5,'shentong','申通快递','国内运输商',1,1,1,0,1,0,0,0),(6,'huitongkuaidi','百世快递','国内运输商',1,1,0,0,1,0,0,0),(7,'jd','京东物流','国内运输商',1,0,0,0,1,0,0,0),(8,'jtexpress','极兔速递','国内运输商',1,1,0,0,1,0,0,0),(9,'youzhengguonei','邮政快递包裹','国际邮政',1,1,0,0,1,0,0,0),(10,'tiantian','天天快递','国内运输商',1,1,1,0,1,0,0,0),(11,'ems','EMS','国际邮政',1,1,0,0,1,0,0,0),(12,'youzhengbk','邮政标准快递','国际邮政',0,0,0,0,1,0,0,0),(13,'debangwuliu','德邦','国内运输商',0,0,0,0,1,0,0,0),(14,'debangkuaidi','德邦快递','国内运输商',1,0,0,0,1,0,0,0),(15,'zhongyouex','众邮快递','国内运输商',0,0,0,0,1,0,0,0),(16,'youzhengguoji','国际包裹','国际运输商',0,0,0,0,1,0,0,0),(17,'youshuwuliu','优速快递','国内运输商',1,1,0,0,1,0,0,0),(18,'zhongtongkuaiyun','中通快运','国内运输商',0,0,0,0,1,0,0,0),(19,'zhaijisong','宅急送','国内运输商',0,0,0,0,1,0,0,0),(20,'suning','苏宁物流','国内运输商',0,0,0,0,1,0,0,0);
#
# Data for table "eb_express_partner"
#
#
# Data for table "eb_extend"
#
#
# Data for table "eb_feedback"
#
#
# Data for table "eb_feedback_category"
#
INSERT INTO `eb_feedback_category` (`feedback_category_id`,`pid`,`cate_name`,`path`,`sort`,`pic`,`is_show`,`level`,`mer_id`,`create_time`) VALUES (154,0,'商品质量','/',1,'',1,0,0,'2023-05-18 03:56:50'),(156,154,'损坏','/154/',1,'',1,1,0,'2023-05-18 03:57:05'),(159,0,'商家服务','/',0,'',1,0,0,'2023-05-18 03:56:45'),(160,0,'快递配送','/',0,'',1,0,0,'2023-05-18 03:56:39'),(161,154,'保质期','/154/',0,'',1,1,0,'2023-05-18 03:57:18'),(162,160,'丢件','/160/',0,'',1,1,0,'2023-05-18 03:57:57'),(163,160,'查不到','/160/',0,'',1,1,0,'2023-05-18 03:58:31'),(164,159,'态度','/159/',0,'',1,1,0,'2023-05-18 03:58:49'),(165,159,'诱导消费','/159/',0,'',1,1,0,'2023-05-18 03:59:02'),(166,0,'暖心行为','/',0,'',1,0,0,'2023-05-18 04:01:04'),(167,166,'超预期满意','/166/',0,'',1,1,0,'2023-05-18 04:01:37'),(168,166,'被感动','/166/',0,'',1,1,0,'2023-05-18 04:01:49');
#
# Data for table "eb_financial"
#
#
# Data for table "eb_financial_record"
#
#
# Data for table "eb_guarantee"
#
INSERT INTO `eb_guarantee` (`guarantee_id`,`guarantee_name`,`guarantee_info`,`status`,`image`,`sort`,`mer_count`,`product_cout`,`is_del`,`create_time`,`update_time`) VALUES (1,'7天无理由退款','支持7天无理由退款',1,'https://mer1.crmeb.net/uploads/def/20230509/a1cec79cfd173bdd413cd5ec21dd6442.png',0,1,8,0,'2023-05-11 03:44:26','2023-06-11 14:37:41'),(2,'24小时极速发货','24小时极速发货',1,'https://mer1.crmeb.net/uploads/def/20230509/d59e7fcb65a88bc56694dae4f9d21b51.png',0,2,23,0,'2023-05-11 03:47:19','2023-06-11 14:37:41'),(3,'免退货运费','免退货运费',1,'https://mer1.crmeb.net/uploads/def/20230509/b42728f586a4e03c0147da300aa4afe8.png',0,1,8,0,'2023-05-11 03:48:19','2023-06-11 14:37:41'),(4,'冷链运输','冷链运输',1,'https://mer1.crmeb.net/uploads/def/20230509/d2552c2ce64d7b7ce5de5136700265c6.png',0,1,15,0,'2023-05-17 08:31:13','2023-06-11 14:37:41'),(5,'新鲜极速达','新鲜极速达',1,'https://mer1.crmeb.net/uploads/def/20230509/d59e7fcb65a88bc56694dae4f9d21b51.png',0,1,15,0,'2023-05-17 08:31:55','2023-06-11 14:37:41');
#
# Data for table "eb_guarantee_template"
#
INSERT INTO `eb_guarantee_template` (`guarantee_template_id`,`template_name`,`mer_id`,`status`,`sort`,`create_time`,`is_del`) VALUES (1,'保障服务',75,1,0,'2023-05-11 03:49:47',0),(2,'生鲜',76,1,0,'2023-05-17 08:32:39',0);
#
# Data for table "eb_guarantee_value"
#
INSERT INTO `eb_guarantee_value` (`guarantee_value_id`,`guarantee_id`,`guarantee_template_id`,`mer_id`,`status`) VALUES (1,1,1,75,1),(2,2,1,75,1),(3,3,1,75,1),(4,2,2,76,1),(5,4,2,76,1),(6,5,2,76,1);
#
# Data for table "eb_label_rule"
#
#
# Data for table "eb_member_interests"
#
INSERT INTO `eb_member_interests` (`interests_id`,`name`,`info`,`brokerage_level`,`pic`,`type`,`link`,`has_type`,`value`,`on_pic`,`status`) VALUES (3,'购物折扣','购买享专属优惠',1,'https://mer1.crmeb.net/uploads/def/20211012/2cf7649941bb535d99669450fbba17db.png',1,NULL,NULL,NULL,NULL,NULL),(4,'专属徽章','不定时发放福利',1,'https://mer1.crmeb.net/uploads/def/20211012/d062a74955dcaab40c27b1cbba2df302.png',1,NULL,NULL,NULL,NULL,NULL),(5,'双倍积分','购买享双倍积分',2,'https://mer1.crmeb.net/uploads/def/20211012/292c8c3e088e37f23dbb82ca375c7e08.png',1,NULL,NULL,NULL,NULL,NULL),(6,'会员优惠券','不定时发放福利',2,'https://mer1.crmeb.net/uploads/def/20211012/bb349b2f3732ed3082801dfdcc7cd048.png',1,NULL,NULL,NULL,NULL,NULL),(7,'签到奖励','签到享双倍积分',3,'https://mer1.crmeb.net/uploads/def/20211012/cf4339e84dcd41f67adf32971ee5239a.png',1,NULL,NULL,NULL,NULL,NULL),(8,'生日特权','专属生日祝福',4,'https://mer1.crmeb.net/uploads/def/20211012/4b58b8e7d5fd4c2b9eb6de215a0a61e1.png',1,NULL,NULL,NULL,NULL,NULL),(9,'包邮特权','商品享包邮服务',5,'https://mer1.crmeb.net/uploads/def/20211012/038bc7c5bd035551fcd30a6864f6fc9a.png',1,NULL,NULL,NULL,NULL,NULL),(10,'尊享客服','优先售后服务',5,'https://mer1.crmeb.net/uploads/def/20211012/df657c012db0c17b53ebcd07ca7911fa.png',1,NULL,NULL,NULL,NULL,NULL),(11,'会员专属价','会员尊享专属价',0,'https://mer1.crmeb.net/uploads/merchant/20221229/3d651381e568e9f2e953fe7a43bd5428.png',2,'https://mer1.crmeb.net',1,'','https://mer1.crmeb.net/uploads/merchant/20221229/73079712efc39713576b99600ec2cddc.png',1),(12,'签到返利','返多倍积分',0,'https://mer1.crmeb.net/uploads/merchant/20221229/6f7989d1ddbe23e0954d8d493b401cda.png',2,'https://mer1.crmeb.net/pages/users/user_sgin/index',2,'2','https://mer1.crmeb.net/uploads/merchant/20221229/2a2a2a218fdb526681c4f54fb25f5ab7.png',1),(13,'消费返利','返多倍积分',0,'https://mer1.crmeb.net/uploads/merchant/20221229/d0a76bbc884cca3e93312e53b5f8b8c0.png',2,'https://mer1.crmeb.net',3,'2','https://mer1.crmeb.net/uploads/merchant/20221229/a739cb53798c8de46f9bb561c0b982e0.png',1),(14,'专属客服','尊享客服',0,'https://mer1.crmeb.net/uploads/merchant/20221229/114fa23dee8d1f2fb1ac9c4188c9bca5.png',2,'https://mer1.crmeb.net/pages/chat/customer_list/chat?mer_id=0',4,'','https://mer1.crmeb.net/uploads/merchant/20221229/a437723e9b2b5bbd5181c457a51c4757.png',1),(15,'经验翻倍','返多倍经验',0,'https://mer1.crmeb.net/uploads/merchant/20221229/2b49c28c06238c52e6a63d3c064ce6a7.png',2,'https://mer1.crmeb.net/pages/users/user_grade/index',5,'2','https://mer1.crmeb.net/uploads/merchant/20221229/656d59b9ad7a39489645527ca3c11199.png',1),(16,'会员优惠券','专属优惠券',0,'https://mer1.crmeb.net/uploads/merchant/20221229/8b8fee895cd134d556f86fba5ee8085f.png',2,'https://mer1.crmeb.net/pages/columnGoods/goods_coupon_list/index?coupon_id=60',6,'','https://mer1.crmeb.net/uploads/merchant/20221229/1c55b6976803722cf9725592cb0d81a6.png',1);
#
# Data for table "eb_merchant"
#
INSERT INTO `eb_merchant` (`mer_id`,`category_id`,`type_id`,`mer_name`,`real_name`,`mer_phone`,`mer_address`,`mer_keyword`,`mer_avatar`,`mer_banner`,`mini_banner`,`sales`,`product_score`,`service_score`,`postage_score`,`mark`,`reg_admin_id`,`sort`,`status`,`commission_rate`,`commission_switch`,`long`,`lat`,`is_del`,`is_audit`,`is_bro_room`,`is_bro_goods`,`is_best`,`is_trader`,`mer_state`,`mer_info`,`service_phone`,`create_time`,`update_time`,`care_count`,`copy_product_num`,`export_dump_num`,`mer_money`,`financial_bank`,`financial_wechat`,`financial_alipay`,`financial_type`,`sub_mchid`,`delivery_way`,`delivery_balance`,`margin`,`margin_remind_time`,`ot_margin`,`is_margin`) VALUES (1,1,3,'不正经美妆','不正经','13032888888','三桥','美妆','https://mer.crmeb.net/uploads/def/20220424/331bfed39af87f552057abade7e8bedc.jpg','https://mer.crmeb.net/uploads/def/20220428/f62142f30959941004b42226fa99f925.jpg','https://mer.crmeb.net/uploads/def/20220428/9ed411a4170216e88af7655b7d7a663e.jpg',0,5.0,5.0,5.0,'',0,0,1,0.00,0,'108.93984','34.34127',0,0,0,1,0,0,1,'不正经美妆','13033232545','2022-04-24 15:10:02','2023-05-19 16:41:23',0,97,0,0.00,NULL,NULL,NULL,1,'','2',0.00,0.01,NULL,0.00,1),(2,2,2,'初识服装工作室','初识','13088888888','后卫寨','','https://mer.crmeb.net/uploads/def/20220424/cc78ff164776f03fe93e039e4081f17f.jpg','https://mer1.crmeb.net/uploads/def/20230511/4b3f8242456c00a9b81c2e5f2248ca10.jpg','https://mer1.crmeb.net/uploads/def/20230511/4b3f8242456c00a9b81c2e5f2248ca10.jpg',1,5.0,5.0,5.0,'演示站',0,0,1,0.00,0,'108.949223','34.345916',0,0,0,1,1,0,1,'看初识','13032979885','2022-04-24 15:11:26','2023-05-11 16:19:28',0,86,0,132.05,NULL,NULL,NULL,1,'','2',0.00,0.00,NULL,0.00,0),(3,3,1,'美好生活家居店','王美丽','13089898989','后卫寨','','https://mer.crmeb.net/uploads/def/20220424/0c59764486f807025d73ecafbb9bebcc.jpg','https://mer.crmeb.net/uploads/def/20220424/4995c5739f81f85ae4d41e3c6552c37b.jpg','https://mer.crmeb.net/uploads/def/20220424/385b3d32d79319d35642c3e0a0681863.jpg',0,5.0,5.0,5.0,'',0,0,1,0.00,0,'108.937059','34.34053',0,0,0,1,0,1,1,'美好家居','13032323232','2022-04-24 15:12:11','2022-05-23 10:29:32',0,94,0,0.00,NULL,NULL,NULL,1,'','2',0.00,0.00,NULL,0.00,0),(4,4,1,'神起科技','阿尔法','13099999999','西安','','https://mer.crmeb.net/uploads/def/20220424/054630e325a1cb302a95b5b29c986a74.jpg','https://mer.crmeb.net/uploads/def/20220428/3f607ce32b69700b11156cc65f87df7a.jpg','https://mer.crmeb.net/uploads/def/20220428/7f4224e39e139aa0eb5bd62cbce10f83.jpg',0,5.0,5.0,5.0,'',0,0,1,0.00,0,'108.93984','34.34127',0,0,0,1,0,1,1,'神起科技','13000001312','2022-04-24 15:15:43','2023-05-11 15:32:32',0,95,0,0.00,NULL,NULL,NULL,1,'','2',0.00,0.00,NULL,0.00,0),(5,1,1,'美丽小迷糊','小迷糊','13089898989','后卫寨','','https://mer1.crmeb.net/uploads/def/20230511/a244c94d58b929859b0f3208069ee06f.png','https://mer1.crmeb.net/uploads/def/20230511/cb7d6de8df6b9a9048a6df174144933c.jpg','https://mer1.crmeb.net/uploads/def/20230511/cb7d6de8df6b9a9048a6df174144933c.jpg',0,5.0,5.0,5.0,'演示站',0,0,1,0.00,0,'108.93984','34.34127',0,0,0,1,1,1,1,'美妆街','13089898989','2022-04-24 15:16:39','2023-05-11 15:23:46',0,95,0,0.00,NULL,NULL,NULL,1,'','2',0.00,0.00,NULL,0.00,0),(6,2,1,'豆蔻饰品','数码','13098932321','陕西省西安市后卫寨','','https://mer.crmeb.net/uploads/def/20220424/ae5a0c157d6beec0675e1ff60b74d8cb.jpg','https://mer.crmeb.net/uploads/def/20220424/d40fe2c849acc09aa8cece6ee99396bc.jpg','https://mer.crmeb.net/uploads/def/20220424/74fdf01a60b6074841afbaddc8e386c8.jpg',0,5.0,5.0,5.0,'演示站',0,0,1,0.00,0,'108.93984','34.34127',0,0,1,1,1,1,1,'不正经美妆店','13032888888','2022-04-24 15:29:04','2023-05-09 17:06:55',0,85,0,0.00,NULL,NULL,NULL,1,'','2',0.00,0.00,NULL,0.00,0),(75,4,2,'智能时代','演示站','13333332222','陕西省咸阳市秦都区上林街道','','https://mer1.crmeb.net/uploads/def/20230511/acfdd200ad9b6f27fefccf032b72440b.png','https://mer1.crmeb.net/uploads/def/20230511/450e8cb4d1049e15703921c897300b39.png','https://mer1.crmeb.net
#
# Data for table "eb_merchant_admin"
#
INSERT INTO `eb_merchant_admin` (`merchant_admin_id`,`mer_id`,`account`,`pwd`,`real_name`,`phone`,`last_ip`,`last_time`,`roles`,`login_count`,`level`,`is_del`,`status`,`create_time`) VALUES (1,1,'bzjmz','$2y$10$OnTLe.mV5NU/gSrpBMSlzOR5lyBX9qFTZZigpzYtiwoH.jOS1AMoG','不正经','13032888888',NULL,'2022-04-24 07:10:01','',0,0,0,1,'2022-04-24 15:10:02'),(2,2,'csfzgzs','$2y$10$517ug791sdRFO35W3upSqejPom0R5AFdje0fpTlDWJ.rEGIiLBaX.','初识','13088888888',NULL,'2022-04-24 07:11:26','',0,0,0,1,'2022-04-24 15:11:26'),(3,3,'mhshjj','$2y$10$PMZhdz5u6ch2M0ZirQp4DuRyUMs7gZs6Un3B4jKjozKQXocV9PDwG','','13089898989',NULL,'2022-04-24 07:12:11','',0,0,0,1,'2022-04-24 15:12:11'),(4,4,'sqkj','$2y$10$eLTPJoTV9.NAhzA32vDzPOnCWLZtyzWegD2USmzDh1jjcZC2iDcyW','','13099999999',NULL,'2022-04-24 07:15:42','',0,0,0,1,'2022-04-24 15:15:43'),(5,5,'mlxmh','$2y$10$jWmHaUDbUuAPzmBgIpV0xuLWarxepFssb2iOR9kF0ySwvRIpw9L0W','','13032979631',NULL,'2022-04-24 07:16:39','',0,0,0,1,'2022-04-24 15:16:39'),(6,6,'qyqx','$2y$10$k9vY.byy4b3PSTfsGe65buE2zNWrbeLr861o0jXH190RvNkbcppMu','千寻','13098932321',NULL,'2022-04-24 07:29:03','',0,0,0,1,'2022-04-24 15:29:04'),(84,75,'zhinengshidai','$2y$10$qlpGffWINfitridcUYeVyupYVYemCzZVYwzP67rLX50S439ZfSsni','演示站','13333332222',NULL,'2023-05-09 07:57:58','',0,0,0,1,'2023-05-09 15:57:59'),(85,76,'xianguoziyou','$2y$10$Eto3DbLobkhoANvrbO5bEOenYojtFTs2k8EzJTdx5jY0BP0/cg1Y6','XGzhang','13333443344',NULL,'2023-05-17 07:48:48','',0,0,0,1,'2023-05-17 15:48:48');
#
# Data for table "eb_merchant_applyments"
#
#
# Data for table "eb_merchant_category"
#
INSERT INTO `eb_merchant_category` (`merchant_category_id`,`commission_rate`,`category_name`,`create_time`) VALUES (1,0.1000,'美妆护理','2022-04-24 07:06:57'),(2,0.0500,'服装配饰','2022-04-24 07:07:15'),(3,0.2000,'生活家居','2022-04-24 07:07:27'),(4,0.0100,'科技数码','2022-04-24 07:12:51');
#
# Data for table "eb_merchant_intention"
#
#
# Data for table "eb_merchant_reconciliation"
#
#
# Data for table "eb_merchant_reconciliation_order"
#
#
# Data for table "eb_merchant_type"
#
INSERT INTO `eb_merchant_type` (`mer_type_id`,`type_name`,`type_info`,`description`,`create_time`,`margin`,`is_margin`,`mark`,`update_time`) VALUES (1,'自营店铺','','','2022-04-24 15:03:57',0.00,0,'','2023-05-09 15:39:02'),(2,'厂家直销','','','2022-04-24 15:04:20',0.00,0,'','2023-05-09 15:39:18'),(3,'旗舰店','','','2022-04-24 15:04:40',0.01,1,'','2023-05-19 16:41:23');
#
# Data for table "eb_open_auth"
#
#
# Data for table "eb_operate_log"
#
#
# Data for table "eb_page_category"
#
INSERT INTO `eb_page_category` (`id`,`pid`,`type`,`name`,`sort`,`status`,`add_time`,`level`,`is_mer`) VALUES (1,0,'link','商城页面',10,1,'2022-03-24 03:10:00',1,0),(2,0,'','商品页面',10,1,'2022-03-24 03:10:00',1,0),(3,0,'','文章页面',9,1,'2022-03-24 03:10:00',1,0),(5,1,'link','商城链接',0,1,'2022-03-24 03:10:00',2,0),(7,2,'merchant','商户列表',0,1,'2022-03-24 03:10:00',2,0),(8,5,'link','商城链接',0,1,'2022-03-24 03:10:00',3,0),(16,2,'product_category','平台商品分类',0,1,'2022-03-24 03:10:00',2,0),(17,2,'product','普通商品',10,1,'2022-03-24 03:10:00',2,0),(18,2,'seckill','秒杀商品',0,1,'2022-03-24 03:10:00',2,0),(19,2,'presell','预售商品',0,1,'2022-03-24 03:10:00',2,0),(20,2,'bargain','助力商品',0,0,'2022-03-24 03:10:00',2,0),(21,2,'combination','拼团商品',0,1,'2022-03-24 03:10:00',2,0),(22,3,'special','文章链接',0,1,'2022-03-24 03:10:00',2,0),(25,57,'active','专场列表',0,1,'2022-03-24 11:10:00',2,0),(27,0,'link','商铺信息',3,1,'2022-04-01 03:17:09',1,1),(28,27,'link','商铺页面',0,1,'2022-04-01 03:17:31',2,1),(29,28,'link','商铺首页',0,1,'2022-04-01 03:28:40',3,1),(32,0,'','商品页面',2,1,'2022-04-01 03:33:15',1,1),(33,32,'product_category','商户商品分类',0,1,'2022-04-01 03:33:40',2,1),(34,32,'product','普通商品',0,1,'2022-04-01 03:34:10',2,1),(35,32,'seckill','秒杀商品',0,1,'2022-04-01 03:34:16',2,1),(36,32,'presell','预售商品',0,1,'2022-04-01 03:34:21',2,1),(37,32,'combination','拼团商品',0,1,'2022-04-01 03:34:36',2,1),(38,32,'bargain','助力商品',0,0,'2022-04-01 03:34:40',2,1),(41,32,'active','专场列表',0,1,'2022-04-01 11:39:21',2,1),(48,53,'points_cate','积分分类',0,1,'2022-05-05 02:28:55',2,0),(49,53,'link','积分商城链接',0,1,'2023-04-23 07:21:59',2,0),(50,49,'link','积分商城链接',0,1,'2023-04-23 07:23:52',3,0),(51,0,'custom','自定义链接',0,1,'2023-06-01 09:08:40',0,0),(52,0,'custom','自定义链接',1,1,'2023-06-10 02:47:18',0,1),(53,0,'link','积分商城',10,1,'2023-06-10 02:51:40',0,0),(54,1,'micro','微页面',0,1,'2023-07-18 02:05:35',2,0),(55,5,'link','个人中心',0,1,'2023-07-27 06:36:20',3,0),(56,5,'link','商城首页',0,1,'2023-07-27 06:37:00',3,0),(57,0,'','活动链接',0,1,'2023-11-16 16:14:56',1,0),(58,57,'activity_form','报名活动',0,1,'2023-11-16 16:16:08',0,0);
#
# Data for table "eb_page_link"
#
INSERT INTO `eb_page_link` (`id`,`cate_id`,`type`,`name`,`url`,`param`,`example`,`status`,`sort`,`add_time`,`is_mer`) VALUES (1,8,1,'积分商城','/pages/activity/registrate_list/index','','',1,0,'2022-03-11 17:39:04',0),(2,3,1,'我的收藏','/pages/users/user_goods_collection/index','','',1,0,'2022-03-23 08:33:36',0),(3,8,1,'商城首页','/pages/index/index','','',1,0,'2022-03-24 02:18:04',0),(4,2,1,'新闻资讯','/pages/news_list/index','','',1,0,'2022-03-24 02:21:12',0),(5,1,1,'商品详情','/pages/goods_details/index','','',1,0,'2022-03-24 02:22:14',0),(6,1,1,'商品列表','/pages/columnGoods/goods_search_con/index','','',1,0,'2022-03-24 02:23:18',0),(7,8,1,'我的等级','/pages/users/user_grade/index','','',1,0,'2022-03-24 02:24:53',0),(8,8,1,'我的余额','/pages/users/user_money/index','','',1,0,'2022-03-24 02:25:48',0),(9,8,1,'积分中心','/pages/users/user_integral/index','','',1,0,'2022-03-24 02:26:39',0),(12,29,1,'商品列表','/pages/store/home/index?type=3','','',1,0,'2022-04-01 04:12:20',1),(16,8,1,'商品分类','/pages/goods_cate/goods_cate','','',1,0,'2022-04-15 09:20:32',0),(17,8,1,'商品搜索页','/pages/columnGoods/goods_search/index','','',1,0,'2022-04-15 09:21:42',0),(18,8,1,'种草社区','/pages/plant_grass/index','','',1,0,'2022-04-15 09:22:11',0),(19,8,1,'种草话题','/pages/plantGrass/plant_topic/index','','',1,0,'2022-04-15 09:22:37',0),(20,8,1,'购物车','/pages/order_addcart/order_addcart','','',1,0,'2022-04-15 09:26:25',0),(21,8,1,'个人中心','/pages/user/index','','',1,0,'2022-04-15 09:26:45',0),(22,8,1,'用户收藏','/pages/users/user_goods_collection/index','','',1,0,'2022-04-15 09:27:11',0),(23,8,1,'关注店铺','/pages/users/user_goods_collection/index?tab=2','','',1,0,'2022-04-15 09:27:31',0),(25,8,1,'用户优惠券','/pages/users/user_coupon/index','','',1,0,'2022-04-15 09:28:09',0),(26,8,1,'用户订单','/pages/users/order_list/index','','',1,0,'2022-04-15 09:28:27',0),(27,8,1,'用户退款单','/pages/users/refund/list','','',1,0,'2022-04-15 09:28:56',0),(28,8,1,'预售订单列表','/pages/users/presell_order_list/index','','',1,0,'2022-04-15 09:29:19',0),(29,8,1,'分销中心','/pages/users/user_spread_user/index','','',1,0,'2022-04-15 09:31:50',0),(30,8,1,'用户等级','/pages/users/user_grade/index','','',1,0,'2022-04-15 09:32:15',0),(31,8,1,'积分中心','/pages/users/user_integral/index','','',1,0,'2022-04-15 09:32:54',0),(32,8,1,'问题反馈','/pages/users/feedback/index','','',1,0,'2022-04-15 09:33:21',0),(33,8,1,'个人资料','/pages/users/user_info/index','','',1,0,'2022-04-15 09:35:29',0),(34,8,1,'店铺街','/pages/store/shopStreet/index','','',1,0,'2022-04-15 09:36:54',0),(35,8,1,'预售列表','/pages/activity/presell/index','','',1,0,'2022-04-15 09:38:58',0),(36,8,1,'秒杀列表','/pages/activity/goods_seckill/index','','',1,0,'2022-04-15 09:39:24',0),(37,8,1,'优惠券列表','/pages/activity/collect_coupons/index','','',1,0,'2022-04-15 09:40:08',0),(38,8,1,'专场列表','/pages/activity/topic/index','','',1,0,'2022-04-15 09:40:33',0),(39,8,1,'助力列表','/pages/activity/assist/index','','',1,0,'2022-04-15 09:40:57',0),(40,8,1,'拼团列表','/pages/activity/combination/index','','',1,0,'2022-04-15 09:41:18',0),(41,8,1,'资讯列表','/pages/chat/customer_list/index?type=0','','',1,0,'2022-04-15 09:42:57',0),(43,29,1,'商户信息','/pages/store/detail/index','','',1,0,'2022-04-15 09:58:09',1),(44,8,1,'文章列表','/pages/news_list/index','','',1,0,'2022-04-16 07:19:16',0),(46,29,1,'店铺分类','/pages/store/home/index?type=2','','',1,0,'2022-04-18 02:47:32',1),(47,29,1,'店铺领券','/pages/store/home/index?coupon=1','','',1,0,'2022-04-18 02:48:30',1),(48,29,1,'专场列表','/pages/store/home/index?type=4','','',0,0,'2022-04-18 02:50:33',1),(49,8,1,'推荐单品','/pages/columnGoods/HotNewGoods/index?type=good','','',1,0,'2022-04-21 10:27:26',0),(50,8,1,'精品推荐','/pages/columnGoods/HotNewGoods/index?type=best','','',1,0,'2022-04-21 10:27:54',0),(51,8,1,'热门榜单','/pages/columnGoods/HotNewGoods/index?type=hot','','',
#
# Data for table "eb_parameter"
#
INSERT INTO `eb_parameter` (`parameter_id`,`template_id`,`mer_id`,`name`,`value`,`create_time`,`sort`) VALUES (1,1,0,'颜色','白色/黑色/自定义色','2023-05-11 12:03:50',0),(2,1,0,'产地','国产/进口','2023-05-11 12:03:50',0),(3,1,0,'品牌','小米/苹果/华为','2023-05-11 12:03:50',0),(4,2,0,'季节','春装/夏装/秋装/冬装','2023-05-11 12:06:32',0),(5,2,0,'款式','休闲/正式','2023-05-11 12:06:32',0),(6,2,0,'颜色','黑/白/灰','2023-05-11 12:06:32',0),(7,2,0,'风格','时尚/传统','2023-05-11 12:06:32',0),(8,3,0,'材质','钻石/珍珠/白金/黄金','2023-05-11 12:08:12',0),(9,3,0,'风格','尊贵/简约/经典','2023-05-11 12:08:12',0),(10,3,0,'颜色','白色/亮白色/金色/香槟色','2023-05-11 12:08:12',0),(11,4,0,'品牌','香奈儿/Dior/兰蔻','2023-05-11 12:12:29',0),(12,4,0,'产地','进口/国产','2023-05-11 12:12:29',0),(13,4,0,'包装','小样/小包装/大包装','2023-05-11 12:12:29',0),(14,5,0,'产地','南方/北方','2023-05-17 16:29:12',0),(15,5,0,'来源','国产/进口','2023-05-17 16:29:12',0),(16,5,0,'储运','常温/冷藏','2023-05-17 16:29:12',0),(17,5,0,'口感','甜/酸甜/酸','2023-05-17 16:29:12',0);
#
# Data for table "eb_parameter_template"
#
INSERT INTO `eb_parameter_template` (`template_id`,`mer_id`,`template_name`,`sort`,`create_time`) VALUES (1,0,'数码产品',0,'2023-05-11 12:03:51'),(2,0,'服饰',0,'2023-05-11 12:06:32'),(3,0,'饰品',0,'2023-05-11 12:08:13'),(4,0,'美妆',0,'2023-05-11 12:12:30'),(5,0,'水果参数模板',0,'2023-05-17 16:29:13');
#
# Data for table "eb_parameter_value"
#
INSERT INTO `eb_parameter_value` (`parameter_value_id`,`parameter_id`,`product_id`,`name`,`value`,`sort`,`create_time`,`mer_id`) VALUES (4,1,218,'颜色','白色/黑色/自定义色',0,'2023-05-11 12:13:02',0),(5,2,218,'产地','国产/进口',0,'2023-05-11 12:13:02',0),(6,3,218,'品牌','小米/苹果/华为',0,'2023-05-11 12:13:02',0),(7,1,217,'颜色','白色/黑色/自定义色',0,'2023-05-11 12:13:17',0),(8,2,217,'产地','国产/进口',0,'2023-05-11 12:13:17',0),(9,3,217,'品牌','小米/苹果/华为',0,'2023-05-11 12:13:17',0),(13,1,219,'颜色','白色/黑色/自定义色',0,'2023-05-11 12:17:51',0),(14,2,219,'产地','国产/进口',0,'2023-05-11 12:17:51',0),(15,3,219,'品牌','小米/苹果/华为',0,'2023-05-11 12:17:51',0),(16,1,220,'颜色','白色/黑色/自定义色',0,'2023-05-11 12:31:16',0),(17,2,220,'产地','国产/进口',0,'2023-05-11 12:31:16',0),(18,3,220,'品牌','小米/苹果/华为',0,'2023-05-11 12:31:16',0),(23,14,237,'产地','南方/北方',0,'2023-05-17 16:33:09',0),(24,15,237,'来源','国产/进口',0,'2023-05-17 16:33:09',0),(25,16,237,'储运','常温/冷藏',0,'2023-05-17 16:33:09',0),(26,17,237,'口感','甜/酸甜/酸',0,'2023-05-17 16:33:09',0),(27,14,238,'产地','南方/北方',0,'2023-05-17 16:36:25',0),(28,15,238,'来源','国产/进口',0,'2023-05-17 16:36:25',0),(29,16,238,'储运','常温/冷藏',0,'2023-05-17 16:36:25',0),(30,17,238,'口感','甜/酸甜/酸',0,'2023-05-17 16:36:25',0),(31,14,239,'产地','南方/北方',0,'2023-05-17 16:46:38',0),(32,15,239,'来源','国产/进口',0,'2023-05-17 16:46:38',0),(33,16,239,'储运','常温/冷藏',0,'2023-05-17 16:46:38',0),(34,17,239,'口感','甜/酸甜/酸',0,'2023-05-17 16:46:38',0),(39,14,241,'产地','南方/北方',0,'2023-05-17 16:53:11',0),(40,15,241,'来源','国产/进口',0,'2023-05-17 16:53:11',0),(41,16,241,'储运','常温/冷藏',0,'2023-05-17 16:53:11',0),(42,17,241,'口感','甜/酸甜/酸',0,'2023-05-17 16:53:11',0),(43,14,240,'产地','南方/北方',0,'2023-05-17 16:54:36',0),(44,15,240,'来源','国产/进口',0,'2023-05-17 16:54:36',0),(45,16,240,'储运','常温/冷藏',0,'2023-05-17 16:54:36',0),(46,17,240,'口感','甜/酸甜/酸',0,'2023-05-17 16:54:36',0),(47,14,242,'产地','南方/北方',0,'2023-05-17 17:00:28',0),(48,15,242,'来源','国产/进口',0,'2023-05-17 17:00:28',0),(49,16,242,'储运','常温/冷藏',0,'2023-05-17 17:00:28',0),(50,17,242,'口感','甜/酸甜/酸',0,'2023-05-17 17:00:28',0),(51,14,243,'产地','南方/北方',0,'2023-05-17 17:03:51',0),(52,15,243,'来源','国产/进口',0,'2023-05-17 17:03:51',0),(53,16,243,'储运','常温/冷藏',0,'2023-05-17 17:03:51',0),(54,17,243,'口感','甜/酸甜/酸',0,'2023-05-17 17:03:51',0),(55,14,244,'产地','南方/北方',0,'2023-05-17 17:10:44',0),(56,15,244,'来源','国产/进口',0,'2023-05-17 17:10:44',0),(57,16,244,'储运','常温/冷藏',0,'2023-05-17 17:10:44',0),(58,17,244,'口感','甜/酸甜/酸',0,'2023-05-17 17:10:44',0),(59,14,245,'产地','南方/北方',0,'2023-05-17 17:14:27',0),(60,15,245,'来源','国产/进口',0,'2023-05-17 17:14:27',0),(61,16,245,'储运','常温/冷藏',0,'2023-05-17 17:14:27',0),(62,17,245,'口感','甜/酸甜/酸',0,'2023-05-17 17:14:27',0),(67,14,247,'产地','南方/北方',0,'2023-05-17 17:27:09',0),(68,15,247,'来源','国产/进口',0,'2023-05-17 17:27:09',0),(69,16,247,'储运','常温/冷藏',0,'2023-05-17 17:27:09',0),(70,17,247,'口感','甜/酸甜/酸',0,'2023-05-17 17:27:09',0),(75,14,248,'产地','南方/北方',0,'2023-05-18 17:13:20',0),(76,15,248,'来源','国产/进口',0,'2023-05-18 17:13:20',0),(77,16,248,'储运','常温/冷藏',0,'2023-05-18 17:13:20',0),(78,17,248,'口感','甜/酸甜/酸',0,'2023-05-18 17:13:20',0),(79,14,246,'产地','南方/北方',0,'2023-05-18 17:13:41',0),(80,15,246,'来源','国产/进口',0,'2023-05-18 17:13:41',0),(81,16,246,'储运','常温/冷藏',0,'2023-05-18 17:13:41',0),(82,17,246,'口感','甜/酸甜/酸',0,'2023-05-18 17:13:41',0);
#
# Data for table "eb_presell_order"
#
#
# Data for table "eb_price_rule"
#
INSERT INTO `eb_price_rule` (`rule_id`,`rule_name`,`sort`,`is_show`,`is_default`,`content`,`create_time`,`update_time`) VALUES (1,'价格说明',0,1,0,'<p><span style=\"font-size: 12px;\"><strong>售&nbsp; &nbsp;价: </strong>指商品销售价格,是您最终决定是否购买商品的依据。</span></p><p><span style=\"font-size: 12px;\"><strong>市场价:</strong>指商品市场标价,该价格可能是品牌专柜价、商品吊牌价、或品牌供应商提供的正品零售价或其它真实有依据的价格;由于地区、时间的差异行情的波动,品牌专柜标价、商品吊牌标价等可能会与您购物时展示的不一致,该价格仅供参考。</span></p><p><span style=\"font-size: 12px;\"><strong>活动价:</strong>指商城或店铺的营销活动期间的商品销售价格。</span></p>','2023-05-17 15:25:36','2023-05-17 15:27:32');
#
# Data for table "eb_record"
#
#
# Data for table "eb_relevance"
#
INSERT INTO `eb_relevance` (`relevance_id`,`left_id`,`right_id`,`type`) VALUES (1,1,55,'mer_auth'),(2,1,8614,'mer_auth'),(3,1,8945,'mer_auth'),(4,1,8946,'mer_auth'),(5,1,8947,'mer_auth'),(6,1,8948,'mer_auth'),(7,1,8949,'mer_auth'),(8,1,8950,'mer_auth'),(9,1,8951,'mer_auth'),(10,1,95,'mer_auth'),(11,1,105,'mer_auth'),(12,1,8600,'mer_auth'),(13,1,8867,'mer_auth'),(14,1,8868,'mer_auth'),(15,1,8869,'mer_auth'),(16,1,8870,'mer_auth'),(17,1,8871,'mer_auth'),(18,1,8872,'mer_auth'),(19,1,8873,'mer_auth'),(20,1,8874,'mer_auth'),(21,1,8875,'mer_auth'),(22,1,8876,'mer_auth'),(23,1,8877,'mer_auth'),(24,1,8878,'mer_auth'),(25,1,8879,'mer_auth'),(26,1,8880,'mer_auth'),(27,1,8881,'mer_auth'),(28,1,8882,'mer_auth'),(29,1,8883,'mer_auth'),(30,1,8884,'mer_auth'),(31,1,9035,'mer_auth'),(32,1,9036,'mer_auth'),(33,1,9037,'mer_auth'),(34,1,9038,'mer_auth'),(35,1,9039,'mer_auth'),(36,1,9115,'mer_auth'),(37,1,9116,'mer_auth'),(38,1,8601,'mer_auth'),(39,1,8885,'mer_auth'),(40,1,8886,'mer_auth'),(41,1,96,'mer_auth'),(42,1,8598,'mer_auth'),(43,1,8859,'mer_auth'),(44,1,8860,'mer_auth'),(45,1,8861,'mer_auth'),(46,1,8862,'mer_auth'),(47,1,8863,'mer_auth'),(48,1,8864,'mer_auth'),(49,1,8599,'mer_auth'),(50,1,8865,'mer_auth'),(51,1,8866,'mer_auth'),(52,1,99,'mer_auth'),(53,1,8597,'mer_auth'),(54,1,8855,'mer_auth'),(55,1,8856,'mer_auth'),(56,1,8857,'mer_auth'),(57,1,8858,'mer_auth'),(58,1,544,'mer_auth'),(59,1,8602,'mer_auth'),(60,1,8887,'mer_auth'),(61,1,8888,'mer_auth'),(62,1,8889,'mer_auth'),(63,1,8890,'mer_auth'),(64,1,8603,'mer_auth'),(65,1,8891,'mer_auth'),(66,1,8892,'mer_auth'),(67,1,1246,'mer_auth'),(68,1,8607,'mer_auth'),(69,1,8907,'mer_auth'),(70,1,8908,'mer_auth'),(71,1,8909,'mer_auth'),(72,1,8910,'mer_auth'),(73,1,8911,'mer_auth'),(74,1,8912,'mer_auth'),(75,1,8913,'mer_auth'),(76,1,1468,'mer_auth'),(77,1,8604,'mer_auth'),(78,1,8893,'mer_auth'),(79,1,8894,'mer_auth'),(80,1,8895,'mer_auth'),(81,1,8896,'mer_auth'),(82,1,8897,'mer_auth'),(83,1,8898,'mer_auth'),(84,1,9059,'mer_auth'),(85,1,9100,'mer_auth'),(86,1,9101,'mer_auth'),(87,1,9102,'mer_auth'),(88,1,9103,'mer_auth'),(89,1,9104,'mer_auth'),(90,1,9105,'mer_auth'),(91,1,512,'mer_auth'),(92,1,513,'mer_auth'),(93,1,8592,'mer_auth'),(94,1,8819,'mer_auth'),(95,1,8820,'mer_auth'),(96,1,8821,'mer_auth'),(97,1,8822,'mer_auth'),(98,1,8823,'mer_auth'),(99,1,8824,'mer_auth'),(100,1,8825,'mer_auth'),(101,1,8826,'mer_auth'),(102,1,8827,'mer_auth'),(103,1,8828,'mer_auth'),(104,1,8829,'mer_auth'),(105,1,8830,'mer_auth'),(106,1,8831,'mer_auth'),(107,1,8832,'mer_auth'),(108,1,8833,'mer_auth'),(109,1,8834,'mer_auth'),(110,1,8835,'mer_auth'),(111,1,8836,'mer_auth'),(112,1,8837,'mer_auth'),(113,1,8838,'mer_auth'),(114,1,8839,'mer_auth'),(115,1,9074,'mer_auth'),(116,1,8593,'mer_auth'),(117,1,8840,'mer_auth'),(118,1,8841,'mer_auth'),(119,1,528,'mer_auth'),(120,1,8595,'mer_auth'),(121,1,8844,'mer_auth'),(122,1,8845,'mer_auth'),(123,1,8846,'mer_auth'),(124,1,8847,'mer_auth'),(125,1,8848,'mer_auth'),(126,1,8849,'mer_auth'),(127,1,8850,'mer_auth'),(128,1,8851,'mer_auth'),(129,1,8852,'mer_auth'),(130,1,8596,'mer_auth'),(131,1,8853,'mer_auth'),(132,1,8854,'mer_auth'),(133,1,789,'mer_auth'),(134,1,8594,'mer_auth'),(135,1,8842,'mer_auth'),(136,1,8843,'mer_auth'),(137,1,106,'mer_auth'),(138,1,107,'mer_auth'),(139,1,115,'mer_auth'),(140,1,8561,'mer_auth'),(141,1,8673,'mer_auth'),(142,1,8674,'mer_auth'),(143,1,8675,'mer_auth'),(144,1,8676,'mer_auth'),(145,1,8677,'mer_auth'),(146,1,8678,'mer_auth'),(147,1,8562,'mer_auth'),(148,1,8679,'mer_auth'),(149,1,8680,'mer_auth'),(150,1,122,'mer_auth'),(151,1,8563,'mer_auth'),(152,1,8681,'mer_auth'),(153,1,1132,'mer_auth'),(154,1,8560,'mer_auth'),(155,1,8672,'mer_auth'),(156,1,785,'mer_auth'),(157,1,786,'mer_auth'),(158,1,8586,'mer_auth'),(159,1,8782,'mer_auth'),(160,1,8783,'mer_auth'),(161,1,8784,'mer_auth'),(162,1,8785,'mer_auth'),(163,1,8786,'mer_auth'),(164,1,8787,'mer_auth'),(165,1,8788,'mer_auth'),(166,1,8789,'mer_auth'),(167,1,8790,'mer_auth'),(168,1,8791,'mer_auth'),(169,1,8792,'mer_auth'),(170,1,8793,'mer_auth'),(171,1,8794,'mer_auth'),(172,1,8795,'mer_auth'),(173,1,8796,'mer
#
# Data for table "eb_routine_qrcode"
#
#
# Data for table "eb_serve_meal"
#
#
# Data for table "eb_serve_order"
#
#
# Data for table "eb_shipping_template"
#
INSERT INTO `eb_shipping_template` (`shipping_template_id`,`name`,`type`,`appoint`,`undelivery`,`mer_id`,`is_default`,`sort`,`create_time`,`info`) VALUES (1,'默认模板',1,0,0,1,0,0,'2022-04-24 07:10:02',NULL),(2,'默认模板',1,0,0,2,0,0,'2022-04-24 07:11:26',NULL),(3,'默认模板',1,0,0,3,0,0,'2022-04-24 07:12:11',NULL),(4,'默认模板',1,0,0,4,0,0,'2022-04-24 07:15:43',NULL),(5,'默认模板',1,0,0,5,0,0,'2022-04-24 07:16:39',NULL),(6,'默认模板',1,0,0,6,0,0,'2022-04-24 07:29:04',NULL),(106,'默认模板',1,0,0,75,0,0,'2023-05-09 07:57:59',NULL),(107,'默认模板',1,0,0,76,0,0,'2023-05-17 07:48:48',NULL);
#
# Data for table "eb_shipping_template_free"
#
INSERT INTO `eb_shipping_template_free` (`shipping_template_free_id`,`temp_id`,`city_id`,`number`,`price`) VALUES (48,50,'2',1,1.00),(49,51,'2',1,1.00),(51,54,'',1,10.30),(54,50,'67748/69390/71850/72975/76726/79163/81000/84092/87613/92738/96064',2,1.00),(57,68,'',1,10.30),(58,69,'',1,10.30),(59,48,'551',1,10.30),(63,90,'551',1,10.30),(64,49,'',1,1.00),(65,56,'67748/69390/71850/72975/76726/79163/81000/84092/87613/92738/96064/99538/100904/101772/101884/104457/107065/108166/109847/110889/112552/113777/114940',1,10.00),(74,42,'',1,10.00),(75,91,'2',1,1.00),(76,92,'/2/',1,1.00),(77,93,'2',1,1.00),(78,94,'2',1,1.00),(82,95,'',1,1.00),(83,44,'/7363/13268/18128/24371/26779/32688/38160/44570/49190/52018/58247/61804/66813/67748/69390/71850/72975/76726/79163/81000/84092/87613/92738/96064/',1,10.00),(84,98,'/646579/649979/650575/652581/655295/657848/660643/663046/667681/669707/',1,1.00),(85,99,'/////////////',1,1.00),(88,102,'/646579/649979/650575/652581/655295/657848/660643/663046/667681/669707/',1,1.00),(97,105,'//////',1,1.00),(98,105,'//////////////////////////////////',1,1.00);
#
# Data for table "eb_shipping_template_region"
#
INSERT INTO `eb_shipping_template_region` (`shipping_template_region_id`,`temp_id`,`city_id`,`first`,`first_price`,`continue`,`continue_price`) VALUES (308,46,'0',1.00,10.00,1.00,5.00),(309,46,'0',1.00,10.00,1.00,5.00),(310,47,'0',1.00,10.00,1.00,5.00),(311,47,'4/11',1.00,10.00,1.00,5.00),(312,46,'4/7',1.00,10.00,1.00,5.00),(313,46,'4/7',1.00,10.00,1.00,5.00),(314,46,'4/7',1.00,10.00,1.00,5.00),(318,50,'0',1.00,1.00,1.00,1.00),(319,51,'0',1.00,1.00,1.00,1.00),(320,51,'',1.00,1.00,1.00,1.00),(323,53,'0',1.00,10.00,1.00,5.00),(324,53,'4/11',1.00,10.00,1.00,5.00),(325,54,'0',1.00,10.00,1.00,5.00),(326,54,'4/11',1.00,10.00,1.00,5.00),(335,50,'7363',2.00,1.00,2.00,1.00),(342,68,'0',1.00,10.00,1.00,5.00),(343,68,'4/11',1.00,10.00,1.00,5.00),(344,69,'0',1.00,10.00,1.00,5.00),(345,69,'4/11',1.00,10.00,1.00,5.00),(346,48,'0',1.00,10.00,1.00,5.00),(347,48,'4/72',1.00,10.00,1.00,5.00),(354,90,'0',1.00,10.00,1.00,5.00),(355,90,'4/72',1.00,10.00,1.00,5.00),(356,49,'0',1.00,1.00,1.00,1.00),(357,56,'0',1.00,10.00,1.00,5.00),(370,42,'0',1.00,10.00,1.00,5.00),(371,42,'67748/69390/71850/72975/76726/79163/81000/84092/87613/92738/96064',1.00,1.00,1.00,1.00),(372,91,'0',1.00,1.00,1.00,1.00),(373,92,'0',1.00,1.00,1.00,1.00),(374,93,'0',1.00,1.00,1.00,1.00),(375,94,'0',1.00,1.00,1.00,1.00),(382,95,'0',1.00,1.00,1.00,1.00),(383,95,'13268/18128/24371/26779/32688/38160/44570/49190/52018/58247/61804/66813',1.00,1.00,1.00,1.00),(384,44,'0',1.00,1.00,1.00,1.00),(385,96,'0',1.00,1.00,1.00,1.00),(386,97,'0',1.00,1.00,1.00,1.00),(387,98,'0',1.00,1.00,1.00,1.00),(388,99,'0',1.00,1.00,1.00,1.00),(391,100,'0',1.00,1.00,1.00,1.00),(395,102,'0',1.00,1.00,1.00,1.00),(396,103,'0',1.00,10.00,1.00,1.00),(397,104,'0',1.00,10.00,1.00,1.00),(402,105,'0',1.00,1.00,1.00,1.00),(403,106,'0',0.00,0.00,0.00,0.00),(404,107,'0',0.00,0.00,0.00,0.00);
#
# Data for table "eb_shipping_template_undelivery"
#
INSERT INTO `eb_shipping_template_undelivery` (`shipping_template_undelivery_id`,`temp_id`,`city_id`) VALUES (43,46,'66/328'),(47,50,'99538/100904/101772/101884/104457/107065/108166/109847/110889/112552/113777/114940'),(48,51,'99538/100904/101772/101884/104457/107065/108166/109847/110889/112552/113777/114940'),(50,53,'12/13/14'),(51,54,'12/13/14'),(57,68,'0'),(58,69,'0'),(59,48,'0'),(62,90,'661/3280'),(63,49,'///////////'),(64,56,'104457'),(73,42,''),(74,91,'2'),(75,92,'2'),(76,93,'2'),(77,94,'7363'),(78,44,'////'),(79,98,'/698441/699583/699773/700070/700489/701559/702104/703119/704779/705145/708117/709792/711218/712893/713697/'),(80,99,'////////////////'),(83,102,'/0/698441/699583/699773/700070/700489/701559/702104/703119/704779/705145/708117/709792/711218/712893/713697/0/'),(84,103,'////////////////////////////////////////////////////////////'),(85,104,'////////'),(86,105,'/714402/717531/719868/720118/722024/725488/727730/729928/730843/734179/736051/737856/737861/739957/740510/742126/742636/743938/745674/748553/749571/749930/749957/');
#
# Data for table "eb_sms_record"
#
INSERT INTO `eb_sms_record` (`sms_record_id`,`uid`,`phone`,`content`,`create_time`,`ip`,`template`,`resultcode`,`record_id`) VALUES (1,'qinii','18192945061','【CRMEB】您的验证码是5115有效期为30分钟。如非本人操作可不予理会。','2023-05-11 02:41:43','','435250',NULL,27303432),(2,'qinii','13333133313','【CRMEB】您购买的商品已支付成功支付金额139.00元订单号wxo1683793168509770331,感谢您的光临!','2023-05-11 08:19:31','','440396',NULL,27313446),(3,'qinii','18192945061','【CRMEB】您的验证码是4772有效期为30分钟。如非本人操作可不予理会。','2023-05-18 03:59:44','','435250',NULL,27485958);
#
# Data for table "eb_store_activity"
#
INSERT INTO `eb_store_activity` (`activity_id`,`activity_name`,`start_time`,`end_time`,`pic`,`is_show`,`status`,`activity_type`,`create_time`,`is_del`,`scope_type`,`images`,`info`,`color`,`sort`,`mer_id`,`link_id`,`update_time`,`count`,`total`,`is_display`) VALUES (1,'周年庆','2022-09-28 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/f079e656534e8286144493fa9d63c3c9.jpg',0,-1,1,'2022-09-29 09:31:58',0,0,'','','',0,0,NULL,NULL,0,0,1),(2,'双十一','2022-09-27 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/13c22a2fdfbaae88ca4996842a53d26c.jpg',0,-1,1,'2022-09-29 09:32:45',0,0,'','','',0,0,NULL,NULL,0,0,1),(3,'双十二','2022-09-27 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/f874db2e49d275cadd2cb79e7da1e0ba.jpg',0,-1,1,'2022-09-29 09:33:09',0,0,'','','',0,0,NULL,NULL,0,0,1),(4,'购物节','2022-09-27 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/a42d093726957f0844ee208b4034137a.jpg',0,-1,1,'2022-09-29 09:33:48',0,0,'','','',0,0,NULL,NULL,0,0,1),(5,'春节','2022-09-27 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/b5f0d345b3da4dbc5df8834e400a6bda.jpg',0,-1,1,'2022-09-29 09:34:38',0,0,'','','',0,0,NULL,NULL,0,0,1),(6,'周年庆','2022-09-27 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/21613dcf8b5030505b2c8e87834b5357.png',0,-1,2,'2022-09-29 09:35:19',0,0,'','','',0,0,NULL,NULL,0,0,1),(7,'购物节','2022-09-27 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/7ff89d60f7cd6a1e677142e6ee297e0d.png',0,-1,2,'2022-09-29 09:35:48',0,0,'','','',0,0,NULL,NULL,0,0,1),(8,'双十二','2022-09-28 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/f1a392de7144fc9e018bc792c8de8926.png',0,-1,2,'2022-09-29 09:36:19',0,0,'','','',0,0,NULL,NULL,0,0,1),(9,'双十一','2022-09-27 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/c419c62c0c2f9ac3bf6f8065dce1239e.png',0,-1,2,'2022-09-29 09:36:50',0,0,'','','',0,0,NULL,NULL,0,0,1),(10,'年货节','2022-09-28 16:00:00','2022-10-31 15:59:59','https://mer1.crmeb.net/uploads/merchant/20220920/3c89ac3fac70d2a6c87506b4d3390229.png',0,-1,2,'2022-09-29 09:37:11',0,0,'','','',0,0,NULL,NULL,0,0,1),(11,'618活动','2023-05-17 16:00:00','2023-07-18 15:59:59','https://mer1.crmeb.net/uploads/def/20230519/e0126f629e051983e11679711e7f9acb.png',1,1,2,'2023-05-19 17:32:20',0,2,'','','',0,0,NULL,NULL,0,0,1),(12,'夏季特卖','2023-07-18 16:00:00','2023-10-18 16:00:00','https://mer1.crmeb.net/uploads/def/20230519/1c98ce100ef67bed9bea8c6e7f48cc84.png',1,0,2,'2023-05-19 17:33:19',0,0,'','','',0,0,NULL,NULL,0,0,1),(13,'双11活动','2023-10-18 16:00:00','2023-11-29 16:00:00','https://mer1.crmeb.net/uploads/def/20230519/470df69240242f3cfa7ed0950f183422.png',1,0,2,'2023-05-19 17:35:24',0,2,'','','',0,0,NULL,NULL,0,0,1),(14,'618活动','2023-05-18 16:00:00','2023-07-18 15:59:59','https://mer1.crmeb.net/uploads/def/20230519/36f1562459ec1eb155b9050b6bbe5528.jpg',1,1,1,'2023-05-19 17:36:30',0,2,'','','',0,0,NULL,NULL,0,0,1),(15,'周年庆','2023-07-18 16:00:00','2023-10-19 15:59:59','https://mer1.crmeb.net/uploads/def/20230519/ead3de9f5858bc52214de9bf7961b84e.jpg',1,0,1,'2023-05-19 17:38:04',0,2,'','','',0,0,NULL,NULL,0,0,1),(16,'双11活动','2023-10-18 16:00:00','2023-11-30 15:59:59','https://mer1.crmeb.net/uploads/def/20230519/930d32c2c31c23adf94486e8ce992a71.jpg',1,0,1,'2023-05-19 17:39:58',0,2,'','','',0,0,NULL,NULL,0,0,1),(17,'年货节','2023-10-31 16:00:00','2023-12-31 15:59:59','https://mer1.crmeb.net/uploads/def/20230519/4a2f04baed0dac726056d5d3387de286.jpg',1,0,1,'2023-05-19 17:42:56',0,2,'','','',0,0,NULL,NULL,0,0,1),(18,'年货节','2023-10-31 16:00:00','2023-12-31 15:59:59','https://mer1.crmeb.net/uploads/def/20230519/0cf5d976443bd5e78dedd46446bd4a7f.png',1,0,2,'2023-05-19 17:44:03',0,2,'','','',0,0,NULL,NULL,0,0,1);
#
# Data for table "eb_store_activity_related"
#
#
# Data for table "eb_store_attr_template"
#
INSERT INTO `eb_store_attr_template` (`attr_template_id`,`template_name`,`template_value`,`mer_id`) VALUES (24,'鞋类','[{\"value\":\"\\u989c\\u8272\",\"detail\":[\"\\u9ec4\\u8272\",\"\\u7ea2\\u8272\"]},{\"value\":\"\\u5927\\u5c0f\",\"detail\":[\"35\",\"36\",\"38\"]}]',55),(25,'化妆品','[{\"value\":\"\\u96c5\\u8bd7\\u5170\\u9edb\",\"detail\":[\"15\",\"20\"]},{\"value\":\"\\u5170\\u853b\",\"detail\":[\"15\",\"20\"]}]',55),(26,'拉拉','[{\"value\":\"\\u578b\\u53f7\",\"detail\":[\"\\u5c0f\\u53f7\",\"\\u5927\\u53f7\"]}]',55),(27,'手机','[{\"value\":\"\\u989c\\u8272\",\"detail\":[\"\\u9ed1\",\"\\u94f6\",\"\\u91d1\",\"\\u767d\",\"\\u65e0\\u8272\"]}]',55),(28,'手机','[{\"value\":\"\\u673a\\u8eab\\u989c\\u8272\",\"detail\":[\"\\u94f6\\u8272\",\"\\u91d1\\u8272\",\"\\u7ea2\\u8272\",\"\\u767d\\u8272\",\"\\u9ed1\\u8272\",\"\\u84dd\\u8272\",\"\\u7c89\\u8272\",\"\\u9ec4\\u8272\"]}]',64),(29,'衣服','[{\"value\":\"\\u989c\\u8272\",\"detail\":[\"\\u7ea2\\u8272\",\"\\u767d\\u8272\",\"\\u9ed1\\u8272\",\"\\u9ec4\\u8272\",\"\\u84dd\\u8272\",\"\\u7c89\\u8272\"]}]',64),(31,'服饰','[{\"value\":\"\\u5c3a\\u5bf8\",\"detail\":[\"S\",\"L\",\"XL\",\"XXL\"]}]',65),(33,'1','[{\"value\":\"1\",\"detail\":[\"1\",\"2\"]},{\"value\":\"11\",\"detail\":[\"11\",\"22\"]},{\"value\":\"111\",\"detail\":[\"111\",\"222\"]}]',66),(34,'容量吧','[{\"value\":\"\\u6beb\\u5347\",\"detail\":[\"30ml\",\"40ml\",\"50ml\"]},{\"value\":\"\\u989c\\u8272\",\"detail\":[\"\\u9ed1\\u8272\",\"\\u767d\\u8272\"]},{\"value\":\"12\",\"detail\":[\"21\"]}]',66),(35,'女鞋','[{\"value\":\"S\",\"detail\":[\"35\"]},{\"value\":\"M\",\"detail\":[\"36\"]},{\"value\":\"L\",\"detail\":[\"37\"]}]',65);
#
# Data for table "eb_store_brand"
#
INSERT INTO `eb_store_brand` (`brand_id`,`brand_category_id`,`brand_name`,`sort`,`pic`,`is_show`,`create_time`) VALUES (116,150,'苹果',100,'url',1,'2020-04-29 08:50:12'),(118,150,'华为',100,'url',1,'2020-04-29 09:15:09'),(119,150,'荣耀',100,'',1,'2020-04-30 03:08:36'),(120,151,'安卓',100,'',1,'2020-07-01 02:39:41'),(121,151,'乔丹',0,'',1,'2020-07-04 08:17:39'),(122,151,'耐克',0,'',1,'2020-07-04 08:17:51'),(123,151,'安踏',0,'',1,'2020-07-04 08:18:03'),(124,151,'森马',0,'',1,'2020-07-04 08:18:55'),(125,151,'其他品牌',0,'',1,'2020-07-08 08:59:11'),(126,154,'524524',0,'',1,'2020-07-09 13:12:59'),(127,154,'111',0,'',0,'2020-07-09 13:15:09'),(128,154,'4444',0,'',0,'2020-07-09 13:16:51'),(129,154,'101010',0,'',0,'2020-07-09 13:23:13'),(130,154,'22222222',4,'',1,'2020-07-09 14:23:25'),(131,151,'222222222222222222222222222',0,'',1,'2020-07-09 14:23:53');
#
# Data for table "eb_store_brand_category"
#
INSERT INTO `eb_store_brand_category` (`store_brand_category_id`,`pid`,`cate_name`,`path`,`sort`,`is_show`,`level`,`create_time`) VALUES (150,0,'测试1','/',1,1,0,'2020-04-30 03:08:14'),(151,150,'二级品牌','/150/',0,1,1,'2020-07-01 02:38:11'),(152,0,'测试2','/',0,1,0,'2020-07-06 09:21:41'),(154,152,'2325','/152/',1,1,1,'2020-07-06 09:24:33'),(155,0,'测试3','/',4,1,0,'2020-07-06 09:24:46'),(156,155,'2313','/155/',1,1,1,'2020-07-06 09:24:58'),(157,155,'ww','/155/',1,1,1,'2020-07-09 11:02:49');
#
# Data for table "eb_store_cart"
#
INSERT INTO `eb_store_cart` (`cart_id`,`uid`,`mer_id`,`product_type`,`product_id`,`product_attr_unique`,`cart_num`,`create_time`,`source`,`source_id`,`is_pay`,`is_del`,`is_new`,`is_fail`,`spread_id`) VALUES (1,1,2,0,211,'33893fa10160',1,'2023-05-11 08:18:40',0,0,1,0,1,0,0),(3,1,2,0,215,'44f233221800',1,'2023-05-19 08:51:25',0,0,0,0,0,0,0),(4,1,2,0,215,'6c16e77c55d0',1,'2023-05-19 08:51:29',0,0,0,0,0,0,0),(5,1,76,0,238,'c231a5465e20',1,'2023-05-19 08:52:51',0,0,0,0,0,0,0);
#
# Data for table "eb_store_category"
#
INSERT INTO `eb_store_category` (`store_category_id`,`pid`,`cate_name`,`path`,`sort`,`pic`,`is_show`,`level`,`mer_id`,`create_time`,`is_hot`,`type`) VALUES (1,0,'国际美妆','/',0,'https://mer1.crmeb.net/uploads/def/20230508/5b3789ba2cba6d2b1e95585dff61ac3f.jpg',1,0,0,'2023-05-08 09:44:57',0,0),(2,1,'美妆','/1/',0,'https://mer1.crmeb.net/uploads/def/20230508/dbe3f4ee26172a7f11a4db7da112179f.png',1,1,0,'2023-05-08 09:45:13',0,0),(3,2,'彩妆/美妆','/1/2/',0,'https://mer1.crmeb.net/uploads/def/20230508/8f2f3d85527823623b1667fdb17f032a.png',1,2,0,'2023-05-08 06:14:31',1,0),(4,0,'科技数码','/',0,'https://mer1.crmeb.net/uploads/def/20230508/e844093fca16dc3f5d65b93570b33d44.jpg',1,0,0,'2023-05-08 09:44:13',0,0),(5,4,'数码产品','/4/',0,'https://mer1.crmeb.net/uploads/def/20230508/f7ffef3fb37819cd80bf82ddef937347.jpg',1,1,0,'2023-05-08 09:44:28',0,0),(6,5,'电脑','/4/5/',0,'https://mer1.crmeb.net/uploads/def/20230508/28c939ae67f1f57f52870aeff4aea9a8.jpg',1,2,0,'2023-05-08 06:13:24',0,0),(7,5,'手机','/4/5/',0,'https://mer1.crmeb.net/uploads/def/20230508/6656387fa288325e5a89c0d964c43410.jpg',1,2,0,'2023-05-08 09:32:42',1,0),(8,0,'服装配饰','/',0,'https://mer1.crmeb.net/uploads/def/20230508/e46af6cb33e2b9dee7ce4cad208ceb3f.jpg',1,0,0,'2023-05-08 09:43:42',0,0),(9,8,'服装','/8/',0,'https://mer1.crmeb.net/uploads/def/20230508/d0e424909c169b633c5507a05d4e9ffa.jpg',1,1,0,'2023-05-08 09:43:57',0,0),(10,9,'潮牌服饰','/8/9/',0,'https://mer1.crmeb.net/uploads/def/20230508/1c606ed2d8506eb508c73675c480f134.jpg',1,2,0,'2023-05-08 06:12:27',0,0),(11,0,'精品饰品','/',0,'https://mer1.crmeb.net/uploads/def/20230508/0bc73b5be3ddef7a647a923948ddf63b.jpg',1,0,0,'2023-05-08 09:43:16',0,0),(12,11,'小饰品','/11/',0,'https://mer1.crmeb.net/uploads/def/20230508/21457f7fafa3d8c4ec2f3cc0f8f4d3e1.jpg',1,1,0,'2023-05-08 09:43:27',0,0),(13,12,'耳饰','/11/12/',0,'https://mer1.crmeb.net/uploads/def/20230508/e9460fc13c03164dc38c80ae08d51a25.jpg',1,2,0,'2023-05-08 06:18:46',1,0),(14,12,'头饰','/11/12/',0,'https://mer1.crmeb.net/uploads/def/20230508/70c0ccde1b35a1d1842b32fe7edccdad.jpg',1,2,0,'2023-05-08 06:11:08',0,0),(15,0,'生活家居','/',0,'https://mer1.crmeb.net/uploads/def/20230508/267bddf898afac7e990a16c76d076aa7.jpg',1,0,0,'2023-05-08 09:42:56',0,0),(16,15,'家居用品','/15/',0,'https://mer1.crmeb.net/uploads/def/20230508/83e66469be579c9134dba5c714f14fec.jpg',1,1,0,'2023-05-08 09:43:07',0,0),(17,16,'装饰','/15/16/',0,'https://mer1.crmeb.net/uploads/def/20230508/9253d4a6fb12d9f8eaf66e8498964f11.jpg',1,2,0,'2023-05-08 06:10:45',1,0),(18,12,'手饰','/11/12/',0,'https://mer1.crmeb.net/uploads/def/20230508/0bc73b5be3ddef7a647a923948ddf63b.jpg',1,2,0,'2023-05-08 06:11:01',0,0),(19,0,'精美饰品','/',0,'',1,0,6,'2022-04-24 07:58:47',0,0),(20,19,'手环','/19/',0,'',1,1,6,'2022-04-24 07:59:10',0,0),(21,19,'耳坠','/19/',0,'',1,1,6,'2022-04-24 07:59:21',0,0),(22,0,'头饰','/',0,'',1,0,6,'2022-04-24 07:59:38',0,0),(23,22,'头巾','/22/',0,'',1,1,6,'2022-04-24 07:59:57',0,0),(24,0,'家居','/',0,'',1,0,3,'2022-04-24 08:50:36',0,0),(25,24,'装饰','/24/',0,'',1,1,3,'2022-04-24 08:50:45',0,0),(26,0,'潮牌服饰','/',0,'',1,0,2,'2022-04-24 09:01:56',0,0),(27,26,'服装','/26/',0,'',1,1,2,'2022-04-24 09:02:11',0,0),(28,0,'美妆护理','/',0,'',1,0,5,'2022-04-24 09:14:04',0,0),(29,28,'美妆/彩妆','/28/',0,'',1,1,5,'2022-04-24 09:14:16',0,0),(30,0,'美妆','/',0,'',1,0,1,'2022-04-24 09:40:22',0,0),(31,30,'彩妆','/30/',0,'',1,1,1,'2022-04-24 09:40:28',0,0),(32,30,'护理','/30/',0,'',1,1,1,'2022-04-24 09:40:40',0,0),(33,0,'科技数码','/',0,'',1,0,4,'2022-04-24 09:49:43',0,0),(34,33,'电子设备','/33/',0,'',1,1,4,'2022-04-24 09:49:55',0,0),(301,2,'香水','/1/2/',0,'https://mer1.crmeb.net/uploads/def/20230508/ee2b3e696459ab382897a2d85fd6269d.jpg',1,2,0,'2023-05-08 09:32:50',1,0),(302,2,'美容仪','/1/2/',0,'https://mer1.crmeb.net/uploads/def/20230508/5b3789ba2cba6d2b1e95585dff61ac3f.jpg',1,2,0,'2023-05-08 09:22:08',0,0),(303,5,'智能家电','/4/5/',0,'https://mer1.crmeb.net/uploads/def/20230508/996458407937a25bb
#
# Data for table "eb_store_coupon"
#
INSERT INTO `eb_store_coupon` (`coupon_id`,`mer_id`,`is_timeout`,`start_time`,`end_time`,`is_limited`,`total_count`,`remain_count`,`send_type`,`full_reduction`,`title`,`coupon_price`,`use_min_price`,`coupon_type`,`coupon_time`,`use_start_time`,`use_end_time`,`sort`,`status`,`create_time`,`is_del`,`type`) VALUES (19,76,0,NULL,NULL,0,0,0,0,0.00,'10元优惠券',10,0,0,200,NULL,NULL,0,1,'2023-05-18 09:18:02',0,0),(20,76,0,NULL,NULL,0,0,0,0,0.00,'商品优惠券',8,0,0,200,NULL,NULL,0,1,'2023-05-18 09:18:45',0,1),(21,0,0,NULL,NULL,0,0,0,0,0.00,'618优惠券',20,0,0,200,NULL,NULL,0,1,'2023-05-19 09:57:31',0,10),(22,0,0,NULL,NULL,0,0,0,5,0.00,'付费会员券',5,0,0,1,NULL,NULL,0,1,'2023-05-19 09:57:55',0,10),(23,0,0,NULL,NULL,0,0,0,0,0.00,'生活/饰品/服饰/美妆',9,0,0,300,NULL,NULL,0,1,'2023-05-19 10:00:21',0,11);
#
# Data for table "eb_store_coupon_issue_user"
#
#
# Data for table "eb_store_coupon_product"
#
INSERT INTO `eb_store_coupon_product` (`product_id`,`coupon_id`,`create_time`) VALUES (5,2,'2020-07-09 12:01:06'),(7,5,'2020-07-09 12:19:38'),(18,14,'2020-07-10 01:03:36'),(18,15,'2020-07-10 02:55:58'),(6,17,'2020-07-13 07:45:40'),(4,17,'2020-07-13 07:45:40'),(247,20,'2023-05-18 09:18:44'),(245,20,'2023-05-18 09:18:44'),(243,20,'2023-05-18 09:18:44'),(242,20,'2023-05-18 09:18:44'),(241,20,'2023-05-18 09:18:44'),(15,23,'2023-05-19 10:00:21'),(11,23,'2023-05-19 10:00:21'),(8,23,'2023-05-19 10:00:21'),(1,23,'2023-05-19 10:00:21');
#
# Data for table "eb_store_coupon_send"
#
#
# Data for table "eb_store_coupon_user"
#
#
# Data for table "eb_store_discounts"
#
INSERT INTO `eb_store_discounts` (`discount_id`,`title`,`image`,`type`,`is_limit`,`limit_num`,`link_ids`,`product_ids`,`is_time`,`start_time`,`stop_time`,`sort`,`create_time`,`free_shipping`,`status`,`is_del`,`mer_id`,`is_show`,`sales`) VALUES (1,'耳机搭配套餐','',1,0,0,'','220',0,0,0,0,'2023-05-19 10:07:17',1,1,0,75,1,NULL),(2,'饰品固定套餐','',0,0,0,'','207,203,208',0,0,0,0,'2023-05-19 10:12:51',1,1,0,6,1,NULL);
#
# Data for table "eb_store_discounts_product"
#
INSERT INTO `eb_store_discounts_product` (`discount_product_id`,`discount_id`,`product_id`,`store_name`,`image`,`type`,`temp_id`,`mer_id`) VALUES (4,1,220,'OnePlus 一加银耳2T有线耳机 手机通话音乐游戏耳机 Type-C通用接口适配华为小米手机 曜岩黑','https://mer1.crmeb.net/uploads/copy/e57fabc82c67c98b8a59c0a17fee04c2.jpg',1,0,75),(5,1,219,'Apple AirPods Pro (第二代) 配MagSafe无线充电盒 主动降噪无线蓝牙耳机 适用iPhone/iPad/Apple Watch','https://mer1.crmeb.net/uploads/copy/c384e21533cc213d8425a7f32e5b8aef.jpg',0,0,75),(6,1,217,'Apple 采用Lightning/闪电接头的 EarPods 耳机 iPhone iPad 耳机 手机耳机','https://mer1.crmeb.net/uploads/copy/4f24383dda03cb03ffc042a0d2f14f1c.jpg',0,0,75),(7,2,207,'Colaivkloia情侣戒指男女对戒银一对婚戒时尚饰品七夕情人节生日礼物送男女友 310情侣一对价男女码数备注 开口可调节','https://mer1.crmeb.net/uploads/copy/c4503df5f0b006cf5d8a419528ca1cdf.jpg',0,0,6),(8,2,203,'ColaivKloia十二生肖星月项链女银本命年时尚饰品首饰锁骨链牛年吊坠七夕情人节礼物送女友 情人节礼物-十二生肖星月项链【鸡】','https://mer1.crmeb.net/uploads/copy/f679be0211b02f6da2c40669ecce7b8f.jpg',0,0,6),(9,2,208,'APM Monaco粉母贝爱心耳钉女耳饰时尚饰品简约气质个性潮流欧美风 生日送女友闺蜜老婆情人节礼物','https://mer1.crmeb.net/uploads/copy/3f1a791594722b8fcbd419f03694693b.jpg',0,0,6);
#
# Data for table "eb_store_group_order"
#
INSERT INTO `eb_store_group_order` (`group_order_id`,`group_order_sn`,`uid`,`total_postage`,`total_price`,`total_num`,`integral`,`integral_price`,`give_integral`,`coupon_price`,`real_name`,`user_phone`,`user_address`,`pay_price`,`pay_postage`,`cost`,`coupon_id`,`give_coupon_ids`,`paid`,`pay_time`,`pay_type`,`create_time`,`is_remind`,`is_del`,`is_combine`,`activity_type`,`is_first`) VALUES (1,'wxo1683793168509770331',1,0.00,139.00,1,0,0.00,0,0.00,'测试','13333133313','北京朝阳区三环以内实验小学',139.00,0.00,69.00,'','',1,'2023-05-11 08:19:28',0,'2023-05-11 08:19:29',0,0,0,0,0);
#
# Data for table "eb_store_import"
#
#
# Data for table "eb_store_import_delivery"
#
#
# Data for table "eb_store_order"
#
INSERT INTO `eb_store_order` (`order_id`,`main_id`,`group_order_id`,`order_sn`,`uid`,`spread_uid`,`top_uid`,`real_name`,`user_phone`,`user_address`,`cart_id`,`total_num`,`total_price`,`total_postage`,`pay_price`,`pay_postage`,`is_selfbuy`,`extension_one`,`extension_two`,`commission_rate`,`integral`,`integral_price`,`give_integral`,`coupon_id`,`coupon_price`,`platform_coupon_price`,`svip_discount`,`order_type`,`paid`,`pay_time`,`pay_type`,`create_time`,`status`,`delivery_type`,`is_virtual`,`delivery_name`,`delivery_id`,`mark`,`remark`,`admin_mark`,`verify_code`,`verify_time`,`verify_service_id`,`transaction_id`,`activity_type`,`order_extend`,`mer_id`,`reconciliation_id`,`cost`,`is_del`,`is_system_del`,`verify_status`,`refund_switch`,`kuaidi_label`) VALUES (1,0,1,'wxo1683793168509770331',1,0,0,'测试','13333133313','北京朝阳区三环以内实验小学','1',1,139.00,0.00,139.00,0.00,0,0.00,0.00,5.0000,0,0.00,0,'',0.00,0.00,0.00,0,1,'2023-05-11 08:19:28',0,'2023-05-11 08:19:29',0,NULL,0,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,0,'',2,0,69.00,0,0,0,1,NULL);
#
# Data for table "eb_store_order_product"
#
INSERT INTO `eb_store_order_product` (`order_product_id`,`order_id`,`uid`,`cart_id`,`product_id`,`extension_one`,`extension_two`,`integral`,`integral_price`,`integral_total`,`coupon_price`,`platform_coupon_price`,`svip_discount`,`postage_price`,`product_sku`,`is_refund`,`product_num`,`product_type`,`activity_id`,`refund_num`,`is_reply`,`cost`,`product_price`,`total_price`,`cart_info`,`refund_switch`,`create_time`) VALUES (1,1,1,1,211,0.00,0.00,0,0.00,0,0.00,NULL,0.00,0.00,'33893fa10160',0,1,0,211,1,0,69.00,139.00,139.00,'{\"product\":{\"product_id\":211,\"cate_id\":304,\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/copy\\/dd90eb142918e90aeac980ffbd522dba.jpg\",\"store_name\":\"\\u53e4\\u5148\\u68ee\\u5047\\u4e24\\u4ef6\\u77ed\\u8896t\\u6064\\u7537\\u5bbd\\u677e\\u5927\\u7801\\u4f11\\u95f2\\u4e0a\\u8863\\u590f\\u5b63\\u7eaf\\u68c9\\u534a\\u8896\\u4f53\\u6064\\u5706\\u9886\\u534a\\u622a\\u8896 \\u767d\\u8272 2XL\\u3010160-180\\u65a4\\u3011\",\"is_show\":1,\"status\":1,\"is_del\":0,\"unit_name\":\"\\u4ef6\",\"price\":\"139.00\",\"mer_status\":1,\"temp_id\":2,\"give_coupon_ids\":[],\"is_gift_bag\":0,\"is_used\":1,\"product_type\":0,\"old_product_id\":0,\"integral_rate\":0,\"delivery_way\":\"2\",\"delivery_free\":0,\"type\":0,\"extend\":\"\",\"pay_limit\":0,\"once_max_count\":0,\"once_min_count\":0,\"mer_svip_status\":1,\"svip_price_type\":0,\"temp\":{\"shipping_template_id\":2,\"name\":\"\\u9ed8\\u8ba4\\u6a21\\u677f\",\"type\":1,\"appoint\":0,\"undelivery\":0,\"mer_id\":2,\"is_default\":0,\"sort\":0,\"create_time\":\"2022-04-24 15:11:26\",\"info\":null,\"region\":[],\"undelives\":null,\"free\":[]}},\"productAttr\":{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/copy\\/e910be31349b7d70f33b4cbf0efa3b05.jpg\",\"extension_one\":\"0.00\",\"extension_two\":\"0.00\",\"product_id\":211,\"stock\":10000,\"price\":\"139.00\",\"unique\":\"33893fa10160\",\"sku\":\"\\u6df1\\u84dd\\u8272,M\\u3010100-125\\u65a4\\u3011\",\"volume\":\"0.00\",\"weight\":\"0.00\",\"ot_price\":\"199.00\",\"cost\":\"69.00\",\"svip_price\":\"0.00\",\"show_svip_price\":false,\"bc_extension_one\":2.78,\"bc_extension_two\":1.39},\"product_type\":0}',1,'2023-05-11 08:19:28');
#
# Data for table "eb_store_order_profitsharing"
#
#
# Data for table "eb_store_order_receipt"
#
#
# Data for table "eb_store_order_status"
#
INSERT INTO `eb_store_order_status` (`order_id`,`order_sn`,`type`,`change_type`,`change_message`,`nickname`,`uid`,`user_type`,`change_time`) VALUES (1,'wxo1683793168509770331','order','create','订单生成','181****5061',1,1,'2023-05-11 08:19:28'),(1,'wxo1683793168509770331','order','pay_success','订单支付成功','181****5061',1,1,'2023-05-11 08:19:28');
#
# Data for table "eb_store_printer"
#
#
# Data for table "eb_store_product"
#
INSERT INTO `eb_store_product` (`product_id`,`mer_id`,`store_name`,`store_info`,`keyword`,`bar_code`,`brand_id`,`is_show`,`status`,`is_del`,`mer_status`,`cate_id`,`unit_name`,`sort`,`rank`,`sales`,`price`,`cost`,`ot_price`,`stock`,`is_hot`,`is_benefit`,`is_best`,`is_new`,`is_good`,`product_type`,`ficti`,`browse`,`code_path`,`video_link`,`temp_id`,`spec_type`,`extension_type`,`refusal`,`rate`,`reply_count`,`give_coupon_ids`,`is_gift_bag`,`create_time`,`care_count`,`is_used`,`old_product_id`,`image`,`slider_image`,`guarantee_template_id`,`once_max_count`,`once_min_count`,`integral_rate`,`integral_total`,`integral_price_total`,`labels`,`delivery_way`,`delivery_free`,`type`,`extend`,`pay_limit`,`svip_price_type`,`svip_price`,`mer_svip_status`,`param_temp_id`,`refund_switch`,`delete`,`mer_form_id`,`good_ids`,`auto_on_time`,`auto_off_time`,`active_id`) VALUES (1,6,'Prada/普拉达女士Prada Symbole 手环饰品','Prada/普拉达女士Prada Symbole 手环饰品','','',0,0,1,0,1,18,'',0,0,0,100.00,120.00,125.00,3000,0,0,0,0,0,2,0,0,'','',0,1,0,NULL,3.0,0,'',0,'2022-04-24 08:00:53',0,1,0,'https://mer.crmeb.net/uploads/attach/2022/04/24/be848aecdab09fe5daa417c333101124.jpg','https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01z3TunG1pLbErFDbBM_!!0-item_pic.jpg,https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01XzRFDj1pLbGrEpGuw_!!2207289125344.jpg,https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01EqUeaQ1pLbEl0HUsD_!!2207289125344.jpg,https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01PhxRqm1pLbEl0HlWB_!!2207289125344.jpg',0,0,0,0,0,0.00,'','2',1,0,'',0,0,0.00,1,NULL,1,0,0,'',NULL,NULL,NULL),(2,6,'Prada/普拉达新品女士金属徽标钥匙扣挂饰','Prada/普拉达新品女士金属徽标钥匙扣挂饰','','',0,1,1,0,1,18,'',0,0,0,180.00,200.00,200.00,2000,0,0,0,0,0,0,0,0,'','',0,1,0,NULL,3.0,0,'',0,'2022-04-24 08:04:48',0,1,0,'https://mer.crmeb.net/uploads/attach/2022/04/24/0be638d9247fea2f6f483f0d47b2885a.jpg','https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01NatCeB1pLbGvbAmjB_!!0-item_pic.jpg,https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01dla1V51pLbGzjdZXG_!!2207289125344.jpg,https://img.alicdn.com/imgextra/i1/2207289125344/O1CN014AssLa1pLbGgy0I01_!!2207289125344.jpg,https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01QelKMV1pLbGoz2PqN_!!2207289125344.jpg',0,0,0,0,0,0.00,'','2',1,0,'',0,0,0.00,1,NULL,1,0,0,'',NULL,NULL,NULL),(3,6,'【新品】Prada/普拉达女士Duchesse 和仿水晶发圈','【新品】Prada/普拉达女士Duchesse 和仿水晶发圈','','',0,1,1,0,1,14,'',0,0,0,50.00,55.00,55.00,1000,0,0,0,0,0,0,0,0,'','',0,1,0,NULL,3.0,0,'',0,'2022-04-24 08:05:33',0,1,0,'https://mer.crmeb.net/uploads/attach/2022/04/24/f58b047a3afaaa365a777c176a02f84c.jpg','https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01ZkQ2Jp1pLbHtAY9Jm_!!0-item_pic.jpg,https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01csyBxU1pLbHtAVOa3_!!2207289125344.jpg,https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01I6KtaB1pLbI3HyGjG_!!2207289125344.jpg,https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01fZrxyT1pLbI6ZYFfj_!!2207289125344.jpg,https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01gExbzm1pLbHwWM7j0_!!2207289125344.jpg',0,0,0,0,0,0.00,'','2',1,0,'',0,0,0.00,1,NULL,1,0,0,'',NULL,NULL,NULL),(4,6,'Prada/普拉达女士印花斜纹布围巾窄版丝巾','Prada/普拉达女士印花斜纹布围巾窄版丝巾','','',0,1,1,0,1,14,'',0,0,0,180.00,200.00,200.00,3000,0,0,0,0,0,0,0,0,'','',0,1,0,NULL,3.0,0,'',0,'2022-04-24 08:06:12',0,1,0,'https://mer.crmeb.net/uploads/attach/2022/04/24/0667bb76fa97ab2bd6bbe0b0dc0570c8.png','https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01UnwugE1pLbHpGQZgp_!!2-item_pic.png,https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01e5nMQK1pLbHmWk4Ym_!!2207289125344.png,https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01kO6WgO1pLbHpGNUDf_!!2207289125344.png,https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01m4iWw41pLbHurwJJl_!!2207289125344.jpg',0,0,0,0,0,0.00,'','2',1,0,'',0,0,0.00,1,NULL,1,0,0,'',NULL,NULL,NULL),(5,6,'Prada/普拉达女士黑色Re-N
#
# Data for table "eb_store_product_assist"
#
INSERT INTO `eb_store_product_assist` (`product_assist_id`,`start_time`,`end_time`,`status`,`pay_count`,`assist_count`,`assist_user_count`,`product_id`,`is_show`,`store_name`,`mer_id`,`store_info`,`is_del`,`create_time`,`product_status`,`refusal`,`action_status`) VALUES (1,'2022-04-24 16:00:00','2022-12-30 16:00:00',0,1,2,1,9,1,'Prada/普拉达女士黑色Re-Nylon再生尼龙发圈发饰',6,'Prada/普拉达女士黑色Re-Nylon再生尼龙发圈发饰',0,'2022-04-24 08:45:30',1,'',-1),(2,'2022-04-24 16:00:00','2022-12-30 16:00:00',0,1,2,1,19,1,'Dnnni水晶圆球托盘创意摆件北欧现代简约家居客厅样板房酒店饰品',3,'Dnnni水晶圆球托盘创意摆件北欧现代简约家居客厅样板房酒店饰品',0,'2022-04-24 08:56:48',1,'',-1),(3,'2022-04-24 16:00:00','2022-12-30 16:00:00',0,1,2,1,28,1,'FUSSED 21AW asymmetric woolen cardigan不对称毛衣针织外套开衫',2,'FUSSED 21AW asymmetric woolen cardigan不对称毛衣针织外套开衫',0,'2022-04-24 09:10:00',1,'',-1),(4,'2023-05-17 09:50:00','2024-12-30 16:00:00',1,1,2,3,252,1,'京鲜到云南石林人参果 甄选大果5斤装单果80-110g新鲜水果 产地直发',76,'京鲜到云南石林人参果 甄选大果5斤装单果80-110g新鲜水果 产地直发',0,'2023-05-17 09:46:01',1,'',1),(5,'2023-05-17 09:55:00','2024-12-30 16:00:00',1,1,3,3,253,1,'舒楠鲜生 泰国青柚 进口青皮白肉蜜柚大果 新鲜水果 青柚2个装约4.5斤)',76,'舒楠鲜生 泰国青柚 进口青皮白肉蜜柚大果 新鲜水果 青柚2个装约4.5斤)',0,'2023-05-17 09:47:43',1,'',1),(6,'2023-05-17 09:58:00','2024-12-30 16:00:00',1,1,3,5,254,1,'CAIFAN诏安青梅果新鲜大果现摘泡酒鲜梅酵素梅子水果 青梅5斤大果',76,'CAIFAN诏安青梅果新鲜大果现摘泡酒鲜梅酵素梅子水果 青梅5斤大果',0,'2023-05-17 09:51:39',1,'',1);
#
# Data for table "eb_store_product_assist_set"
#
#
# Data for table "eb_store_product_assist_sku"
#
INSERT INTO `eb_store_product_assist_sku` (`product_assist_id`,`product_id`,`unique`,`assist_price`,`stock`,`stock_count`) VALUES (1,5,'ef60e7ad78f0',170.00,1000,1000),(2,13,'3fa133f9f2a0',100.00,1330,1330),(3,24,'6f2167097be0',600.00,1000,1000),(4,248,'e096e4862ef0',6.60,10000,10000),(5,243,'62d7e6be21f0',7.70,10000,10000),(6,240,'9daba160a880',1.00,10000,10000);
#
# Data for table "eb_store_product_assist_user"
#
#
# Data for table "eb_store_product_attr"
#
INSERT INTO `eb_store_product_attr` (`product_id`,`attr_name`,`attr_values`,`type`) VALUES (1,'颜色分类','水绿色_M-!-雪粉色-S-!-雪粉色-M',0),(2,'颜色分类','钢色/白色-!-黑色',0),(3,'颜色分类','水晶色',0),(4,'颜色分类','雪白色或白色-!-天蓝色/白色-!-黑色/白色',0),(5,'颜色分类','雪粉色-!-水绿色-!-黑色',0),(6,'颜色分类','百合色-!-花瓣粉-!-象牙色-!-铁锈色玳瑁-!-黑色',0),(7,'颜色分类','百合色-!-花瓣粉-!-象牙色-!-铁锈色玳瑁-!-黑色',0),(8,'颜色分类','雪白色或白色-!-天蓝色/白色-!-黑色/白色',0),(9,'颜色分类','雪粉色-!-水绿色-!-黑色',0),(10,'颜色分类','水晶色',0),(11,'尺寸','45x45cm不含芯-!-45x45cm含芯-!-50x50cm不含芯-!-50x50cm含芯',0),(11,'颜色分类','白色',0),(12,'颜色分类','莫兰迪多色陶瓷花瓶 姜黄色大号-!-莫兰迪多色陶瓷花瓶 新年红小号-!-球形花瓶 姜黄色直径20cm-!-球形花瓶 姜黄色直径10cm',0),(13,'颜色分类','水晶圆球托盘三件套',0),(14,'颜色分类','直径45CM-!-直径55CM-!-直径60CM',0),(15,'颜色分类','透明 曲线水波花瓶-!-蓝色 曲线水波花瓶-!-橘粉 曲线水波花瓶-!-深蓝高款曲线水波花瓶-!-桃粉高款曲线水波花瓶-!-1蓝锦尾芦草2灰小鼠尾1蓝灯笼果 深蓝高曲线水波瓶-!-曲线水波花瓶花艺套装A-!-1支咖秋多叉尤加利+透明 曲线水波花瓶-!-1墨红1咖秋多叉1黛粉1红豆尖叶 尤加利+墨蓝拱形-!-红色 水滴瓶-!-西班牙花瓶-!-蓝色云纹玻璃花瓶-!-灰色齿轮玻璃花瓶-!-小号 透明拱形花瓶-!-中号 红豆拱形花瓶-!-大号 墨蓝拱形花瓶-!-30高铜圈玻璃花器-!-新20厚款蓝肚瓶-!-哑光墨蓝花瓶 高款-!-哑光墨蓝花瓶 矮款-!-灰色哑光大肚瓶A-!-灰色哑光大肚瓶B-!-咖秋色多叉尤加利-!-铁红 把束尤加利果叶',0),(16,'颜色分类','透明矮款 彩参花瓶-!-透明高款 彩参花瓶-!-透明 彩胆花瓶-!-小号 枳兰几何花瓶-!-银色矮款 凹褶花瓶-!-小号 银弧花瓶-!-大号 银弧花瓶-!-中号灰蓝色 水晶能量球-!-小号蓝黑色 立体方晶摆件-!-大号透明 玻璃麻团摆件-!-折艺托盘-!-大号 六星水晶球-!-枫转摆件 黑色-!-1支晚秋黄野枫+1支驼色米崧+ 矮款彩参花瓶-!-1支驼色蒲草尾+1支晚秋黄野枫+ 彩胆花瓶-!-2支紫罗兰尤加利+高款彩参花瓶-!-2支绿色柳叶纹尤果+1支驼色米崧+ 高款彩参花瓶-!-彩胆花瓶花艺摆件套装A-!-彩参花瓶花艺摆件套装B-!-晚秋黄 野枫-!-绿色 柳叶纹尤果-!-驼色 米崧-!-墨红色 茉香草-!-紫罗兰 尤加利',0),(17,'颜色分类','透明矮款 彩参花瓶-!-透明高款 彩参花瓶-!-透明 彩胆花瓶-!-小号 枳兰几何花瓶-!-银色矮款 凹褶花瓶-!-小号 银弧花瓶-!-大号 银弧花瓶-!-中号灰蓝色 水晶能量球-!-小号蓝黑色 立体方晶摆件-!-大号透明 玻璃麻团摆件-!-折艺托盘-!-大号 六星水晶球-!-枫转摆件 黑色-!-1支晚秋黄野枫+1支驼色米崧+ 矮款彩参花瓶-!-1支驼色蒲草尾+1支晚秋黄野枫+ 彩胆花瓶-!-2支紫罗兰尤加利+高款彩参花瓶-!-2支绿色柳叶纹尤果+1支驼色米崧+ 高款彩参花瓶-!-彩胆花瓶花艺摆件套装A-!-彩参花瓶花艺摆件套装B-!-晚秋黄 野枫-!-绿色 柳叶纹尤果-!-驼色 米崧-!-墨红色 茉香草-!-紫罗兰 尤加利',0),(18,'尺寸','45x45cm不含芯-!-45x45cm含芯-!-50x50cm不含芯-!-50x50cm含芯',0),(18,'颜色分类','白色',0),(19,'颜色分类','水晶圆球托盘三件套',0),(20,'颜色分类','透明 曲线水波花瓶-!-蓝色 曲线水波花瓶-!-橘粉 曲线水波花瓶-!-深蓝高款曲线水波花瓶-!-桃粉高款曲线水波花瓶-!-1蓝锦尾芦草2灰小鼠尾1蓝灯笼果 深蓝高曲线水波瓶-!-曲线水波花瓶花艺套装A-!-1支咖秋多叉尤加利+透明 曲线水波花瓶-!-1墨红1咖秋多叉1黛粉1红豆尖叶 尤加利+墨蓝拱形-!-红色 水滴瓶-!-西班牙花瓶-!-蓝色云纹玻璃花瓶-!-灰色齿轮玻璃花瓶-!-小号 透明拱形<E68BB1>
#
# Data for table "eb_store_product_attr_value"
#
INSERT INTO `eb_store_product_attr_value` (`value_id`,`product_id`,`detail`,`sku`,`stock`,`sales`,`image`,`bar_code`,`cost`,`ot_price`,`price`,`volume`,`weight`,`type`,`extension_one`,`extension_two`,`unique`,`svip_price`) VALUES (1,1,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u6c34\\u7eff\\u8272_M\"}','水绿色_M',1000,0,'https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01z3TunG1pLbErFDbBM_!!0-item_pic.jpg','',120.00,125.00,100.00,0.00,0.00,0,0.00,0.00,'250580aadc90',0.00),(2,1,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u96ea\\u7c89\\u8272-S\"}','雪粉色-S',1000,0,'https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01z3TunG1pLbErFDbBM_!!0-item_pic.jpg','',120.00,125.00,100.00,0.00,0.00,0,0.00,0.00,'57698100c0c0',0.00),(3,1,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u96ea\\u7c89\\u8272-M\"}','雪粉色-M',1000,0,'https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01z3TunG1pLbErFDbBM_!!0-item_pic.jpg','',120.00,125.00,100.00,0.00,0.00,0,0.00,0.00,'e3834256d710',0.00),(4,2,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u94a2\\u8272\\/\\u767d\\u8272\"}','钢色/白色',1000,0,'https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01NatCeB1pLbGvbAmjB_!!0-item_pic.jpg','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'660cf51334b0',0.00),(5,2,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u9ed1\\u8272\"}','黑色',1000,0,'https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01NatCeB1pLbGvbAmjB_!!0-item_pic.jpg','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'1c1b1c46e170',0.00),(6,3,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u6c34\\u6676\\u8272\"}','水晶色',1000,0,'','',55.00,55.00,50.00,0.00,0.00,0,0.00,0.00,'fe26d69f6cd0',0.00),(7,4,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u96ea\\u767d\\u8272\\u6216\\u767d\\u8272\"}','雪白色或白色',1000,0,'https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01UnwugE1pLbHpGQZgp_!!2-item_pic.png','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'e4843e830120',0.00),(8,4,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u5929\\u84dd\\u8272\\/\\u767d\\u8272\"}','天蓝色/白色',1000,0,'https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01UnwugE1pLbHpGQZgp_!!2-item_pic.png','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'033bfb4ea790',0.00),(9,4,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u9ed1\\u8272\\/\\u767d\\u8272\"}','黑色/白色',1000,0,'https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01UnwugE1pLbHpGQZgp_!!2-item_pic.png','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'47bf98f9d110',0.00),(10,5,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u96ea\\u7c89\\u8272\"}','雪粉色',1000,0,'https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01PK3q5Q1pLbHOz48a1_!!0-item_pic.jpg','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'aaaef7da13e0',0.00),(11,5,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u6c34\\u7eff\\u8272\"}','水绿色',1000,0,'https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01PK3q5Q1pLbHOz48a1_!!0-item_pic.jpg','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'ef60e7ad78f0',0.00),(12,5,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u9ed1\\u8272\"}','黑色',1000,0,'https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01PK3q5Q1pLbHOz48a1_!!0-item_pic.jpg','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'d868b67c91e0',0.00),(13,6,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u767e\\u5408\\u8272\"}','百合色',1000,0,'https://img.alicdn.com/imgextra/i2/2207289125344/O1CN010XEeaY1pLbHpe8KwV_!!2-item_pic.png','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'167ac3990130',0.00),(14,6,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u82b1\\u74e3\\u7c89\"}','花瓣粉',1000,0,'https://img.alicdn.com/imgextra/i2/2207289125344/O1CN010XEeaY1pLbHpe8KwV_!!2-item_pic.png','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'e87c9ac291d0',0.00),(15,6,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u8c61\\u7259\\u8272\"}','象牙色',1000,0,'https://img.alicdn.com/imgextra/i2/2207289125344/O1CN010XEeaY1pLbHpe8KwV_!!2-item_pic.png','',200.00,200.00,180.00,0.00,0.00,0,0.00,0.00,'50c27bfa7440',0.00),(16,6,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u94c1\\u9508\\u8272\\u73b3\\u7441\"}','铁锈色玳瑁',1000,0,'https://img.alicdn.com/imgextra/i2/2207289125344/O1CN010XEeaY1pLbHpe8KwV_!!2-i
INSERT INTO `eb_store_product_attr_value` (`value_id`,`product_id`,`detail`,`sku`,`stock`,`sales`,`image`,`bar_code`,`cost`,`ot_price`,`price`,`volume`,`weight`,`type`,`extension_one`,`extension_two`,`unique`,`svip_price`) VALUES (325,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"666 \\u9b54\\u5973 \\u84dd\\u8c03\\u6b63\\u7ea2\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','666 魔女 蓝调正红,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'7446c6c0e2c0',0.00),(326,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u65b0\\u8272 743 \\u6052\\u4e45\\u7231\\u610f \\u73ab\\u7470\\u7ea2\\u68d5\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','新色 743 恒久爱意 玫瑰红棕,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'ce7efb4092b0',0.00),(327,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"860 \\u4e1c\\u4eac \\u6d46\\u679c\\u9152\\u7ea2\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','860 东京 浆果酒红,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'4f4729158530',0.00),(328,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"505 \\u611f\\u6027 \\u5976\\u6cb9\\u674f\\u5b50\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','505 感性 奶油杏子,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'873d2e38a020',0.00),(329,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"773 \\u5feb\\u4e50 \\u51b7\\u8c03\\u6811\\u8393\\u7ea2\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','773 快乐 冷调树莓红,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'8d1acd9830a0',0.00),(330,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"\\u65b0\\u8272 625 \\u8fea\\u5965\\u7f2a\\u65af \\u4e4c\\u6728\\u73ab\\u7470\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','新色 625 迪奥缪斯 乌木玫瑰,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'c921f750cf90',0.00),(331,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"849 \\u94f6\\u5e55 \\u67a3\\u6ce5\\u7ea2\\u68d5\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','849 银幕 枣泥红棕,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'283f3332dc20',0.00),(332,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"766 \\u73ab\\u7470\\u7ad6\\u7434 \\u8537\\u8587\\u73ab\\u7ea2\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','766 玫瑰竖琴 蔷薇玫红,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'c09ab924a4a0',0.00),(333,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"458 \\u5df4\\u9ece \\u8c46\\u6c99\\u8272\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','458 巴黎 豆沙色,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'48c0984b47c0',0.00),(334,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"525 \\u751c\\u5fc3 \\u73ab\\u7470\\u91d1\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','525 甜心 玫瑰金,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'78ea0c52e7e0',0.00),(335,34,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"562 \\u5b9d\\u8d1d \\u7ea2\\u73ca\\u745a\",\"\\u6b3e\\u5f0f\":\"\\u57fa\\u672c\\u6b3e\"}','562 宝贝 红珊瑚,基本款',1000,0,'https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01DQgkXp1KT9lMARkQN_!!0-item_pic.jpg','',400.00,400.00,380.00,0.00,0.00,0,0.00,0.00,'d560746c8cd0',0.0
INSERT INTO `eb_store_product_attr_value` (`value_id`,`product_id`,`detail`,`sku`,`stock`,`sales`,`image`,`bar_code`,`cost`,`ot_price`,`price`,`volume`,`weight`,`type`,`extension_one`,`extension_two`,`unique`,`svip_price`) VALUES (608,209,'{\"\\u989c\\u8272\":\"1816\\u7c89\\u7ea2(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"165\\/S(80-100\\u65a4)\"}','1816粉红(纯棉珠地棉),165/S(80-100斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'37cc8e61deb0',0.00),(609,209,'{\"\\u989c\\u8272\":\"1816\\u7c89\\u7ea2(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"170\\/M(100-120\\u65a4)\"}','1816粉红(纯棉珠地棉),170/M(100-120斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'6ec383fa5400',0.00),(610,209,'{\"\\u989c\\u8272\":\"1816\\u7c89\\u7ea2(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"175\\/L(120-140\\u65a4)\"}','1816粉红(纯棉珠地棉),175/L(120-140斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'c8f59c93bdd0',0.00),(611,209,'{\"\\u989c\\u8272\":\"1816\\u7c89\\u7ea2(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"180\\/XL(140-160\\u65a4)\"}','1816粉红(纯棉珠地棉),180/XL(140-160斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'f7d7e44c1540',0.00),(612,209,'{\"\\u989c\\u8272\":\"1816\\u7c89\\u7ea2(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"185\\/XXL(160-175\\u65a4)\"}','1816粉红(纯棉珠地棉),185/XXL(160-175斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'ab3a45faf6d0',0.00),(613,209,'{\"\\u989c\\u8272\":\"1816\\u7c89\\u7ea2(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"190\\/3XL(175-195\\u65a4)\"}','1816粉红(纯棉珠地棉),190/3XL(175-195斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'05310923c570',0.00),(614,209,'{\"\\u989c\\u8272\":\"1816\\u7c89\\u7ea2(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"195\\/4XL(195-220\\u65a4)\"}','1816粉红(纯棉珠地棉),195/4XL(195-220斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'a72a57e29c20',0.00),(615,209,'{\"\\u989c\\u8272\":\"1816\\u7c89\\u7ea2(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"200\\/5XL(220-250\\u65a4)\"}','1816粉红(纯棉珠地棉),200/5XL(220-250斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'756519ccebc0',0.00),(616,209,'{\"\\u989c\\u8272\":\"1816\\u8c46\\u7eff(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"165\\/S(80-100\\u65a4)\"}','1816豆绿(纯棉珠地棉),165/S(80-100斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'4c7e8ab2fe00',0.00),(617,209,'{\"\\u989c\\u8272\":\"1816\\u8c46\\u7eff(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"170\\/M(100-120\\u65a4)\"}','1816豆绿(纯棉珠地棉),170/M(100-120斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'bf3f63dd7fa0',0.00),(618,209,'{\"\\u989c\\u8272\":\"1816\\u8c46\\u7eff(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"175\\/L(120-140\\u65a4)\"}','1816豆绿(纯棉珠地棉),175/L(120-140斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'140f7a9d5ac0',0.00),(619,209,'{\"\\u989c\\u8272\":\"1816\\u8c46\\u7eff(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"180\\/XL(140-160\\u65a4)\"}','181
INSERT INTO `eb_store_product_attr_value` (`value_id`,`product_id`,`detail`,`sku`,`stock`,`sales`,`image`,`bar_code`,`cost`,`ot_price`,`price`,`volume`,`weight`,`type`,`extension_one`,`extension_two`,`unique`,`svip_price`) VALUES (939,213,'{\"\\u989c\\u8272\":\"\\u9ed1\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"XL(135\\u65a4-160\\u65a4)\"}','黑色小熊,XL(135斤-160斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'3dec100e29f0',0.00),(940,213,'{\"\\u989c\\u8272\":\"\\u9ed1\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"XXL(160\\u65a4-180\\u65a4)\"}','黑色小熊,XXL(160斤-180斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'0b6b3ded4260',0.00),(941,213,'{\"\\u989c\\u8272\":\"\\u9ed1\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"3XL(180\\u65a4-210\\u65a4)\"}','黑色小熊,3XL(180斤-210斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'2247333cf290',0.00),(942,213,'{\"\\u989c\\u8272\":\"\\u9ed1\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"4XL(200\\u65a4-225\\u65a4)\"}','黑色小熊,4XL(200斤-225斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'dcf3196b8db0',0.00),(943,213,'{\"\\u989c\\u8272\":\"\\u85cf\\u9752\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"S(75\\u65a4-95\\u65a4)\"}','藏青色小熊,S(75斤-95斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'b61e2c795c70',0.00),(944,213,'{\"\\u989c\\u8272\":\"\\u85cf\\u9752\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"M(95\\u65a4-115\\u65a4)\"}','藏青色小熊,M(95斤-115斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'c23eaa97da90',0.00),(945,213,'{\"\\u989c\\u8272\":\"\\u85cf\\u9752\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"L(115\\u65a4-135\\u65a4)\"}','藏青色小熊,L(115斤-135斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'08450c5e3590',0.00),(946,213,'{\"\\u989c\\u8272\":\"\\u85cf\\u9752\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"XL(135\\u65a4-160\\u65a4)\"}','藏青色小熊,XL(135斤-160斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'692567cf14d0',0.00),(947,213,'{\"\\u989c\\u8272\":\"\\u85cf\\u9752\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"XXL(160\\u65a4-180\\u65a4)\"}','藏青色小熊,XXL(160斤-180斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'b3583d8f7740',0.00),(948,213,'{\"\\u989c\\u8272\":\"\\u85cf\\u9752\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"3XL(180\\u65a4-210\\u65a4)\"}','藏青色小熊,3XL(180斤-210斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'b3ab30c8a590',0.00),(949,213,'{\"\\u989c\\u8272\":\"\\u85cf\\u9752\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"4XL(200\\u65a4-225\\u65a4)\"}','藏青色小熊,4XL(200斤-225斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'e321fa5617c0',0.00),(950,213,'{\"\\u989c\\u8272\":\"\\u767d\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"S(75\\u65a4-95\\u65a4)\"}','白色小熊,S(75斤-95斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0.00,0.00,'97b91d0a4160',0.00),(951,213,'{\"\\u989c\\u8272\":\"\\u767d\\u8272\\u5c0f\\u718a\",\"\\u5c3a\\u7801\":\"M(95\\u65a4-115\\u65a4)\"}','白色小熊,M(95斤-115斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/66f8e3e232e882900eaada638c3b921e.png','',50.00,199.00,99.00,0.00,0.00,0,0
INSERT INTO `eb_store_product_attr_value` (`value_id`,`product_id`,`detail`,`sku`,`stock`,`sales`,`image`,`bar_code`,`cost`,`ot_price`,`price`,`volume`,`weight`,`type`,`extension_one`,`extension_two`,`unique`,`svip_price`) VALUES (1304,222,'{\"\\u989c\\u8272\":\"1816\\u6df1\\u84dd(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"180\\/XL(140-160\\u65a4)\"}','1816深蓝(纯棉珠地棉),180/XL(140-160斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'eac590136381',0.00),(1305,222,'{\"\\u989c\\u8272\":\"1816\\u6df1\\u84dd(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"185\\/XXL(160-175\\u65a4)\"}','1816深蓝(纯棉珠地棉),185/XXL(160-175斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'b0fd24a19b81',0.00),(1306,222,'{\"\\u989c\\u8272\":\"1816\\u6df1\\u84dd(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"190\\/3XL(175-195\\u65a4)\"}','1816深蓝(纯棉珠地棉),190/3XL(175-195斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'bf9f87a150c1',0.00),(1307,222,'{\"\\u989c\\u8272\":\"1816\\u6df1\\u84dd(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"195\\/4XL(195-220\\u65a4)\"}','1816深蓝(纯棉珠地棉),195/4XL(195-220斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'8500e2651161',0.00),(1308,222,'{\"\\u989c\\u8272\":\"1816\\u6df1\\u84dd(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"200\\/5XL(220-250\\u65a4)\"}','1816深蓝(纯棉珠地棉),200/5XL(220-250斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'244c9bbfbde1',0.00),(1309,222,'{\"\\u989c\\u8272\":\"1816\\u7070\\u8272(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"165\\/S(80-100\\u65a4)\"}','1816灰色(纯棉珠地棉),165/S(80-100斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'866b63e155e1',0.00),(1310,222,'{\"\\u989c\\u8272\":\"1816\\u7070\\u8272(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"170\\/M(100-120\\u65a4)\"}','1816灰色(纯棉珠地棉),170/M(100-120斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'f20570751c71',0.00),(1311,222,'{\"\\u989c\\u8272\":\"1816\\u7070\\u8272(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"175\\/L(120-140\\u65a4)\"}','1816灰色(纯棉珠地棉),175/L(120-140斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'e1a6398ccb11',0.00),(1312,222,'{\"\\u989c\\u8272\":\"1816\\u7070\\u8272(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"180\\/XL(140-160\\u65a4)\"}','1816灰色(纯棉珠地棉),180/XL(140-160斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'67923a557781',0.00),(1313,222,'{\"\\u989c\\u8272\":\"1816\\u7070\\u8272(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"185\\/XXL(160-175\\u65a4)\"}','1816灰色(纯棉珠地棉),185/XXL(160-175斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'ed35f2ffb881',0.00),(1314,222,'{\"\\u989c\\u8272\":\"1816\\u7070\\u8272(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"190\\/3XL(175-195\\u65a4)\"}','1816灰色(纯棉珠地棉),190/3XL(175-195斤)',10000,0,'https://mer1.crmeb.net/uploads/copy/b77a98444431a255706084b2efafd1e9.png','',100.00,249.00,199.00,0.00,0.00,0,0.00,0.00,'cbf8606888b1',0.00),(1315,222,'{\"\\u989c\\u8272\":\"1816\\u7070\\u8272(\\u7eaf\\u68c9\\u73e0\\u5730\\u68c9)\",\"\\u5c3a\\u7801\":\"195\\/4XL
INSERT INTO `eb_store_product_attr_value` (`value_id`,`product_id`,`detail`,`sku`,`stock`,`sales`,`image`,`bar_code`,`cost`,`ot_price`,`price`,`volume`,`weight`,`type`,`extension_one`,`extension_two`,`unique`,`svip_price`) VALUES (1634,231,'{\"\\u9999\\u5473\":\"\\u8fea\\u5965\\u5c0f\\u59d0\\u82b1\\u6f3e\\u6de1\\u9999\\u6c1b\",\"\\u9999\\u8c03\":\"\\u82b1\\u9999\\u8c03\",\"\\u51c0\\u542b\\u91cf\":\"100ml\"}','迪奥小姐花漾淡香氛,花香调,100ml',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01Jsc3m81KT9lHlJcXv_!!0-item_pic.jpg','',1900.00,1900.00,1680.00,0.00,0.00,0,0.00,0.00,'47a36987db01',0.00),(1635,231,'{\"\\u9999\\u5473\":\"\\u8fea\\u5965\\u5c0f\\u59d0\\u82b1\\u6f3e\\u6de1\\u9999\\u6c1b\",\"\\u9999\\u8c03\":\"\\u82b1\\u9999\\u8c03\",\"\\u51c0\\u542b\\u91cf\":\"150ml\"}','迪奥小姐花漾淡香氛,花香调,150ml',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01Jsc3m81KT9lHlJcXv_!!0-item_pic.jpg','',1900.00,1900.00,1680.00,0.00,0.00,0,0.00,0.00,'0310840f1d01',0.00),(1636,231,'{\"\\u9999\\u5473\":\"\\u8fea\\u5965\\u5c0f\\u59d0\\u82b1\\u6f3e\\u6de1\\u9999\\u6c1b\",\"\\u9999\\u8c03\":\"\\u82b1\\u9999\\u8c03\",\"\\u51c0\\u542b\\u91cf\":\"30ml\"}','迪奥小姐花漾淡香氛,花香调,30ml',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01Jsc3m81KT9lHlJcXv_!!0-item_pic.jpg','',1900.00,1900.00,1680.00,0.00,0.00,0,0.00,0.00,'58c4e211ff71',0.00),(1637,231,'{\"\\u9999\\u5473\":\"\\u8fea\\u5965\\u5c0f\\u59d0\\u82b1\\u6f3e\\u6de1\\u9999\\u6c1b\",\"\\u9999\\u8c03\":\"\\u82b1\\u9999\\u8c03\",\"\\u51c0\\u542b\\u91cf\":\"50ml\"}','迪奥小姐花漾淡香氛,花香调,50ml',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01Jsc3m81KT9lHlJcXv_!!0-item_pic.jpg','',1900.00,1900.00,1680.00,0.00,0.00,0,0.00,0.00,'b42abe0d93b1',0.00),(1638,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"079\"}','079',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'bec00b7d6341',0.00),(1639,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"159\"}','159',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'cf31e2d65a41',0.00),(1640,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"279\"}','279',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'12e5ca7aea91',0.00),(1641,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"429\"}','429',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'03db20d049d1',0.00),(1642,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"439\"}','439',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'669cc4f10241',0.00),(1643,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"539\"}','539',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'32399abfaa71',0.00),(1644,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"579\"}','579',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'986325900741',0.00),(1645,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"599\"}','599',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'73a4cc3995c1',0.00),(1646,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"649\"}','649',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'639513fd7e71',0.00),(1647,232,'{\"\\u989c\\u8272\\u5206\\u7c7b\":\"669\"}','669',1000,0,'https://img.alicdn.com/imgextra/i2/2207959261164/O1CN012ce8Py1KT9joXWcr7_!!0-item_pic.jpg','',880.00,880.00,680.00,0.00,0.00,0,0.00,0.00,'d1c25e834161',0.00),(1648,232,'
#
# Data for table "eb_store_product_cate"
#
INSERT INTO `eb_store_product_cate` (`product_id`,`mer_cate_id`,`mer_id`) VALUES (1,20,6),(2,20,6),(3,23,6),(4,23,6),(5,23,6),(6,23,6),(7,23,6),(8,23,6),(9,23,6),(10,23,6),(11,25,3),(12,25,3),(13,25,3),(14,25,3),(15,25,3),(16,25,3),(17,25,3),(18,25,3),(19,25,3),(20,25,3),(21,27,2),(22,27,2),(23,27,2),(24,27,2),(25,27,2),(26,27,2),(27,27,2),(28,27,2),(29,27,2),(30,29,5),(31,29,5),(32,29,5),(33,29,5),(34,29,5),(35,29,5),(36,29,5),(37,32,1),(38,32,1),(39,32,1),(41,34,4),(42,34,4),(43,34,4),(203,19,6),(203,21,6),(204,19,6),(204,20,6),(205,19,6),(205,21,6),(206,19,6),(206,20,6),(207,19,6),(207,20,6),(208,19,6),(208,21,6),(209,26,2),(209,27,2),(210,26,2),(210,27,2),(211,26,2),(211,27,2),(212,26,2),(212,27,2),(213,26,2),(213,27,2),(214,26,2),(214,27,2),(215,26,2),(215,27,2),(216,26,2),(216,27,2),(218,322,75),(218,323,75),(217,322,75),(217,323,75),(219,322,75),(219,323,75),(220,322,75),(220,323,75),(221,26,2),(221,27,2),(222,26,2),(222,27,2),(223,26,2),(223,27,2),(224,26,2),(224,27,2),(225,19,6),(225,21,6),(226,20,6),(227,19,6),(227,21,6),(228,19,6),(228,20,6),(229,29,5),(230,29,5),(231,29,5),(232,29,5),(233,322,75),(233,323,75),(234,322,75),(234,323,75),(235,322,75),(235,323,75),(236,322,75),(236,323,75),(237,327,76),(237,329,76),(238,327,76),(238,329,76),(239,327,76),(239,330,76),(241,324,76),(241,325,76),(240,324,76),(240,326,76),(242,324,76),(242,325,76),(243,324,76),(243,325,76),(244,324,76),(244,331,76),(245,324,76),(245,326,76),(247,324,76),(247,332,76),(249,324,76),(249,332,76),(250,324,76),(250,332,76),(251,324,76),(251,325,76),(252,324,76),(252,332,76),(253,324,76),(253,325,76),(254,324,76),(254,326,76),(248,324,76),(248,332,76),(246,324,76),(246,332,76);
#
# Data for table "eb_store_product_cdkey"
#
#
# Data for table "eb_store_product_content"
#
INSERT INTO `eb_store_product_content` (`product_id`,`content`,`type`) VALUES (1,'<p><img src=\"https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01F0mClw1pLbH1zRk5v_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01bdRjSy1pLbHF9ejh7_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01JB0nFs1pLbHCWt9UQ_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01s6WSVG1pLbH6dg2oQ_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01lkrGm71pLbHEfnuGE_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01QCqpAl1pLbHDhn2tS_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01aoJMRc1pLbHAoapJV_!!2207289125344.jpg\"/></p>',0),(2,'<p><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01yhulfG1pLbHn102S8_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01uIF8PX1pLbGpsLi93_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01PSTBpZ1pLbHlYGJ2a_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01Fp62Iu1pLbHqLrXVF_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01SFrdFH1pLbHoWxQmR_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01fGSf5a1pLbHo0vK2t_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01pHbhVI1pLbHt2Luih_!!2207289125344.jpg\"/></p>',0),(3,'<p><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01cEPQPG1pLbI4IDGFR_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01caoemX1pLbI5SDADW_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01Ys035A1pLbI4IFweU_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01ZN1pCL1pLbI3yIiws_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01VPGGyb1pLbI5SFunn_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207289125344/O1CN012rGiwL1pLbI32HWgH_!!2207289125344.jpg\"/></p>',0),(4,'<p><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01cHu8nh1pLbF8YeIH4_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01UTj4BU1pLbF8YepYk_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01RICSWG1pLbF6TADeY_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN012CNvKE1pLbF3Z44eb_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207289125344/O1CN01MSlyia1pLbF8YZjRT_!!2207289125344.png\"/></p>',0),(5,'<p><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01OXOBvB1pLbHs1dEd4_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01N4IKPI1pLbHAfmM0b_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01DAY8y41pLbF72DI10_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01Uc3JJF1pLbHb4b3uO_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01VWVQol1pLbHlYN5QD_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01rzfuYj1pLbF72ElV0_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN012OLdeq1pLbHeRuP77_!!2207289125344.jpg\"/></p>',0),(6,'<p><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01WXuyj51pLbHDUXogt_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207289125344/O1CN01cod4nH1pLbH3dLVBe_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01ChrgT81pLbFCMtcqS_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207289125344/O1CN01mO06Pz1pLbHDUXDGn_!!2207289125344.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207289125344/O1CN01FQNVM91pLbH9
INSERT INTO `eb_store_product_content` (`product_id`,`content`,`type`) VALUES (229,'<p><img src=\"https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01hfy6eq1KT9kbe6y2d_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207959261164/O1CN01SN406C1KT9iXKBd94_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207959261164/O1CN01OFzpYL1KT9iV5fWMG_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01wIndDm1KT9iMzJACR_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01qaCDX51KT9iSxt7rM_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN014CVOge1KT9iYE3q00_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01dikKdT1KT9iMzJEMe_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207959261164/O1CN01HmKO5T1KT9iSlkxIv_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01JTXWO31KT9iVNUlHT_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01epCF541KT9iPBpPKs_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01RhfmPl1KT9kxDdOVp_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207959261164/O1CN01YEZGzL1KT9iRH5qce_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN011jY51z1KT9iWc0seG_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01Fzngww1KT9iSlndbP_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01FoME9r1KT9iOSbwEz_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01GG9wbu1KT9lxdl18J_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01nO1kLb1KT9lvfXcRY_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207959261164/O1CN0163etxn1KT9iYkL38Z_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01TfR5li1KT9iILNGGW_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207959261164/O1CN01mkZZnV1KT9lSCKNsM_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01WqizBD1KT9lRUH5Wa_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207959261164/O1CN01mKA9qB1KT9lFLBci5_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207959261164/O1CN01aXp8ni1KT9l9snVFC_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207959261164/O1CN01oYmwvs1KT9iWvQa5Q_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207959261164/O1CN01Dyx7Fk1KT9ibZl96g_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207959261164/O1CN01P2xfdF1KT9l4M5z4q_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01t632Nx1KT9lpuOCjR_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207959261164/O1CN012GoDz51KT9iSuJqxr_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01p1iylB1KT9ky0K5ki_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01wN19ZO1KT9kyWTDx2_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01YFBurK1KT9kkI6r7B_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207959261164/O1CN01xLZT5P1KT9kvF13nf_!!2207959261164.jpg\"/><img src=\"https://img.alicdn.com/imgextra/i3/2207959261164/O1CN01bHH3hn1KT9klDl8fZ_!!2207959261164.png\"/><img src=\"https://img.alicdn.com/imgextra/i2/2207959261164/O1CN01ogI1o51KT9kiQl8aJ_!!2207959261164.png\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01wXU0701KT9kcyNp5d_!!2207959261164.png\"/><img src=\"https://img.alicdn.com/imgextra/i4/2207959261164/O1CN01RWyyWk1KT9kajj7mW_!!2207959261164.png\"/><img src=\"https://img.alicdn.com/imgextra/i1/2207959261164/O1CN01rwNOnj1KT9knlNyFx_!!2207959261164.png\"/><img src=\"https://img.alicdn.com/imgextra/i1/220
#
# Data for table "eb_store_product_copy"
#
INSERT INTO `eb_store_product_copy` (`store_product_copy_id`,`type`,`mer_id`,`num`,`number`,`message`,`info`,`create_time`) VALUES (1,'copy',6,-1,90,'采集商品','\"https:\\/\\/item.jd.com\\/10026438956325.html\"','2023-05-09 08:22:23'),(2,'copy',6,-1,89,'采集商品','\"https:\\/\\/item.jd.com\\/12263035140.html\"','2023-05-09 08:27:13'),(3,'copy',6,-1,88,'采集商品','\"https:\\/\\/item.jd.com\\/10023311513064.html\"','2023-05-09 08:29:36'),(4,'copy',6,-1,87,'采集商品','\"https:\\/\\/item.jd.com\\/100034884848.html?bbtf=1\"','2023-05-09 08:51:21'),(5,'copy',6,-1,86,'采集商品','\"https:\\/\\/item.jd.com\\/10043674997716.html\"','2023-05-09 08:56:12'),(6,'copy',6,-1,85,'采集商品','\"https:\\/\\/item.jd.com\\/100021945767.html\"','2023-05-09 09:06:56'),(7,'copy',2,-1,94,'采集商品','\"https:\\/\\/item.jd.com\\/10073530938169.html\"','2023-05-09 10:06:12'),(8,'copy',2,-1,93,'采集商品','\"https:\\/\\/item.jd.com\\/100045867172.html?bbtf=1\"','2023-05-09 10:11:40'),(9,'copy',2,-1,92,'采集商品','\"https:\\/\\/item.jd.com\\/10071976867253.html?bbtf=1\"','2023-05-09 10:18:20'),(10,'copy',2,-1,91,'采集商品','\"https:\\/\\/item.jd.com\\/10074623260216.html?bbtf=1\"','2023-05-10 09:18:02'),(11,'copy',2,-1,90,'采集商品','\"https:\\/\\/item.jd.com\\/10069326590019.html?bbtf=1\"','2023-05-11 01:24:02'),(12,'copy',2,-1,89,'采集商品','\"https:\\/\\/item.jd.com\\/10071448120152.html?bbtf=1\"','2023-05-11 01:33:03'),(13,'copy',2,-1,88,'采集商品','\"https:\\/\\/item.jd.com\\/10070369819155.html\"','2023-05-11 01:39:12'),(14,'copy',2,-1,87,'采集商品','\"https:\\/\\/item.jd.com\\/10068813227741.html\"','2023-05-11 01:46:19'),(15,'copy',2,-1,86,'采集商品','\"https:\\/\\/item.jd.com\\/10054889590883.html\"','2023-05-11 01:56:56'),(16,'sys',75,100,100,'平台修改「1」','\"\"','2023-05-11 03:23:57'),(17,'copy',75,-1,99,'采集商品','\"https:\\/\\/item.jd.com\\/3494451.html?bbtf=1\"','2023-05-11 03:25:17'),(18,'copy',75,-1,98,'采集商品','\"https:\\/\\/item.jd.com\\/3767541.html?bbtf=1\"','2023-05-11 03:41:11'),(19,'copy',75,-1,97,'采集商品','\"https:\\/\\/item.jd.com\\/100038004391.html?bbtf=1\"','2023-05-11 04:14:09'),(20,'copy',75,-1,96,'采集商品','\"https:\\/\\/item.jd.com\\/100043301354.html\"','2023-05-11 04:25:18'),(21,'copy',75,-1,95,'采集商品','\"https:\\/\\/item.jd.com\\/100001026563.html?bbtf=1\"','2023-05-11 04:30:04'),(22,'copy',4,-1,95,'采集商品','\"https:\\/\\/item.jd.com\\/100043301354.html\"','2023-05-11 07:32:32'),(23,'sys',76,0,0,'赠送次数','\"\"','2023-05-17 07:48:48'),(24,'sys',76,100,100,'平台修改「1」','\"\"','2023-05-17 08:17:26'),(25,'copy',76,-1,99,'采集商品','\"https:\\/\\/item.jd.com\\/10040416254651.html\"','2023-05-17 08:17:48'),(26,'copy',76,-1,98,'采集商品','\"https:\\/\\/item.jd.com\\/6468246.html?bbtf=1\"','2023-05-17 08:25:28'),(27,'copy',76,-1,97,'采集商品','\"https:\\/\\/item.jd.com\\/10072635267351.html\"','2023-05-17 08:35:24'),(28,'copy',76,-1,96,'采集商品','\"https:\\/\\/item.jd.com\\/100052717883.html?bbtf=1\"','2023-05-17 08:38:23'),(29,'copy',76,-1,95,'采集商品','\"https:\\/\\/item.jd.com\\/10046292405879.html?bbtf=1\"','2023-05-17 08:48:04'),(30,'copy',76,-1,94,'采集商品','\"https:\\/\\/item.jd.com\\/10043078793193.html\"','2023-05-17 08:55:26'),(31,'copy',76,-1,93,'采集商品','\"https:\\/\\/item.jd.com\\/10024905868387.html\"','2023-05-17 09:02:10'),(32,'copy',76,-1,92,'采集商品','\"https:\\/\\/item.jd.com\\/10063188811125.html\"','2023-05-17 09:09:30'),(33,'copy',76,-1,91,'采集商品','\"https:\\/\\/item.jd.com\\/10068131496506.html?bbtf=1\"','2023-05-17 09:13:23'),(34,'copy',76,-1,90,'采集商品','\"https:\\/\\/item.jd.com\\/7678508.html?bbtf=1\"','2023-05-17 09:17:56'),(35,'copy',76,-1,89,'采集商品','\"https:\\/\\/item.jd.com\\/10063912028026.html\"','2023-05-17 09:26:16'),(36,'copy',76,-1,88,'采集商品','\"https:\\/\\/item.jd.com\\/100053672961.html?bbtf=1\"','2023-05-17 09:30:24');
#
# Data for table "eb_store_product_group"
#
INSERT INTO `eb_store_product_group` (`product_group_id`,`product_id`,`start_time`,`end_time`,`time`,`buying_count_num`,`buying_num`,`pay_count`,`once_pay_count`,`status`,`mer_id`,`ficti_status`,`ficti_num`,`is_show`,`is_del`,`success_num`,`product_status`,`price`,`action_status`,`create_time`,`refusal`) VALUES (1,10,'2022-04-25 00:00:00','2022-12-31 00:00:00',1,2,2,1,1,1,6,1,0,1,0,0,1,50.00,-1,'2022-04-24 16:46:15',''),(2,20,'2022-04-25 00:00:00','2022-12-31 00:00:00',1,2,2,1,1,1,3,1,0,1,0,0,1,300.00,-1,'2022-04-24 16:57:12',''),(3,29,'2022-04-25 00:00:00','2022-12-31 00:00:00',1,2,2,1,1,1,2,1,0,1,0,0,1,1380.00,-1,'2022-04-24 17:10:26',''),(4,36,'2022-04-25 00:00:00','2022-12-31 00:00:00',1,2,2,1,1,1,5,1,0,1,0,0,1,1680.00,-1,'2022-04-24 17:23:02',''),(5,249,'2023-05-17 00:00:00','2024-12-31 00:00:00',1,2,2,20,5,1,76,1,0,1,0,0,1,0.01,1,'2023-05-17 17:36:31',''),(6,250,'2023-05-17 00:00:00','2024-12-31 00:00:00',1,2,2,10,10,1,76,1,0,1,0,0,1,0.01,1,'2023-05-17 17:37:27',''),(7,251,'2023-05-17 00:00:00','2024-12-31 00:00:00',1,2,2,15,15,1,76,1,0,1,0,0,1,1.00,1,'2023-05-17 17:40:38','');
#
# Data for table "eb_store_product_group_buying"
#
#
# Data for table "eb_store_product_group_sku"
#
INSERT INTO `eb_store_product_group_sku` (`product_group_id`,`product_id`,`unique`,`active_price`,`stock`,`stock_count`) VALUES (1,3,'fe26d69f6cd0',50.00,1000,1000),(2,15,'381050090fa0',300.00,1000,1000),(2,15,'8c7101bcd350',300.00,1000,1000),(2,15,'86a6a337d260',300.00,1000,1000),(2,15,'69a9ee25f7d0',300.00,1000,1000),(2,15,'343323937af0',300.00,1000,1000),(2,15,'428c86edf8b0',300.00,1000,1000),(2,15,'2971e6833fa0',300.00,1000,1000),(2,15,'3a8ad15fb270',300.00,1000,1000),(2,15,'dd26a50f7470',300.00,1000,1000),(2,15,'50911b7cf070',300.00,1000,1000),(2,15,'d19a5b5540b0',300.00,1000,1000),(2,15,'7786ce1c1310',300.00,1000,1000),(2,15,'f81b2eac8580',300.00,1000,1000),(2,15,'037e94d382b0',300.00,1000,1000),(2,15,'2b736b15fed0',300.00,1000,1000),(2,15,'b86aea2de950',300.00,1000,1000),(2,15,'702f5f01af80',300.00,1000,1000),(2,15,'a2d739bcf040',300.00,1000,1000),(2,15,'e54be29c82e0',300.00,1000,1000),(2,15,'90f5fc061dc0',300.00,1000,1000),(2,15,'94cee476e2c0',300.00,1000,1000),(2,15,'a9e9dfb457f0',300.00,1000,1000),(2,15,'8914c837fec0',300.00,1000,1000),(2,15,'3fa628ae4be0',300.00,1000,1000),(3,22,'b7967f0a37c0',1380.00,1000,1000),(3,22,'fe132cba7a50',1380.00,1000,1000),(3,22,'e9714b3a7700',1380.00,1000,1000),(3,22,'2cde1ee1c440',1380.00,1000,1000),(3,22,'30dc6f3fa320',1380.00,1000,1000),(3,22,'8c301bcb68f0',1380.00,1000,1000),(3,22,'75eb028509d0',1380.00,1000,1000),(3,22,'43be962835a0',1380.00,1000,1000),(3,22,'079923fdfae0',1380.00,1000,1000),(3,22,'a820e44baae0',1380.00,1000,1000),(3,22,'fe88671fa3c0',1380.00,1000,1000),(3,22,'50f64db9f3a0',1380.00,1000,1000),(3,22,'56f0051d5750',1380.00,1000,1000),(3,22,'3c2262005cc0',1380.00,1000,1000),(3,22,'37dfb34675e0',1380.00,1000,1000),(3,22,'9f39fe406040',1380.00,1000,1000),(3,22,'fcbbd52327f0',1380.00,1000,1000),(3,22,'7e962de17a20',1380.00,1000,1000),(4,33,'0091894eaea0',1680.00,1000,1000),(4,33,'18a749c1f540',1680.00,1000,1000),(5,246,'2966113b8fb0',9.90,10000,10000),(5,246,'8ce4c7054350',9.90,10000,10000),(5,246,'390133ceede0',0.01,10000,10000),(5,246,'ea6e108a4dc0',9.90,10000,10000),(5,246,'fd430fa2e060',9.90,10000,10000),(6,247,'598aa5ec4390',0.01,10000,10000),(6,247,'b97eccfd9fc0',8.80,10000,10000),(7,241,'218129644ca0',9.90,100000,100000),(7,241,'2162cc386400',9.90,100000,100000),(7,241,'53d186e9b1e0',1.00,100000,100000),(7,241,'edf23bb4e9b0',1.00,100000,100000),(7,241,'6768ff4722e0',16.90,100000,100000),(7,241,'a615117e7040',16.90,100000,100000),(7,241,'7b1659730600',16.90,100000,100000),(7,241,'cb9268ab9f40',16.90,100000,100000),(7,241,'2a5416ecb220',16.90,100000,100000),(7,241,'6ffd73ff0040',16.90,100000,100000),(7,241,'5334d5522890',16.90,100000,100000),(7,241,'53e378f1c130',16.90,100000,100000),(7,241,'1c8bc85c4d50',16.90,100000,100000),(7,241,'38e00ea7d690',16.90,100000,100000),(7,241,'1045976dc050',16.90,100000,100000),(7,241,'7aca61ea7d50',16.90,100000,100000),(7,241,'83bf2154bb40',16.90,100000,100000),(7,241,'be91b374e790',16.90,100000,100000),(7,241,'ab62d358fc50',16.90,100000,100000),(7,241,'2e1cb0145ae0',16.90,100000,100000);
#
# Data for table "eb_store_product_group_user"
#
#
# Data for table "eb_store_product_label"
#
#
# Data for table "eb_store_product_presell"
#
INSERT INTO `eb_store_product_presell` (`product_presell_id`,`start_time`,`end_time`,`final_start_time`,`final_end_time`,`status`,`presell_type`,`pay_count`,`delivery_type`,`delivery_day`,`product_id`,`price`,`is_show`,`store_name`,`mer_id`,`store_info`,`is_del`,`create_time`,`product_status`,`refusal`,`action_status`) VALUES (1,'2022-04-24 16:00:00','2022-12-30 16:00:00','','',1,1,0,1,10,1,90.00,1,'Prada/普拉达女士Prada Symbole 手环饰品',6,'Prada/普拉达女士Prada Symbole 手环饰品',0,'2022-04-24 08:44:51',1,'',-1),(2,'2022-04-24 16:00:00','2022-12-30 16:00:00','','',1,1,0,1,10,14,300.00,1,'意大利创意餐厅吊灯现代简约服装店个性灯设计师网红少女卧室吊灯',3,'意大利创意餐厅吊灯现代简约服装店个性灯设计师网红少女卧室吊灯',0,'2022-04-24 08:56:08',1,'',-1),(3,'2022-04-24 16:00:00','2022-12-30 16:00:00','','',1,1,0,1,10,21,380.00,1,'FUSSED 小众原创设计 象牙白浮雕两件式抽褶罗马连衣裙女秋冬套装',2,'FUSSED 小众原创设计 象牙白浮雕两件式抽褶罗马连衣裙女秋冬套装',0,'2022-04-24 09:09:33',1,'',-1),(4,'2023-05-17 10:10:00','2024-12-30 16:00:00','','',1,1,0,1,10,239,20.00,1,'京鲜到云南夏黑葡萄 严选5斤装 无籽葡萄孕妇水果 新鲜水果提子',76,'京鲜到云南夏黑葡萄 严选5斤装 无籽葡萄孕妇水果 新鲜水果提子',0,'2023-05-17 10:08:32',1,'',1),(5,'2023-05-17 10:15:00','2024-12-30 16:00:00','','',1,1,0,1,10,244,30.00,1,'静益乐源秘鲁进口牛油果 鳄梨 新鲜水果 2个款单果 100- 140g',76,'静益乐源秘鲁进口牛油果 鳄梨 新鲜水果 2个款单果 100- 140g',0,'2023-05-17 10:10:10',1,'',1),(11,'2023-05-17 10:20:00','2024-06-17 16:00:00','2024-06-18 00:30:00','2024-12-31 00:00:00',1,2,0,1,10,237,30.00,1,'京鲜生 大连美早樱桃 车厘子JJ级 500g装 单果约10-12g 新鲜水果',76,'京鲜生 大连美早樱桃 车厘子JJ级 500g装 单果约10-12g 新鲜水果',0,'2023-05-17 10:18:33',1,'',1);
#
# Data for table "eb_store_product_presell_sku"
#
INSERT INTO `eb_store_product_presell_sku` (`product_presell_id`,`product_id`,`unique`,`presell_price`,`stock`,`stock_count`,`down_price`,`final_price`,`one_take`,`one_pay`,`two_pay`,`seles`) VALUES (1,1,'250580aadc90',90.00,1000,1000,90.00,90.00,0,0,0,0),(1,1,'e3834256d710',90.00,1000,1000,90.00,90.00,0,0,0,0),(1,1,'57698100c0c0',90.00,1000,1000,90.00,90.00,0,0,0,0),(2,14,'fe525de8cb50',300.00,1000,1000,300.00,300.00,0,0,0,0),(2,14,'becbfc5e2090',300.00,1000,1000,300.00,300.00,0,0,0,0),(2,14,'197b2a2ed0a0',300.00,1000,1000,300.00,300.00,0,0,0,0),(3,21,'c60348e3e5e0',380.00,1000,1000,380.00,380.00,0,0,0,0),(3,21,'1b890c3f7c10',380.00,1000,1000,380.00,380.00,0,0,0,0),(3,21,'82cefbad11b0',380.00,1000,1000,380.00,380.00,0,0,0,0),(4,239,'3dff35407070',20.00,10000,10000,20.00,20.00,0,0,0,0),(4,239,'f39e0fb82150',20.00,10000,10000,20.00,20.00,0,0,0,0),(4,239,'497b1ac152c0',20.00,10000,10000,20.00,20.00,0,0,0,0),(4,239,'08da0de47f80',20.00,10000,10000,20.00,20.00,0,0,0,0),(5,244,'a831257fc3b0',30.00,10000,10000,30.00,30.00,0,0,0,0),(5,244,'f80b74887e10',30.00,10000,10000,30.00,30.00,0,0,0,0),(5,244,'9c4a6ea00900',30.00,10000,10000,30.00,30.00,0,0,0,0),(5,244,'52e395b58a10',30.00,10000,10000,30.00,30.00,0,0,0,0),(5,244,'3a2dc6ef9410',30.00,10000,10000,30.00,30.00,0,0,0,0),(5,244,'4a36538eb460',30.00,10000,10000,30.00,30.00,0,0,0,0),(11,237,'b608c9685aa0',30.00,10000,10000,6.00,24.00,0,0,0,0),(11,237,'2b526329be00',30.00,10000,10000,6.00,24.00,0,0,0,0),(11,237,'9543a570fe60',30.00,10000,10000,6.00,24.00,0,0,0,0),(11,237,'279b6e603b20',30.00,10000,10000,6.00,24.00,0,0,0,0),(11,237,'da6df4b58530',30.00,10000,10000,0.01,29.99,0,0,0,0);
#
# Data for table "eb_store_product_reply"
#
#
# Data for table "eb_store_product_sku"
#
INSERT INTO `eb_store_product_sku` (`product_sku_id`,`active_id`,`active_product_id`,`active_type`,`product_id`,`unique`,`price`,`active_price`,`stock`,`stock_count`) VALUES (5,1,4,10,220,'bbdd0cc19940',138.00,100.00,0,0),(6,1,4,10,220,'98755c4e2db0',138.00,100.00,0,0),(7,1,5,10,219,'07d5bad027b0',1699.00,1500.00,0,0),(8,1,6,10,217,'5f57d147af90',999.00,800.00,0,0),(9,2,7,10,207,'9b261a900460',419.00,300.00,0,0),(10,2,7,10,207,'9d48ac9153a0',419.00,300.00,0,0),(11,2,8,10,203,'dc5f4296c880',358.00,299.00,0,0),(12,2,8,10,203,'e4f92a185ad0',358.00,299.00,0,0),(13,2,9,10,208,'c97e9abacef0',688.00,600.00,0,0);
#
# Data for table "eb_store_product_take"
#
#
# Data for table "eb_store_product_unit"
#
#
# Data for table "eb_store_refund_order"
#
#
# Data for table "eb_store_refund_product"
#
#
# Data for table "eb_store_refund_status"
#
#
# Data for table "eb_store_seckill_active"
#
INSERT INTO `eb_store_seckill_active` (`seckill_active_id`,`name`,`seckill_time_ids`,`start_day`,`end_day`,`start_time`,`end_time`,`mer_id`,`all_pay_count`,`once_pay_count`,`product_id`,`product_category_ids`,`merchant_count`,`product_count`,`active_status`,`sign`,`status`,`create_time`,`update_time`,`delete_time`) VALUES (1,'','','2022-04-25 00:00:00','2022-12-31 00:00:00',0,14,6,1,1,7,NULL,0,0,'0',0,0,0,0,NULL),(2,'','','2022-04-25 00:00:00','2022-12-31 00:00:00',0,14,6,1,1,8,NULL,0,0,'0',0,0,0,0,NULL),(3,'','','2022-04-25 00:00:00','2022-12-31 00:00:00',0,14,3,1,1,17,NULL,0,0,'0',0,0,0,0,NULL),(4,'','','2022-04-24 00:00:00','2022-12-31 00:00:00',14,24,3,1,1,18,NULL,0,0,'0',0,1,0,0,NULL),(5,'','','2022-04-24 00:00:00','2022-12-31 00:00:00',14,24,2,1,1,26,NULL,0,0,'0',0,1,0,0,NULL),(6,'','','2022-04-24 00:00:00','2022-12-31 00:00:00',14,24,2,1,1,27,NULL,0,0,'0',0,1,0,0,NULL),(7,'','','2022-04-24 00:00:00','2022-12-31 00:00:00',14,24,5,1,1,35,NULL,0,0,'0',0,1,0,0,NULL),(20,'','','2023-05-11 00:00:00','2025-06-30 00:00:00',9,12,2,1,1,221,NULL,0,0,'0',0,1,0,0,NULL),(21,'','','2023-05-11 00:00:00','2025-06-30 00:00:00',9,12,2,10,10,222,NULL,0,0,'0',0,1,0,0,NULL),(22,'','','2023-05-11 00:00:00','2025-06-30 00:00:00',9,12,2,10,10,223,NULL,0,0,'0',0,1,0,0,NULL),(23,'','','2023-05-11 00:00:00','2025-06-30 00:00:00',9,12,2,10,10,224,NULL,0,0,'0',0,1,0,0,NULL),(24,'','','2023-05-11 00:00:00','2025-06-30 00:00:00',12,14,6,20,20,225,NULL,0,0,'0',0,1,0,0,NULL),(25,'','','2023-05-11 00:00:00','2025-06-30 00:00:00',12,14,6,10,10,226,NULL,0,0,'0',0,1,0,0,NULL),(26,'','','2023-05-11 00:00:00','2025-06-30 00:00:00',12,14,6,20,20,227,NULL,0,0,'0',0,1,0,0,NULL),(27,'','','2023-05-11 00:00:00','2025-06-30 00:00:00',12,14,6,20,20,228,NULL,0,0,'0',0,1,0,0,NULL),(28,'','','2023-05-17 00:00:00','2024-12-31 00:00:00',19,24,5,10,10,229,NULL,0,0,'0',0,1,0,0,NULL),(29,'','','2023-05-17 00:00:00','2024-12-31 00:00:00',19,24,5,20,20,230,NULL,0,0,'0',0,1,0,0,NULL),(30,'','','2023-05-17 00:00:00','2024-12-31 00:00:00',19,24,5,5,5,231,NULL,0,0,'0',0,1,0,0,NULL),(31,'','','2023-05-17 00:00:00','2024-12-31 00:00:00',19,24,5,10,10,232,NULL,0,0,'0',0,1,0,0,NULL),(32,'','','2023-05-17 00:00:00','2024-12-31 00:00:00',14,19,75,10,10,233,NULL,0,0,'0',0,1,0,0,NULL),(33,'','','2023-05-17 00:00:00','2023-06-30 00:00:00',14,19,75,10,10,234,NULL,0,0,'0',0,1,0,0,NULL),(34,'','','2023-05-17 00:00:00','2024-12-31 00:00:00',14,19,75,1,1,235,NULL,0,0,'0',0,1,0,0,NULL),(35,'','','2023-05-17 00:00:00','2024-12-31 00:00:00',14,19,75,8,8,236,NULL,0,0,'0',0,1,0,0,NULL);
#
# Data for table "eb_store_seckill_time"
#
INSERT INTO `eb_store_seckill_time` (`seckill_time_id`,`title`,`start_time`,`end_time`,`status`,`create_time`,`pic`) VALUES (13,'上午场',9,12,1,'2023-05-11 09:14:25','https://mer1.crmeb.net/uploads/def/20230517/7afa9a116ea9c368e2d4a8dcb9085f73.png'),(14,'下午场',14,19,1,'2023-05-11 09:14:47','https://mer1.crmeb.net/uploads/def/20230517/ae8e75adbd114bfeb447901d27e4aa29.png'),(15,'晚间场',19,24,1,'2023-05-11 09:18:47','https://mer1.crmeb.net/uploads/def/20230517/e1c604e021de08cb1808e765bbdef52c.png'),(16,'凌晨场',0,9,1,'2023-05-11 09:23:17','https://mer1.crmeb.net/uploads/def/20230517/fe6238fe78776cd2bb64c37a1444ca79.png'),(17,'中午场',12,14,1,'2023-05-11 09:24:21','https://mer1.crmeb.net/uploads/def/20230517/51593b8c3bcb9ef549ab2ac3523b3dcf.png');
#
# Data for table "eb_store_service"
#
INSERT INTO `eb_store_service` (`service_id`,`mer_id`,`uid`,`avatar`,`nickname`,`account`,`pwd`,`is_open`,`status`,`notify`,`phone`,`customer`,`is_verify`,`is_goods`,`sort`,`create_time`,`is_del`) VALUES (10,55,7221,'https://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLA5vVE0TbsLdV978rWBib5yODz5kdWK5g8zmQnIoiamlTjqP0nKXIEIHDOzSG9gL1aRrTWgGsl5heDA/132','小红',NULL,NULL,0,0,1,'',1,0,0,0,'2020-05-29 10:54:52',1),(11,55,7233,'https://thirdwx.qlogo.cn/mmopen/ajNVdqHZLLA5vVE0TbsLdV978rWBib5yODz5kdWK5g8zmQnIoiamlTjqP0nKXIEIHDOzSG9gL1aRrTWgGsl5heDA/132','小白',NULL,NULL,0,1,1,'',1,0,0,0,'2020-05-29 11:11:01',0),(12,64,7248,'https://cremb.oss-cn-beijing.aliyuncs.com/ad892202007031036386930.jpg','高级客服',NULL,NULL,0,1,1,'15555555555',1,0,0,0,'2020-07-06 07:02:55',0),(13,65,7255,'https://cremb.oss-cn-beijing.aliyuncs.com/1446d202007092004219739.jpg','店主',NULL,NULL,0,0,1,'15109234132',1,0,0,0,'2020-07-10 08:42:13',0),(14,65,7237,'https://cremb.oss-cn-beijing.aliyuncs.com/a0c69202007091942395329.jpg','111',NULL,NULL,0,1,0,'',1,0,0,0,'2020-07-10 09:40:33',0),(15,0,1,'https://mer1.crmeb.net/uploads/def/20230509/eb90dbc8446f817a734646c1fdd59ad1.png','crmeb平台客服','crmeb','$2y$10$b1VZvpEev0id4ylhxObCyugosv4drHOzJlCdBDAXmPCcX.Or0OvZW',1,1,0,'',0,0,0,0,'2023-05-18 03:55:17',0);
#
# Data for table "eb_store_service_log"
#
#
# Data for table "eb_store_service_reply"
#
#
# Data for table "eb_store_service_user"
#
#
# Data for table "eb_store_spu"
#
INSERT INTO `eb_store_spu` (`spu_id`,`mer_id`,`product_id`,`product_type`,`activity_id`,`status`,`store_name`,`ot_price`,`keyword`,`price`,`rank`,`create_time`,`temp_id`,`sort`,`star`,`image`,`is_del`,`mer_labels`,`sys_labels`) VALUES (1,6,1,0,0,0,'Prada/普拉达女士Prada Symbole 手环饰品',0.00,'',100.00,0,'2022-04-24 16:00:53',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/be848aecdab09fe5daa417c333101124.jpg',0,'',''),(2,6,2,0,0,1,'Prada/普拉达新品女士金属徽标钥匙扣挂饰',0.00,'',180.00,0,'2022-04-24 16:04:49',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/0be638d9247fea2f6f483f0d47b2885a.jpg',0,'',''),(3,6,3,0,0,1,'【新品】Prada/普拉达女士Duchesse 和仿水晶发圈',0.00,'',50.00,0,'2022-04-24 16:05:33',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/f58b047a3afaaa365a777c176a02f84c.jpg',0,'',''),(4,6,4,0,0,1,'Prada/普拉达女士印花斜纹布围巾窄版丝巾',0.00,'',180.00,0,'2022-04-24 16:06:12',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/0667bb76fa97ab2bd6bbe0b0dc0570c8.png',0,'',''),(5,6,5,0,0,1,'Prada/普拉达女士黑色Re-Nylon再生尼龙发圈发饰',0.00,'',180.00,0,'2022-04-24 16:19:25',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/f4ab3ae494c26b0421afac892d50ea83.jpg',0,'',''),(6,6,6,0,0,1,'Prada/普拉达女士发夹头饰',0.00,'',180.00,0,'2022-04-24 16:19:57',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/8113054bdc3753c2f4f479e5b04f11d1.png',0,'',''),(7,6,7,1,1,0,'Prada/普拉达女士发夹头饰',0.00,'',180.00,0,'2022-04-24 16:42:43',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/8113054bdc3753c2f4f479e5b04f11d1.png',0,'',''),(8,6,8,1,2,0,'Prada/普拉达女士印花斜纹布围巾窄版丝巾',0.00,'',180.00,0,'2022-04-24 16:43:19',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/0667bb76fa97ab2bd6bbe0b0dc0570c8.png',0,'',''),(9,6,1,2,1,1,'Prada/普拉达女士Prada Symbole 手环饰品',0.00,'',90.00,0,'2022-04-24 16:44:51',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/be848aecdab09fe5daa417c333101124.jpg',0,'',''),(10,6,9,3,1,0,'Prada/普拉达女士黑色Re-Nylon再生尼龙发圈发饰',0.00,'',170.00,0,'2022-04-24 16:45:31',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/f4ab3ae494c26b0421afac892d50ea83.jpg',0,'',''),(11,6,10,4,1,0,'【新品】Prada/普拉达女士Duchesse 和仿水晶发圈',0.00,'',50.00,0,'2022-04-24 16:46:15',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/f58b047a3afaaa365a777c176a02f84c.jpg',0,'',''),(12,3,11,0,0,1,'生活所在现代北欧轻奢白色皮草立体方枕沙发客厅样板间抱枕靠枕',0.00,'',500.00,0,'2022-04-24 16:51:37',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/d723f335cf3e5b4a89c28b02be3c167b.jpg',0,'',''),(13,3,12,0,0,1,'Dnnni莫兰迪花瓶北欧现代简约家居客厅样板房酒店花器装饰品摆件',0.00,'',100.00,0,'2022-04-24 16:52:11',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/b6839652a87c65f8aa013fa82931aab8.jpg',0,'',''),(14,3,13,0,0,1,'Dnnni水晶圆球托盘创意摆件北欧现代简约家居客厅样板房酒店饰品',0.00,'',120.00,0,'2022-04-24 16:52:50',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/11a2b54162082cebe59da559b1af6965.jpg',0,'',''),(15,3,14,0,0,0,'意大利创意餐厅吊灯现代简约服装店个性灯设计师网红少女卧室吊灯',0.00,'',300.00,0,'2022-04-24 16:53:22',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/f2fb1d324f89af534f6c3b43f10a22a8.jpg',0,'',''),(16,3,15,0,0,1,'密度家居现代简约曲线水波纹橘粉色玻璃花瓶花器餐桌创意花艺摆件',0.00,'',300.00,0,'2022-04-24 16:53:58',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/f75ad4acbf85d2dd79da49a259d99d4f.jpg',0,'',''),(17,3,16,0,0,1,'密度家居现代简约透明彩色手工水晶玻璃花瓶仿真花艺玄关装饰摆件',0.00,'',200.00,0,'2022-04-24 16:54:32',0,0,1,'https://mer.crmeb.net/uploads/attach/2022/04/24/d3a6e56cd8f414e0b43b5e9e6bcd54d1.jpg',0,'',''),(18,3,17,1,3,0,'密度家居现代简约透明彩色手工水晶玻璃花瓶仿真花艺<EFBFBD><EFBFBD>
#
# Data for table "eb_system_admin"
#
INSERT INTO `eb_system_admin` (`admin_id`,`account`,`pwd`,`real_name`,`phone`,`roles`,`last_ip`,`last_time`,`login_count`,`status`,`level`,`is_del`,`create_time`,`update_time`) VALUES (1,'admin','$2y$10$2ruBMN3aZmaPZ1BGYSR.lOW30M6gl2vQzZ4HsTc5JIt6oje9UIBuK','',NULL,'1','127.0.0.1','2023-06-13 03:24:56',0,1,0,0,'2023-06-13 03:24:56','2023-06-13 03:24:56');
#
# Data for table "eb_system_attachment"
#
INSERT INTO `eb_system_attachment` (`attachment_id`,`attachment_category_id`,`attachment_name`,`attachment_src`,`upload_type`,`user_type`,`user_id`,`create_time`) VALUES (5113,29,'1','https://mer1.crmeb.net/uploads/default/20220829/f537f5978d9146a7351f7282860d728d.png',1,0,1,'2022-08-29 02:09:38'),(5114,29,'2','https://mer1.crmeb.net/uploads/default/20220829/a608df440f03fdf6f3a066b9067805f3.png',1,0,1,'2022-08-29 02:09:38'),(5115,29,'3','https://mer1.crmeb.net/uploads/default/20220829/8ac0204bbceb875444d2e89c218b14eb.png',1,0,1,'2022-08-29 02:09:38'),(5116,29,'4','https://mer1.crmeb.net/uploads/default/20220829/1b77c41832414b4862e5d9f6e379dc45.png',1,0,1,'2022-08-29 02:09:38'),(5117,0,'分销海报1','https://mer1.crmeb.net/uploads/def/20220829/02a04faf5f7ade05f744b08751e9c42f.jpg',1,0,1,'2022-08-29 02:10:35'),(5118,29,'分销海报1','https://mer1.crmeb.net/uploads/default/20220829/77356107e8be3b33c456d6e5aa157702.jpg',1,0,1,'2022-08-29 02:10:56'),(5119,29,'分销海报2','https://mer1.crmeb.net/uploads/default/20220829/b9eb80f9c692777ea495402f1d40e796.jpg',1,0,1,'2022-08-29 02:11:03'),(5120,29,'V1图标','https://mer1.crmeb.net/uploads/default/20220829/97d6cad62ecc71c9f1636a53d4b7f701.png',1,0,1,'2022-08-29 02:11:39'),(5121,29,'V2图标','https://mer1.crmeb.net/uploads/default/20220829/6b971ae0c2f5c059ac90efbc3f5991fb.png',1,0,1,'2022-08-29 02:11:39'),(5122,29,'V3图标','https://mer1.crmeb.net/uploads/default/20220829/b04eb743e9274c63dca03bb7b578e500.png',1,0,1,'2022-08-29 02:11:39'),(5123,29,'V4图标','https://mer1.crmeb.net/uploads/default/20220829/c7909489b362d16ea0f39e6a39b55cf8.png',1,0,1,'2022-08-29 02:11:39'),(5124,29,'V5图标','https://mer1.crmeb.net/uploads/default/20220829/9277132b9f95cdb4be4af05cce29d577.png',1,0,1,'2022-08-29 02:11:39'),(5125,29,'V2','https://mer1.crmeb.net/uploads/default/20220829/7e0262a691cbb20e543404ccf9257c92.png',1,0,1,'2022-08-29 02:11:40'),(5126,29,'V1','https://mer1.crmeb.net/uploads/default/20220829/097f888d47cb854088e33320caf81561.png',1,0,1,'2022-08-29 02:11:40'),(5127,29,'V3','https://mer1.crmeb.net/uploads/default/20220829/11f754a19a4f9050033751d63fcaaef7.png',1,0,1,'2022-08-29 02:11:40'),(5128,29,'V5','https://mer1.crmeb.net/uploads/default/20220829/0dccdde7a443164ecc3837db0c4c6c77.png',1,0,1,'2022-08-29 02:11:40'),(5129,29,'V4','https://mer1.crmeb.net/uploads/default/20220829/b0a7a0681ecfd4c50b47f72f4a7b3c4d.png',1,0,1,'2022-08-29 02:11:40'),(5130,29,'banner1','https://mer1.crmeb.net/uploads/default/20220829/aa71c85ebd18fdafab359ff8243f3117.jpg',1,0,1,'2022-08-29 02:13:53'),(5131,29,'banner3','https://mer1.crmeb.net/uploads/default/20220829/d807aaefbbcac164f9c4499bb805a1aa.jpg',1,0,1,'2022-08-29 02:13:54'),(5132,29,'banner2','https://mer1.crmeb.net/uploads/default/20220829/0636ff699b89b978d868dec4d6bc0773.jpg',1,0,1,'2022-08-29 02:13:54'),(5133,29,'2.0banner','https://mer1.crmeb.net/uploads/default/20220829/18f71cee295697138796a13f2fce2c48.jpg',1,0,1,'2022-08-29 02:13:54'),(5134,29,'最新资讯','https://mer1.crmeb.net/uploads/default/20220829/313667fe12ba918b3c05ab40091f9ded.png',1,0,1,'2022-08-29 02:14:29'),(5135,29,'商家入驻','https://mer1.crmeb.net/uploads/default/20220829/46212d9a1ae8d810bb701e1d3a4a9cdb.png',1,0,1,'2022-08-29 02:14:29'),(5136,29,'家具厨具','https://mer1.crmeb.net/uploads/default/20220829/fe919858646313230e24b67715d4712a.png',1,0,1,'2022-08-29 02:14:29'),(5137,29,'户外运动','https://mer1.crmeb.net/uploads/default/20220829/a55bc97259b5f6ea1b9598220507bfcc.png',1,0,1,'2022-08-29 02:14:29'),(5138,29,'数码家电','https://mer1.crmeb.net/uploads/default/20220829/c256514ff61e7ed7789a2ad32735a7d2.png',1,0,1,'2022-08-29 02:14:29'),(5139,29,'珠宝配饰','https://mer1.crmeb.net/uploads/default/20220829/c37ec8d14faaf2588571ce8d43f1e0e6.png',1,0,1,'2022-08-29 02:14:29'),(5140,29,'生活服务','https://mer1.crmeb.net/uploads/default/20220829/d0ab0b554db25a93a42ea8c5fe6d28d2.png',1,0,1,'2022-08-29 02:14:30'),(5141,29,'电脑办公','https://mer1.crmeb.net/uploads/default/20220829/1cb22e99fdf7f1738d2c40d8194c6701.png',1,0,1,'2022-08-29 02:14:30')
INSERT INTO `eb_system_attachment` (`attachment_id`,`attachment_category_id`,`attachment_name`,`attachment_src`,`upload_type`,`user_type`,`user_id`,`create_time`) VALUES (5814,36,'9531890eee49db1dac5871dabd28174a.jpg','https://mer1.crmeb.net/uploads/copy/9531890eee49db1dac5871dabd28174a.jpg',1,76,85,'2023-05-17 08:17:46'),(5815,36,'dc4f23caf5366285a39d97e8d45d771c.jpg','https://mer1.crmeb.net/uploads/copy/dc4f23caf5366285a39d97e8d45d771c.jpg',1,76,85,'2023-05-17 08:17:46'),(5816,36,'529e67c1d577698e9f7d3af026fb8f3f.jpg','https://mer1.crmeb.net/uploads/copy/529e67c1d577698e9f7d3af026fb8f3f.jpg',1,76,85,'2023-05-17 08:17:47'),(5817,36,'289f5aed4c26d02f1550067aed4b0583.jpg','https://mer1.crmeb.net/uploads/copy/289f5aed4c26d02f1550067aed4b0583.jpg',1,76,85,'2023-05-17 08:17:47'),(5818,36,'04d522963debd837594f303c9f0fe14e.jpg','https://mer1.crmeb.net/uploads/copy/04d522963debd837594f303c9f0fe14e.jpg',1,76,85,'2023-05-17 08:17:47'),(5819,36,'fb450a085ee415c3a1c0643cb2e4cf3a.jpg','https://mer1.crmeb.net/uploads/copy/fb450a085ee415c3a1c0643cb2e4cf3a.jpg',1,76,85,'2023-05-17 08:17:47'),(5820,36,'0b28f5252f6f2dc99bc5bb02ef9fe185.jpg','https://mer1.crmeb.net/uploads/copy/0b28f5252f6f2dc99bc5bb02ef9fe185.jpg',1,76,85,'2023-05-17 08:17:47'),(5821,36,'779b96050ce1ac62b9294d1c3d1a2460.jpg','https://mer1.crmeb.net/uploads/copy/779b96050ce1ac62b9294d1c3d1a2460.jpg',1,76,85,'2023-05-17 08:17:47'),(5822,36,'3ff67e8da40aceb29b06ca4105bc67c5.jpg','https://mer1.crmeb.net/uploads/copy/3ff67e8da40aceb29b06ca4105bc67c5.jpg',1,76,85,'2023-05-17 08:17:47'),(5823,36,'47611c87a42cd68e59c99b75715d157c.jpg','https://mer1.crmeb.net/uploads/copy/47611c87a42cd68e59c99b75715d157c.jpg',1,76,85,'2023-05-17 08:17:47'),(5824,36,'1dfd75dff0fe19b77c73f7b0395d235f.jpg','https://mer1.crmeb.net/uploads/copy/1dfd75dff0fe19b77c73f7b0395d235f.jpg',1,76,85,'2023-05-17 08:17:47'),(5825,36,'5c6cec449c2c0b33eb2cc7c193d542d4.jpg','https://mer1.crmeb.net/uploads/copy/5c6cec449c2c0b33eb2cc7c193d542d4.jpg',1,76,85,'2023-05-17 08:17:48'),(5826,36,'2e5e42a5aff906a853cc7a3f9c1877fd.jpg','https://mer1.crmeb.net/uploads/copy/2e5e42a5aff906a853cc7a3f9c1877fd.jpg',1,76,85,'2023-05-17 08:17:48'),(5827,36,'8bfada687634234195a1e94d9557714d.jpg','https://mer1.crmeb.net/uploads/copy/8bfada687634234195a1e94d9557714d.jpg',1,76,85,'2023-05-17 08:17:48'),(5828,36,'05a0198c85377267816e3d2241e82ae8.jpg','https://mer1.crmeb.net/uploads/copy/05a0198c85377267816e3d2241e82ae8.jpg',1,76,85,'2023-05-17 08:25:27'),(5829,36,'05a0198c85377267816e3d2241e82ae8.jpg','https://mer1.crmeb.net/uploads/copy/05a0198c85377267816e3d2241e82ae8.jpg',1,76,85,'2023-05-17 08:25:27'),(5830,36,'bf84ed71d1bf3a59cc5f6291a9052160.jpg','https://mer1.crmeb.net/uploads/copy/bf84ed71d1bf3a59cc5f6291a9052160.jpg',1,76,85,'2023-05-17 08:25:27'),(5831,36,'b29a71f3d8ba9a6a09ef1637db06ce3c.jpg','https://mer1.crmeb.net/uploads/copy/b29a71f3d8ba9a6a09ef1637db06ce3c.jpg',1,76,85,'2023-05-17 08:25:27'),(5832,36,'11e7d8b77b549276d86b6b4d3e25d053.jpg','https://mer1.crmeb.net/uploads/copy/11e7d8b77b549276d86b6b4d3e25d053.jpg',1,76,85,'2023-05-17 08:25:27'),(5833,36,'6549b6aa5be15136cd7cdc9608029ca8.jpg','https://mer1.crmeb.net/uploads/copy/6549b6aa5be15136cd7cdc9608029ca8.jpg',1,76,85,'2023-05-17 08:25:28'),(5834,36,'01c91e4abd84a45235ace36182ea8715.jpg','https://mer1.crmeb.net/uploads/copy/01c91e4abd84a45235ace36182ea8715.jpg',1,76,85,'2023-05-17 08:25:28'),(5835,36,'f7abf4382f348491401b07bae731a5fe.jpg','https://mer1.crmeb.net/uploads/copy/f7abf4382f348491401b07bae731a5fe.jpg',1,76,85,'2023-05-17 08:25:28'),(5836,36,'ee371c3d111c93cd661b9b2ad172a59e.jpg','https://mer1.crmeb.net/uploads/copy/ee371c3d111c93cd661b9b2ad172a59e.jpg',1,76,85,'2023-05-17 08:25:28'),(5837,36,'a69edb701baa39d343d632e51547e70b.jpg','https://mer1.crmeb.net/uploads/copy/a69edb701baa39d343d632e51547e70b.jpg',1,76,85,'2023-05-17 08:25:28'),(5838,36,'b2ba3ef282f16958637dcd15167e2178.jpg','https://mer1.crmeb.net/uploads/copy/b2ba3ef282f16958637dcd15167e2178.jpg',1,76,85,'2023-05-17 08:25:28'),(5839,36,'d228954e043184559e5254254b9b4caa.jpg','https://mer1.crmeb.net/upl
#
# Data for table "eb_system_attachment_category"
#
INSERT INTO `eb_system_attachment_category` (`attachment_category_id`,`pid`,`path`,`attachment_category_name`,`attachment_category_enname`,`sort`,`mer_id`,`create_time`) VALUES (1,0,'','导航图标','def',0,0,'2020-07-02 08:44:37'),(4,1,'1','小树1_1','def',0,0,'2020-04-15 06:04:28'),(6,0,'','小树树','def',0,55,'2020-04-22 02:54:45'),(8,6,'6','小树2','def',0,55,'2020-04-22 02:55:53'),(9,1,'1','小树树','def',0,0,'2020-04-22 07:15:30'),(10,1,'1','小树树','def',0,0,'2020-04-22 07:15:35'),(11,0,'','产品主图','def',0,0,'2020-07-02 08:44:50'),(12,0,'/','产品详情','def',0,0,'2020-07-02 08:44:58'),(13,0,'/','轮播图片','def',0,0,'2020-07-02 08:45:10'),(14,0,'/','个人中心','def',0,0,'2020-07-02 08:45:19'),(15,0,'/','活动图片','def',0,0,'2020-07-02 08:45:31'),(16,0,'/','商品主图','def',0,64,'2020-07-02 09:42:48'),(17,0,'/','商品详情','def',0,64,'2020-07-02 09:43:00'),(18,0,'/','分类图片','def',0,0,'2020-07-07 09:21:30'),(19,0,'/','服饰类','fushi',0,65,'2020-07-09 04:09:16'),(20,0,'/','产品中心','def',0,0,'2020-07-09 14:25:41'),(21,20,'/20/','美妆','def',0,0,'2020-07-09 14:25:57'),(22,21,'/20/21/','口红','def',0,0,'2020-07-09 14:26:08'),(23,22,'/20/21/22/','红色','def',0,0,'2020-07-09 14:26:20'),(24,23,'/20/21/22/23/','1号红','def',0,0,'2020-07-09 14:26:40'),(25,0,'/','2','def3',0,66,'2020-07-13 07:07:06'),(26,25,'/25/','3234','def3',0,66,'2020-07-13 07:07:11'),(27,26,'/25/26/','发大水分散的','def',0,66,'2020-07-13 07:07:16'),(28,0,'/','重新发','def',0,66,'2020-07-13 07:07:39'),(29,0,'/','默认数据','default',0,0,'2022-08-29 02:03:35'),(30,0,'/','其它','def',0,0,'2023-05-09 03:50:01'),(31,0,'/','金刚区图标','def',0,0,'2023-05-09 04:06:09'),(32,0,'','远程下载','copy',0,6,'2023-05-09 08:22:18'),(33,0,'','远程下载','copy',0,2,'2023-05-09 10:06:04'),(34,0,'','远程下载','copy',0,75,'2023-05-11 03:25:16'),(35,0,'','远程下载','copy',0,4,'2023-05-11 07:32:31'),(36,0,'','远程下载','copy',0,76,'2023-05-17 08:17:44');
#
# Data for table "eb_system_config"
#
INSERT INTO `eb_system_config` (`config_id`,`config_classify_id`,`config_name`,`config_key`,`config_type`,`config_rule`,`config_props`,`required`,`info`,`sort`,`user_type`,`status`,`create_time`) VALUES (176,70,'网站域名','site_url','input','','required = true',1,'',0,0,1,'2020-04-07 07:14:38'),(177,70,'网站名称','site_name','input','','',1,'',0,0,1,'2020-04-07 07:14:38'),(178,70,'网站开启','site_open','switches','','',1,'',1,0,1,'2020-04-07 07:14:38'),(179,36,'公众号名称','wechat_name','input','','',0,'',0,0,1,'2020-04-07 07:14:47'),(180,42,'退货联系电话','set_phone','input','','',0,'',0,1,1,'2020-04-23 10:16:17'),(182,36,'微信号','wechat_id','input','','',0,'',0,0,1,'2020-04-26 03:36:48'),(183,36,'公众号原始id','wechat_sourceid','input','','',0,'',0,0,1,'2020-04-26 03:37:15'),(184,36,'公众号AppID','wechat_appid','input','','',0,'',0,0,1,'2020-04-26 03:37:45'),(185,36,'公众号AppSecret','wechat_appsecret','input','','',0,'',0,0,1,'2020-04-26 03:38:11'),(186,36,'微信验证TOKEN','wechat_token','input','','',0,'',0,0,1,'2020-04-26 03:38:36'),(187,36,'微信EncodingAESKey','wechat_encodingaeskey','input','','',0,'公众号消息加解密Key,在使用安全模式情况下要填写该值,请先在管理中心修改,然后填写该值,仅限服务号和认证订阅号',0,0,1,'2020-04-26 03:40:47'),(188,36,'公众号二维码','wechat_qrcode','image','','',0,'',0,0,1,'2020-04-26 03:41:35'),(189,36,'公众号logo','wechat_avatar','image','','',0,'',0,0,1,'2020-04-26 03:43:08'),(193,36,'消息加解密方式','wechat_encode','radio','0:明文模式\n1:兼容模式\n2:安全模式','defaultValue = \'0\'',1,'如需使用安全模式请在管理中心修改,仅限服务号和认证订阅号',1,0,1,'2020-04-26 04:26:20'),(194,93,'一级分销比例','extension_one_rate','number','','min = 0\nmax = 1\nprecision = 4',0,'订单交易成功后给上级返佣的比例,例:0.5 = 返订单金额的50%',0,0,1,'2020-05-08 07:38:03'),(195,93,'二级分销比例','extension_two_rate','number','','min = 0\nmax = 1\nprecision = 4',0,'订单交易成功后给上级返佣的比例,例:0.5 = 返订单金额的50%',0,0,1,'2020-05-08 07:39:03'),(196,92,'分销启用','extension_status','switches','','defaultValue = \'0\'',1,'开启:商城分销功能启用;关闭:商城分销功能不可用',5,0,1,'2020-05-08 07:41:04'),(197,42,'警戒库存','mer_store_stock','number','','min = 0',0,'警戒库存提醒值',6,1,1,'2020-05-18 03:23:43'),(198,0,'短信平台账号','sms_account','input','','',0,'设置短信平台账号',0,0,0,'2020-05-18 07:33:58'),(199,0,'短信平台密码','sms_token','input','','',0,'设置短信平台密码',0,0,0,'2020-05-18 07:34:22'),(210,80,'Mchid','pay_weixin_mchid','input','','',0,'受理商ID身份标识',100,0,1,'2020-06-02 09:57:49'),(211,80,'微信支付证书','pay_weixin_client_cert','file','','',0,'微信支付证书在微信商家平台中可以下载文件名一般为apiclient_cert.pem',90,0,1,'2020-06-02 09:58:33'),(212,80,'微信支付证书密钥','pay_weixin_client_key','file','','',0,'微信支付证书密钥在微信商家平台中可以下载文件名一般为apiclient_key.pem',80,0,1,'2020-06-02 09:58:59'),(213,80,'Key','pay_weixin_key','input','','',0,'商户支付密钥Key。申请的时候自己定义的密钥',99,0,1,'2020-06-02 09:59:24'),(214,80,'开启','pay_weixin_open','switches','','',0,'是否启用微信支付',0,0,1,'2020-06-02 10:00:04'),(215,50,'充值注意事项','recharge_attention','textarea','','',0,'',0,0,1,'2020-06-03 01:49:01'),(216,76,'订单自动关闭时间(分钟)','auto_close_order_timer','number','','min = 0\nprecision = 0',0,'订单提交后待支付时长,0为默认15分钟',5,0,1,'2020-06-03 01:49:01'),(217,42,'默认退货收货地址','mer_refund_address','input','','',0,'设置默认退货收货地址',0,1,1,'2020-06-12 08:28:41'),(218,42,'默认退货收货人','mer_refund_user','input','','',0,'设置默认退货收货人',0,1,1,'2020-06-12 08:29:15'),(219,76,'退款理由','refund_message','textarea','
#
# Data for table "eb_system_config_classify"
#
INSERT INTO `eb_system_config_classify` (`config_classify_id`,`pid`,`classify_name`,`classify_key`,`info`,`sort`,`create_time`,`icon`,`status`) VALUES (36,0,'公众号配置','wechat','0',0,'2020-04-07 07:14:39','md-settings',1),(41,0,'短信配置','message',' 平台短信配置',0,'2020-05-25 07:01:35','chat-round',1),(42,0,'商户基础配置','mer_base','商户基础配置',0,'2020-05-28 08:11:32','',1),(45,0,'阿里云配置','aliyun_oss','阿里云配置',0,'2020-06-18 02:20:33','',1),(46,0,'七牛云配置','qiniuyun','七牛云配置',0,'2020-06-18 07:12:56','',1),(47,0,'腾讯云配置','tengxun','腾讯云配置',0,'2020-06-18 07:38:44','',1),(48,0,'小程序配置','smallapp','小程序配置',0,'2020-06-19 02:05:46','',1),(50,0,'余额/充值设置','balance','余额/充值设置',0,'2020-07-03 08:56:58',NULL,1),(52,0,'商户提货点配置','mer_take','商户提货点配置',0,'2020-08-01 03:57:21','',1),(54,0,'拼团配置','group_buying','拼团配置',0,'2021-01-07 03:43:25','',1),(55,0,'商户财务','financial','财务提现等配置',0,'2021-03-19 03:52:56','',1),(57,0,'积分配置','integral','积分相关配置',0,'2021-06-09 10:07:38','',1),(59,0,'开放平台APP配置','wechat_open_app','',0,'2021-06-25 07:54:22','',1),(60,0,'会员配置','members','',0,'2021-10-08 07:01:25','',1),(61,0,'社区配置','community','',0,'2021-10-30 01:57:24','',1),(62,0,'上传图片配置','upload_image_config','',0,'2021-12-14 02:37:43','',0),(63,0,'APP升级配置','app_version','',0,'2021-12-27 03:15:33','',1),(64,0,'同城配送','delivery_config','',0,'2022-02-12 04:17:11','',1),(65,0,'华为云存储','huawei_obs','华为云存储配置',0,'2022-03-02 02:34:55','',1),(66,0,'Ucloud存储','ucloud','',0,'2022-03-02 03:59:05','',1),(67,0,'本地存储','local','',0,'2022-03-04 01:38:04','',1),(69,0,'系统设置','system_tabs','',0,'2022-03-31 01:55:46','',1),(70,69,'系统信息','tab_system','',0,'2022-03-31 01:57:25','',1),(71,69,'后台设置','tab_admin','',0,'2022-03-31 01:57:52','',1),(72,69,'移动端设置','tab_h5','',0,'2022-03-31 01:58:41','',1),(74,0,'商城设置','shop_tabs','',0,'2022-03-31 02:00:42','',1),(75,74,'商品设置','tab_product','',0,'2022-03-31 02:01:07','',1),(76,74,'交易设置','tab_deal','',0,'2022-03-31 02:01:39','',1),(77,74,'商户设置','tab_merchant','',0,'2022-03-31 02:02:13','',1),(78,74,'商城设置','tab_shop','',0,'2022-03-31 02:02:53','',1),(79,0,'支付配置','pay_tabs','',0,'2022-03-31 02:03:51','',1),(80,79,'公众号支付配置','tab_pay_wechat','',0,'2022-03-31 02:04:26','',1),(81,79,'小程序支付配置','tab_pay_routine','',0,'2022-03-31 02:04:49','',1),(82,79,'支付宝支付配置','tab_pay_ail','',0,'2022-03-31 02:05:18','',1),(83,79,'微信服务商支付','tab_service_wechat','',0,'2022-03-31 02:06:07','',1),(84,0,'第三方接口','extend_tabs','',0,'2022-03-31 02:07:41','',1),(85,84,'采集商品配置','tab_grab_product','',0,'2022-03-31 02:11:03','',1),(86,84,'物流查询','tab_express','',0,'2022-03-31 02:11:57','',1),(87,84,'电子面单','tab_dzmd','',0,'2022-03-31 02:12:37','',1),(88,84,'地图配置','tab_map','',0,'2022-03-31 02:12:56','',1),(89,84,'短信','tab_sms','',0,'2022-03-31 02:13:09','',1),(90,84,'统计代码','tab_code','',0,'2022-03-31 10:13:39','',0),(91,0,'分销配置','distribution_tabs','',0,'2022-03-31 02:15:11','',1),(92,91,'分销设置','tab_distribution','',0,'2022-03-31 02:16:01','',1),(93,91,'返佣设置','tab_commission','',0,'2022-03-31 02:16:30','',1),(94,91,'提现设置','withdraw','',0,'2022-03-31 02:16:58','',1),(95,91,'分销礼包设置','tab_gift_bag','',0,'2022-03-31 02:17:32','',1),(96,0,'客服设置','service','',0,'2022-04-14 01:06:30','',1),(97,0,'付费会员','svip','付费会员',0,'2022-11-03 08:44:52','',1),(98,0,'其他配置','other','其他不需要显示固定位置的配置',0,'2023-04-11 02:09:07','',1),(99,0,'店铺保证金','margin','',0,'2023-04-24 09:22:28','',1),(100,0,'京东云配置','jdoss','',0,'2023-04-25 08:17:06','',1),(101,0,'天翼云配置','ctoss','',0,'2023-04-25 08
#
# Data for table "eb_system_config_value"
#
INSERT INTO `eb_system_config_value` (`config_value_id`,`config_key`,`value`,`mer_id`,`create_time`) VALUES (1,'site_url','\"https:\\/\\/mer1.crmeb.net\\/\"',0,'2020-04-22 09:39:37'),(2,'site_name','\"CRMEB\\u591a\\u5546\\u6237\\u5546\\u57ce\"',0,'2020-04-22 09:39:37'),(3,'site_open','\"1\"',0,'2020-04-22 09:39:37'),(89,'auto_close_order_timer','15',0,'2020-06-12 08:35:14'),(90,'refund_message','\"\\u6536\\u8d27\\u5730\\u5740\\u586b\\u9519\\u4e86\\n\\u4e0e\\u63cf\\u8ff0\\u4e0d\\u7b26\\n\\u4fe1\\u606f\\u586b\\u9519\\u4e86\\uff0c\\u91cd\\u65b0\\u62cd\\n\\u6536\\u5230\\u5546\\u54c1\\u635f\\u574f\\u4e86\\n\\u672a\\u6309\\u9884\\u5b9a\\u65f6\\u95f4\\u53d1\\u8d27\\n\\u5176\\u5b83\\u539f\\u56e0\"',0,'2020-06-12 08:35:14'),(138,'site_logo','\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200816\\/6c50374375d5fd6b2a8c40d49884daf6.png\"',0,'2020-06-30 08:17:55'),(139,' share_title','\"titletitletitletitle\"',0,'2020-06-30 08:17:55'),(140,'share_info','\"CRMEB\\u591a\\u5546\\u6237\\u5546\\u57ce\"',0,'2020-06-30 08:17:55'),(141,'share_pic','\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200816\\/67f5193c55d7b757f28c0204d3a5d07a.png\"',0,'2020-06-30 08:17:55'),(142,'share_title','\"CRMEB\\u591a\\u5546\\u6237\\u5546\\u57ce\"',0,'2020-06-30 08:21:08'),(165,'sys_login_logo','\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200816\\/6c50374375d5fd6b2a8c40d49884daf6.png\"',0,'2020-07-07 07:23:07'),(176,'sys_menu_logo','\"https:\\/\\/mer1.crmeb.net\\/uploads\\/def\\/20230506\\/a0444537c19b9b152a205b0a7e5b768c.png\"',0,'2020-07-09 12:55:28'),(177,'sys_menu_slogo','\"https:\\/\\/mer1.crmeb.net\\/uploads\\/def\\/20230508\\/4e3f13b6cce69b9f6e558185cf080a6c.png\"',0,'2020-07-09 12:55:28'),(178,'sys_login_title','\"\"',0,'2020-07-14 04:04:53'),(1217,'sys_login_banner','[\"https:\\/\\/mer1.crmeb.net\\/uploads\\/def\\/20220422\\/434651eadb30c79fde81a1c83ab744ec.jpg\"]',0,'2022-03-31 07:17:51'),(1220,'sys_open_version','\"1\"',0,'2022-08-29 02:09:18'),(1221,'login_logo','\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20230518\\/a11e170d42d5d7bd0d04e16ce40e4307.png\"',0,'2022-08-29 02:09:18'),(1225,'site_ico','\"\"',0,'2023-05-06 02:27:04'),(1240,'tx_map_key','\"SMJBZ-WCHK4-ZPZUA-DSIXI-XDDVQ-XWFX7\"',0,'2023-05-09 08:20:56');
#
# Data for table "eb_system_form"
#
#
# Data for table "eb_system_group"
#
INSERT INTO `eb_system_group` (`group_id`,`group_name`,`group_info`,`group_key`,`fields`,`user_type`,`sort`,`create_time`) VALUES (67,'热门搜索','移动端搜索页热门搜索设置','hot_keyword','[{\"name\":\"\\u5173\\u952e\\u5b57\",\"field\":\"keyword\",\"type\":\"input\",\"param\":\"\\u8bbe\\u7f6e\\u5173\\u952e\\u5b57\",\"props\":\"required = true\\nmaxlength = 20\"}]',0,0,'2020-05-26 07:34:01'),(68,'分享海报','用户分享海报','spread_banner','[{\"name\":\"\\u540d\\u79f0\",\"field\":\"name\",\"type\":\"input\",\"param\":\"\\u8bbe\\u7f6e\\u6d77\\u62a5\\u540d\\u79f0\",\"props\":\"required = true\\nmaxlength = 20\"},{\"name\":\"\\u80cc\\u666f\\u56fe(600*1000px)\",\"field\":\"pic\",\"type\":\"image\",\"param\":\"\\u8bbe\\u7f6e\\u6d77\\u62a5\\u80cc\\u666f\\u56fe\",\"props\":\"required = true\"}]',0,0,'2020-05-26 07:36:57'),(69,'充值金额','设置充值金额额度选择','user_recharge_quota','[{\"name\":\"\\u5145\\u503c\\u91d1\\u989d\",\"field\":\"price\",\"type\":\"number\",\"param\":\"\\u8bbe\\u7f6e\\u7528\\u6237\\u5145\\u503c\\u91d1\\u989d\",\"props\":\"required = true\\nmin = 0.01\\nprecision = 2\"},{\"name\":\"\\u8d60\\u9001\\u91d1\\u989d\",\"field\":\"give\",\"type\":\"number\",\"param\":\"\\u8bbe\\u7f6e\\u8d60\\u9001\\u7684\\u91d1\\u989d\",\"props\":\"required = true\\nmin = 0.01\\nprecision = 2\"}]',0,0,'2020-06-02 07:49:18'),(70,'个人中心菜单','个人中心菜单','my_menus','[{\"name\":\"\\u83dc\\u5355\\u540d\",\"field\":\"name\",\"type\":\"input\",\"param\":\"\",\"props\":\"required = true\\nmaxlength = 20\"},{\"name\":\"\\u56fe\\u6807(52*52)\",\"field\":\"pic\",\"type\":\"image\",\"param\":\"\",\"props\":\"required = true\"},{\"name\":\"\\u8df3\\u8f6c\\u8def\\u5f84\",\"field\":\"url\",\"type\":\"select\",\"param\":\"\\/pages\\/users\\/user_address_list\\/index:\\u5730\\u5740\\u7ba1\\u7406\\n\\/pages\\/users\\/user_grade\\/index:\\u6211\\u7684\\u7b49\\u7ea7\\n\\/pages\\/users\\/user_spread_user\\/index:\\u63a8\\u5e7f\\u4e2d\\u5fc3\\n\\/pages\\/users\\/user_money\\/index:\\u6211\\u7684\\u4f59\\u989d\\n\\/pages\\/users\\/user_coupon\\/index:\\u4f18\\u60e0\\u5238\\n\\/pages\\/service\\/index:\\u5ba2\\u670d\\u8bb0\\u5f55\\n\\/pages\\/users\\/user_goods_collection\\/index:\\u6211\\u7684\\u6536\\u85cf\\n\\/pages\\/users\\/user_store_attention\\/index:\\u5173\\u6ce8\\u5e97\\u94fa\\n\\/pages\\/users\\/browsingHistory\\/index:\\u6d4f\\u89c8\\u8bb0\\u5f55\\n\\/pages\\/users\\/feedback\\/index:\\u95ee\\u9898\\u53cd\\u9988\\n\\/pages\\/activity\\/assist_record\\/index:\\u52a9\\u529b\\u8bb0\\u5f55\\n\\/pages\\/admin\\/order_cancellation\\/index:\\u8ba2\\u5355\\u6838\\u9500\\n\\/pages\\/store\\/settled\\/index:\\u5546\\u5bb6\\u5165\\u9a7b\\n\\/pages\\/admin\\/order\\/index:\\u8ba2\\u5355\\u7ba1\\u7406\\n\\/pages\\/users\\/user_integral\\/index:\\u79ef\\u5206\\u4e2d\\u5fc3\\n\\/pages\\/product\\/list\\/index:\\u5546\\u54c1\\u7ba1\\u7406\",\"props\":\"required = true\"},{\"name\":\"key\",\"field\":\"key\",\"type\":\"input\",\"param\":\"\",\"props\":\"\"}]',0,0,'2020-06-19 02:02:39'),(71,'个人中心轮播图','个人中心轮播图','my_banner','[{\"name\":\"\\u540d\\u79f0\",\"field\":\"name\",\"type\":\"input\",\"param\":\"\",\"props\":\"required = true\\nmaxlength = 20\"},{\"name\":\"\\u8f6e\\u64ad\\u56fe(710*310px)\",\"field\":\"pic\",\"type\":\"image\",\"param\":\"\",\"props\":\"required = true\"},{\"name\":\"\\u94fe\\u63a5\",\"field\":\"url\",\"type\":\"input\",\"param\":\"\",\"props\":\"\"}]',0,0,'2020-06-19 06:18:57'),(72,'首页 banner','设置首页 banner 图','home_banner','[{\"name\":\"\\u540d\\u79f0\",\"field\":\"name\",\"type\":\"input\",\"param\":\"\",\"props\":\"required = true\\nmaxlength = 20\"},{\"name\":\"\\u56fe\\u7247(630*290px)\",\"field\":\"pic\",\"type\":\"image\",\"param\":\"\",\"props\":\"required = true\"},{\"name\":\"\\u94fe\\u63a5\",\"field\":\"url\",\"type\":\"input\",\"param\":\"\",\"props\":\"\"}]',0,0,'2020-06-25 01:33:38'),(73,'首页菜单','首页菜单设置','home_menu','[{\"name\":\"\\u540d\\u79f0\",\"field\":\"name\",\"type\":\"input\",\"param\":\"\",\"props\":\
#
# Data for table "eb_system_group_data"
#
INSERT INTO `eb_system_group_data` (`group_data_id`,`group_id`,`value`,`sort`,`status`,`mer_id`,`create_time`) VALUES (223,69,'{\"price\":0.01,\"give\":2}',0,1,0,'2020-06-02 07:50:36'),(224,69,'{\"price\":0.1,\"give\":5}',0,1,0,'2020-06-02 07:50:48'),(225,68,'{\"name\":\"1\",\"pic\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/b9eb80f9c692777ea495402f1d40e796.jpg\"}',0,1,0,'2020-06-18 09:08:55'),(235,74,'{\"title\":\"\\u9996\\u9875\\u65b0\\u54c1\",\"s_title\":\"\\u65b0\\u54c1\\u62a2\\u5148\\u8d2d\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200817\\/7ebe8eba3361ffe5cd5e0e18ce811cc9.jpg\",\"url\":\"\\/pages\\/columnGoods\\/HotNewGoods\\/index?type=new\",\"color\":\"#8FBBE8\"}',0,1,0,'2020-06-25 01:49:01'),(236,74,'{\"title\":\"\\u70ed\\u95e8\\u699c\\u5355\",\"s_title\":\"\\u5241\\u624b\\u5fc5\\u5907\\u6307\\u5357\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200817\\/9ebd6d61eaf72da07f0e6feacb476b25.jpg\",\"url\":\"\\/pages\\/columnGoods\\/HotNewGoods\\/index?type=hot\",\"color\":\"#D797B7\"}',0,1,0,'2020-06-25 01:51:52'),(237,74,'{\"title\":\"\\u7cbe\\u54c1\\u63a8\\u8350\",\"s_title\":\"\\u53d1\\u73b0\\u54c1\\u8d28\\u597d\\u7269\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200817\\/43b24d19064feda811d9db3486566e8c.jpg\",\"url\":\"\\/pages\\/columnGoods\\/HotNewGoods\\/index?type=best\",\"color\":\"#C49BD1\"}',0,1,0,'2020-06-25 01:52:32'),(238,74,'{\"title\":\"\\u63a8\\u8350\\u5355\\u54c1\",\"s_title\":\"\\u60ca\\u559c\\u6298\\u6263\\u4ef7\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200817\\/8253d966aaa344fc553f23fd638658de.jpg\",\"url\":\"\\/pages\\/columnGoods\\/HotNewGoods\\/index?type=good\",\"color\":\"#A3BF95\"}',0,1,0,'2020-06-25 01:53:19'),(239,73,'{\"name\":\"\\u7f8e\\u5bb9\\u5f69\\u5986\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200817\\/eaec7a8b99a9058e1ad3b88abb460397.png\",\"url\":\"\\/pages\\/columnGoods\\/goods_list\\/index?id=151\"}',0,1,0,'2020-06-25 01:54:02'),(240,73,'{\"name\":\"\\u6700\\u65b0\\u8d44\\u8baf\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200816\\/9a6a2e1231fb19517ed1de71206a0657.jpg\",\"url\":\"\\/pages\\/news_list\\/index\"}',0,1,0,'2020-06-25 01:54:25'),(241,73,'{\"name\":\"\\u98df\\u54c1\\u996e\\u6599\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200817\\/541f33ffcf5436d6244e0b0a50c858ef.png\",\"url\":\"\\/pages\\/columnGoods\\/goods_list\\/index?id=151\"}',0,1,0,'2020-06-25 01:56:44'),(242,73,'{\"name\":\"\\u6570\\u7801\\u5bb6\\u7535\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200816\\/d1c512e92d2263d5386d1cbe962785bd.jpg\",\"url\":\"\\/pages\\/columnGoods\\/goods_list\\/index?id=151\"}',0,1,0,'2020-06-25 01:57:43'),(243,73,'{\"name\":\"\\u751f\\u6d3b\\u670d\\u52a1\",\"pic\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/def\\/20210917\\/75d00057471a649530da23fa27087d35.jpg\",\"url\":\"\\/pages\\/activity\\/lifeService\\/index\"}',0,1,0,'2020-06-25 01:58:06'),(244,72,'{\"name\":\"1\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200908\\/ad002d0bc0b6b4b0b4b23b6df53c5e6c.jpg\",\"url\":\"\\/pages\\/store\\/home\\/index?id=64\"}',0,1,0,'2020-06-25 02:01:26'),(245,75,'{\"title\":\"\\u96f6\\u6210\\u672c\",\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/f537f5978d9146a7351f7282860d728d.png\"}',100,1,0,'2020-06-26 07:10:29'),(246,75,'{\"title\":\"\\u9ad8\\u4f63\\u91d1\",\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/a608df440f03fdf6f3a066b9067805f3.png\"}',90,1,0,'2020-06-26 07:10:49'),(247,75,'{\"title\":\"\\u6301\\u7eed\\u6536\\u5165\",\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/1b77c41832414b4862e5d9f6e379dc45.png\"}',80,1,0,'2020-06-26 07:11:23'),(248,75,'{\"title\":\"\\u4f63\\u91d1\\u62b5\\u73b0\",\"img\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/8ac0204bbceb875444d2e89c218b14eb.png\"}',50,1,0,'2020-06-26 07:12:12'),(249,72,'{\"name\":\"2\",\"pic\":\"https:\\/\\/mer.crmeb.net\\/uploads\\/def\\/20200909\\/a00d4959419945e3f1f6de489ede9778.jpg\",\"url\":\"\\/pages\\/store\\/
#
# Data for table "eb_system_log"
#
#
# Data for table "eb_system_menu"
#
INSERT INTO `eb_system_menu` (`menu_id`,`pid`,`path`,`icon`,`menu_name`,`route`,`params`,`sort`,`is_show`,`is_mer`,`is_menu`,`create_time`,`update_time`) VALUES (33,9218,'/9218/','s-home','控制台','/dashboard','[]',100,1,0,1,'2020-04-10 17:44:16','2024-01-09 10:53:19'),(34,110,'/110/','','系统设置','/systemForm/Basics/system_tabs','[]',99,1,0,1,'2020-04-10 09:45:02','2022-04-08 02:21:48'),(35,520,'/520/','','配置分类','/config/classify','[]',0,1,0,1,'2020-04-10 09:46:29','2022-04-07 11:49:30'),(36,520,'/520/','','配置管理','/config/setting','[]',0,1,0,1,'2020-04-10 09:47:19','2022-04-07 11:49:40'),(38,110,'/110/','','权限管理','/setting','[]',98,1,0,1,'2020-04-10 09:51:38','2022-04-08 02:22:04'),(39,38,'/110/38/','','身份管理','/setting/systemRole','',0,1,0,1,'2020-04-10 09:52:47','2020-08-26 01:37:57'),(40,38,'/110/38/','','管理员管理','/setting/systemAdmin','',0,1,0,1,'2020-04-10 09:53:06','2020-08-26 01:37:57'),(41,1665,'/1665/','','素材管理','/config/picture','[]',0,1,0,1,'2020-04-15 01:40:05','2022-04-26 11:22:28'),(42,0,'/','s-shop','商户','/merchant','',94,1,0,1,'2020-04-16 06:26:30','2020-06-23 03:31:09'),(43,42,'/42/','','商户菜单管理','/merchant/system','',0,1,0,1,'2020-04-16 06:31:22','2020-08-26 01:37:56'),(44,6370,'/42/6370/','','商户列表','/merchant/list','[]',10,1,0,1,'2020-04-16 06:36:15','2023-03-21 01:26:51'),(47,520,'/520/','','操作日志','/setting/systemLog','[]',0,1,0,1,'2020-04-16 07:32:35','2022-04-07 11:49:55'),(48,38,'/110/38/','','菜单管理','/setting/menu','',0,1,0,1,'2020-04-17 08:46:52','2020-08-26 01:37:57'),(49,526,'/526/','','权限管理','/setting','[]',9,1,1,1,'2020-04-17 09:03:14','2023-05-05 08:33:54'),(50,49,'/526/49/','','身份管理','/setting/systemRole','',0,1,1,1,'2020-04-17 09:03:53','2020-08-26 01:39:14'),(51,49,'/526/49/','','管理员管理','/setting/systemAdmin','',0,1,1,1,'2020-04-17 09:04:56','2020-08-26 01:39:14'),(52,49,'/526/49/','','操作日志','/setting/systemLog','',0,1,1,1,'2020-04-17 09:05:43','2020-08-26 01:39:14'),(54,1671,'1671/','','素材管理','/config/picture','[]',0,1,1,1,'2020-04-17 09:07:19','2023-08-22 06:19:43'),(55,0,'/','house','首页','/dashboard','[]',100,1,1,1,'2020-04-20 02:13:38','2023-02-27 06:29:44'),(57,521,'/520/521/','','组合数据','/group/list','',0,1,0,1,'2020-04-20 02:21:18','2020-08-26 01:37:57'),(58,519,'/519/','','公众号','/app/wechat','',0,1,0,1,'2020-04-20 03:21:38','2020-08-26 01:37:56'),(59,58,'/519/58/','','微信菜单','/app/wechat/menus','',0,1,0,1,'2020-04-20 03:22:01','2020-08-26 01:37:56'),(60,0,'/','s-management','文章','/cms','',96,1,0,1,'2020-04-20 07:00:27','2020-06-23 03:31:09'),(61,60,'/60/','','文章管理','/cms/article','',0,1,0,1,'2020-04-20 07:00:53','2020-08-26 01:37:56'),(62,60,'/60/','','文章分类','/cms/articleCategory','',0,1,0,1,'2020-04-20 07:01:12','2020-08-26 01:37:56'),(72,111,'/110/1368/111/','','短信配置','/systemForm/Basics/message','[]',-1,0,0,1,'2020-04-22 10:27:46','2023-03-01 09:25:22'),(74,526,'/526/','','店铺配置','/systemForm/Basics/mer_base','[]',8,1,1,1,'2020-04-23 09:14:41','2023-05-05 08:33:02'),(77,58,'/519/58/','','自动回复','/admin/app/wechat/reply','',0,1,0,1,'2020-04-26 07:40:38','2020-08-26 01:37:56'),(79,77,'/519/58/77/','','微信关注回复','/app/wechat/reply/follow/subscribe','',0,1,0,1,'2020-04-27 04:04:24','2020-08-26 01:37:56'),(80,77,'/519/58/77/','','关键字回复','/app/wechat/reply/keyword','',0,1,0,1,'2020-04-27 04:05:06','2020-08-26 01:37:56'),(81,77,'/519/58/77/','','无效关键词回复','/app/wechat/reply/index/default','',0,1,0,1,'2020-04-27 04:05:56','2020-08-26 01:37:56'),(82,58,'/519/58/','','图文管理','/app/wechat/newsCategory','',0,1,0,1,'2020-04-27 06:36:09','2020-08-26 01:37:56'),(87,0,'/','s-goods','商品','/product','',99,1,0,1,'2020-04-29 04:06:38','2020-06-23 03:31:09'),(88,87,'/87/','','商品分类','/product/classify','',0,1,0,1,'2020-04-29 04:07:11','2020-08-26 01:37:55'),(92,87,'/87/','','品牌管理','/product/brand','',0,1,0,1,'2020-04-30 02:03:34','2020-08-2
INSERT INTO `eb_system_menu` (`menu_id`,`pid`,`path`,`icon`,`menu_name`,`route`,`params`,`sort`,`is_show`,`is_mer`,`is_menu`,`create_time`,`update_time`) VALUES (8407,7792,'/5054/1668/7792/','','添加','adminServiceReplyCreate','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8408,7792,'/5054/1668/7792/','','编辑','adminServiceReplyUpdate','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8409,7792,'/5054/1668/7792/','','切换状态','adminServiceReplyStatus','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8410,7792,'/5054/1668/7792/','','删除','adminServiceReplyDelete','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8411,7793,'/514/522/7793/','','分销员列表','systemPromoterUserLst','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8412,7793,'/514/522/7793/','','分销员统计','systemPromoterUserCount','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8413,7793,'/514/522/7793/','','修改分销员等级','systemUserSpreadSave','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8414,7793,'/514/522/7793/','','推广人列表','systemUserSpreadLst','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8415,7793,'/514/522/7793/','','推广人订单','systemUserSpreadOrder','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8416,7793,'/514/522/7793/','','清除推广人','systemUserSpreadClear','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8417,7794,'/514/1373/1374/7794/','','分销员等级列表','systemUserBrokerageLst','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8418,7794,'/514/1373/1374/7794/','','分销员等级添加','systemUserBrokerageCreate','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8419,7794,'/514/1373/1374/7794/','','分销员等级编辑','systemUserBrokerageUpdate','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8420,7794,'/514/1373/1374/7794/','','分销员等级删除','systemUserBrokerageDelete','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8421,7795,'/514/1373/1374/7795/','','上传图片','uploadImage','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8422,7795,'/514/1373/1374/7795/','','图片列表','systemAttachmentLst','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8423,7796,'/514/731/7796/','','统计','systemStoreBagLstFilter','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8424,7796,'/514/731/7796/','','列表','systemStoreBagLst','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8425,7796,'/514/731/7796/','','详情','systemStoreBagDetail','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8426,7796,'/514/731/7796/','','编辑','systemStoreBagUpdate','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8427,7796,'/514/731/7796/','','修改状态','systemStoreBagSwitchStatus','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8428,7796,'/514/731/7796/','','显示/隐藏','systemStoreBagChangeUsed','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8429,7797,'/514/5122/7797/','','配置保存','configOthersSettingUpdate','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8430,7798,'/520/1244/7798/','','列表','systemStoreExcelLst','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8431,7798,'/520/1244/7798/','','下载','systemStoreExcelDownload','',1,1,0,0,'2022-05-18 01:34:46','2022-05-18 01:34:46'),(8432,7799,'/9218/33/7799/','','主要数据','systemStatisticsMain','',1,1,0,0,'2022-05-18 09:34:46','2024-01-09 10:53:19'),(8433,7799,'/9218/33/7799/','','当日订单','systemStatisticsOrder','',1,1,0,0,'2022-05-18 09:34:46','2024-01-09 10:53:19'),(8434,7799,'/9218/33/7799/','','当日订单数','systemStatisticsOrderNum','',1,1,0,0,'2022-05-18 09:34:46','2024-01-09 10:53:19'),(8435,7799,'/9218/33/7799/','','当日支付人数','systemStatisticsOrderUser','',1,1,0,0,'2022-05-18 09:34:46','2024-01-09 10:53:19'),(8436,7799,'/9218/33/7799/','','商户销量','systemStatisticsMerchantStock','',1,1,0,0,'2022-05-18 09:34:46','2024-01-09 10:53:19'),(8437,7799,'/9218/33/7799/','','商户访问量','systemStat
INSERT INTO `eb_system_menu` (`menu_id`,`pid`,`path`,`icon`,`menu_name`,`route`,`params`,`sort`,`is_show`,`is_mer`,`is_menu`,`create_time`,`update_time`) VALUES (9270,9259,'/719/9217/9259/','','添加','systemActivityFormCreate','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9271,9259,'/719/9217/9259/','','列表','systemActivityFormLst','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9272,9259,'/719/9217/9259/','','编辑','systemActivityFormUpdate','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9273,9259,'/719/9217/9259/','','详情','systemActivityFormDetail','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9274,9259,'/719/9217/9259/','','删除','systemActivityFormDelete','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9275,9259,'/719/9217/9259/','','修改状态','systemActivityFormStatus','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9276,9259,'/719/9217/9259/','','活动记录','systemFormActivUserLst','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9277,9259,'/719/9217/9259/','','活动记录导出','systemFormActivUserExcel','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9278,9260,'/719/9217/9260/','','上传图片','uploadImage','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9279,9260,'/719/9217/9260/','','图片列表','systemAttachmentLst','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9280,9261,'/101/9215/9261/','','列表','systemUserInfolst','',1,0,0,0,'2024-01-09 14:56:12','2024-01-09 14:59:49'),(9281,9261,'/101/9215/9261/','','添加','systemUserInfoCreate','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9282,9261,'/101/9215/9261/','','保存信息','systemUserInfoSaveAll','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9283,9261,'/101/9215/9261/','','删除','systemUserInfoDelete','',1,1,0,0,'2024-01-09 14:56:12','2024-01-09 14:56:12'),(9284,8617,'/526/546/8617/','','退保证金申请','merchantFinancialRefundMarginApply','',1,1,1,0,'2024-01-09 14:58:12','2024-01-09 14:58:12'),(9285,110,'/110/','','存储管理','/setting/storage','[]',0,1,0,1,'2024-03-09 11:12:53','2024-03-09 11:12:52'),(9286,1376,'1376/','','一号通账户','/setting/sms/sms_account/index','[]',10,1,1,1,'2024-03-19 17:36:35','2024-03-21 10:29:46'),(9287,780,'/719/780/','','秒杀活动','/marketing/seckill/store_seckill/list','[]',0,1,0,1,'2024-04-11 15:30:02','2024-04-11 15:30:11'),(9289,788,'788/','','秒杀活动','/marketing/seckill/store_seckill/list','[]',0,1,1,1,'2024-04-22 11:28:04','2024-04-22 11:28:03'),(9290,788,'788/','','秒杀商品','/marketing/seckill/product/list','[]',0,1,1,1,'2024-04-22 11:28:21','2024-04-22 11:28:21'),(9291,9287,'/719/780/9287/','','权限','/marketing/seckill/store_seckill/list','',1,1,0,0,'2024-05-16 14:20:50','2024-05-16 14:20:54'),(9292,9285,'/110/9285/','','权限','/setting/storage','',1,1,0,0,'2024-05-16 14:21:41','2024-05-16 14:21:45'),(9293,9291,'/719/780/9287/9291/','','列表','systemSeckillActiveGetActiveList','',1,1,0,0,'2024-05-16 14:22:12','2024-05-16 14:22:12'),(9294,9291,'/719/780/9287/9291/','','详情','systemSeckillActiveGetActiveInfo','',1,1,0,0,'2024-05-16 14:22:12','2024-05-16 14:22:12'),(9295,9291,'/719/780/9287/9291/','','创建','systemSeckillActiveCreateActive','',1,1,0,0,'2024-05-16 14:22:12','2024-05-16 14:22:12'),(9296,9291,'/719/780/9287/9291/','','编辑','systemSeckillActiveUpdateActive','',1,1,0,0,'2024-05-16 14:22:12','2024-05-16 14:22:12'),(9297,9291,'/719/780/9287/9291/','','编辑状态','systemSeckillActiveUpdateActiveStatus','',1,1,0,0,'2024-05-16 14:22:12','2024-05-16 14:22:12'),(9298,9291,'/719/780/9287/9291/','','删除','systemSeckillActiveDeleteActive','',1,1,0,0,'2024-05-16 14:22:12','2024-05-16 14:22:12'),(9299,9291,'/719/780/9287/9291/','','活动统计数据面板','systemSeckillActiveChartPanel','',1,1,0,0,'2024-05-16 14:22:12','2024-05-16 14:22:12'),(9300,9291,'/719/780/9287/9291/','','活动参与人统计列表','systemSeckillActiveChartPeople','',1,1,0,0,'2024-05-16 14:22:12','2024-05-16 14:22:12'),(9301,9291,'/719/780/9287/9291/'
#
# Data for table "eb_system_notice"
#
#
# Data for table "eb_system_notice_config"
#
INSERT INTO `eb_system_notice_config` (`notice_config_id`,`notice_title`,`const_key`,`notice_info`,`notice_sys`,`notice_sms`,`notice_wechat`,`wechat_tempkey`,`wechat_content`,`wechat_tempid`,`notice_routine`,`routine_tempkey`,`routine_content`,`routine_tempid`,`type`,`sms_tempid`,`sms_ali_tempid`,`sms_content`,`create_time`,`update_time`,`kid`) VALUES (1,'订单发货通知','DELIVER_GOODS_CODE','发货给用户的提醒',-1,1,1,'42984','订单编号{{character_string2.DATA}}\r\n商品名称{{thing4.DATA}}\r\n快递公司{{thing13.DATA}}\r\n快递单号{{character_string14.DATA}}\r\n发货时间{{time12.DATA}}','AJRS_HlBgYWtj4oLn1FglydP1UNFN6o6Rf2-_jUAJK4',1,'1458','快递单号{{character_string2.DATA}}\n快递公司{{thing1.DATA}}\n发货时间{{time3.DATA}}\n订单商品{{thing5.DATA}}','JlBgvN3Y1Q7uivE7WkgpgcXca1kES0mvLuF4baQxA3Q',0,'520269',NULL,'亲爱的用户${nickname}您的商品${store_name},订单号${order_id}已发货,请注意查收!','2021-11-19 03:56:53','2023-08-31 01:52:32','0'),(2,'用户下单成功通知','ORDER_CREATE','创建订单给商户通知',-1,-1,1,'46624','订单号{{character_string1.DATA}}\r\n商品名称{{thing2.DATA}}\r\n订单金额{{amount3.DATA}}\r\n联系方式{{phone_number5.DATA}}\r\n下单时间{{time9.DATA}}','JWSXKNnIojSUzNlCE5A46UZ88n9RYjq8d7FSmm4DX5w',-1,NULL,'',NULL,1,NULL,NULL,NULL,'2021-11-19 04:23:21','2023-08-21 08:07:25','0'),(3,'订单已签收通知','ORDER_TAKE_SUCCESS','确认收货给用户发送短信提醒',-1,1,1,'42985','订单编号{{character_string2.DATA}}\r\n商品名称{{thing4.DATA}}\r\n订单金额{{amount9.DATA}}\r\n商品数量{{number5.DATA}}\r\n签收时间{{character_string7.DATA}}','gb0RfKp3KDXK98acAzP864l_1srbrrVhdXABZ7O5XKg',-1,NULL,'',NULL,0,'520271',NULL,'亲,您的订单${order_id},商品${store_name}已确认收货,感谢您的光临!','2021-11-19 06:17:50','2023-08-21 08:07:25','0'),(4,'订单支付成功通知','ORDER_PAY_SUCCESS','用户支付成功提醒',1,1,1,'43216','订单号{{character_string2.DATA}}\r\n商品名称{{thing3.DATA}}\r\n支付金额{{amount5.DATA}}\r\n下单时间{{time4.DATA}}','Z_Xr5n4i3brA_dyIWpjsF8CP7J-FWah0RuXXFCG-qWA',1,'1927','付款单号{{character_string1.DATA}}\n付款金额{{amount2.DATA}}\n付款时间{{date3.DATA}}\n订单金额{{amount5.DATA}}','0XsZ3x-n6O7kKmNImBM1NvuL8BiHdri1_5VoIVw7nVA',0,'520268',NULL,'您购买的商品已支付成功,支付金额${pay_price}元,订单号${order_id},感谢您的光临!','2021-11-19 06:32:52','2023-08-21 09:33:57','0'),(5,'改价提醒','PRICE_REVISION_CODE','改价提醒',-1,1,-1,NULL,'',NULL,-1,NULL,'',NULL,0,'528288',NULL,'您的订单${order_id},实际支付金额已被修改为${pay_price}。','2021-11-19 06:33:31',NULL,'0'),(6,'提醒付款通知','ORDER_PAY_FALSE','订单关闭前提醒付款通知',-1,1,-1,NULL,'',NULL,-1,NULL,'',NULL,0,'528116',NULL,'您有未付款订单,订单号为:${order_id},商品数量有限,请及时付款。','2021-11-19 06:34:21',NULL,'0'),(7,'退货退款申请结果通知','REFUND_FAIL_CODE','商家拒绝退款给用户提醒',-1,1,1,'46232','订单编号{{character_string8.DATA}}\r\n申请类型{{phrase3.DATA}}\r\n处理结果{{thing6.DATA}}\r\n退款商品{{thing4.DATA}}\r\n退款金额{{amount5.DATA}}','43-N90sjMNUUIHk3nnu87q20E5PAQxRh_jpfET5su58',-1,NULL,'',NULL,0,'536112',NULL,'您的订单${order_id},商品${store_name}商家拒绝退款,可与商家沟通处理。','2021-11-19 06:35:12','2023-08-21 08:07:25','0'),(8,'退货退款申请结果通知','REFUND_SUCCESS_CODE','商家同意退款给用户提醒',-1,1,1,'46232','订单编号{{character_string8.DATA}}\r\n申请类型{{phrase3.DATA}}\r\n处理结果{{thing6.DATA}}\r\n退款商品{{thing4.DATA}}\r\n退款金额{{amount5.DATA}}','43-N90sjMNUUIHk3nnu87u-2E8iRH8lRZ40pPPo_DpI',-1,NULL,'',NULL,0,'536113',NULL,'您的订单${order_id},商品${store_name}商家已同意退款,具体可查看商城订单。','2021-11-19 06:35:43','2023-08-21 08:07:26','0'),(9,'退款成功通知','REFUND_CONFORM_CODE','退款成功给用户通知',-1,1,1,'46622','<EFBFBD>
#
# Data for table "eb_system_notice_log"
#
#
# Data for table "eb_system_role"
#
#
# Data for table "eb_system_storage"
#
#
# Data for table "eb_template_message"
#
INSERT INTO `eb_template_message` (`template_id`,`type`,`tempkey`,`name`,`content`,`tempid`,`create_time`,`status`,`kid`) VALUES (1,0,'1128','订单配送通知','商品信息{{thing8.DATA}}\n订单编号{{character_string1.DATA}}\n配送人{{name4.DATA}}\n配送员电话{{phone_number10.DATA}}','-UXD3-RGylMIrmtdWgVJcQj4gZ0D21NI0EM4B-KA-Gs','2022-12-05 08:49:56',1,'[8,1,4,10]'),(2,0,'1470','提现结果通知','提现状态{{thing1.DATA}}\n提现金额{{amount2.DATA}}\n提现账号{{thing3.DATA}}\n提现时间{{date4.DATA}}','j2E-R1cVeE3x9A2Ykjp-1JAydmoKpIhW2Fdnngh05HI','2022-12-05 08:49:56',1,'[1,2,3,4]'),(5,0,'1458','发货通知','快递单号{{character_string2.DATA}}\n快递公司{{thing1.DATA}}\n发货时间{{time3.DATA}}\n订单商品{{thing5.DATA}}','JlBgvN3Y1Q7uivE7WkgpgcXca1kES0mvLuF4baQxA3Q','2022-12-05 08:42:50',1,'[2,1,3,5]'),(10,0,'1451','退款通知','退款状态{{thing1.DATA}}\n退款商品{{thing2.DATA}}\n退款单号{{character_string6.DATA}}\n退款金额{{amount3.DATA}}\n备注{{thing13.DATA}}','2Q8E54llbH98crxHyELdTJHDk4rkqHMh6RjU3PPvxUs','2023-02-10 07:48:34',1,'0'),(11,0,'755',' 充值成功通知','交易单号{{character_string1.DATA}}\n充值金额{{amount3.DATA}}\n赠送金额{{amount6.DATA}}\n充值时间{{date5.DATA}}\n','0kECXHo7QrYjZew0iLU-AxnXLZYegb-2ImAjj-25Z40','2022-12-05 08:49:56',1,'[1,3,6,5]'),(12,0,'1927','付款成功通知','付款单号{{character_string1.DATA}}\n付款金额{{amount2.DATA}}\n付款时间{{date3.DATA}}\n订单金额{{amount5.DATA}}','0XsZ3x-n6O7kKmNImBM1NvuL8BiHdri1_5VoIVw7nVA','2023-02-14 09:10:52',1,'0'),(16,1,'OPENTM408918196','订单发货提醒','{{first.DATA}}\n订单编号{{keyword1.DATA}}\n物流公司{{keyword2.DATA}}\n物流单号{{keyword3.DATA}}\n{{remark.DATA}}','YbxIyijf4ycncqvYLKz1VX7sw6zkeUxRdcdGz8-NOzg','2023-06-08 06:51:58',0,'0'),(17,1,'OPENTM414445146','订单收货通知','{{first.DATA}}\n订单编号{{keyword1.DATA}}\n订单金额{{keyword2.DATA}}\n收货时间{{keyword3.DATA}}\n{{remark.DATA}}','sby3hfvXHE-MKpNYE2KlOgBc_PH9Usm90r5h4KtFld4','2023-06-08 06:51:57',0,'0'),(18,1,'OPENTM414446256','退款进度通知','{{first.DATA}}\n退款申请单号{{keyword1.DATA}}\n退款进度{{keyword2.DATA}}\n时间{{keyword3.DATA}}\n{{remark.DATA}}','C142PjJm12qnX0UqlHBnxLH-tqV5CWYr0oZzRpod-8U','2023-06-08 06:51:58',1,'0'),(19,1,'OPENTM400400418','账户资金变动提醒','{{first.DATA}}\r\n用户名{{keyword1.DATA}}\r\n变动时间{{keyword2.DATA}}\r\n变动金额{{keyword3.DATA}}\r\n可用余额{{keyword4.DATA}}\r\n变动原因{{keyword5.DATA}}\r\n{{remark.DATA}}','XacM9Xnvt8fISGL9rYDVXnkzg8qqIA66qwxf1wPKZ-c','2023-06-08 06:51:58',1,'0'),(20,1,'OPENTM416122303','订单配送提醒','{{first.DATA}}\n订单编号{{keyword1.DATA}}\n订单金额{{keyword2.DATA}}\n配送员{{keyword3.DATA}}\n联系电话{{keyword4.DATA}}\n{{remark.DATA}}','H_NwQ9oT1-mNGkdqdAb-pSfjOQ51NIUnbemAnVJd31E','2023-06-08 06:51:59',0,'0'),(25,1,'OPENTM201682460','订单生成通知','{{first.DATA}}\n时间{{keyword1.DATA}}\n商品名称{{keyword2.DATA}}\n订单号{{keyword3.DATA}}\n{{remark.DATA}}','j7xa1fLp0FOdjoprSEn-TMnk3NHnBmJCqmYimnjF3eo','2023-06-08 06:51:59',1,'0'),(26,1,'OPENTM201752540','订单支付成功通知','{{first.DATA}}\n订单商品{{keyword1.DATA}}\n订单编号{{keyword2.DATA}}\n支付金额{{keyword3.DATA}}\n支付时间{{keyword4.DATA}}\n{{remark.DATA}}','xGb8WZ2t8sSZ2ONTN5C4x8iCmA1w2Cs93QE3V1G3Q4Q','2023-06-08 06:51:59',0,'0'),(28,1,'OPENTM409786170','退货确认提醒','{{first.DATA}}\n订单号{{keyword1.DATA}}\n下单日期{{keyword2.DATA}}\n商品名称{{keyword3.DATA}}\n退款金额{{keyword4.DATA}}\n退货原因{{keyword5.DATA}}\n{{remark.DATA}}','zWFM2TR29TnzjgEHeEEeMo3pSZI2_BtYn4I2DhEUG_c','2023-06-08 06:52:00',1,'0'),(29,1,'OPENTM418238778','退款申请通知','{{first.DATA}}\n退款单号{{keyword1.DATA}}\n退款原因{{keyword2.DATA}}\n退款金额{{keyword3.DATA}}\n申请时间{{keyword4.DATA}}\n{{remark.DATA}}','EE9nCCnPfycvxhUat5NbVh-o0XGV
#
# Data for table "eb_user"
#
#
# Data for table "eb_user_address"
#
#
# Data for table "eb_user_bill"
#
#
# Data for table "eb_user_brokerage"
#
INSERT INTO `eb_user_brokerage` (`user_brokerage_id`,`brokerage_level`,`brokerage_name`,`brokerage_icon`,`brokerage_rule`,`user_num`,`extension_one`,`extension_two`,`create_time`,`type`) VALUES (1,1,'v1','https://mer1.crmeb.net/uploads/def/20210805/ae34f04be3d8f30318cb5bd02c215daa.jpg','{\"spread_user\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"pay_money\":{\"name\":\"消费600\",\"num\":600,\"info\":\"消费600元\"},\"pay_num\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"spread_money\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"spread_pay_num\":{\"name\":\"\",\"num\":0,\"info\":\"\"}}',0,10.00,5.00,'2021-08-05 02:07:24',0),(2,2,'v2','https://mer1.crmeb.net/uploads/def/20210805/df6e14dac34e1193087d1fa59324ba77.jpg','{\"spread_user\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"pay_money\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"pay_num\":{\"name\":\"自身消费3个订单\",\"num\":3,\"info\":\"自身消费3个订单\"},\"spread_money\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"spread_pay_num\":{\"name\":\"\",\"num\":0,\"info\":\"\"}}',0,15.00,10.00,'2021-08-05 02:20:04',0),(3,3,'v3','https://mer1.crmeb.net/uploads/def/20210805/0ee315b2a7460265658f6a45e635a22d.jpg','{\"spread_user\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"pay_money\":{\"name\":\"\",\"num\":0,\"info\":\"自身消费2000元\"},\"pay_num\":{\"name\":\"自身消费5个订单\",\"num\":5,\"info\":\"自身消费5个订单\"},\"spread_money\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"spread_pay_num\":{\"name\":\"\",\"num\":0,\"info\":\"\"}}',0,25.00,20.00,'2021-08-05 03:34:18',0),(4,4,'v4','https://mer1.crmeb.net/uploads/def/20210805/f385c91d6385c676aa5076379eaa69e9.jpg','{\"spread_user\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"pay_money\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"pay_num\":{\"name\":\"自身消费订单数\",\"num\":30,\"info\":\"\"},\"spread_money\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"spread_pay_num\":{\"name\":\"下级消费订单数50\",\"num\":50,\"info\":\"下级消费订单数50\"}}',0,20.00,20.00,'2021-08-05 07:39:05',0),(5,5,'v5','https://mer1.crmeb.net/uploads/def/20210805/7971f5b7be74825d97136ca18e7a6d8e.jpg','{\"spread_user\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"pay_money\":{\"name\":\"\",\"num\":0,\"info\":\"\"},\"pay_num\":{\"name\":\"自身消费订单数\",\"num\":50,\"info\":\"\"},\"spread_money\":{\"name\":\"下级消费3000元\",\"num\":3000,\"info\":\"下级消费3000元\"},\"spread_pay_num\":{\"name\":\"\",\"num\":0,\"info\":\"\"}}',0,21.00,21.00,'2021-08-05 07:39:25',0),(6,1,'v1','https://mer1.crmeb.net/uploads/default/20220829/97d6cad62ecc71c9f1636a53d4b7f701.png','{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/097f888d47cb854088e33320caf81561.png\",\"value\":10}',0,0.00,0.00,'2021-10-08 03:45:02',1),(7,2,'v2','https://mer1.crmeb.net/uploads/default/20220829/6b971ae0c2f5c059ac90efbc3f5991fb.png','{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/7e0262a691cbb20e543404ccf9257c92.png\",\"value\":100}',4,0.00,0.00,'2021-10-11 09:26:55',1),(8,3,'v3','https://mer1.crmeb.net/uploads/default/20220829/b04eb743e9274c63dca03bb7b578e500.png','{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/11f754a19a4f9050033751d63fcaaef7.png\",\"value\":100}',0,0.00,0.00,'2021-10-12 02:52:54',1),(9,4,'v4','https://mer1.crmeb.net/uploads/default/20220829/c7909489b362d16ea0f39e6a39b55cf8.png','{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/b0a7a0681ecfd4c50b47f72f4a7b3c4d.png\",\"value\":400}',0,0.00,0.00,'2021-10-12 02:54:52',1),(10,5,'v5','https://mer1.crmeb.net/uploads/default/20220829/9277132b9f95cdb4be4af05cce29d577.png','{\"image\":\"https:\\/\\/mer1.crmeb.net\\/uploads\\/default\\/20220829\\/0dccdde7a443164ecc3837db0c4c6c77.png\",\"value\":500}',0,0.00,0.00,'2021-10-12 02:55:06',1);
#
# Data for table "eb_user_extract"
#
#
# Data for table "eb_user_fields"
#
#
# Data for table "eb_user_group"
#
#
# Data for table "eb_user_history"
#
#
# Data for table "eb_user_info"
#
INSERT INTO `eb_user_info` (`id`,`field`,`title`,`is_used`,`is_require`,`is_show`,`type`,`msg`,`content`,`is_default`,`sort`,`create_time`,`update_time`) VALUES (1,'real_name','姓名',1,0,1,'input','请输入真实姓名','[]',1,0,'2024-01-09 15:57:29',NULL),(2,'sex','性别',1,0,1,'radio','请选择性别','[\"\\u4fdd\\u5bc6\",\"\\u7537\",\"\\u5973\"]',1,1,'2024-01-09 16:00:29',NULL),(3,'birthday','生日',1,0,1,'date','请输入生日','[]',1,2,'2024-01-09 16:02:33',NULL),(4,'addres','地址',1,0,1,'address','请输入地址','[]',1,3,'2024-01-09 16:03:55',NULL),(5,'mark','备注',1,0,1,'input','请输入备注','[]',1,4,'2024-01-09 16:04:31',NULL);