From 84e8e53343b234887a045e5694612a8e4ff1d70c Mon Sep 17 00:00:00 2001 From: gongfuxiang <2499232802@qq.com> Date: Fri, 21 Dec 2018 00:08:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8C=B9=E9=85=8D=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Brand.php | 122 +++----- .../admin/controller/BrandCategory.php | 109 ++----- .../admin/view/default/brand/index.html | 8 +- .../admin/view/default/brand/save_info.html | 35 ++- .../view/default/brandcategory/index.html | 10 +- .../view/default/customview/save_info.html | 24 +- application/service/BrandService.php | 267 ++++++++++++++++++ application/service/CustomViewService.php | 32 +-- application/service/GoodsService.php | 2 +- application/service/ScreeningPriceService.php | 2 +- public/install/shopxo_tp5.sql | 78 +++-- public/static/admin/default/css/brand.css | 7 +- public/static/common/css/common.css | 1 + 13 files changed, 430 insertions(+), 267 deletions(-) diff --git a/application/admin/controller/Brand.php b/application/admin/controller/Brand.php index 51c90e8b1..af851d001 100755 --- a/application/admin/controller/Brand.php +++ b/application/admin/controller/Brand.php @@ -121,6 +121,9 @@ class Brand extends Common // 参数 $this->assign('params', $params); + // 编辑器文件存放地址 + $this->assign('editor_path_type', 'brand'); + return $this->fetch(); } @@ -134,64 +137,15 @@ class Brand extends Common public function Save() { // 是否ajax请求 - if(!IS_AJAX) - { - $this->error('非法访问'); - } - - // 图片 - $this->FileSave('logo', 'file_logo', 'brand'); - - // id为空则表示是新增 - $m = D('Brand'); - - // 公共额外数据处理 - $_POST['is_enable'] = intval(I('is_enable', 0)); - - // 添加 - if(empty($_POST['id'])) - { - if($m->create($_POST, 1)) - { - // 额外数据处理 - $m->add_time = time(); - $m->sort = intval(I('sort')); - $m->brand_category_id = intval(I('brand_category_id')); - $m->website_url = I('website_url'); - $m->name = I('name'); - - // 写入数据库 - if($m->add()) - { - $this->ajaxReturn('新增成功'); - } else { - $this->ajaxReturn('新增失败', -100); - } - } - } else { - // 编辑 - if($m->create($_POST, 2)) - { - // 额外数据处理 - $m->upd_time = time(); - $m->sort = intval(I('sort')); - $m->brand_category_id = intval(I('brand_category_id')); - $m->website_url = I('website_url'); - $m->name = I('name'); - - // 移除 id - unset($m->id); - - // 更新数据库 - if($m->where(array('id'=>I('id')))->save()) - { - $this->ajaxReturn('编辑成功'); - } else { - $this->ajaxReturn('编辑失败或数据未改变', -100); - } - } - } - $this->ajaxReturn($m->getError(), -1); + if(!IS_AJAX) + { + return $this->error('非法访问'); + } + + // 开始处理 + $params = input(); + $ret = BrandService::BrandSave($params); + return json($ret); } /** @@ -203,50 +157,38 @@ class Brand extends Common */ public function Delete() { - if(!IS_AJAX) - { - $this->error('非法访问'); - } - - $m = D('Brand'); - if($m->create($_POST, 5)) - { - $id = I('id'); - - // 删除 - if($m->delete($id)) - { - $this->ajaxReturn('删除成功'); - } else { - $this->ajaxReturn('删除失败或资源不存在', -100); - } - } else { - $this->ajaxReturn($m->getError(), -1); - } + // 是否ajax请求 + if(!IS_AJAX) + { + return $this->error('非法访问'); + } + + // 开始处理 + $params = input(); + $params['user_type'] = 'admin'; + $ret = BrandService::BrandDelete($params); + return json($ret); } /** - * [StateUpdate 状态更新] + * [StatusUpdate 状态更新] * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-01-12T22:23:06+0800 */ - public function StateUpdate() + public function StatusUpdate() { - // 参数 - if(empty($_POST['id']) || !isset($_POST['state'])) + // 是否ajax请求 + if(!IS_AJAX) { - $this->ajaxReturn('参数错误', -1); + return $this->error('非法访问'); } - // 数据更新 - if(db('Brand')->where(array('id'=>I('id')))->save(array('is_enable'=>I('state')))) - { - $this->ajaxReturn('编辑成功'); - } else { - $this->ajaxReturn('编辑失败或数据未改变', -100); - } + // 开始处理 + $params = input(); + $ret = BrandService::BrandStatusUpdate($params); + return json($ret); } } ?> \ No newline at end of file diff --git a/application/admin/controller/BrandCategory.php b/application/admin/controller/BrandCategory.php index e15ad6533..dd1e6757a 100755 --- a/application/admin/controller/BrandCategory.php +++ b/application/admin/controller/BrandCategory.php @@ -1,6 +1,8 @@ assign('common_is_enable_list', lang('common_is_enable_list')); - $this->display('Index'); + + return $this->fetch(); } /** @@ -57,39 +61,9 @@ class BrandCategory extends Common $this->error('非法访问'); } - // 获取数据 - $field = array('id', 'name', 'sort', 'is_enable'); - $data = db('BrandCategory')->field($field)->where(array('pid'=>intval(I('id', 0))))->select(); - if(!empty($data)) - { - foreach($data as $k=>$v) - { - $data[$k]['is_son'] = $this->IsExistSon($v['id']); - $data[$k]['ajax_url'] = url('Admin/BrandCategory/GetNodeSon', array('id'=>$v['id'])); - $data[$k]['delete_url'] = url('Admin/BrandCategory/Delete'); - $data[$k]['json'] = json_encode($v); - } - } - $msg = empty($data) ? '没有相关数据' : '操作成功'; - $this->ajaxReturn($msg, 0, $data); - } - - /** - * [IsExistSon 节点是否存在子数据] - * @author Devil - * @blog http://gong.gg/ - * @version 0.0.1 - * @datetime 2016-12-25T15:22:47+0800 - * @param [int] $id [节点id] - * @return [string] [有数据ok, 则no] - */ - private function IsExistSon($id) - { - if(!empty($id)) - { - return (db('BrandCategory')->where(array('pid'=>$id))->count() > 0) ? 'ok' : 'no'; - } - return 'no'; + // 开始操作 + $ret = BrandService::BrandCategoryNodeSon(input()); + return json($ret); } /** @@ -107,50 +81,9 @@ class BrandCategory extends Common $this->error('非法访问'); } - // id为空则表示是新增 - $m = D('BrandCategory'); - - // 公共额外数据处理 - $m->sort = intval(I('sort')); - - // 添加 - if(empty($_POST['id'])) - { - if($m->create($_POST, 1)) - { - // 额外数据处理 - $m->add_time = time(); - $m->name = I('name'); - - // 写入数据库 - if($m->add()) - { - $this->ajaxReturn('新增成功'); - } else { - $this->ajaxReturn('新增失败', -100); - } - } - } else { - // 编辑 - if($m->create($_POST, 2)) - { - // 额外数据处理 - $m->name = I('name'); - $m->upd_time = time(); - - // 移除 id - unset($m->id); - - // 更新数据库 - if($m->where(array('id'=>I('id')))->save()) - { - $this->ajaxReturn('编辑成功'); - } else { - $this->ajaxReturn('编辑失败或数据未改变', -100); - } - } - } - $this->ajaxReturn($m->getError(), -1); + // 开始操作 + $ret = BrandService::BrandCategorySave(input()); + return json($ret); } /** @@ -162,23 +95,17 @@ class BrandCategory extends Common */ public function Delete() { + // 是否ajax if(!IS_AJAX) { - $this->error('非法访问'); + return $this->error('非法访问'); } - $m = D('BrandCategory'); - if($m->create($_POST, 5)) - { - if($m->delete(I('id'))) - { - $this->ajaxReturn('删除成功'); - } else { - $this->ajaxReturn('删除失败或资源不存在', -100); - } - } else { - $this->ajaxReturn($m->getError(), -1); - } + // 开始操作 + $params = input('post.'); + $params['admin'] = $this->admin; + $ret = BrandService::BrandCategoryDelete($params); + return json($ret); } } ?> \ No newline at end of file diff --git a/application/admin/view/default/brand/index.html b/application/admin/view/default/brand/index.html index d77416cdf..6008f1711 100755 --- a/application/admin/view/default/brand/index.html +++ b/application/admin/view/default/brand/index.html @@ -22,7 +22,7 @@ {{/foreach}} - {{if empty($data['id'])}} 品牌添加 {{else /}} 品牌编辑 {{/if}} - 返回 + 返回
- value="{{$data.name}}"{{/if}} required /> +
- - value="{{$data.website_url}}"{{/if}} /> + + +
- - value="{{$data.logo}}"{{/if}}" data-validation-message="请选择需要上传的图片" readonly="readonly" value="{{$data.logo}}"{{/if}} required /> - -
+
    + {{if !empty($data['logo'])}} +
  • + + + × +
  • + {{/if}} +
+
+上传图片
@@ -53,7 +58,7 @@
- value="{{$data.id}}"{{/if}} /> +
diff --git a/application/admin/view/default/brandcategory/index.html b/application/admin/view/default/brandcategory/index.html index 1e7cc32a0..86ccae29f 100755 --- a/application/admin/view/default/brandcategory/index.html +++ b/application/admin/view/default/brandcategory/index.html @@ -18,7 +18,7 @@
-
+
@@ -27,7 +27,7 @@
- + {{include file="lib/enable" /}}
@@ -40,9 +40,9 @@ -
- +

处理中...

@@ -55,5 +55,5 @@ {{include file="public/footer" /}} \ No newline at end of file diff --git a/application/admin/view/default/customview/save_info.html b/application/admin/view/default/customview/save_info.html index 1238afc56..2c38e85b3 100755 --- a/application/admin/view/default/customview/save_info.html +++ b/application/admin/view/default/customview/save_info.html @@ -19,10 +19,26 @@
- {{include file="lib/enable" /}} - {{include file="lib/is_header" /}} - {{include file="lib/is_footer" /}} - {{include file="lib/is_full_screen" /}} +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
diff --git a/application/service/BrandService.php b/application/service/BrandService.php index 1dc845cde..aeda26e37 100755 --- a/application/service/BrandService.php +++ b/application/service/BrandService.php @@ -217,5 +217,272 @@ class BrandService return DataReturn('处理成功', 0, $data); } + + /** + * 保存 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2018-12-18 + * @desc description + * @param [array] $params [输入参数] + */ + public static function BrandSave($params = []) + { + // 请求类型 + $p = [ + [ + 'checked_type' => 'length', + 'key_name' => 'name', + 'checked_data' => '2,30', + 'error_msg' => '名称长度 2~30 个字符', + ], + [ + 'checked_type' => 'empty', + 'key_name' => 'brand_category_id', + 'error_msg' => '请选择品牌分类', + ], + [ + 'checked_type' => 'fun', + 'key_name' => 'website_url', + 'checked_data' => 'CheckUrl', + 'is_checked' => 1, + 'error_msg' => '官网地址格式有误', + ], + [ + 'checked_type' => 'length', + 'key_name' => 'sort', + 'checked_data' => '3', + 'error_msg' => '顺序 0~255 之间的数值', + ], + ]; + $ret = params_checked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 附件 + $data_fields = ['logo']; + $attachment = ResourcesService::AttachmentParams($params, $data_fields); + + // 数据 + $data = [ + 'name' => $params['name'], + 'brand_category_id' => intval($params['brand_category_id']), + 'logo' => $attachment['data']['logo'], + 'website_url' => empty($params['website_url']) ? '' : $params['website_url'], + 'sort' => intval($params['sort']), + 'is_enable' => isset($params['is_enable']) ? intval($params['is_enable']) : 0, + ]; + + if(empty($params['id'])) + { + $data['add_time'] = time(); + if(db('Brand')->insertGetId($data) > 0) + { + return DataReturn('添加成功', 0); + } + return DataReturn('添加失败', -100); + } else { + $data['upd_time'] = time(); + if(db('Brand')->where(['id'=>intval($params['id'])])->update($data)) + { + return DataReturn('编辑成功', 0); + } + return DataReturn('编辑失败', -100); + } + } + + /** + * 删除 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2018-12-18 + * @desc description + * @param [array] $params [输入参数] + */ + public static function BrandDelete($params = []) + { + // 请求参数 + $p = [ + [ + 'checked_type' => 'empty', + 'key_name' => 'id', + 'error_msg' => '操作id有误', + ], + ]; + $ret = params_checked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 删除操作 + if(db('Brand')->where(['id'=>$params['id']])->delete()) + { + return DataReturn('删除成功'); + } + + return DataReturn('删除失败或资源不存在', -100); + } + + /** + * 状态更新 + * @author Devil + * @blog http://gong.gg/ + * @version 0.0.1 + * @datetime 2016-12-06T21:31:53+0800 + * @param [array] $params [输入参数] + */ + public static function BrandStatusUpdate($params = []) + { + // 请求参数 + $p = [ + [ + 'checked_type' => 'empty', + 'key_name' => 'id', + 'error_msg' => '操作id有误', + ], + [ + 'checked_type' => 'in', + 'key_name' => 'state', + 'checked_data' => [0,1], + 'error_msg' => '状态有误', + ], + ]; + $ret = params_checked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 数据更新 + if(db('Brand')->where(['id'=>intval($params['id'])])->update(['is_enable'=>intval($params['state'])])) + { + return DataReturn('编辑成功'); + } + return DataReturn('编辑失败或数据未改变', -100); + } + + /** + * 获取品牌分类节点数据 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2018-12-16T23:54:46+0800 + * @param [array] $params [输入参数] + */ + public static function BrandCategoryNodeSon($params = []) + { + // id + $id = isset($params['id']) ? intval($params['id']) : 0; + + // 获取数据 + $field = '*'; + $data = db('BrandCategory')->field($field)->where(['pid'=>$id])->order('sort asc')->select(); + if(!empty($data)) + { + foreach($data as &$v) + { + $v['is_son'] = (db('BrandCategory')->where(['pid'=>$v['id']])->count() > 0) ? 'ok' : 'no'; + $v['ajax_url'] = url('admin/goodscategory/getnodeson', array('id'=>$v['id'])); + $v['delete_url'] = url('admin/goodscategory/delete'); + $v['json'] = json_encode($v); + } + return DataReturn('操作成功', 0, $data); + } + return DataReturn('没有相关数据', -100); + } + + /** + * 品牌分类保存 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2018-12-17T01:04:03+0800 + * @param [array] $params [输入参数] + */ + public static function BrandCategorySave($params = []) + { + // 请求参数 + $p = [ + [ + 'checked_type' => 'length', + 'key_name' => 'name', + 'checked_data' => '2,16', + 'error_msg' => '名称格式 2~16 个字符', + ], + ]; + $ret = params_checked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 数据 + $data = [ + 'name' => $params['name'], + 'pid' => isset($params['pid']) ? intval($params['pid']) : 0, + 'sort' => isset($params['sort']) ? intval($params['sort']) : 0, + 'is_enable' => isset($params['is_enable']) ? intval($params['is_enable']) : 0, + ]; + + // 添加 + if(empty($params['id'])) + { + $data['add_time'] = time(); + if(db('BrandCategory')->insertGetId($data) > 0) + { + return DataReturn('添加成功', 0); + } + return DataReturn('添加失败', -100); + } else { + $data['upd_time'] = time(); + if(db('BrandCategory')->where(['id'=>intval($params['id'])])->update($data)) + { + return DataReturn('编辑成功', 0); + } + return DataReturn('编辑失败', -100); + } + } + + /** + * 品牌分类删除 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @datetime 2018-12-17T02:40:29+0800 + * @param [array] $params [输入参数] + */ + public static function BrandCategoryDelete($params = []) + { + // 请求参数 + $p = [ + [ + 'checked_type' => 'empty', + 'key_name' => 'id', + 'error_msg' => '删除数据id有误', + ], + [ + 'checked_type' => 'empty', + 'key_name' => 'admin', + 'error_msg' => '用户信息有误', + ], + ]; + $ret = params_checked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 开始删除 + if(db('GoodsCategory')->where(['id'=>intval($params['id'])])->delete()) + { + return DataReturn('删除成功', 0); + } + return DataReturn('删除失败', 0); + } } ?> \ No newline at end of file diff --git a/application/service/CustomViewService.php b/application/service/CustomViewService.php index 0b4c371ef..8bab430c4 100644 --- a/application/service/CustomViewService.php +++ b/application/service/CustomViewService.php @@ -173,30 +173,6 @@ class CustomViewService 'checked_data' => '50,105000', 'error_msg' => '内容长度最少 50~105000 个字符', ], - [ - 'checked_type' => 'in', - 'key_name' => 'is_enable', - 'checked_data' => [0,1], - 'error_msg' => '是否显示范围值有误', - ], - [ - 'checked_type' => 'in', - 'key_name' => 'is_header', - 'checked_data' => [0,1], - 'error_msg' => '是否包含头部范围值有误', - ], - [ - 'checked_type' => 'in', - 'key_name' => 'is_footer', - 'checked_data' => [0,1], - 'error_msg' => '是否包含尾部范围值有误', - ], - [ - 'checked_type' => 'in', - 'key_name' => 'is_full_screen', - 'checked_data' => [0,1], - 'error_msg' => '是否满屏范围值有误', - ] ]; $ret = params_checked($params, $p); if($ret !== true) @@ -212,10 +188,10 @@ class CustomViewService 'content' => $content, 'image' => empty($image) ? '' : json_encode($image), 'image_count' => count($image), - 'is_enable' => intval($params['is_enable']), - 'is_header' => intval($params['is_header']), - 'is_footer' => intval($params['is_footer']), - 'is_full_screen'=> intval($params['is_full_screen']), + 'is_enable' => isset($params['is_enable']) ? intval($params['is_enable']) : 0, + 'is_header' => isset($params['is_header']) ? intval($params['is_header']) : 0, + 'is_footer' => isset($params['is_footer']) ? intval($params['is_footer']) : 0, + 'is_full_screen'=> isset($params['is_full_screen']) ? intval($params['is_full_screen']) : 0, ]; if(empty($params['id'])) diff --git a/application/service/GoodsService.php b/application/service/GoodsService.php index a28b8136a..fbb59c9d9 100755 --- a/application/service/GoodsService.php +++ b/application/service/GoodsService.php @@ -1780,7 +1780,7 @@ class GoodsService // 获取数据 $field = 'id,pid,icon,name,sort,is_enable,bg_color,big_images,vice_name,describe,is_home_recommended'; - $data = db('GoodsCategory')->field($field)->where(['pid'=>$id])->select(); + $data = db('GoodsCategory')->field($field)->where(['pid'=>$id])->order('sort asc')->select(); if(!empty($data)) { $image_host = config('IMAGE_HOST'); diff --git a/application/service/ScreeningPriceService.php b/application/service/ScreeningPriceService.php index 9a1700551..4b61c930d 100644 --- a/application/service/ScreeningPriceService.php +++ b/application/service/ScreeningPriceService.php @@ -26,7 +26,7 @@ class ScreeningPriceService // 获取数据 $field = 'id,name,sort,is_enable,min_price,max_price'; - $data = db('ScreeningPrice')->field($field)->where(['pid'=>$id])->select(); + $data = db('ScreeningPrice')->field($field)->where(['pid'=>$id])->order('sort asc')->select(); if(!empty($data)) { $image_host = config('IMAGE_HOST'); diff --git a/public/install/shopxo_tp5.sql b/public/install/shopxo_tp5.sql index 89af6c191..10ab9a54f 100644 --- a/public/install/shopxo_tp5.sql +++ b/public/install/shopxo_tp5.sql @@ -1,20 +1,18 @@ /* - Navicat Premium Data Transfer + Navicat MySQL Data Transfer Source Server : 本机 - Source Server Type : MySQL - Source Server Version : 50722 + Source Server Version : 50716 Source Host : localhost Source Database : shopxo_tp5 - Target Server Type : MySQL - Target Server Version : 50722 + Target Server Version : 50716 File Encoding : utf-8 - Date: 12/19/2018 17:20:36 PM + Date: 12/21/2018 00:07:38 AM */ -SET NAMES utf8mb4; +SET NAMES utf8; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- @@ -406,6 +404,34 @@ BEGIN; INSERT INTO `s_app_home_nav` VALUES ('1', 'alipay', '1', '/pages/goods-category/goods-category', '/static/upload/images/app_home_nav/2018/11/19/2018111915461980516.png', '分类', '1', '#FF3300', '0', '1542563498', '1542618339'), ('2', 'alipay', '1', '/pages/cart/cart', '/static/upload/images/app_home_nav/2018/11/19/2018111915473948001.png', '购物车', '1', '#48CFAE', '1', '1542613659', '1542618347'), ('3', 'alipay', '1', '/pages/user-order/user-order', '/static/upload/images/app_home_nav/2018/11/19/2018111915482687655.png', '订单', '1', '#FF0066', '2', '1542613706', '1542705254'), ('4', 'alipay', '1', '/pages/user/user', '/static/upload/images/app_home_nav/2018/11/19/2018111915491258361.png', '我的', '1', '#49acfa', '3', '1542613752', '1542618360'); COMMIT; +-- ---------------------------- +-- Table structure for `s_app_slide` +-- ---------------------------- +DROP TABLE IF EXISTS `s_app_slide`; +CREATE TABLE `s_app_slide` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增id', + `platform` char(30) NOT NULL DEFAULT 'pc' COMMENT '所属平台(pc PC网站, h5 H5手机网站, alipay 支付宝小程序, wechat 微信小程序)', + `event_type` tinyint(2) NOT NULL DEFAULT '-1' COMMENT '事件类型(0 WEB页面, 1 内部页面(小程序或APP内部地址), 2 外部小程序(同一个主体下的小程序appid), 3 打开地图, 4 拨打电话)', + `event_value` char(255) NOT NULL DEFAULT '' COMMENT '事件值', + `images_url` char(255) NOT NULL DEFAULT '' COMMENT '图片地址', + `name` char(60) NOT NULL DEFAULT '' COMMENT '别名', + `is_enable` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否启用(0否,1是)', + `sort` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序', + `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', + `upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `is_enable` (`is_enable`), + KEY `sort` (`sort`), + KEY `platform` (`platform`) +) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='手机轮播图片'; + +-- ---------------------------- +-- Records of `s_app_slide` +-- ---------------------------- +BEGIN; +INSERT INTO `s_app_slide` VALUES ('6', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810094402044087.jpeg', '浪漫七夕', '1', '7', '1533865442', '1542618695'), ('7', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810095910423687.jpeg', '海洋的未来', '1', '6', '1533866350', '1542618690'), ('8', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810100811853567.jpeg', '大闸蟹', '1', '5', '1533866891', '1542618684'), ('9', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810101045451156.jpeg', '情定七夕', '1', '4', '1533867045', '1542618679'), ('10', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810101106984022.jpeg', '美酒', '1', '3', '1533867066', '1542618673'), ('11', 'alipay', '3', 'ShopXO|上海浦东新区张江高科技园区XXX号|121.626444|31.20843', '/static/upload/images/slide/2018/08/20180810101154662873.jpeg', '助力七夕', '1', '2', '1533867114', '1543212317'), ('12', 'alipay', '0', 'https://shopxo.net', '/static/upload/images/slide/2018/08/20180810101224227323.jpeg', '爱在厨房', '1', '1', '1533867144', '1542618583'), ('13', 'alipay', '1', '/pages/goods-detail/goods-detail?goods_id=1', '/static/upload/images/slide/2018/08/20180810101305611263.jpeg', '预享甜蜜', '1', '0', '1533867185', '1542593795'); +COMMIT; + -- ---------------------------- -- Table structure for `s_article` -- ---------------------------- @@ -479,13 +505,13 @@ CREATE TABLE `s_brand` ( `upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', PRIMARY KEY (`id`), KEY `is_enable` (`is_enable`) -) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='品牌'; +) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='品牌'; -- ---------------------------- -- Records of `s_brand` -- ---------------------------- BEGIN; -INSERT INTO `s_brand` VALUES ('1', '30', '/static/upload/images/brand/2018/08/20180831123506659500.jpeg', '中国联通', '', '1', '0', '1526350443', '1535690106'), ('2', '7', '/static/upload/images/brand/2018/08/20180831123612400417.jpeg', '新大王', '', '1', '0', '1526350453', '1535690172'), ('3', '7', '/static/upload/images/brand/2018/08/20180831123638301757.jpeg', '雅培', '', '1', '0', '1526350461', '1535690198'), ('4', '7', '/static/upload/images/brand/2018/08/20180831123659295462.jpeg', '亨氏', '', '1', '0', '1526350469', '1535690219'), ('5', '7', '/static/upload/images/brand/2018/08/20180831123718129432.jpeg', '十月妈咪', '', '1', '0', '1530429633', '1535690238'), ('6', '7', '/static/upload/images/brand/2018/08/20180831123739604557.jpeg', '好孩子', '', '1', '0', '1530429687', '1535690259'), ('7', '7', '/static/upload/images/brand/2018/08/20180831123832665998.jpeg', '妈咪宝贝', '', '1', '0', '1530429743', '1535690312'), ('8', '7', '/static/upload/images/brand/2018/08/20180831123901892901.jpeg', '惠氏', '', '1', '0', '1530429765', '1535690341'), ('9', '7', '/static/upload/images/brand/2018/08/20180831123923979734.jpeg', 'lala布书', '', '1', '0', '1530429794', '1535690363'), ('10', '7', '/static/upload/images/brand/2018/08/20180831123941878091.jpeg', '美赞臣', '', '1', '0', '1530429830', '1535690381'), ('11', '7', '/static/upload/images/brand/2018/08/20180831124001306519.jpeg', '好奇', '', '1', '0', '1530429855', '1535690401'), ('12', '7', '/static/upload/images/brand/2018/08/20180831124028863137.jpeg', '多美', '', '1', '0', '1530429873', '1535690428'), ('13', '7', '/static/upload/images/brand/2018/08/20180831124052288940.jpeg', '嘉宝', '', '1', '0', '1530429907', '1535690452'), ('14', '7', '/static/upload/images/brand/2018/08/20180831124114729313.jpeg', '孩之宝', '', '1', '0', '1530429926', '1535690474'), ('15', '7', '/static/upload/images/brand/2018/08/20180831123805053207.jpeg', '婴姿坊', '', '1', '0', '1535690285', '0'), ('16', '7', '/static/upload/images/brand/2018/08/20180831124204852297.jpeg', '嗳呵', '', '1', '0', '1535690524', '0'), ('17', '7', '/static/upload/images/brand/2018/08/20180831124220397979.jpeg', '美斯特伦', '', '1', '0', '1535690540', '0'), ('18', '7', '/static/upload/images/brand/2018/08/20180831124235290388.jpeg', '万代', '', '1', '0', '1535690555', '0'), ('19', '7', '/static/upload/images/brand/2018/08/20180831124253118694.jpeg', '亲贝', '', '1', '0', '1535690573', '0'), ('20', '7', '/static/upload/images/brand/2018/08/20180831124320138615.jpeg', '十月天使', '', '1', '0', '1535690600', '0'), ('21', '7', '/static/upload/images/brand/2018/08/20180831124338343861.jpeg', '多美滋', '', '1', '0', '1535690618', '0'), ('22', '7', '/static/upload/images/brand/2018/08/20180831124358184873.jpeg', '星辉', '', '1', '0', '1535690638', '0'), ('23', '7', '/static/upload/images/brand/2018/08/20180831124414494883.jpeg', '布朗博士', '', '1', '0', '1535690654', '0'), ('24', '7', '/static/upload/images/brand/2018/08/20180831124432799807.jpeg', '新安怡', '', '1', '0', '1535690672', '0'), ('25', '7', '/static/upload/images/brand/2018/08/20180831124447773181.jpeg', '费雪', '', '1', '0', '1535690687', '0'), ('26', '7', '/static/upload/images/brand/2018/08/20180831124503006925.jpeg', '帮宝适', '', '1', '0', '1535690703', '0'), ('27', '7', '/static/upload/images/brand/2018/08/20180831124520403239.jpeg', '雀巢', '', '1', '0', '1535690720', '0'), ('28', '7', '/static/upload/images/brand/2018/08/20180831124538167027.jpeg', '百立乐', '', '1', '0', '1535690738', '0'), ('29', '7', '/static/upload/images/brand/2018/08/20180831124555864230.jpeg', '乐高', '', '1', '0', '1535690755', '0'), ('30', '7', '/static/upload/images/brand/2018/08/20180831124611120082.jpeg', '芭比', '', '1', '0', '1535690771', '0'), ('31', '7', '/static/upload/images/brand/2018/08/20180831124630371456.jpeg', 'NUK', '', '1', '0', '1535690790', '0'), ('32', '7', '/static/upload/images/brand/2018/08/20180831124711269217.jpeg', '宝贝第一', '', '1', '0', '1535690831', '0'), ('33', '7', '/static/upload/images/brand/2018/08/20180831124726804328.jpeg', '强生', 'https://www.johnsonsbaby.com.cn/', '1', '0', '1535690846', '1535697032'), ('34', '7', '/static/upload/images/brand/2018/08/20180831124745441134.jpeg', '澳优', '', '1', '0', '1535690866', '0'), ('35', '7', '/static/upload/images/brand/2018/08/20180831124802841044.jpeg', '木马智慧', '', '1', '0', '1535690882', '1535697027'), ('36', '7', '/static/upload/images/brand/2018/08/20180831124823875593.jpeg', 'Hipp', '', '1', '0', '1535690903', '1535696947'), ('37', '7', '/static/upload/images/brand/2018/08/20180831124920751185.png', '爱他美', '', '1', '0', '1535690960', '1535701919'), ('38', '28', '/static/upload/images/brand/2018/09/20180911093753188783.jpeg', 'Henckels 亨克斯', '', '1', '0', '1536629873', '0'), ('39', '28', '/static/upload/images/brand/2018/09/20180911093827728940.jpeg', '双立人 Zwilling', '', '1', '0', '1536629907', '0'), ('40', '28', '/static/upload/images/brand/2018/09/20180911093845205790.jpeg', 'STAUB', '', '1', '0', '1536629925', '0'), ('41', '29', '/static/upload/images/brand/2018/09/20180911094017352817.jpeg', 'karcher凯驰', '', '1', '0', '1536630017', '0'), ('42', '10', '/static/upload/images/brand/2018/09/20180911094111296971.jpeg', '远洋瑜伽', '', '1', '0', '1536630071', '0'), ('43', '10', '/static/upload/images/brand/2018/09/20180911094133329172.jpeg', 'INDEED', '', '1', '0', '1536630093', '0'), ('44', '10', '/static/upload/images/brand/2018/09/20180911094156207853.gif', '金史密斯(KINGSMITH)', '', '1', '0', '1536630116', '0'), ('45', '10', '/static/upload/images/brand/2018/09/20180911094213446788.jpeg', 'BH (必艾奇)', '', '1', '0', '1536630133', '0'), ('46', '10', '/static/upload/images/brand/2018/09/20180911094257504723.jpeg', '乔山', '', '1', '0', '1536630177', '0'), ('47', '10', '/static/upload/images/brand/2018/09/20180911094324597298.jpeg', '开普特', '', '1', '0', '1536630204', '0'), ('48', '16', '/static/upload/images/brand/2018/09/20180911094344882885.jpeg', '一品玉', '', '1', '0', '1536630224', '0'), ('49', '16', '/static/upload/images/brand/2018/09/20180911094407378277.jpeg', '金奥力', '', '1', '0', '1536630247', '0'), ('50', '16', '/static/upload/images/brand/2018/09/20180911094429066146.jpeg', '北大荒', '', '1', '0', '1536630269', '0'), ('51', '16', '/static/upload/images/brand/2018/09/20180911094444771756.jpeg', '养生堂', '', '1', '0', '1536630284', '0'), ('52', '16', '/static/upload/images/brand/2018/09/20180911094500513270.jpeg', '同庆和堂', '', '1', '0', '1536630300', '0'), ('53', '16', '/static/upload/images/brand/2018/09/20180911094520484650.jpeg', '乐力', '', '1', '0', '1536630320', '0'), ('54', '16', '/static/upload/images/brand/2018/09/20180911094538450476.jpeg', '汤臣倍健', '', '1', '0', '1536630338', '0'), ('55', '16', '/static/upload/images/brand/2018/09/20180911094554937221.jpeg', '康比特', '', '1', '0', '1536630354', '0'), ('56', '16', '/static/upload/images/brand/2018/09/20180911094614820628.jpeg', '喜瑞', '', '1', '0', '1536630374', '0'), ('57', '16', '/static/upload/images/brand/2018/09/20180911094632635433.jpeg', '同仁堂', '', '1', '0', '1536630392', '0'), ('58', '16', '/static/upload/images/brand/2018/09/20180911094649275055.jpeg', '白兰氏', '', '1', '0', '1536630409', '0'), ('59', '16', '/static/upload/images/brand/2018/09/20180911094704970519.jpeg', 'Lumi', '', '1', '0', '1536630424', '0'), ('60', '16', '/static/upload/images/brand/2018/09/20180911094722440979.jpeg', '自然之宝', '', '1', '0', '1536630442', '0'), ('61', '16', '/static/upload/images/brand/2018/09/20180911094738919225.jpeg', '善存', '', '1', '0', '1536630458', '0'), ('62', '16', '/static/upload/images/brand/2018/09/20180911094756976084.jpeg', '长城葡萄酒', '', '1', '0', '1536630476', '0'), ('63', '17', '/static/upload/images/brand/images/20180911144300_logo.jpeg', '施华洛世奇', '', '1', '0', '1536648180', '0'), ('64', '17', '/static/upload/images/brand/images/20180911144327_logo.jpeg', '爱卡', '', '1', '0', '1536648207', '0'), ('65', '17', '/static/upload/images/brand/images/20180911144350_logo.jpeg', '周生生', '', '1', '0', '1536648230', '0'), ('66', '17', '/static/upload/images/brand/images/20180911144407_logo.jpeg', '周大福', '', '1', '0', '1536648247', '0'), ('67', '17', '/static/upload/images/brand/images/20180911144430_logo.jpeg', '蓝色多瑙河', '', '1', '0', '1536648270', '0'), ('68', '17', '/static/upload/images/brand/images/20180911145756_logo.jpeg', '宝玑', '', '1', '0', '1536649076', '0'), ('69', '18', '/static/upload/images/brand/images/20180911150230_logo.jpeg', '相宜本草', '', '1', '0', '1536649350', '0'), ('70', '18', '/static/upload/images/brand/images/20180911150253_logo.jpeg', '卡尼尔', '', '1', '0', '1536649373', '0'), ('71', '18', '/static/upload/images/brand/images/20180911150312_logo.jpeg', '佳洁士', '', '1', '0', '1536649392', '0'), ('72', '18', '/static/upload/images/brand/images/20180911150330_logo.jpeg', '高丝洁', '', '1', '0', '1536649410', '0'), ('73', '18', '/static/upload/images/brand/images/20180911150348_logo.jpeg', '芙丽芳丝', '', '1', '0', '1536649428', '0'), ('74', '18', '/static/upload/images/brand/images/20180911150412_logo.jpeg', '雅诗兰黛', '', '1', '0', '1536649452', '0'), ('75', '24', '/static/upload/images/brand/images/20180911150435_logo.jpeg', '九阳', '', '1', '0', '1536649475', '0'), ('76', '24', '/static/upload/images/brand/images/20180911150454_logo.jpeg', '美的', '', '1', '0', '1536649494', '0'), ('77', '24', '/static/upload/images/brand/images/20180911150512_logo.jpeg', '格力', '', '1', '0', '1536649512', '0'), ('78', '24', '/static/upload/images/brand/images/20180911150528_logo.jpeg', 'TCL', '', '1', '0', '1536649528', '0'), ('79', '24', '/static/upload/images/brand/images/20180911150547_logo.jpeg', '海信', '', '1', '0', '1536649547', '0'), ('80', '24', '/static/upload/images/brand/images/20180911150610_logo.gif', '松下电器', '', '1', '0', '1536649570', '0'), ('81', '24', '/static/upload/images/brand/images/20180911150626_logo.jpeg', '老板', '', '1', '0', '1536649586', '0'), ('82', '24', '/static/upload/images/brand/images/20180911150644_logo.jpeg', '苏泊尔', '', '1', '0', '1536649604', '0'), ('83', '24', '/static/upload/images/brand/images/20180911150701_logo.jpeg', '海尔', '', '1', '0', '1536649621', '0'), ('84', '25', '/static/upload/images/brand/images/20180911150804_logo.png', '苹果', '', '1', '0', '1536649684', '0'), ('85', '25', '/static/upload/images/brand/images/20180911150855_logo.jpeg', '惠普', '', '1', '0', '1536649735', '0'), ('86', '25', '/static/upload/images/brand/images/20180911150921_logo.jpeg', 'DELL', '', '1', '0', '1536649761', '0'), ('87', '27', '/static/upload/images/brand/images/20180911150946_logo.jpeg', '心家宜', '', '1', '0', '1536649786', '0'), ('88', '27', '/static/upload/images/brand/images/20180911151005_logo.jpeg', '乐扣乐扣/lock lock', '', '1', '0', '1536649805', '0'), ('89', '26', '/static/upload/images/brand/images/20180911151034_logo.jpeg', '阿迪达斯', '', '1', '0', '1536649834', '0'), ('90', '26', '/static/upload/images/brand/images/20180911151051_logo.jpeg', '七匹狼', '', '1', '0', '1536649851', '0'), ('91', '26', '/static/upload/images/brand/images/20180911151118_logo.jpeg', 'Newbalance', '', '1', '0', '1536649878', '0'), ('92', '26', '/static/upload/images/brand/images/20180911151143_logo.jpeg', '爱帝', '', '1', '0', '1536649903', '0'); +INSERT INTO `s_brand` VALUES ('1', '30', '/static/upload/images/brand/2018/08/20180831123506659500.jpeg', '中国联通', '', '1', '0', '1526350443', '1535690106'), ('2', '7', '/static/upload/images/brand/2018/08/20180831123612400417.jpeg', '新大王', '', '1', '0', '1526350453', '1535690172'), ('3', '7', '/static/upload/images/brand/2018/08/20180831123638301757.jpeg', '雅培', '', '1', '0', '1526350461', '1535690198'), ('4', '7', '/static/upload/images/brand/2018/08/20180831123659295462.jpeg', '亨氏', '', '1', '0', '1526350469', '1535690219'), ('5', '7', '/static/upload/images/brand/2018/08/20180831123718129432.jpeg', '十月妈咪', '', '1', '0', '1530429633', '1535690238'), ('6', '7', '/static/upload/images/brand/2018/08/20180831123739604557.jpeg', '好孩子', '', '1', '0', '1530429687', '1535690259'), ('7', '7', '/static/upload/images/brand/2018/08/20180831123832665998.jpeg', '妈咪宝贝', '', '1', '0', '1530429743', '1535690312'), ('8', '7', '/static/upload/images/brand/2018/08/20180831123901892901.jpeg', '惠氏', '', '1', '0', '1530429765', '1535690341'), ('9', '7', '/static/upload/images/brand/2018/08/20180831123923979734.jpeg', 'lala布书', '', '1', '0', '1530429794', '1535690363'), ('10', '7', '/static/upload/images/brand/2018/08/20180831123941878091.jpeg', '美赞臣', '', '1', '0', '1530429830', '1535690381'), ('11', '7', '/static/upload/images/brand/2018/08/20180831124001306519.jpeg', '好奇', '', '1', '0', '1530429855', '1535690401'), ('12', '7', '/static/upload/images/brand/2018/08/20180831124028863137.jpeg', '多美', '', '1', '0', '1530429873', '1535690428'), ('13', '7', '/static/upload/images/brand/2018/08/20180831124052288940.jpeg', '嘉宝', '', '1', '0', '1530429907', '1535690452'), ('14', '7', '/static/upload/images/brand/2018/08/20180831124114729313.jpeg', '孩之宝', '', '1', '0', '1530429926', '1535690474'), ('15', '7', '/static/upload/images/brand/2018/08/20180831123805053207.jpeg', '婴姿坊', '', '1', '0', '1535690285', '0'), ('16', '7', '/static/upload/images/brand/2018/08/20180831124204852297.jpeg', '嗳呵', '', '1', '0', '1535690524', '0'), ('17', '7', '/static/upload/images/brand/2018/08/20180831124220397979.jpeg', '美斯特伦', '', '1', '0', '1535690540', '0'), ('18', '7', '/static/upload/images/brand/2018/08/20180831124235290388.jpeg', '万代', '', '1', '0', '1535690555', '0'), ('19', '7', '/static/upload/images/brand/2018/08/20180831124253118694.jpeg', '亲贝', '', '1', '0', '1535690573', '0'), ('20', '7', '/static/upload/images/brand/2018/08/20180831124320138615.jpeg', '十月天使', '', '1', '0', '1535690600', '0'), ('21', '7', '/static/upload/images/brand/2018/08/20180831124338343861.jpeg', '多美滋', '', '1', '0', '1535690618', '0'), ('22', '7', '/static/upload/images/brand/2018/08/20180831124358184873.jpeg', '星辉', '', '1', '0', '1535690638', '0'), ('23', '7', '/static/upload/images/brand/2018/08/20180831124414494883.jpeg', '布朗博士', '', '1', '0', '1535690654', '0'), ('24', '7', '/static/upload/images/brand/2018/08/20180831124432799807.jpeg', '新安怡', '', '1', '0', '1535690672', '0'), ('25', '7', '/static/upload/images/brand/2018/08/20180831124447773181.jpeg', '费雪', '', '1', '0', '1535690687', '0'), ('26', '7', '/static/upload/images/brand/2018/08/20180831124503006925.jpeg', '帮宝适', '', '1', '0', '1535690703', '0'), ('27', '7', '/static/upload/images/brand/2018/08/20180831124520403239.jpeg', '雀巢', '', '1', '0', '1535690720', '0'), ('28', '7', '/static/upload/images/brand/2018/08/20180831124538167027.jpeg', '百立乐', '', '1', '0', '1535690738', '0'), ('29', '7', '/static/upload/images/brand/2018/08/20180831124555864230.jpeg', '乐高', '', '1', '0', '1535690755', '0'), ('30', '7', '/static/upload/images/brand/2018/08/20180831124611120082.jpeg', '芭比', '', '1', '0', '1535690771', '0'), ('31', '7', '/static/upload/images/brand/2018/08/20180831124630371456.jpeg', 'NUK', '', '1', '0', '1535690790', '0'), ('32', '7', '/static/upload/images/brand/2018/08/20180831124711269217.jpeg', '宝贝第一', '', '1', '0', '1535690831', '0'), ('33', '7', '/static/upload/images/brand/2018/08/20180831124726804328.jpeg', '强生', 'https://www.johnsonsbaby.com.cn/', '1', '0', '1535690846', '1535697032'), ('34', '7', '/static/upload/images/brand/2018/08/20180831124745441134.jpeg', '澳优', '', '1', '0', '1535690866', '0'), ('35', '7', '/static/upload/images/brand/2018/08/20180831124802841044.jpeg', '木马智慧', '', '1', '0', '1535690882', '1535697027'), ('36', '7', '/static/upload/images/brand/2018/08/20180831124823875593.jpeg', 'Hipp', '', '1', '0', '1535690903', '1535696947'), ('37', '7', '/static/upload/images/brand/2018/08/20180831124920751185.png', '爱他美', '', '1', '0', '1535690960', '1535701919'), ('38', '28', '/static/upload/images/brand/2018/09/20180911093753188783.jpeg', 'Henckels 亨克斯', '', '1', '0', '1536629873', '0'), ('39', '28', '/static/upload/images/brand/2018/09/20180911093827728940.jpeg', '双立人 Zwilling', '', '1', '0', '1536629907', '0'), ('40', '28', '/static/upload/images/brand/2018/09/20180911093845205790.jpeg', 'STAUB', '', '1', '0', '1536629925', '0'), ('41', '29', '/static/upload/images/brand/2018/09/20180911094017352817.jpeg', 'karcher凯驰', '', '1', '0', '1536630017', '0'), ('42', '10', '/static/upload/images/brand/2018/09/20180911094111296971.jpeg', '远洋瑜伽', '', '1', '0', '1536630071', '0'), ('43', '10', '/static/upload/images/brand/2018/09/20180911094133329172.jpeg', 'INDEED', '', '1', '0', '1536630093', '0'), ('44', '10', '/static/upload/images/brand/2018/09/20180911094156207853.gif', '金史密斯(KINGSMITH)', '', '1', '0', '1536630116', '0'), ('45', '10', '/static/upload/images/brand/2018/09/20180911094213446788.jpeg', 'BH (必艾奇)', '', '1', '0', '1536630133', '0'), ('46', '10', '/static/upload/images/brand/2018/09/20180911094257504723.jpeg', '乔山', '', '1', '0', '1536630177', '0'), ('47', '10', '/static/upload/images/brand/2018/09/20180911094324597298.jpeg', '开普特', '', '1', '0', '1536630204', '0'), ('48', '16', '/static/upload/images/brand/2018/09/20180911094344882885.jpeg', '一品玉', '', '1', '0', '1536630224', '0'), ('49', '16', '/static/upload/images/brand/2018/09/20180911094407378277.jpeg', '金奥力', '', '1', '0', '1536630247', '0'), ('50', '16', '/static/upload/images/brand/2018/09/20180911094429066146.jpeg', '北大荒', '', '1', '0', '1536630269', '0'), ('51', '16', '/static/upload/images/brand/2018/09/20180911094444771756.jpeg', '养生堂', '', '1', '0', '1536630284', '0'), ('52', '16', '/static/upload/images/brand/2018/09/20180911094500513270.jpeg', '同庆和堂', '', '1', '0', '1536630300', '0'), ('53', '16', '/static/upload/images/brand/2018/09/20180911094520484650.jpeg', '乐力', '', '1', '0', '1536630320', '0'), ('54', '16', '/static/upload/images/brand/2018/09/20180911094538450476.jpeg', '汤臣倍健', '', '1', '0', '1536630338', '0'), ('55', '16', '/static/upload/images/brand/2018/09/20180911094554937221.jpeg', '康比特', '', '1', '0', '1536630354', '0'), ('56', '16', '/static/upload/images/brand/2018/09/20180911094614820628.jpeg', '喜瑞', '', '1', '0', '1536630374', '0'), ('57', '16', '/static/upload/images/brand/2018/09/20180911094632635433.jpeg', '同仁堂', '', '1', '0', '1536630392', '0'), ('58', '16', '/static/upload/images/brand/2018/09/20180911094649275055.jpeg', '白兰氏', '', '1', '0', '1536630409', '0'), ('59', '16', '/static/upload/images/brand/2018/09/20180911094704970519.jpeg', 'Lumi', '', '1', '0', '1536630424', '0'), ('60', '16', '/static/upload/images/brand/2018/09/20180911094722440979.jpeg', '自然之宝', '', '1', '0', '1536630442', '0'), ('61', '16', '/static/upload/images/brand/2018/09/20180911094738919225.jpeg', '善存', '', '1', '0', '1536630458', '0'), ('62', '16', '/static/upload/images/brand/2018/09/20180911094756976084.jpeg', '长城葡萄酒', '', '1', '0', '1536630476', '0'), ('63', '17', '/static/upload/images/brand/images/20180911144300_logo.jpeg', '施华洛世奇', '', '1', '0', '1536648180', '0'), ('64', '17', '/static/upload/images/brand/images/20180911144327_logo.jpeg', '爱卡', '', '1', '0', '1536648207', '0'), ('65', '17', '/static/upload/images/brand/images/20180911144350_logo.jpeg', '周生生', '', '1', '0', '1536648230', '0'), ('66', '17', '/static/upload/images/brand/images/20180911144407_logo.jpeg', '周大福', '', '1', '0', '1536648247', '0'), ('67', '17', '/static/upload/images/brand/images/20180911144430_logo.jpeg', '蓝色多瑙河', '', '1', '0', '1536648270', '0'), ('68', '17', '/static/upload/images/brand/images/20180911145756_logo.jpeg', '宝玑', '', '1', '0', '1536649076', '0'), ('69', '18', '/static/upload/images/brand/images/20180911150230_logo.jpeg', '相宜本草', '', '1', '0', '1536649350', '0'), ('70', '18', '/static/upload/images/brand/images/20180911150253_logo.jpeg', '卡尼尔', '', '1', '0', '1536649373', '0'), ('71', '18', '/static/upload/images/brand/images/20180911150312_logo.jpeg', '佳洁士', '', '1', '0', '1536649392', '0'), ('72', '18', '/static/upload/images/brand/images/20180911150330_logo.jpeg', '高丝洁', '', '1', '0', '1536649410', '0'), ('73', '18', '/static/upload/images/brand/images/20180911150348_logo.jpeg', '芙丽芳丝', '', '1', '0', '1536649428', '0'), ('74', '18', '/static/upload/images/brand/images/20180911150412_logo.jpeg', '雅诗兰黛', '', '1', '0', '1536649452', '0'), ('75', '24', '/static/upload/images/brand/images/20180911150435_logo.jpeg', '九阳', '', '1', '0', '1536649475', '0'), ('76', '24', '/static/upload/images/brand/images/20180911150454_logo.jpeg', '美的', '', '1', '0', '1536649494', '0'), ('77', '24', '/static/upload/images/brand/images/20180911150512_logo.jpeg', '格力', '', '1', '0', '1536649512', '0'), ('78', '24', '/static/upload/images/brand/images/20180911150528_logo.jpeg', 'TCL', '', '1', '0', '1536649528', '0'), ('79', '24', '/static/upload/images/brand/images/20180911150547_logo.jpeg', '海信', '', '1', '0', '1536649547', '0'), ('80', '24', '/static/upload/images/brand/images/20180911150610_logo.gif', '松下电器', '', '1', '0', '1536649570', '0'), ('81', '24', '/static/upload/images/brand/images/20180911150626_logo.jpeg', '老板', '', '1', '0', '1536649586', '0'), ('82', '24', '/static/upload/images/brand/images/20180911150644_logo.jpeg', '苏泊尔', '', '1', '0', '1536649604', '0'), ('83', '24', '/static/upload/images/brand/images/20180911150701_logo.jpeg', '海尔', '', '1', '0', '1536649621', '1545320838'), ('84', '25', '/static/upload/images/brand/images/20180911150804_logo.png', '苹果', '', '1', '0', '1536649684', '0'), ('85', '25', '/static/upload/images/brand/images/20180911150855_logo.jpeg', '惠普', '', '1', '0', '1536649735', '0'), ('86', '25', '/static/upload/images/brand/images/20180911150921_logo.jpeg', 'DELL', '', '1', '0', '1536649761', '0'), ('87', '27', '/static/upload/images/brand/images/20180911150946_logo.jpeg', '心家宜', '', '1', '0', '1536649786', '0'), ('88', '27', '/static/upload/images/brand/images/20180911151005_logo.jpeg', '乐扣乐扣/lock lock', '', '1', '0', '1536649805', '0'), ('89', '26', '/static/upload/images/brand/images/20180911151034_logo.jpeg', '阿迪达斯', '', '1', '0', '1536649834', '0'), ('90', '26', '/static/upload/images/brand/images/20180911151051_logo.jpeg', '七匹狼', '', '1', '0', '1536649851', '0'), ('91', '26', '/static/upload/images/brand/images/20180911151118_logo.jpeg', 'Newbalance', '', '1', '0', '1536649878', '0'), ('92', '26', '/static/upload/images/brand/images/20180911151143_logo.jpeg', '爱帝', '', '1', '0', '1536649903', '0'); COMMIT; -- ---------------------------- @@ -503,13 +529,13 @@ CREATE TABLE `s_brand_category` ( PRIMARY KEY (`id`), KEY `pid` (`pid`), KEY `is_enable` (`is_enable`) -) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='品牌分类'; +) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='品牌分类'; -- ---------------------------- -- Records of `s_brand_category` -- ---------------------------- BEGIN; -INSERT INTO `s_brand_category` VALUES ('7', '0', '母婴用品', '1', '0', '0', '1535684620'), ('10', '0', '运动健康', '1', '0', '0', '1536649962'), ('16', '0', '食品饮料', '1', '0', '1482840545', '1535684635'), ('17', '0', '珠宝手表', '1', '0', '1482840557', '1535684645'), ('18', '0', '个护化妆', '1', '0', '1482840577', '1535684661'), ('24', '0', '家用电器', '1', '0', '1483951541', '1535684669'), ('25', '0', '数码办公', '1', '0', '1535684676', '0'), ('26', '0', '服装鞋帽', '1', '0', '1535684688', '0'), ('27', '0', '家居家装', '1', '0', '1535684701', '0'), ('28', '0', '厨房餐饮', '1', '0', '1535684707', '1535684722'), ('29', '0', '汽车用品', '1', '0', '1535684729', '0'), ('30', '0', '虚拟充值', '1', '0', '1535684745', '1535684807'), ('31', '0', '其他', '1', '0', '1535684797', '1536226686'); +INSERT INTO `s_brand_category` VALUES ('7', '0', '母婴用品', '1', '0', '0', '1535684620'), ('10', '0', '运动健康', '1', '0', '0', '1536649962'), ('16', '0', '食品饮料', '1', '0', '1482840545', '1535684635'), ('17', '0', '珠宝手表', '1', '0', '1482840557', '1535684645'), ('18', '0', '个护化妆', '1', '0', '1482840577', '1535684661'), ('24', '0', '家用电器', '1', '0', '1483951541', '1535684669'), ('25', '0', '数码办公', '1', '0', '1535684676', '0'), ('26', '0', '服装鞋帽', '1', '0', '1535684688', '0'), ('27', '0', '家居家装', '1', '0', '1535684701', '0'), ('28', '0', '厨房餐饮', '1', '0', '1535684707', '1535684722'), ('29', '0', '汽车用品', '1', '0', '1535684729', '0'), ('30', '0', '虚拟充值', '1', '0', '1535684745', '1535684807'), ('31', '0', '其他', '1', '0', '1535684797', '1536226686'), ('32', '0', '434erf发给梵蒂冈', '1', '66', '1545321714', '1545321749'), ('33', '0', '问惹我铜仁', '1', '55', '1545321728', '1545321738'); COMMIT; -- ---------------------------- @@ -614,7 +640,7 @@ CREATE TABLE `s_custom_view` ( -- Records of `s_custom_view` -- ---------------------------- BEGIN; -INSERT INTO `s_custom_view` VALUES ('1', '测试自定义页面22', '

\"1.jpeg\"/

ShopXO

秀,身材苗条!

在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。


因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。


在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。

因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。


在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。

因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。



在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。

因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。


在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。

因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。


', '1', '0', '0', '0', '', '0', '715', '1484965691', '1545123788'); +INSERT INTO `s_custom_view` VALUES ('1', '测试自定义页面22', '

\"1.jpeg\"/

ShopXO

秀,身材苗条!

在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。


因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。


在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。

因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。


在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。

因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。



在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。

因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。


在欧美的排版业界中,使用 Arial 的作品意即是「不使用 Helvetica 的作品」,会被认為是设计师对字体的使用没有概念或是太容易妥协,基本上我大致也是同意。

因為 Helvetica 只有 Mac 上才有內建,Windows 用戶除非花錢買,不然是沒有 Helvetica 能用,所以使用 Arial 的設計師往往被看成是不願意對 Typography 花錢,專業素養不到家的人。除了在確保網頁相容性等絕對必需的情況外,幾乎可以說是不應該使用的字體。


', '1', '0', '0', '0', '', '0', '715', '1484965691', '1545320526'); COMMIT; -- ---------------------------- @@ -686,8 +712,8 @@ CREATE TABLE `s_goods` ( -- Records of `s_goods` -- ---------------------------- BEGIN; -INSERT INTO `s_goods` VALUES ('1', '0', '趣莱福 玉米香脆片 336g', '', '零食', '0', '999998', '包', '/static/upload/images/goods/compr/2018/08/13/201808130954403815235493.jpg', '', '0.00', '0.00', '36.00', '45.00', '0.00', '1', '1', '0', '1', '1', '1', '


', '2', '0', '51', '', '', '0', '1531201588', '1535006379'), ('2', '0', '优果优选 美国进口车厘子 9.5R 2斤装 (27.5~30mm) 1kg', '', '', '0', '999999', '斤', '/static/upload/images/goods/compr/2018/08/10/20180810184610489690386.jpg', '', '0.00', '0.00', '168.00', '236.00', '0.00', '0', '1', '0', '1', '1', '1', '


', '3', '0', '39', '', '/static/upload/images/goods/compr/2018/08/10/20180810184612978674162.jpg', '0', '1531218445', '1535006388'), ('3', '0', '人头马 V.S.O.P特优香槟干邑白兰地 700ml', '', '酒水', '35', '999999', '瓶', '/static/upload/images/goods/compr/2018/08/13/20180813095930374352291.jpg', '', '0.00', '0.00', '448.00', '499.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"g3-d-1.jpg\"/

', '2', '0', '9', '', '/static/upload/images/goods/compr/2018/08/13/20180813095930292687029.jpg', '0', '1534125570', '1535006396'), ('4', '0', '费列罗FERRERO ROCHER T8榛果威化巧克力 100g', '', '礼品', '0', '9999999', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131012321011849897.jpg', '', '0.00', '0.00', '42.00', '43.80', '0.00', '0', '1', '0', '1', '1', '1', '


', '3', '0', '69', '', '/static/upload/images/goods/compr/2018/08/13/20180813101233080114919.jpg', '0', '1534126353', '1535006404'), ('5', '0', '伊桐 经典优选赤霞珠红葡萄酒双支木盒装 750ml*2', '', '酒水', '35', '999999', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131034421604061387.jpg', '', '0.00', '0.00', '128.00', '168.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"1534127370366748.png\"/\"1534127370257552.png\"/\"1534127370823136.png\"/\"g5-d-4.png\"/\"1534127088462306.png\"/



', '3', '0', '15', '', '/static/upload/images/goods/compr/2018/08/13/2018081310344571617133.jpg', '0', '1534127685', '1535006368'), ('6', '0', '阳澄碧波 阳澄湖 六月黄 2.0两*8只', '', '食品', '0', '99', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131041037916160724.jpg', '238.00', '238.00', '238.00', '208.00', '208.00', '208.00', '0', '1', '0', '1', '1', '1', '


', '3', '2', '21', '', '/static/upload/images/goods/compr/2018/08/13/201808131041041669778187.jpg', '0', '1534128064', '1544897748'), ('7', '0', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '手机', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/201808141523511999215505.jpg', '', '0.00', '0.00', '2998.90', '2998.90', '0.00', '0', '1', '0', '1', '1', '1', '

 X5L/SL/V/M (5.0寸)  X5max钢化膜(5.5寸)  X5pro钢化膜(5.2寸) 

\"10.jpg\"\"3-.jpg\"

\"白边_Dd.jpg\"

\"10_u.jpg\"\"10_c.jpg\"\"QU.jpg\"


', '2', '0', '28', '/static/upload/video/goods/2018/10/19/2018101914263503485.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814152351571446066.jpg', '0', '1534231431', '1539930395'), ('8', '0', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', 'H60-L01', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/20180814153005983831775.jpg', '', '0.00', '0.00', '1999.00', '1999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '3', '0', '32', '/static/upload/video/goods/2018/10/19/2018101914202628900.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153005162366855.jpg', '0', '1534231805', '1539930026'), ('9', '0', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', 'MX4', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/201808141533491228907135.jpg', '', '0.00', '0.00', '2499.00', '2499.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '0', '57', '/static/upload/video/goods/2018/10/19/2018101914245064258.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153349537451584.jpg', '0', '1534232029', '1539930290'), ('10', '0', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', 'G8508S', '0', '666666', '步', '/static/upload/images/goods/compr/2018/08/14/20180814153738164331876.jpg', '', '0.00', '0.00', '3888.00', '3999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '0', '49', '/static/upload/video/goods/2018/10/19/2018101914253503074.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153739604261343.jpg', '0', '1534232259', '1539930335'), ('11', '0', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', 'MI4', '0', '999998', '步', '/static/upload/images/goods/compr/2018/08/14/201808141542239463612637.jpg', '', '0.00', '0.00', '1980.00', '1999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"概述\"\"image\"/\"image\"/\"概述5\"\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"工艺_04\"\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '1', '302', '/static/upload/video/goods/2018/10/19/2018101914194959299.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814154224408550988.jpg', '0', '1534232544', '1539929989'), ('12', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', 'iPhone 6 Plus', '0', '680', '步', '/static/upload/images/goods/compr/2018/08/14/201808141555331489984010.jpg', '150.00-30900.00', '150.00', '30900.00', '20.00-130010.00', '20.00', '130010.00', '0', '1', '0', '1', '1', '1', '

 



', '4', '3', '391', '/static/upload/video/goods/2018/10/19/2018101914230052570.mp4', '/static/upload/images/goods/compr/2018/08/14/201808141555342591316116.jpg', '0', '1534233334', '1544897675'), ('13', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/09/07/201809071456568190316256.jpg', '', '0.00', '0.00', '328.00', '329.00', '0.00', '0', '1', '0', '1', '1', '1', '

 

 

 

', '3', '0', '8', '', '/static/upload/images/goods/compr/2018/08/17/20180817104457164038763.jpg', '0', '1534329397', '1536303431'), ('14', '33', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/08/17/20180817140646334226403.jpg', '', '0.00', '0.00', '228.00', '388.00', '0.00', '0', '1', '0', '1', '1', '1', '

【品牌】欧单 学媛风 猫咪良品

【吊牌】xueyuanfeng 猫咪良品

【面料质地】涤棉拼接蕾丝  后中拉链 有内衬(非专业机构鉴定,介意请慎拍)

好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~

【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦

【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦


XS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM


S码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM

M码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM

L码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM


(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)

PS:常规码数,可按平时号选择哦。修身版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~

蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~

店主随手拍,没有做过任何图片处理,

效果也许不好,但是真实直接的~

实物颜色很难拍,但很漂亮很洋气哦~


', '4', '0', '79', '', '/static/upload/images/goods/compr/2018/08/17/201808171411195446519643.jpg', '0', '1534485901', '1536649267'), ('15', '26', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/08/17/20180817141042047863090.jpg', '', '0.00', '0.00', '258.00', '398.00', '0.00', '0', '1', '0', '1', '1', '1', '

【品牌】欧单 学媛风 猫咪良品

【吊牌】xueyuanfeng 猫咪良品

【面料质地】网纱绣花钉珠拼接蕾丝 拉链有内衬(非专业机构鉴定,介意请慎拍)

好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~

【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦

【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦


XS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM


S码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM

M码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM

L码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM


(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)

PS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~

大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~

肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~

店主随手拍,没有做过任何图片处理,

效果也许不好,但是真实直接的~

实物颜色很难拍,但很漂亮很洋气哦~


', '5', '0', '21', '', '/static/upload/images/goods/compr/2018/08/17/201808171410433199766613.jpg', '0', '1534486243', '1536219046'), ('16', '7', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '0', '999994', '件', '/static/upload/images/goods/compr/2018/08/17/201808171419098800423362.jpg', '', '0.00', '0.00', '79.68', '138.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '1', '316', '', '/static/upload/images/goods/compr/2018/08/17/201808171421216192271281.jpg', '0', '1534486750', '1536902656'), ('17', '2', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '0', '999998', '件', '/static/upload/images/goods/compr/2018/08/17/20180817142812715743145.jpg', '', '0.00', '0.00', '202.00', '635.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '72', '', '/static/upload/images/goods/compr/2018/08/17/20180817143437974622206.jpg', '0', '1534487293', '1536215582'), ('18', '4', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '35', '7', '件', '/static/upload/images/goods/compr/2018/08/17/20180817143436580601722.jpg', '', '0.00', '0.00', '0.01', '0.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '148', '', '/static/upload/images/goods/compr/2018/08/17/201808171428136171021059.jpg', '0', '1534487677', '1542175364'), ('19', '0', '德国TAWA帐篷户外2人3-4人露营防雨家庭野营全自动加厚二室一厅', '', '', '35', '999998', '件', '/static/upload/images/goods/compr/2018/10/19/2018101910560644177663.jpg', '', '0.00', '0.00', '477.00', '1299.00', '0.00', '0', '1', '0', '1', '1', '1', '
\"\"
\"\"
\"\"
\"\"
\"\"

\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"


', '3', '0', '8', '/static/upload/video/goods/2018/10/19/2018101910560762702.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019105606682856600.jpg', '0', '1539917767', '0'), ('20', '0', '【热销48万】骆驼帐篷户外3-4人 全自动加厚防雨2人野营野外帐篷', '', '', '19', '9999', '件', '/static/upload/images/goods/compr/2018/10/19/2018101911094582135331.jpg', '', '0.00', '0.00', '223.00', '1399.00', '0.00', '0', '1', '0', '1', '1', '1', '

温馨提示:套餐2(蓝绿+宝蓝)三件套、套餐3(蓝色+绿色)四件套预售,拍下付款20天发货,请知悉,祝亲购物愉快!

 

 

此款帐篷正常情况下适合3-4人使用(内账尺寸:200*180*115cm),2人使用更大更宽敞。

温馨提示:收帐前,请先将侧杆下方关节卡槽向下拉开解锁,再折叠帐篷(切勿直接折起侧杆,容易折断损坏)

帐篷收纳袋内侧缝有详细的开收帐说明书,如有不明白的亲可看说明书或联系在线客服为您解答。


', '2', '0', '5', '/static/upload/video/goods/2018/10/19/2018101911094581983.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019110945541043212.jpg', '0', '1539918585', '0'); -INSERT INTO `s_goods` VALUES ('21', '0', '原地踏步机运动瘦身器械男女减肥健身器材家用小型跑步机懒人神器', '', '', '0', '9999', '件', '/static/upload/images/goods/compr/2018/10/19/201810191146488354813184.jpg', '', '0.00', '0.00', '129.90', '138.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '12', '/static/upload/video/goods/2018/10/19/2018101911464932889.mp4', '/static/upload/images/goods/compr/2018/10/19/201810191146492481958310.jpg', '0', '1539920809', '0'), ('22', '89', '思凯乐户外新款冲锋衣男女羽绒内胆三合一两件套防水纯色外套', '', '', '0', '99997', '件', '/static/upload/images/goods/compr/2018/10/19/201810191348172091617752.jpg', '', '0.00', '0.00', '1099.00', '1980.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"\"



', '2', '3', '5', '/static/upload/video/goods/2018/10/19/2018101913481793316.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019134817532122908.jpg', '0', '1539928098', '0'), ('23', '0', '春秋季单层冲锋衣女薄款大码中老年弹力户外外套防风透气妈妈装夏', '', '', '0', '999998', '件', '/static/upload/images/goods/compr/2018/10/19/201810191354341113244355.jpg', '', '0.00', '0.00', '189.00', '988.00', '0.00', '10', '1', '0', '1', '1', '1', '

重大消息:本店支持团队、公司印LOGO、刺绣。有需请咨询在线客服。此款产品由于太热销,少部分颜色尺码断货,工厂正在马不停蹄的赶货,


', '4', '0', '12', '/static/upload/video/goods/2018/10/19/2018101913543473411.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019135434223247744.jpg', '0', '1539928474', '1544381580'), ('24', '0', '【经典款】Columbia哥伦比亚户外男款登山徒步鞋YM1182', '', '', '0', '999996', '双', '/static/upload/images/goods/compr/2018/10/19/20181019140323033765179.jpg', '', '0.00', '0.00', '479.00', '799.00', '0.00', '300', '1', '0', '1', '1', '1', '

\"


', '3', '0', '33', '/static/upload/video/goods/2018/10/19/2018101914032368175.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019140323256116973.jpg', '0', '1539929003', '1544773906'), ('25', '2', '测试商品', '', 'test', '1', '55', '件', '/static/upload/images/goods/compr/2018/12/10/20181210030033863712397.png', '0.00-550.00', '0.00', '550.00', '1.00-55.00', '1.00', '55.00', '0', '1', '0', '1', '1', '1', '



\"1544432935463577.png\"/


\"1544468764927804.jpg\"/

1544463491875330.zip

1544463542867338.txt

是非观是非观

分隔符哥发高速费

分隔符

', '5', '0', '112', '/static/upload/video/goods/2018/12/10/1544436783270558.mp4', '/static/upload/images/goods/compr/2018/12/10/201812100300344059116473.png', '0', '1544382034', '1544984544'); +INSERT INTO `s_goods` VALUES ('1', '0', '趣莱福 玉米香脆片 336g', '', '零食', '0', '999998', '包', '/static/upload/images/goods/compr/2018/08/13/201808130954403815235493.jpg', '', '0.00', '0.00', '36.00', '45.00', '0.00', '1', '1', '0', '1', '1', '1', '


', '2', '0', '51', '', '', '0', '1531201588', '1535006379'), ('2', '0', '优果优选 美国进口车厘子 9.5R 2斤装 (27.5~30mm) 1kg', '', '', '0', '999999', '斤', '/static/upload/images/goods/compr/2018/08/10/20180810184610489690386.jpg', '', '0.00', '0.00', '168.00', '236.00', '0.00', '0', '1', '0', '1', '1', '1', '


', '3', '0', '39', '', '/static/upload/images/goods/compr/2018/08/10/20180810184612978674162.jpg', '0', '1531218445', '1535006388'), ('3', '0', '人头马 V.S.O.P特优香槟干邑白兰地 700ml', '', '酒水', '35', '999999', '瓶', '/static/upload/images/goods/compr/2018/08/13/20180813095930374352291.jpg', '', '0.00', '0.00', '448.00', '499.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"g3-d-1.jpg\"/

', '2', '0', '9', '', '/static/upload/images/goods/compr/2018/08/13/20180813095930292687029.jpg', '0', '1534125570', '1535006396'), ('4', '0', '费列罗FERRERO ROCHER T8榛果威化巧克力 100g', '', '礼品', '0', '9999999', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131012321011849897.jpg', '', '0.00', '0.00', '42.00', '43.80', '0.00', '0', '1', '0', '1', '1', '1', '


', '3', '0', '69', '', '/static/upload/images/goods/compr/2018/08/13/20180813101233080114919.jpg', '0', '1534126353', '1535006404'), ('5', '0', '伊桐 经典优选赤霞珠红葡萄酒双支木盒装 750ml*2', '', '酒水', '35', '999999', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131034421604061387.jpg', '', '0.00', '0.00', '128.00', '168.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"1534127370366748.png\"/\"1534127370257552.png\"/\"1534127370823136.png\"/\"g5-d-4.png\"/\"1534127088462306.png\"/



', '3', '0', '15', '', '/static/upload/images/goods/compr/2018/08/13/2018081310344571617133.jpg', '0', '1534127685', '1535006368'), ('6', '0', '阳澄碧波 阳澄湖 六月黄 2.0两*8只', '', '食品', '0', '99', '盒', '/static/upload/images/goods/compr/2018/08/13/201808131041037916160724.jpg', '238.00', '238.00', '238.00', '208.00', '208.00', '208.00', '0', '1', '0', '1', '1', '1', '


', '3', '2', '21', '', '/static/upload/images/goods/compr/2018/08/13/201808131041041669778187.jpg', '0', '1534128064', '1544897748'), ('7', '0', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '手机', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/201808141523511999215505.jpg', '', '0.00', '0.00', '2998.90', '2998.90', '0.00', '0', '1', '0', '1', '1', '1', '

 X5L/SL/V/M (5.0寸)  X5max钢化膜(5.5寸)  X5pro钢化膜(5.2寸) 

\"10.jpg\"\"3-.jpg\"

\"白边_Dd.jpg\"

\"10_u.jpg\"\"10_c.jpg\"\"QU.jpg\"


', '2', '0', '28', '/static/upload/video/goods/2018/10/19/2018101914263503485.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814152351571446066.jpg', '0', '1534231431', '1539930395'), ('8', '0', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', 'H60-L01', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/20180814153005983831775.jpg', '', '0.00', '0.00', '1999.00', '1999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '3', '0', '32', '/static/upload/video/goods/2018/10/19/2018101914202628900.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153005162366855.jpg', '0', '1534231805', '1539930026'), ('9', '0', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', 'MX4', '0', '999999', '步', '/static/upload/images/goods/compr/2018/08/14/201808141533491228907135.jpg', '', '0.00', '0.00', '2499.00', '2499.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '0', '57', '/static/upload/video/goods/2018/10/19/2018101914245064258.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153349537451584.jpg', '0', '1534232029', '1539930290'), ('10', '0', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', 'G8508S', '0', '666666', '步', '/static/upload/images/goods/compr/2018/08/14/20180814153738164331876.jpg', '', '0.00', '0.00', '3888.00', '3999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '0', '50', '/static/upload/video/goods/2018/10/19/2018101914253503074.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814153739604261343.jpg', '0', '1534232259', '1539930335'), ('11', '0', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', 'MI4', '0', '999998', '步', '/static/upload/images/goods/compr/2018/08/14/201808141542239463612637.jpg', '', '0.00', '0.00', '1980.00', '1999.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"概述\"\"image\"/\"image\"/\"概述5\"\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"工艺_04\"\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/\"image\"/

', '4', '1', '302', '/static/upload/video/goods/2018/10/19/2018101914194959299.mp4', '/static/upload/images/goods/compr/2018/08/14/20180814154224408550988.jpg', '0', '1534232544', '1539929989'), ('12', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', 'iPhone 6 Plus', '0', '680', '步', '/static/upload/images/goods/compr/2018/08/14/201808141555331489984010.jpg', '150.00-30900.00', '150.00', '30900.00', '20.00-130010.00', '20.00', '130010.00', '0', '1', '0', '1', '1', '1', '

 



', '4', '3', '393', '/static/upload/video/goods/2018/10/19/2018101914230052570.mp4', '/static/upload/images/goods/compr/2018/08/14/201808141555342591316116.jpg', '0', '1534233334', '1544897675'), ('13', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/09/07/201809071456568190316256.jpg', '', '0.00', '0.00', '328.00', '329.00', '0.00', '0', '1', '0', '1', '1', '1', '

 

 

 

', '3', '0', '8', '', '/static/upload/images/goods/compr/2018/08/17/20180817104457164038763.jpg', '0', '1534329397', '1536303431'), ('14', '33', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/08/17/20180817140646334226403.jpg', '', '0.00', '0.00', '228.00', '388.00', '0.00', '0', '1', '0', '1', '1', '1', '

【品牌】欧单 学媛风 猫咪良品

【吊牌】xueyuanfeng 猫咪良品

【面料质地】涤棉拼接蕾丝  后中拉链 有内衬(非专业机构鉴定,介意请慎拍)

好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~

【商品颜色】实物拍摄 蓝色 颜色很难拍有小色差属正常现象哦

【商品尺寸】XS/S/M/L 小高腰设计 胸口纽扣是装饰的哦


XS码尺寸: 悬挂衣长81CM.胸围80内合适.腰围63CM.臀围86CM


S码尺寸: 悬挂衣长82CM.胸围84内合适.腰围67CM.臀围90CM

M码尺寸: 悬挂衣长83CM.胸围88内合适.腰围71CM.臀围94CM

L码尺寸: 悬挂衣长84CM.胸围92内合适.腰围75CM.臀围98CM


(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)

PS:常规码数,可按平时号选择哦。修身版型~如果上身偏大可以适当考虑大1号~下摆蕾丝拼接不会很平整的哦~

蕾丝花是手工修剪出来的,每件都有不同和不规则的哦,有小线头和节点是正常现象哦~请亲们谅解哦~

店主随手拍,没有做过任何图片处理,

效果也许不好,但是真实直接的~

实物颜色很难拍,但很漂亮很洋气哦~


', '4', '0', '79', '', '/static/upload/images/goods/compr/2018/08/17/201808171411195446519643.jpg', '0', '1534485901', '1536649267'), ('15', '26', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '0', '999999', '件', '/static/upload/images/goods/compr/2018/08/17/20180817141042047863090.jpg', '', '0.00', '0.00', '258.00', '398.00', '0.00', '0', '1', '0', '1', '1', '1', '

【品牌】欧单 学媛风 猫咪良品

【吊牌】xueyuanfeng 猫咪良品

【面料质地】网纱绣花钉珠拼接蕾丝 拉链有内衬(非专业机构鉴定,介意请慎拍)

好的衣服需要好好呵护,务必请冷水手洗(切记别浸泡)拧干就晾晒或则干洗哦~

【商品颜色】实物拍摄 香槟色 颜色很难拍有小色差属正常现象哦

【商品尺寸】XS/S/M/L 小高腰设计 胸那考虑撑开因素哦 微弹的哦


XS码尺寸: 衣长82CM.胸围80内合适.腰围63CM.臀围86CM


S码尺寸: 衣长83CM.胸围84内合适.腰围67CM.臀围90CM

M码尺寸: 衣长84CM.胸围88内合适.腰围71CM.臀围94CM

L码尺寸: 衣长85CM.胸围92内合适.腰围75CM.臀围98CM


(测量单位是CM,每个人的测量方式不一样,测量的尺寸数据可能会有1~3厘米的差异,请MM们谅解哦)

PS:常规码数,可按平时号选择哦。修身版型,如果腰粗可以适当考虑大1号哦~

大圆领,每个人的身材曲线不同,领口不会很平的哦,请谅解~

肩膀那有暗扣哦,可以很好的隐藏了内衣的肩带哦~袖子那略硬哦~

店主随手拍,没有做过任何图片处理,

效果也许不好,但是真实直接的~

实物颜色很难拍,但很漂亮很洋气哦~


', '5', '0', '21', '', '/static/upload/images/goods/compr/2018/08/17/201808171410433199766613.jpg', '0', '1534486243', '1536219046'), ('16', '7', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '0', '999994', '件', '/static/upload/images/goods/compr/2018/08/17/201808171419098800423362.jpg', '', '0.00', '0.00', '79.68', '138.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '1', '316', '', '/static/upload/images/goods/compr/2018/08/17/201808171421216192271281.jpg', '0', '1534486750', '1536902656'), ('17', '2', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '0', '999998', '件', '/static/upload/images/goods/compr/2018/08/17/20180817142812715743145.jpg', '', '0.00', '0.00', '202.00', '635.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '72', '', '/static/upload/images/goods/compr/2018/08/17/20180817143437974622206.jpg', '0', '1534487293', '1536215582'), ('18', '4', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '35', '7', '件', '/static/upload/images/goods/compr/2018/08/17/20180817143436580601722.jpg', '', '0.00', '0.00', '0.01', '0.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '148', '', '/static/upload/images/goods/compr/2018/08/17/201808171428136171021059.jpg', '0', '1534487677', '1542175364'), ('19', '0', '德国TAWA帐篷户外2人3-4人露营防雨家庭野营全自动加厚二室一厅', '', '', '35', '999998', '件', '/static/upload/images/goods/compr/2018/10/19/2018101910560644177663.jpg', '', '0.00', '0.00', '477.00', '1299.00', '0.00', '0', '1', '0', '1', '1', '1', '
\"\"
\"\"
\"\"
\"\"
\"\"

\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"
\"\"


', '3', '0', '8', '/static/upload/video/goods/2018/10/19/2018101910560762702.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019105606682856600.jpg', '0', '1539917767', '0'), ('20', '0', '【热销48万】骆驼帐篷户外3-4人 全自动加厚防雨2人野营野外帐篷', '', '', '19', '9999', '件', '/static/upload/images/goods/compr/2018/10/19/2018101911094582135331.jpg', '', '0.00', '0.00', '223.00', '1399.00', '0.00', '0', '1', '0', '1', '1', '1', '

温馨提示:套餐2(蓝绿+宝蓝)三件套、套餐3(蓝色+绿色)四件套预售,拍下付款20天发货,请知悉,祝亲购物愉快!

 

 

此款帐篷正常情况下适合3-4人使用(内账尺寸:200*180*115cm),2人使用更大更宽敞。

温馨提示:收帐前,请先将侧杆下方关节卡槽向下拉开解锁,再折叠帐篷(切勿直接折起侧杆,容易折断损坏)

帐篷收纳袋内侧缝有详细的开收帐说明书,如有不明白的亲可看说明书或联系在线客服为您解答。


', '2', '0', '5', '/static/upload/video/goods/2018/10/19/2018101911094581983.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019110945541043212.jpg', '0', '1539918585', '0'); +INSERT INTO `s_goods` VALUES ('21', '0', '原地踏步机运动瘦身器械男女减肥健身器材家用小型跑步机懒人神器', '', '', '0', '9999', '件', '/static/upload/images/goods/compr/2018/10/19/201810191146488354813184.jpg', '', '0.00', '0.00', '129.90', '138.00', '0.00', '0', '1', '0', '1', '1', '1', '

', '3', '0', '12', '/static/upload/video/goods/2018/10/19/2018101911464932889.mp4', '/static/upload/images/goods/compr/2018/10/19/201810191146492481958310.jpg', '0', '1539920809', '0'), ('22', '89', '思凯乐户外新款冲锋衣男女羽绒内胆三合一两件套防水纯色外套', '', '', '0', '99997', '件', '/static/upload/images/goods/compr/2018/10/19/201810191348172091617752.jpg', '', '0.00', '0.00', '1099.00', '1980.00', '0.00', '0', '1', '0', '1', '1', '1', '

\"\"



', '2', '3', '5', '/static/upload/video/goods/2018/10/19/2018101913481793316.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019134817532122908.jpg', '0', '1539928098', '0'), ('23', '0', '春秋季单层冲锋衣女薄款大码中老年弹力户外外套防风透气妈妈装夏', '', '', '0', '999998', '件', '/static/upload/images/goods/compr/2018/10/19/201810191354341113244355.jpg', '', '0.00', '0.00', '189.00', '988.00', '0.00', '10', '1', '0', '1', '1', '1', '

重大消息:本店支持团队、公司印LOGO、刺绣。有需请咨询在线客服。此款产品由于太热销,少部分颜色尺码断货,工厂正在马不停蹄的赶货,


', '4', '0', '12', '/static/upload/video/goods/2018/10/19/2018101913543473411.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019135434223247744.jpg', '0', '1539928474', '1544381580'), ('24', '0', '【经典款】Columbia哥伦比亚户外男款登山徒步鞋YM1182', '', '', '0', '999996', '双', '/static/upload/images/goods/compr/2018/10/19/20181019140323033765179.jpg', '', '0.00', '0.00', '479.00', '799.00', '0.00', '300', '1', '0', '1', '1', '1', '

\"


', '3', '0', '33', '/static/upload/video/goods/2018/10/19/2018101914032368175.mp4', '/static/upload/images/goods/compr/2018/10/19/20181019140323256116973.jpg', '0', '1539929003', '1544773906'), ('25', '2', '测试商品', '', 'test', '1', '55', '件', '/static/upload/images/goods/compr/2018/12/10/20181210030033863712397.png', '0.00-550.00', '0.00', '550.00', '1.00-55.00', '1.00', '55.00', '0', '1', '0', '1', '1', '1', '



\"1544432935463577.png\"/


\"1544468764927804.jpg\"/

1544463491875330.zip

1544463542867338.txt

是非观是非观

分隔符哥发高速费

分隔符

', '5', '0', '113', '/static/upload/video/goods/2018/12/10/1544436783270558.mp4', '/static/upload/images/goods/compr/2018/12/10/201812100300344059116473.png', '0', '1544382034', '1544984544'); COMMIT; -- ---------------------------- @@ -748,13 +774,13 @@ CREATE TABLE `s_goods_browse` ( `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', `upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品浏览'; +) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品浏览'; -- ---------------------------- -- Records of `s_goods_browse` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_browse` VALUES ('42', '3', '90', '1539758622', '1539758622'), ('43', '11', '90', '1539758709', '1540401306'), ('44', '14', '90', '1539758716', '1544381202'), ('45', '15', '90', '1539758741', '1539765071'), ('46', '2', '90', '1539759257', '1539759803'), ('47', '18', '90', '1539759775', '1542011605'), ('48', '16', '90', '1539759778', '1539954438'), ('49', '12', '90', '1539759783', '1544974970'), ('50', '4', '90', '1539759797', '1539759797'), ('51', '9', '90', '1539759800', '1539931661'), ('52', '12', '77', '1539759823', '1545103745'), ('53', '14', '77', '1539764322', '1542787750'), ('54', '11', '77', '1539764363', '1543202285'), ('55', '23', '90', '1539933225', '1539968526'), ('56', '24', '90', '1540054630', '1544821073'), ('57', '18', '77', '1542175370', '1542786891'), ('58', '24', '77', '1542178932', '1543220142'), ('59', '22', '77', '1542179203', '1542185675'), ('60', '23', '77', '1542179360', '1542866469'), ('61', '19', '77', '1542179367', '1542179367'), ('62', '16', '77', '1542181847', '1542868257'), ('63', '6', '77', '1542185670', '1542792831'), ('64', '20', '77', '1542186007', '1542186007'), ('65', '1', '77', '1542783108', '1545099132'), ('66', '4', '77', '1542783579', '1542783579'), ('67', '9', '77', '1542792816', '1542792816'), ('68', '8', '77', '1542792822', '1542792822'), ('69', '21', '77', '1542792837', '1542792837'), ('70', '10', '77', '1542866488', '1542866488'), ('72', '25', '90', '1544382038', '1544905196'), ('73', '22', '90', '1544382647', '1544382647'), ('74', '6', '90', '1544897702', '1545104778'), ('75', '25', '77', '1545099187', '1545102080'); +INSERT INTO `s_goods_browse` VALUES ('42', '3', '90', '1539758622', '1539758622'), ('43', '11', '90', '1539758709', '1540401306'), ('44', '14', '90', '1539758716', '1544381202'), ('45', '15', '90', '1539758741', '1539765071'), ('46', '2', '90', '1539759257', '1539759803'), ('47', '18', '90', '1539759775', '1542011605'), ('48', '16', '90', '1539759778', '1539954438'), ('49', '12', '90', '1539759783', '1545307205'), ('50', '4', '90', '1539759797', '1539759797'), ('51', '9', '90', '1539759800', '1539931661'), ('52', '12', '77', '1539759823', '1545103745'), ('53', '14', '77', '1539764322', '1542787750'), ('54', '11', '77', '1539764363', '1543202285'), ('55', '23', '90', '1539933225', '1539968526'), ('56', '24', '90', '1540054630', '1544821073'), ('57', '18', '77', '1542175370', '1542786891'), ('58', '24', '77', '1542178932', '1543220142'), ('59', '22', '77', '1542179203', '1542185675'), ('60', '23', '77', '1542179360', '1542866469'), ('61', '19', '77', '1542179367', '1542179367'), ('62', '16', '77', '1542181847', '1542868257'), ('63', '6', '77', '1542185670', '1542792831'), ('64', '20', '77', '1542186007', '1542186007'), ('65', '1', '77', '1542783108', '1545099132'), ('66', '4', '77', '1542783579', '1542783579'), ('67', '9', '77', '1542792816', '1542792816'), ('68', '8', '77', '1542792822', '1542792822'), ('69', '21', '77', '1542792837', '1542792837'), ('70', '10', '77', '1542866488', '1542866488'), ('72', '25', '90', '1544382038', '1545307193'), ('73', '22', '90', '1544382647', '1544382647'), ('74', '6', '90', '1544897702', '1545104778'), ('75', '25', '77', '1545099187', '1545102080'), ('76', '10', '90', '1545307199', '1545307199'); COMMIT; -- ---------------------------- @@ -785,7 +811,7 @@ CREATE TABLE `s_goods_category` ( -- Records of `s_goods_category` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_category` VALUES ('1', '0', '/static/upload/images/goods_category/2018/08/20180814174251211789.png', '数码办公', '天天新品,科技带来快乐!', 'iphoneX新品发布了', '#ffe4ed', '/static/upload/images/goods_category/2018/08/20180814180843848554.png', '1', '0', '1', '1529042764', '1544980687'), ('2', '0', '/static/upload/images/goods_category/2018/08/20180814174311166703.png', '服饰鞋包', '', '', '#b0a9d5', '/static/upload/images/goods_category/2018/08/20180815182045222850.png', '1', '0', '1', '1529042764', '1534328445'), ('3', '0', '/static/upload/images/goods_category/2018/08/20180814174638213368.png', '食品饮料', '每一道甜品都有一个故事', '美食天下之美', '#ff9229', '/static/upload/images/goods_category/2018/08/20180815153851693975.png', '1', '0', '1', '1529042764', '1534318785'), ('7', '0', '/static/upload/images/goods_category/2018/08/20180814174649846358.png', '个护化妆', '', '', '', '', '0', '0', '1', '1529042764', '1534240009'), ('52', '0', '/static/upload/images/goods_category/2018/08/20180814174659916405.png', '珠宝手表', '', '', '', '', '0', '0', '1', '1529042764', '1534240019'), ('53', '0', '/static/upload/images/goods_category/2018/08/20180814174708327545.png', '运动健康', '', '户外装备,应有尽有', '#53c0f3', '/static/upload/images/goods_category/2018/11/20/2018112015265213067.png', '1', '0', '1', '1529042764', '1542698812'), ('54', '0', '/static/upload/images/goods_category/2018/08/20180814174722490490.png', '汽车用品', '', '', '', '', '0', '0', '1', '1529042764', '1534240042'), ('55', '0', '/static/upload/images/goods_category/2018/08/20180814174732569726.png', '玩具乐器', '', '', '', '', '0', '0', '1', '1529042764', '1534240052'), ('56', '0', '/static/upload/images/goods_category/2018/08/20180814174748738821.png', '母婴用品', '', '', '', '', '0', '0', '1', '1529042764', '1534240068'), ('57', '0', '/static/upload/images/goods_category/2018/08/20180814174757134754.png', '生活服务', '', '', '', '', '0', '0', '1', '1529042764', '1534240077'), ('58', '1', '/static/upload/images/goods_category/2018/11/20/2018112015245128143.jpeg', '手机通讯', '', '', '', '', '1', '0', '1', '1529042764', '1542698691'), ('59', '1', '/static/upload/images/goods_category/2018/11/20/2018112015273175122.jpeg', '手机配件', '', '', '', '', '1', '0', '1', '1529042764', '1542698851'), ('60', '1', '/static/upload/images/goods_category/2018/11/20/2018112015252193663.jpeg', '摄影摄像', '', '', '', '', '1', '0', '1', '1529042764', '1542698721'), ('61', '1', '/static/upload/images/goods_category/2018/11/20/2018112015441996472.jpeg', '时尚影音', '', '', '', '', '1', '0', '1', '1529042764', '1542699859'), ('62', '1', '/static/upload/images/goods_category/2018/11/20/2018112015255390903.jpeg', '电脑整机', '', '', '', '', '1', '0', '1', '1529042764', '1542698753'), ('63', '1', '', '电脑配件', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('64', '1', '', '外设产品', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('65', '1', '', '网络产品', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('66', '1', '', '办公打印', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('67', '1', '', '办公文仪', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('68', '58', '', '手机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('69', '58', '', '合约机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('70', '58', '', '对讲机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('71', '59', '', '手机电池', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('72', '59', '', '蓝牙耳机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('73', '59', '', '充电器/数据线', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('74', '59', '', '手机耳机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('75', '59', '', '手机贴膜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('76', '59', '', '手机存储卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('77', '59', '', '手机保护套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('78', '59', '', '车载配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('79', '59', '', 'iPhone', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('80', '59', '', '配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('81', '59', '', '创意配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('82', '59', '', '便携/无线音响', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('83', '59', '', '手机饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('84', '60', '', '数码相机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('85', '60', '', '单电/微单相机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('86', '60', '', '单反相机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('87', '60', '', '摄像机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('88', '60', '', '拍立得', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('89', '60', '', '镜头', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('90', '102', '', '存储卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('91', '102', '', '读卡器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('92', '102', '', '滤镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('93', '102', '', '闪光灯/手柄', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('94', '102', '', '相机包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('95', '102', '', '三脚架/云台', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('96', '102', '', '相机清洁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('97', '102', '', '相机贴膜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('98', '102', '', '机身附件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('99', '102', '', '镜头附件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('100', '102', '', '电池/充电器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('101', '102', '', '移动电源', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('102', '1', '', '数码配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('103', '61', '', 'MP3/MP4', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('104', '61', '', '智能设备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('105', '61', '', '耳机/耳麦', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('106', '61', '', '音箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('107', '61', '', '高清播放器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('108', '61', '', '电子书', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('109', '61', '', '电子词典', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('110', '61', '', 'MP3/MP4配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('111', '61', '', '录音笔', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('112', '61', '', '麦克风', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('113', '61', '', '专业音频', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('114', '61', '', '电子教育', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('115', '61', '', '数码相框', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('116', '62', '', '笔记本', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('117', '62', '', '超极本', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('118', '62', '', '游戏本', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('119', '62', '', '平板电脑', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('120', '62', '', '平板电脑配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('121', '62', '', '台式机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('122', '62', '', '服务器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('123', '62', '', '笔记本配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('124', '63', '', 'CPU', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('125', '63', '', '主板', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('126', '63', '', '显卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('127', '63', '', '硬盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('128', '63', '', 'SSD固态硬盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('129', '63', '', '内存', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('130', '63', '', '机箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('131', '63', '', '电源', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('132', '63', '', '显示器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('133', '63', '', '刻录机/光驱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('134', '63', '', '散热器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('135', '63', '', '声卡/扩展卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('136', '63', '', '装机配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('137', '64', '', '鼠标', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('138', '64', '', '键盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('139', '64', '', '移动硬盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('140', '64', '', 'U盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('141', '64', '', '摄像头', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('142', '64', '', '外置盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('143', '64', '', '游戏设备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('144', '64', '', '电视盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('145', '64', '', '手写板', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('146', '64', '', '鼠标垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('147', '64', '', '插座', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('148', '64', '', 'UPS电源', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('149', '64', '', '线缆', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('150', '64', '', '电脑工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('151', '64', '', '电脑清洁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('152', '65', '', '路由器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('153', '65', '', '网卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('154', '65', '', '交换机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('155', '65', '', '网络存储', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('156', '65', '', '3G上网', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('157', '65', '', '网络盒子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('158', '66', '', '打印机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('159', '66', '', '一体机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('160', '66', '', '投影机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('161', '66', '', '投影配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('162', '66', '', '传真机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('163', '66', '', '复合机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('164', '66', '', '碎纸机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('165', '66', '', '扫描仪', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('166', '66', '', '墨盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('167', '66', '', '硒鼓', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('168', '66', '', '墨粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('169', '66', '', '色带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('170', '67', '', '办公文具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('171', '67', '', '文件管理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('172', '67', '', '笔类', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('173', '67', '', '纸类', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('174', '67', '', '本册/便签', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('175', '67', '', '学生文具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('176', '67', '', '财务用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('177', '67', '', '计算器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('178', '67', '', '激光笔', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('179', '67', '', '白板/封装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('180', '67', '', '考勤机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('181', '67', '', '刻录碟片/附件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('182', '67', '', '点钞机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('183', '67', '', '支付设备/POS机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('184', '67', '', '安防监控', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('185', '67', '', '呼叫/会议设备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('186', '67', '', '保险柜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('187', '67', '', '办公家具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('188', '2', '', '潮流女包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('189', '2', '', '时尚男包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('190', '2', '', '功能箱包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('191', '2', '', '礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('192', '2', '', '奢侈品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('193', '188', '', '钱包/卡包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('194', '188', '', '手拿包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('195', '188', '', '单肩包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('196', '188', '', '双肩包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('197', '188', '', '手提包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('198', '188', '', '斜挎包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('199', '189', '', '钱包/卡包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('200', '189', '', '男士手包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('201', '189', '', '腰带/礼盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('202', '189', '', '商务公文包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('203', '190', '', '电脑数码包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('204', '190', '', '拉杆箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('205', '190', '', '旅行包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('206', '190', '', '旅行配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('207', '190', '', '休闲运动包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('208', '190', '', '登山包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('209', '190', '', '妈咪包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('210', '190', '', '书包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('211', '191', '', '火机烟具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('212', '191', '', '礼品文具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('213', '191', '', '瑞士军刀', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('214', '191', '', '收藏品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('215', '191', '', '工艺礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('216', '191', '', '创意礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('217', '191', '', '礼卡礼卷', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('218', '191', '', '鲜花速递', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('219', '191', '', '婚庆用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('220', '192', '', '奢侈品箱包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('221', '192', '', '钱包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('222', '192', '', '服饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('223', '192', '', '腰带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('224', '192', '', '太阳镜眼镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('225', '192', '', '配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('226', '192', '', 'GUCCI', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('227', '192', '', 'PRADA', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('228', '192', '', 'FENDI', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('229', '192', '', 'BURBERRY', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('230', '192', '', 'MONTBLANC', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('231', '192', '', 'ARMANI', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('232', '192', '', 'RIMOWA', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('233', '192', '', 'RAY-BAN', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('234', '192', '', 'COACH', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('235', '192', '', '其它品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('236', '3', '', '进口食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('237', '3', '', '地方特产', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('238', '3', '', '休闲食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('239', '3', '', '粮油调味', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('240', '3', '', '中外名酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('241', '3', '', '饮料冲调', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('242', '3', '', '营养健康', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('243', '3', '', '亚健康调理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('244', '3', '', '健康礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('245', '3', '', '生鲜食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('246', '236', '', '饼干蛋糕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('247', '236', '', '糖果巧克力', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('248', '236', '', '休闲零食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('249', '236', '', '冲调饮品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('250', '236', '', '粮油调味', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('251', '237', '', '华北', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('252', '237', '', '西北', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('253', '237', '', '西南', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('254', '237', '', '东北', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('255', '237', '', '华南', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('256', '237', '', '华东', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('257', '237', '', '华中', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('258', '238', '', '休闲零食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('259', '238', '', '坚果炒货', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('260', '238', '', '肉干肉松', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('261', '238', '', '蜜饯果脯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('262', '238', '', '糖果/巧克力', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('263', '238', '', '饼干蛋糕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('264', '239', '', '米面杂粮', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('265', '239', '', '食用油', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('266', '239', '', '调味品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('267', '239', '', '南北干货', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('268', '239', '', '方便食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('269', '239', '', '有机食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('270', '240', '', '白酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('271', '240', '', '洋酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('272', '240', '', '葡萄酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('273', '240', '', '啤酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('274', '240', '', '黄酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('275', '241', '', '水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('276', '241', '', '饮料', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('277', '241', '', '牛奶', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('278', '241', '', '茶叶', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('279', '241', '', '咖啡/奶茶', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('280', '241', '', '冲饮谷物', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('281', '242', '', '基础营养', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('282', '242', '', '美体养颜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('283', '242', '', '滋补调养', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('284', '242', '', '骨骼健康', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('285', '242', '', '保健茶饮', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('286', '242', '', '成分保健', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('287', '242', '', '无糖食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('288', '243', '', '调节三高', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('289', '243', '', '心脑养护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('290', '243', '', '改善睡眠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('291', '243', '', '肝肾养护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('292', '243', '', '免疫调节', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('293', '243', '', '更多调理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('294', '244', '', '参茸礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('295', '244', '', '其它礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('296', '245', '', '水果', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('297', '245', '', '蔬菜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('298', '245', '', '海鲜水产', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('299', '245', '', '禽蛋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('300', '245', '', '鲜肉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('301', '245', '', '加工类肉食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('302', '245', '', '冻品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('303', '245', '', '半成品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('304', '2', '', '女装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('305', '2', '', '男装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('306', '2', '', '内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('307', '2', '', '运动', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('308', '2', '', '女鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('309', '2', '', '男鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('310', '2', '', '配饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('311', '2', '', '童装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('312', '304', '', 'T恤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('313', '304', '', '衬衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('314', '304', '', '针织衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('315', '304', '', '雪纺衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('316', '304', '', '卫衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('317', '304', '', '马甲', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('318', '304', '', '连衣裙', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('319', '304', '', '半身裙', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('320', '304', '', '牛仔裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('321', '304', '', '休闲裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('322', '304', '', '打底裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('323', '304', '', '正装裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('324', '304', '', '西服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('325', '304', '', '短外套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('326', '304', '', '风衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('327', '304', '', '大衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('328', '304', '', '皮衣皮草', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('329', '304', '', '棉服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('330', '304', '', '羽绒服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('331', '304', '', '孕妇装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('332', '304', '', '大码装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('333', '304', '', '中老年装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('334', '304', '', '婚纱礼服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('335', '304', '', '其它', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('336', '305', '', '衬衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('337', '305', '', 'T恤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('338', '305', '', 'POLO衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('339', '305', '', '针织衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('340', '305', '', '羊绒衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('341', '305', '', '卫衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('342', '305', '', '马甲/背心', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('343', '305', '', '夹克', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('344', '305', '', '风衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('345', '305', '', '大衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('346', '305', '', '皮衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('347', '305', '', '外套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('348', '305', '', '西服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('349', '305', '', '棉服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('350', '305', '', '羽绒服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('351', '305', '', '牛仔裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('352', '305', '', '休闲裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('353', '305', '', '西裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('354', '305', '', '西服套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('355', '305', '', '大码装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('356', '305', '', '中老年装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('357', '305', '', '唐装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('358', '305', '', '工装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('359', '306', '', '文胸', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('360', '306', '', '女式内裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('361', '306', '', '男式内裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('362', '306', '', '家居', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('363', '306', '', '睡衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('364', '306', '', '塑身衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('365', '306', '', '睡袍/浴袍', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('366', '306', '', '泳衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('367', '306', '', '背心', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('368', '306', '', '抹胸', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('369', '306', '', '连裤袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('370', '306', '', '美腿袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('371', '306', '', '男袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('372', '306', '', '女袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('373', '306', '', '情趣内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('374', '306', '', '保暖内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('375', '307', '', '休闲鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('376', '307', '', '帆布鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('377', '307', '', '跑步鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('378', '307', '', '篮球鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('379', '307', '', '足球鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('380', '307', '', '训练鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('381', '307', '', '乒羽鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('382', '307', '', '拖鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('383', '307', '', '卫衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('384', '307', '', '夹克', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('385', '307', '', 'T恤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('386', '307', '', '棉服/羽绒服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('387', '307', '', '运动裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('388', '307', '', '套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('389', '307', '', '运动包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('390', '307', '', '运动配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('391', '308', '', '平底鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('392', '308', '', '高跟鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('393', '308', '', '单鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('394', '308', '', '休闲鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('395', '308', '', '凉鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('396', '308', '', '女靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('397', '308', '', '雪地靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('398', '308', '', '拖鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('399', '308', '', '裸靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('400', '308', '', '筒靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('401', '308', '', '帆布鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('402', '308', '', '雨鞋/雨靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('403', '308', '', '妈妈鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('404', '308', '', '鞋配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('405', '308', '', '特色鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('406', '308', '', '鱼嘴鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('407', '308', '', '布鞋/绣花鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('408', '309', '', '商务休闲鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('409', '309', '', '正装鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('410', '309', '', '休闲鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('411', '309', '', '凉鞋/沙滩鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('412', '309', '', '男靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('413', '309', '', '功能鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('414', '309', '', '拖鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('415', '309', '', '传统布鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('416', '309', '', '鞋配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('417', '309', '', '帆布鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('418', '309', '', '豆豆鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('419', '309', '', '驾车鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('420', '310', '', '太阳镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('421', '310', '', '框镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('422', '310', '', '皮带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('423', '310', '', '围巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('424', '310', '', '手套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('425', '310', '', '帽子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('426', '310', '', '领带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('427', '310', '', '袖扣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('428', '310', '', '其他配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('429', '310', '', '丝巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('430', '310', '', '披肩', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('431', '310', '', '腰带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('432', '310', '', '腰链/腰封', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('433', '310', '', '棒球帽', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('434', '310', '', '毛线', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('435', '310', '', '遮阳帽', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('436', '310', '', '防紫外线手套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('437', '310', '', '草帽', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('438', '311', '', '套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('439', '311', '', '上衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('440', '311', '', '裤子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('441', '311', '', '裙子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('442', '311', '', '内衣/家居服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('443', '311', '', '羽绒服/棉服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('444', '311', '', '亲子装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('445', '311', '', '儿童配饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('446', '311', '', '礼服/演出服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('447', '311', '', '运动鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('448', '311', '', '单鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('449', '311', '', '靴子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('450', '311', '', '凉鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('451', '311', '', '功能鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('452', '7', '', '面部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('453', '7', '', '身体护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('454', '7', '', '口腔护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('455', '7', '', '女性护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('456', '7', '', '男士护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('457', '7', '', '魅力彩妆', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('458', '7', '', '香水SPA', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('459', '452', '', '洁面乳', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('460', '452', '', '爽肤水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('461', '452', '', '精华露', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('462', '452', '', '乳液面霜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('463', '452', '', '面膜面贴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('464', '452', '', '眼部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('465', '452', '', '颈部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('466', '452', '', 'T区护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('467', '452', '', '护肤套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('468', '452', '', '防晒隔离', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('469', '453', '', '洗发护发', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('470', '453', '', '染发/造型', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('471', '453', '', '沐浴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('472', '453', '', '磨砂/浴盐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('473', '453', '', '身体乳', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('474', '453', '', '手工/香皂', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('475', '453', '', '香薰精油', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('476', '453', '', '纤体瘦身', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('477', '453', '', '脱毛膏', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('478', '453', '', '手足护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('479', '453', '', '洗护套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('480', '454', '', '牙膏/牙粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('481', '454', '', '牙刷/牙线', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('482', '454', '', '漱口水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('483', '455', '', '卫生巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('484', '455', '', '卫生护垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('485', '455', '', '洗液', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('486', '455', '', '美容食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('487', '455', '', '其他', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('488', '456', '', '脸部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('489', '456', '', '眼部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('490', '456', '', '身体护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('491', '456', '', '男士香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('492', '456', '', '剃须护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('493', '456', '', '防脱洗护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('494', '456', '', '男士唇膏', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('495', '457', '', '粉底/遮瑕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('496', '457', '', '腮红', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('497', '457', '', '眼影/眼线', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('498', '457', '', '眉笔', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('499', '457', '', '睫毛膏', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('500', '457', '', '唇膏唇彩', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('501', '457', '', '彩妆组合', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('502', '457', '', '卸妆', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('503', '457', '', '美甲', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('504', '457', '', '彩妆工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('505', '457', '', '假发', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('506', '458', '', '女士香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('507', '458', '', '男士香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('508', '458', '', '组合套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('509', '458', '', '迷你香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('510', '458', '', '香体走珠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('511', '52', '', '时尚饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('512', '52', '', '纯金K金饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('513', '52', '', '金银投资', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('514', '52', '', '银饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('515', '52', '', '钻石饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('516', '52', '', '翡翠玉石', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('517', '52', '', '水晶玛瑙', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('518', '52', '', '宝石珍珠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('519', '52', '', '婚庆', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('520', '52', '', '钟表手表', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('521', '511', '', '项链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('522', '511', '', '手链/脚链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('523', '511', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('524', '511', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('525', '511', '', '头饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('526', '511', '', '胸针', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('527', '511', '', '婚庆饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('528', '511', '', '饰品配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('529', '512', '', '吊坠/项链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('530', '512', '', '手镯/手链/脚链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('531', '512', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('532', '512', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('533', '513', '', '工艺金', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('534', '513', '', '工艺银', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('535', '514', '', '吊坠/项链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('536', '514', '', '手镯/手链/脚链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('537', '514', '', '戒指/耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('538', '514', '', '宝宝金银', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('539', '514', '', '千足银', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('540', '515', '', '裸钻', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('541', '515', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('542', '515', '', '项链/吊坠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('543', '515', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('544', '515', '', '手镯/手链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('545', '516', '', '项链/吊坠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('546', '516', '', '手镯/手串', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('547', '516', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('548', '516', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('549', '516', '', '挂件/摆件/把件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('550', '516', '', '高值收藏', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('551', '517', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('552', '517', '', '手镯/手链/脚链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('553', '517', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('554', '517', '', '头饰/胸针', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('555', '517', '', '摆件/挂件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('556', '518', '', '项链/吊坠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('557', '518', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('558', '518', '', '手镯/手链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('559', '518', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('560', '519', '', '婚嫁首饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('561', '519', '', '婚纱摄影', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('562', '519', '', '婚纱礼服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('563', '519', '', '婚庆服务', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('564', '519', '', '婚庆礼品/用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('565', '519', '', '婚宴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('566', '520', '', '瑞士品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('567', '520', '', '国产品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('568', '520', '', '日本品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('569', '520', '', '时尚品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('570', '520', '', '闹钟挂钟', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('571', '520', '', '儿童手表', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('572', '53', '', '户外鞋服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('573', '53', '', '户外装备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('574', '53', '', '运动器械', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('575', '53', '', '纤体瑜伽', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('576', '53', '', '体育娱乐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('577', '53', '', '成人用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('578', '53', '', '保健器械', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('579', '53', '', '急救卫生', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('580', '572', '', '户外服装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('581', '572', '', '户外鞋袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('582', '572', '', '户外配饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('583', '573', '', '帐篷', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('584', '573', '', '睡袋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('585', '573', '', '登山攀岩', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('586', '573', '', '户外背包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('587', '573', '', '户外照明', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('588', '573', '', '户外垫子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('589', '573', '', '户外仪表', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('590', '573', '', '户外工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('591', '573', '', '望远镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('592', '573', '', '垂钓用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('593', '573', '', '旅游用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('594', '573', '', '便携桌椅床', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('595', '573', '', '烧烤用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('596', '573', '', '野餐炊具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('597', '573', '', '军迷用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('598', '573', '', '游泳用具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('599', '573', '', '泳衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('600', '574', '', '健身器械', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('601', '574', '', '运动器材', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('602', '574', '', '极限轮滑', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('603', '574', '', '骑行运动', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('604', '574', '', '运动护具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('605', '574', '', '武术搏击', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('606', '575', '', '瑜伽垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('607', '575', '', '瑜伽服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('608', '575', '', '瑜伽配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('609', '575', '', '瑜伽套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('610', '575', '', '舞蹈鞋服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('611', '576', '', '羽毛球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('612', '576', '', '乒乓球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('613', '576', '', '篮球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('614', '576', '', '足球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('615', '576', '', '网球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('616', '576', '', '排球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('617', '576', '', '高尔夫球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('618', '576', '', '棋牌麻将', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('619', '576', '', '其他', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('620', '577', '', '安全避孕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('621', '577', '', '验孕测孕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('622', '577', '', '人体润滑', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('623', '577', '', '情爱玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('624', '577', '', '情趣内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('625', '577', '', '组合套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('626', '578', '', '养生器械', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('627', '578', '', '保健用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('628', '578', '', '康复辅助', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('629', '578', '', '家庭护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('630', '579', '', '跌打损伤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('631', '579', '', '烫伤止痒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('632', '579', '', '防裂抗冻', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('633', '579', '', '口腔咽部', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('634', '579', '', '眼部保健', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('635', '579', '', '鼻炎健康', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('636', '579', '', '风湿骨痛', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('637', '579', '', '生殖泌尿', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('638', '579', '', '美体塑身', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('639', '54', '', '电子电器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('640', '54', '', '系统养护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('641', '54', '', '改装配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('642', '54', '', '汽车美容', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('643', '54', '', '座垫脚垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('644', '54', '', '内饰精品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('645', '54', '', '安全自驾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('646', '54', '', '整车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('647', '639', '', '便携GPS导航', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('648', '639', '', '嵌入式导航', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('649', '639', '', '安全预警仪', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('650', '639', '', '行车记录仪', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('651', '639', '', '跟踪防盗器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('652', '639', '', '倒车雷达', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('653', '639', '', '车载电源', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('654', '639', '', '车载蓝牙', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('655', '639', '', '车载影音', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('656', '639', '', '车载净化器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('657', '639', '', '车载冰箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('658', '639', '', '车载吸尘器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('659', '639', '', '充气泵', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('660', '639', '', '胎压监测', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('661', '639', '', '车载生活电器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('662', '640', '', '机油', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('663', '640', '', '添加剂', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('664', '640', '', '防冻冷却液', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('665', '640', '', '附属油', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('666', '640', '', '底盘装甲', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('667', '640', '', '空调清洗剂', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('668', '640', '', '金属养护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('669', '641', '', '雨刷', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('670', '641', '', '车灯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('671', '641', '', '轮胎', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('672', '641', '', '贴膜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('673', '641', '', '装饰贴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('674', '641', '', '后视镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('675', '641', '', '机油滤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('676', '641', '', '空气滤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('677', '641', '', '空调滤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('678', '641', '', '燃油滤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('679', '641', '', '火花塞', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('680', '641', '', '喇叭', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('681', '641', '', '刹车片', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('682', '641', '', '刹车盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('683', '641', '', '减震器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('684', '641', '', '车身装饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('685', '641', '', '尾喉/排气管', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('686', '641', '', '踏板', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('687', '641', '', '蓄电池', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('688', '641', '', '其他配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('689', '642', '', '漆面美容', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('690', '642', '', '漆面修复', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('691', '642', '', '内饰清洁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('692', '642', '', '玻璃美容', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('693', '642', '', '补漆笔', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('694', '642', '', '轮胎轮毂清洗', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('695', '642', '', '洗车器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('696', '642', '', '洗车水枪', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('697', '642', '', '洗车配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('698', '642', '', '洗车液', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('699', '642', '', '车掸', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('700', '642', '', '擦车巾/海绵', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('701', '643', '', '凉垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('702', '643', '', '四季垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('703', '643', '', '毛垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('704', '643', '', '专车专用座垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('705', '643', '', '专车专用座套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('706', '643', '', '通用座套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('707', '643', '', '多功能垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('708', '643', '', '专车专用脚垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('709', '643', '', '通用脚垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('710', '643', '', '后备箱垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('711', '644', '', '车用香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('712', '644', '', '车用炭包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('713', '644', '', '空气净化', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('714', '644', '', '颈枕/头枕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('715', '644', '', '抱枕/腰靠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('716', '644', '', '方向盘套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('717', '644', '', '挂件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('718', '644', '', '摆件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('719', '644', '', '布艺软饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('720', '644', '', '功能用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('721', '644', '', '整理收纳', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('722', '644', '', 'CD夹', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('723', '645', '', '儿童安全座椅', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('724', '645', '', '应急救援', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('725', '645', '', '汽修工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('726', '645', '', '自驾野营', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('727', '645', '', '自驾照明', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('728', '645', '', '保温箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('729', '645', '', '置物箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('730', '645', '', '车衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('731', '645', '', '遮阳挡雪挡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('732', '645', '', '车锁地锁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('733', '645', '', '摩托车装备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('734', '646', '', '新车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('735', '646', '', '二手车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('736', '55', '', '适用年龄', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('737', '55', '', '遥控/电动', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('738', '55', '', '毛绒布艺', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('739', '55', '', '娃娃玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('740', '55', '', '模型玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('741', '55', '', '健身玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('742', '55', '', '动漫玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('743', '55', '', '益智玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('744', '55', '', '积木拼插', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('745', '55', '', 'DIY玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('746', '55', '', '创意减压', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('747', '55', '', '乐器相关', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('748', '736', '', '0-6个月', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('749', '736', '', '6-12个月', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('750', '736', '', '1-3岁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('751', '736', '', '3-6岁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('752', '736', '', '6-14岁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('753', '736', '', '14岁以上', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('754', '737', '', '遥控车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('755', '737', '', '遥控飞机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('756', '737', '', '遥控船', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('757', '737', '', '机器人/电动', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('758', '737', '', '轨道/助力', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('759', '738', '', '毛绒/布艺', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('760', '738', '', '靠垫/抱枕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('761', '739', '', '芭比娃娃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('762', '739', '', '卡通娃娃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('763', '739', '', '智能娃娃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('764', '740', '', '仿真模型', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('765', '740', '', '拼插模型', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('766', '740', '', '收藏爱好', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('767', '741', '', '炫舞毯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('768', '741', '', '爬行垫/毯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('769', '741', '', '户外玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('770', '741', '', '戏水玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('771', '742', '', '电影周边', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('772', '742', '', '卡通周边', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('773', '742', '', '网游周边', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('774', '743', '', '摇铃/床铃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('775', '743', '', '健身架', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('776', '743', '', '早教启智', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('777', '743', '', '拖拉玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('778', '744', '', '积木', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('779', '744', '', '拼图', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('780', '744', '', '磁力棒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('781', '744', '', '立体拼插', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('782', '745', '', '手工彩泥', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('783', '745', '', '绘画工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('784', '745', '', '情景玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('785', '746', '', '减压玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('786', '746', '', '创意玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('787', '747', '', '钢琴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('788', '747', '', '电子琴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('789', '747', '', '手风琴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('790', '747', '', '吉他/贝斯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('791', '747', '', '民族管弦乐器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('792', '747', '', '西洋管弦乐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('793', '747', '', '口琴/口风琴/竖笛', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('794', '747', '', '西洋打击乐器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('795', '747', '', '各式乐器配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('796', '747', '', '电脑音乐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('797', '747', '', '工艺礼品乐器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('798', '56', '', '奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('799', '56', '', '营养辅食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('800', '56', '', '尿裤湿巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('801', '56', '', '喂养用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('802', '56', '', '洗护用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('803', '56', '', '童车童床', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('804', '56', '', '服饰寝居', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('805', '56', '', '妈妈专区', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('806', '798', '', '品牌奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('807', '798', '', '妈妈奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('808', '798', '', '1段奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('809', '798', '', '2段奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('810', '798', '', '3段奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('811', '798', '', '4段奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('812', '798', '', '羊奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('813', '798', '', '特殊配方', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('814', '798', '', '成人奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('815', '799', '', '婴幼营养', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('816', '799', '', '初乳', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('817', '799', '', '米粉/菜粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('818', '799', '', '果泥/果汁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('819', '799', '', '肉松/饼干', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('820', '799', '', '辅食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('821', '799', '', '孕期营养', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('822', '799', '', '清火/开胃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('823', '799', '', '面条/粥', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('824', '800', '', '品牌尿裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('825', '800', '', '新生儿', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('826', '800', '', 'S号', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('827', '800', '', 'M号', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('828', '800', '', 'L号', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('829', '800', '', 'XL/XXL号', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('830', '800', '', '裤型尿裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('831', '800', '', '湿巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('832', '800', '', '尿布/尿垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('833', '800', '', '成人尿裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('834', '801', '', '奶瓶', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('835', '801', '', '奶嘴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('836', '801', '', '吸奶器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('837', '801', '', '暖奶/消毒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('838', '801', '', '餐具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('839', '801', '', '水具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('840', '801', '', '牙胶/安抚', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('841', '801', '', '辅助用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('842', '802', '', '宝宝护肤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('843', '802', '', '洗浴用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('844', '802', '', '洗发沐浴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('845', '802', '', '清洁用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('846', '802', '', '护理用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('847', '802', '', '妈妈护肤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('848', '803', '', '婴儿推车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('849', '803', '', '餐椅摇椅', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('850', '803', '', '婴儿床', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('851', '803', '', '学步车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('852', '803', '', '三轮车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('853', '803', '', '自行车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('854', '803', '', '电动车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('855', '803', '', '健身车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('856', '803', '', '安全座椅', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('857', '804', '', '婴儿外出服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('858', '804', '', '婴儿内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('859', '804', '', '婴儿礼盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('860', '804', '', '婴儿鞋帽袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('861', '804', '', '安全防护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('862', '804', '', '家居床品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('863', '804', '', '其他', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('864', '805', '', '包/背婴带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('865', '805', '', '妈妈护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('866', '805', '', '产后塑身', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('867', '805', '', '孕妇内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('868', '805', '', '防辐射服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('869', '805', '', '孕妇装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('870', '805', '', '孕妇食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('871', '805', '', '妈妈美容', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('872', '57', '', '餐饮娱乐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('873', '57', '', '婚纱旅游', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('874', '57', '', '便民充值', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('875', '57', '', '游戏充值', '', '', '', '', '1', '0', '1', '1529042764', '0'); +INSERT INTO `s_goods_category` VALUES ('1', '0', '/static/upload/images/goods_category/2018/08/20180814174251211789.png', '数码办公', '天天新品,科技带来快乐!', 'iphoneX新品发布了', '#ffe4ed', '/static/upload/images/goods_category/2018/08/20180814180843848554.png', '1', '0', '1', '1529042764', '1545321834'), ('2', '0', '/static/upload/images/goods_category/2018/08/20180814174311166703.png', '服饰鞋包', '', '', '#b0a9d5', '/static/upload/images/goods_category/2018/08/20180815182045222850.png', '1', '0', '1', '1529042764', '1534328445'), ('3', '0', '/static/upload/images/goods_category/2018/08/20180814174638213368.png', '食品饮料', '每一道甜品都有一个故事', '美食天下之美', '#ff9229', '/static/upload/images/goods_category/2018/08/20180815153851693975.png', '1', '0', '1', '1529042764', '1534318785'), ('7', '0', '/static/upload/images/goods_category/2018/08/20180814174649846358.png', '个护化妆', '', '', '', '', '0', '0', '1', '1529042764', '1534240009'), ('52', '0', '/static/upload/images/goods_category/2018/08/20180814174659916405.png', '珠宝手表', '', '', '', '', '0', '0', '1', '1529042764', '1534240019'), ('53', '0', '/static/upload/images/goods_category/2018/08/20180814174708327545.png', '运动健康', '', '户外装备,应有尽有', '#53c0f3', '/static/upload/images/goods_category/2018/11/20/2018112015265213067.png', '1', '0', '1', '1529042764', '1542698812'), ('54', '0', '/static/upload/images/goods_category/2018/08/20180814174722490490.png', '汽车用品', '', '', '', '', '0', '0', '1', '1529042764', '1534240042'), ('55', '0', '/static/upload/images/goods_category/2018/08/20180814174732569726.png', '玩具乐器', '', '', '', '', '0', '0', '1', '1529042764', '1534240052'), ('56', '0', '/static/upload/images/goods_category/2018/08/20180814174748738821.png', '母婴用品', '', '', '', '', '0', '0', '1', '1529042764', '1534240068'), ('57', '0', '/static/upload/images/goods_category/2018/08/20180814174757134754.png', '生活服务', '', '', '', '', '0', '0', '1', '1529042764', '1534240077'), ('58', '1', '/static/upload/images/goods_category/2018/11/20/2018112015245128143.jpeg', '手机通讯', '', '', '', '', '1', '0', '1', '1529042764', '1542698691'), ('59', '1', '/static/upload/images/goods_category/2018/11/20/2018112015273175122.jpeg', '手机配件', '', '', '', '', '1', '0', '1', '1529042764', '1542698851'), ('60', '1', '/static/upload/images/goods_category/2018/11/20/2018112015252193663.jpeg', '摄影摄像', '', '', '', '', '1', '0', '1', '1529042764', '1542698721'), ('61', '1', '/static/upload/images/goods_category/2018/11/20/2018112015441996472.jpeg', '时尚影音', '', '', '', '', '1', '0', '1', '1529042764', '1542699859'), ('62', '1', '/static/upload/images/goods_category/2018/11/20/2018112015255390903.jpeg', '电脑整机', '', '', '', '', '1', '0', '1', '1529042764', '1542698753'), ('63', '1', '', '电脑配件', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('64', '1', '', '外设产品', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('65', '1', '', '网络产品', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('66', '1', '', '办公打印', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('67', '1', '', '办公文仪', '', '', '', '', '1', '0', '1', '1529042764', '1534240077'), ('68', '58', '', '手机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('69', '58', '', '合约机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('70', '58', '', '对讲机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('71', '59', '', '手机电池', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('72', '59', '', '蓝牙耳机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('73', '59', '', '充电器/数据线', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('74', '59', '', '手机耳机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('75', '59', '', '手机贴膜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('76', '59', '', '手机存储卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('77', '59', '', '手机保护套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('78', '59', '', '车载配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('79', '59', '', 'iPhone', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('80', '59', '', '配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('81', '59', '', '创意配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('82', '59', '', '便携/无线音响', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('83', '59', '', '手机饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('84', '60', '', '数码相机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('85', '60', '', '单电/微单相机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('86', '60', '', '单反相机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('87', '60', '', '摄像机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('88', '60', '', '拍立得', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('89', '60', '', '镜头', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('90', '102', '', '存储卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('91', '102', '', '读卡器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('92', '102', '', '滤镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('93', '102', '', '闪光灯/手柄', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('94', '102', '', '相机包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('95', '102', '', '三脚架/云台', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('96', '102', '', '相机清洁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('97', '102', '', '相机贴膜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('98', '102', '', '机身附件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('99', '102', '', '镜头附件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('100', '102', '', '电池/充电器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('101', '102', '', '移动电源', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('102', '1', '', '数码配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('103', '61', '', 'MP3/MP4', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('104', '61', '', '智能设备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('105', '61', '', '耳机/耳麦', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('106', '61', '', '音箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('107', '61', '', '高清播放器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('108', '61', '', '电子书', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('109', '61', '', '电子词典', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('110', '61', '', 'MP3/MP4配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('111', '61', '', '录音笔', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('112', '61', '', '麦克风', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('113', '61', '', '专业音频', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('114', '61', '', '电子教育', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('115', '61', '', '数码相框', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('116', '62', '', '笔记本', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('117', '62', '', '超极本', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('118', '62', '', '游戏本', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('119', '62', '', '平板电脑', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('120', '62', '', '平板电脑配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('121', '62', '', '台式机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('122', '62', '', '服务器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('123', '62', '', '笔记本配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('124', '63', '', 'CPU', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('125', '63', '', '主板', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('126', '63', '', '显卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('127', '63', '', '硬盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('128', '63', '', 'SSD固态硬盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('129', '63', '', '内存', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('130', '63', '', '机箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('131', '63', '', '电源', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('132', '63', '', '显示器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('133', '63', '', '刻录机/光驱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('134', '63', '', '散热器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('135', '63', '', '声卡/扩展卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('136', '63', '', '装机配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('137', '64', '', '鼠标', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('138', '64', '', '键盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('139', '64', '', '移动硬盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('140', '64', '', 'U盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('141', '64', '', '摄像头', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('142', '64', '', '外置盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('143', '64', '', '游戏设备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('144', '64', '', '电视盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('145', '64', '', '手写板', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('146', '64', '', '鼠标垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('147', '64', '', '插座', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('148', '64', '', 'UPS电源', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('149', '64', '', '线缆', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('150', '64', '', '电脑工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('151', '64', '', '电脑清洁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('152', '65', '', '路由器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('153', '65', '', '网卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('154', '65', '', '交换机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('155', '65', '', '网络存储', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('156', '65', '', '3G上网', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('157', '65', '', '网络盒子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('158', '66', '', '打印机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('159', '66', '', '一体机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('160', '66', '', '投影机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('161', '66', '', '投影配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('162', '66', '', '传真机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('163', '66', '', '复合机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('164', '66', '', '碎纸机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('165', '66', '', '扫描仪', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('166', '66', '', '墨盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('167', '66', '', '硒鼓', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('168', '66', '', '墨粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('169', '66', '', '色带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('170', '67', '', '办公文具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('171', '67', '', '文件管理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('172', '67', '', '笔类', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('173', '67', '', '纸类', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('174', '67', '', '本册/便签', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('175', '67', '', '学生文具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('176', '67', '', '财务用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('177', '67', '', '计算器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('178', '67', '', '激光笔', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('179', '67', '', '白板/封装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('180', '67', '', '考勤机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('181', '67', '', '刻录碟片/附件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('182', '67', '', '点钞机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('183', '67', '', '支付设备/POS机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('184', '67', '', '安防监控', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('185', '67', '', '呼叫/会议设备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('186', '67', '', '保险柜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('187', '67', '', '办公家具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('188', '2', '', '潮流女包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('189', '2', '', '时尚男包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('190', '2', '', '功能箱包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('191', '2', '', '礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('192', '2', '', '奢侈品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('193', '188', '', '钱包/卡包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('194', '188', '', '手拿包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('195', '188', '', '单肩包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('196', '188', '', '双肩包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('197', '188', '', '手提包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('198', '188', '', '斜挎包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('199', '189', '', '钱包/卡包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('200', '189', '', '男士手包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('201', '189', '', '腰带/礼盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('202', '189', '', '商务公文包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('203', '190', '', '电脑数码包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('204', '190', '', '拉杆箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('205', '190', '', '旅行包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('206', '190', '', '旅行配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('207', '190', '', '休闲运动包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('208', '190', '', '登山包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('209', '190', '', '妈咪包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('210', '190', '', '书包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('211', '191', '', '火机烟具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('212', '191', '', '礼品文具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('213', '191', '', '瑞士军刀', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('214', '191', '', '收藏品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('215', '191', '', '工艺礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('216', '191', '', '创意礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('217', '191', '', '礼卡礼卷', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('218', '191', '', '鲜花速递', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('219', '191', '', '婚庆用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('220', '192', '', '奢侈品箱包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('221', '192', '', '钱包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('222', '192', '', '服饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('223', '192', '', '腰带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('224', '192', '', '太阳镜眼镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('225', '192', '', '配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('226', '192', '', 'GUCCI', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('227', '192', '', 'PRADA', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('228', '192', '', 'FENDI', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('229', '192', '', 'BURBERRY', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('230', '192', '', 'MONTBLANC', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('231', '192', '', 'ARMANI', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('232', '192', '', 'RIMOWA', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('233', '192', '', 'RAY-BAN', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('234', '192', '', 'COACH', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('235', '192', '', '其它品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('236', '3', '', '进口食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('237', '3', '', '地方特产', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('238', '3', '', '休闲食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('239', '3', '', '粮油调味', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('240', '3', '', '中外名酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('241', '3', '', '饮料冲调', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('242', '3', '', '营养健康', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('243', '3', '', '亚健康调理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('244', '3', '', '健康礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('245', '3', '', '生鲜食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('246', '236', '', '饼干蛋糕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('247', '236', '', '糖果巧克力', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('248', '236', '', '休闲零食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('249', '236', '', '冲调饮品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('250', '236', '', '粮油调味', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('251', '237', '', '华北', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('252', '237', '', '西北', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('253', '237', '', '西南', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('254', '237', '', '东北', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('255', '237', '', '华南', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('256', '237', '', '华东', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('257', '237', '', '华中', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('258', '238', '', '休闲零食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('259', '238', '', '坚果炒货', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('260', '238', '', '肉干肉松', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('261', '238', '', '蜜饯果脯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('262', '238', '', '糖果/巧克力', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('263', '238', '', '饼干蛋糕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('264', '239', '', '米面杂粮', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('265', '239', '', '食用油', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('266', '239', '', '调味品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('267', '239', '', '南北干货', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('268', '239', '', '方便食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('269', '239', '', '有机食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('270', '240', '', '白酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('271', '240', '', '洋酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('272', '240', '', '葡萄酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('273', '240', '', '啤酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('274', '240', '', '黄酒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('275', '241', '', '水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('276', '241', '', '饮料', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('277', '241', '', '牛奶', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('278', '241', '', '茶叶', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('279', '241', '', '咖啡/奶茶', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('280', '241', '', '冲饮谷物', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('281', '242', '', '基础营养', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('282', '242', '', '美体养颜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('283', '242', '', '滋补调养', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('284', '242', '', '骨骼健康', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('285', '242', '', '保健茶饮', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('286', '242', '', '成分保健', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('287', '242', '', '无糖食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('288', '243', '', '调节三高', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('289', '243', '', '心脑养护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('290', '243', '', '改善睡眠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('291', '243', '', '肝肾养护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('292', '243', '', '免疫调节', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('293', '243', '', '更多调理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('294', '244', '', '参茸礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('295', '244', '', '其它礼品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('296', '245', '', '水果', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('297', '245', '', '蔬菜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('298', '245', '', '海鲜水产', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('299', '245', '', '禽蛋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('300', '245', '', '鲜肉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('301', '245', '', '加工类肉食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('302', '245', '', '冻品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('303', '245', '', '半成品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('304', '2', '', '女装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('305', '2', '', '男装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('306', '2', '', '内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('307', '2', '', '运动', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('308', '2', '', '女鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('309', '2', '', '男鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('310', '2', '', '配饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('311', '2', '', '童装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('312', '304', '', 'T恤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('313', '304', '', '衬衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('314', '304', '', '针织衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('315', '304', '', '雪纺衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('316', '304', '', '卫衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('317', '304', '', '马甲', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('318', '304', '', '连衣裙', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('319', '304', '', '半身裙', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('320', '304', '', '牛仔裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('321', '304', '', '休闲裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('322', '304', '', '打底裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('323', '304', '', '正装裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('324', '304', '', '西服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('325', '304', '', '短外套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('326', '304', '', '风衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('327', '304', '', '大衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('328', '304', '', '皮衣皮草', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('329', '304', '', '棉服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('330', '304', '', '羽绒服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('331', '304', '', '孕妇装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('332', '304', '', '大码装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('333', '304', '', '中老年装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('334', '304', '', '婚纱礼服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('335', '304', '', '其它', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('336', '305', '', '衬衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('337', '305', '', 'T恤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('338', '305', '', 'POLO衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('339', '305', '', '针织衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('340', '305', '', '羊绒衫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('341', '305', '', '卫衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('342', '305', '', '马甲/背心', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('343', '305', '', '夹克', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('344', '305', '', '风衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('345', '305', '', '大衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('346', '305', '', '皮衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('347', '305', '', '外套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('348', '305', '', '西服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('349', '305', '', '棉服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('350', '305', '', '羽绒服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('351', '305', '', '牛仔裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('352', '305', '', '休闲裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('353', '305', '', '西裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('354', '305', '', '西服套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('355', '305', '', '大码装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('356', '305', '', '中老年装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('357', '305', '', '唐装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('358', '305', '', '工装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('359', '306', '', '文胸', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('360', '306', '', '女式内裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('361', '306', '', '男式内裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('362', '306', '', '家居', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('363', '306', '', '睡衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('364', '306', '', '塑身衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('365', '306', '', '睡袍/浴袍', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('366', '306', '', '泳衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('367', '306', '', '背心', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('368', '306', '', '抹胸', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('369', '306', '', '连裤袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('370', '306', '', '美腿袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('371', '306', '', '男袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('372', '306', '', '女袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('373', '306', '', '情趣内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('374', '306', '', '保暖内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('375', '307', '', '休闲鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('376', '307', '', '帆布鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('377', '307', '', '跑步鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('378', '307', '', '篮球鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('379', '307', '', '足球鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('380', '307', '', '训练鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('381', '307', '', '乒羽鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('382', '307', '', '拖鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('383', '307', '', '卫衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('384', '307', '', '夹克', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('385', '307', '', 'T恤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('386', '307', '', '棉服/羽绒服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('387', '307', '', '运动裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('388', '307', '', '套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('389', '307', '', '运动包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('390', '307', '', '运动配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('391', '308', '', '平底鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('392', '308', '', '高跟鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('393', '308', '', '单鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('394', '308', '', '休闲鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('395', '308', '', '凉鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('396', '308', '', '女靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('397', '308', '', '雪地靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('398', '308', '', '拖鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('399', '308', '', '裸靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('400', '308', '', '筒靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('401', '308', '', '帆布鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('402', '308', '', '雨鞋/雨靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('403', '308', '', '妈妈鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('404', '308', '', '鞋配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('405', '308', '', '特色鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('406', '308', '', '鱼嘴鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('407', '308', '', '布鞋/绣花鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('408', '309', '', '商务休闲鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('409', '309', '', '正装鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('410', '309', '', '休闲鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('411', '309', '', '凉鞋/沙滩鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('412', '309', '', '男靴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('413', '309', '', '功能鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('414', '309', '', '拖鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('415', '309', '', '传统布鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('416', '309', '', '鞋配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('417', '309', '', '帆布鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('418', '309', '', '豆豆鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('419', '309', '', '驾车鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('420', '310', '', '太阳镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('421', '310', '', '框镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('422', '310', '', '皮带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('423', '310', '', '围巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('424', '310', '', '手套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('425', '310', '', '帽子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('426', '310', '', '领带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('427', '310', '', '袖扣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('428', '310', '', '其他配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('429', '310', '', '丝巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('430', '310', '', '披肩', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('431', '310', '', '腰带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('432', '310', '', '腰链/腰封', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('433', '310', '', '棒球帽', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('434', '310', '', '毛线', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('435', '310', '', '遮阳帽', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('436', '310', '', '防紫外线手套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('437', '310', '', '草帽', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('438', '311', '', '套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('439', '311', '', '上衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('440', '311', '', '裤子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('441', '311', '', '裙子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('442', '311', '', '内衣/家居服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('443', '311', '', '羽绒服/棉服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('444', '311', '', '亲子装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('445', '311', '', '儿童配饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('446', '311', '', '礼服/演出服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('447', '311', '', '运动鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('448', '311', '', '单鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('449', '311', '', '靴子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('450', '311', '', '凉鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('451', '311', '', '功能鞋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('452', '7', '', '面部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('453', '7', '', '身体护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('454', '7', '', '口腔护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('455', '7', '', '女性护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('456', '7', '', '男士护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('457', '7', '', '魅力彩妆', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('458', '7', '', '香水SPA', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('459', '452', '', '洁面乳', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('460', '452', '', '爽肤水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('461', '452', '', '精华露', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('462', '452', '', '乳液面霜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('463', '452', '', '面膜面贴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('464', '452', '', '眼部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('465', '452', '', '颈部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('466', '452', '', 'T区护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('467', '452', '', '护肤套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('468', '452', '', '防晒隔离', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('469', '453', '', '洗发护发', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('470', '453', '', '染发/造型', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('471', '453', '', '沐浴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('472', '453', '', '磨砂/浴盐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('473', '453', '', '身体乳', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('474', '453', '', '手工/香皂', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('475', '453', '', '香薰精油', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('476', '453', '', '纤体瘦身', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('477', '453', '', '脱毛膏', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('478', '453', '', '手足护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('479', '453', '', '洗护套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('480', '454', '', '牙膏/牙粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('481', '454', '', '牙刷/牙线', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('482', '454', '', '漱口水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('483', '455', '', '卫生巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('484', '455', '', '卫生护垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('485', '455', '', '洗液', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('486', '455', '', '美容食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('487', '455', '', '其他', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('488', '456', '', '脸部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('489', '456', '', '眼部护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('490', '456', '', '身体护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('491', '456', '', '男士香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('492', '456', '', '剃须护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('493', '456', '', '防脱洗护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('494', '456', '', '男士唇膏', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('495', '457', '', '粉底/遮瑕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('496', '457', '', '腮红', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('497', '457', '', '眼影/眼线', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('498', '457', '', '眉笔', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('499', '457', '', '睫毛膏', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('500', '457', '', '唇膏唇彩', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('501', '457', '', '彩妆组合', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('502', '457', '', '卸妆', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('503', '457', '', '美甲', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('504', '457', '', '彩妆工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('505', '457', '', '假发', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('506', '458', '', '女士香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('507', '458', '', '男士香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('508', '458', '', '组合套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('509', '458', '', '迷你香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('510', '458', '', '香体走珠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('511', '52', '', '时尚饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('512', '52', '', '纯金K金饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('513', '52', '', '金银投资', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('514', '52', '', '银饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('515', '52', '', '钻石饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('516', '52', '', '翡翠玉石', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('517', '52', '', '水晶玛瑙', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('518', '52', '', '宝石珍珠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('519', '52', '', '婚庆', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('520', '52', '', '钟表手表', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('521', '511', '', '项链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('522', '511', '', '手链/脚链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('523', '511', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('524', '511', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('525', '511', '', '头饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('526', '511', '', '胸针', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('527', '511', '', '婚庆饰品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('528', '511', '', '饰品配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('529', '512', '', '吊坠/项链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('530', '512', '', '手镯/手链/脚链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('531', '512', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('532', '512', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('533', '513', '', '工艺金', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('534', '513', '', '工艺银', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('535', '514', '', '吊坠/项链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('536', '514', '', '手镯/手链/脚链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('537', '514', '', '戒指/耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('538', '514', '', '宝宝金银', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('539', '514', '', '千足银', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('540', '515', '', '裸钻', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('541', '515', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('542', '515', '', '项链/吊坠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('543', '515', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('544', '515', '', '手镯/手链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('545', '516', '', '项链/吊坠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('546', '516', '', '手镯/手串', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('547', '516', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('548', '516', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('549', '516', '', '挂件/摆件/把件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('550', '516', '', '高值收藏', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('551', '517', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('552', '517', '', '手镯/手链/脚链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('553', '517', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('554', '517', '', '头饰/胸针', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('555', '517', '', '摆件/挂件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('556', '518', '', '项链/吊坠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('557', '518', '', '耳饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('558', '518', '', '手镯/手链', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('559', '518', '', '戒指', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('560', '519', '', '婚嫁首饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('561', '519', '', '婚纱摄影', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('562', '519', '', '婚纱礼服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('563', '519', '', '婚庆服务', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('564', '519', '', '婚庆礼品/用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('565', '519', '', '婚宴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('566', '520', '', '瑞士品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('567', '520', '', '国产品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('568', '520', '', '日本品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('569', '520', '', '时尚品牌', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('570', '520', '', '闹钟挂钟', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('571', '520', '', '儿童手表', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('572', '53', '', '户外鞋服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('573', '53', '', '户外装备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('574', '53', '', '运动器械', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('575', '53', '', '纤体瑜伽', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('576', '53', '', '体育娱乐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('577', '53', '', '成人用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('578', '53', '', '保健器械', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('579', '53', '', '急救卫生', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('580', '572', '', '户外服装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('581', '572', '', '户外鞋袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('582', '572', '', '户外配饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('583', '573', '', '帐篷', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('584', '573', '', '睡袋', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('585', '573', '', '登山攀岩', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('586', '573', '', '户外背包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('587', '573', '', '户外照明', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('588', '573', '', '户外垫子', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('589', '573', '', '户外仪表', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('590', '573', '', '户外工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('591', '573', '', '望远镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('592', '573', '', '垂钓用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('593', '573', '', '旅游用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('594', '573', '', '便携桌椅床', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('595', '573', '', '烧烤用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('596', '573', '', '野餐炊具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('597', '573', '', '军迷用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('598', '573', '', '游泳用具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('599', '573', '', '泳衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('600', '574', '', '健身器械', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('601', '574', '', '运动器材', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('602', '574', '', '极限轮滑', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('603', '574', '', '骑行运动', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('604', '574', '', '运动护具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('605', '574', '', '武术搏击', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('606', '575', '', '瑜伽垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('607', '575', '', '瑜伽服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('608', '575', '', '瑜伽配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('609', '575', '', '瑜伽套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('610', '575', '', '舞蹈鞋服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('611', '576', '', '羽毛球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('612', '576', '', '乒乓球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('613', '576', '', '篮球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('614', '576', '', '足球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('615', '576', '', '网球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('616', '576', '', '排球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('617', '576', '', '高尔夫球', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('618', '576', '', '棋牌麻将', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('619', '576', '', '其他', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('620', '577', '', '安全避孕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('621', '577', '', '验孕测孕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('622', '577', '', '人体润滑', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('623', '577', '', '情爱玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('624', '577', '', '情趣内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('625', '577', '', '组合套装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('626', '578', '', '养生器械', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('627', '578', '', '保健用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('628', '578', '', '康复辅助', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('629', '578', '', '家庭护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('630', '579', '', '跌打损伤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('631', '579', '', '烫伤止痒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('632', '579', '', '防裂抗冻', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('633', '579', '', '口腔咽部', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('634', '579', '', '眼部保健', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('635', '579', '', '鼻炎健康', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('636', '579', '', '风湿骨痛', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('637', '579', '', '生殖泌尿', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('638', '579', '', '美体塑身', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('639', '54', '', '电子电器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('640', '54', '', '系统养护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('641', '54', '', '改装配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('642', '54', '', '汽车美容', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('643', '54', '', '座垫脚垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('644', '54', '', '内饰精品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('645', '54', '', '安全自驾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('646', '54', '', '整车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('647', '639', '', '便携GPS导航', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('648', '639', '', '嵌入式导航', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('649', '639', '', '安全预警仪', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('650', '639', '', '行车记录仪', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('651', '639', '', '跟踪防盗器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('652', '639', '', '倒车雷达', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('653', '639', '', '车载电源', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('654', '639', '', '车载蓝牙', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('655', '639', '', '车载影音', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('656', '639', '', '车载净化器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('657', '639', '', '车载冰箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('658', '639', '', '车载吸尘器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('659', '639', '', '充气泵', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('660', '639', '', '胎压监测', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('661', '639', '', '车载生活电器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('662', '640', '', '机油', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('663', '640', '', '添加剂', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('664', '640', '', '防冻冷却液', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('665', '640', '', '附属油', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('666', '640', '', '底盘装甲', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('667', '640', '', '空调清洗剂', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('668', '640', '', '金属养护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('669', '641', '', '雨刷', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('670', '641', '', '车灯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('671', '641', '', '轮胎', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('672', '641', '', '贴膜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('673', '641', '', '装饰贴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('674', '641', '', '后视镜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('675', '641', '', '机油滤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('676', '641', '', '空气滤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('677', '641', '', '空调滤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('678', '641', '', '燃油滤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('679', '641', '', '火花塞', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('680', '641', '', '喇叭', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('681', '641', '', '刹车片', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('682', '641', '', '刹车盘', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('683', '641', '', '减震器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('684', '641', '', '车身装饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('685', '641', '', '尾喉/排气管', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('686', '641', '', '踏板', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('687', '641', '', '蓄电池', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('688', '641', '', '其他配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('689', '642', '', '漆面美容', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('690', '642', '', '漆面修复', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('691', '642', '', '内饰清洁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('692', '642', '', '玻璃美容', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('693', '642', '', '补漆笔', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('694', '642', '', '轮胎轮毂清洗', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('695', '642', '', '洗车器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('696', '642', '', '洗车水枪', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('697', '642', '', '洗车配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('698', '642', '', '洗车液', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('699', '642', '', '车掸', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('700', '642', '', '擦车巾/海绵', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('701', '643', '', '凉垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('702', '643', '', '四季垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('703', '643', '', '毛垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('704', '643', '', '专车专用座垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('705', '643', '', '专车专用座套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('706', '643', '', '通用座套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('707', '643', '', '多功能垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('708', '643', '', '专车专用脚垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('709', '643', '', '通用脚垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('710', '643', '', '后备箱垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('711', '644', '', '车用香水', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('712', '644', '', '车用炭包', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('713', '644', '', '空气净化', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('714', '644', '', '颈枕/头枕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('715', '644', '', '抱枕/腰靠', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('716', '644', '', '方向盘套', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('717', '644', '', '挂件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('718', '644', '', '摆件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('719', '644', '', '布艺软饰', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('720', '644', '', '功能用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('721', '644', '', '整理收纳', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('722', '644', '', 'CD夹', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('723', '645', '', '儿童安全座椅', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('724', '645', '', '应急救援', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('725', '645', '', '汽修工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('726', '645', '', '自驾野营', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('727', '645', '', '自驾照明', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('728', '645', '', '保温箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('729', '645', '', '置物箱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('730', '645', '', '车衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('731', '645', '', '遮阳挡雪挡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('732', '645', '', '车锁地锁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('733', '645', '', '摩托车装备', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('734', '646', '', '新车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('735', '646', '', '二手车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('736', '55', '', '适用年龄', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('737', '55', '', '遥控/电动', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('738', '55', '', '毛绒布艺', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('739', '55', '', '娃娃玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('740', '55', '', '模型玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('741', '55', '', '健身玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('742', '55', '', '动漫玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('743', '55', '', '益智玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('744', '55', '', '积木拼插', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('745', '55', '', 'DIY玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('746', '55', '', '创意减压', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('747', '55', '', '乐器相关', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('748', '736', '', '0-6个月', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('749', '736', '', '6-12个月', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('750', '736', '', '1-3岁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('751', '736', '', '3-6岁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('752', '736', '', '6-14岁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('753', '736', '', '14岁以上', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('754', '737', '', '遥控车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('755', '737', '', '遥控飞机', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('756', '737', '', '遥控船', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('757', '737', '', '机器人/电动', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('758', '737', '', '轨道/助力', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('759', '738', '', '毛绒/布艺', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('760', '738', '', '靠垫/抱枕', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('761', '739', '', '芭比娃娃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('762', '739', '', '卡通娃娃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('763', '739', '', '智能娃娃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('764', '740', '', '仿真模型', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('765', '740', '', '拼插模型', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('766', '740', '', '收藏爱好', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('767', '741', '', '炫舞毯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('768', '741', '', '爬行垫/毯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('769', '741', '', '户外玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('770', '741', '', '戏水玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('771', '742', '', '电影周边', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('772', '742', '', '卡通周边', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('773', '742', '', '网游周边', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('774', '743', '', '摇铃/床铃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('775', '743', '', '健身架', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('776', '743', '', '早教启智', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('777', '743', '', '拖拉玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('778', '744', '', '积木', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('779', '744', '', '拼图', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('780', '744', '', '磁力棒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('781', '744', '', '立体拼插', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('782', '745', '', '手工彩泥', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('783', '745', '', '绘画工具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('784', '745', '', '情景玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('785', '746', '', '减压玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('786', '746', '', '创意玩具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('787', '747', '', '钢琴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('788', '747', '', '电子琴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('789', '747', '', '手风琴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('790', '747', '', '吉他/贝斯', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('791', '747', '', '民族管弦乐器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('792', '747', '', '西洋管弦乐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('793', '747', '', '口琴/口风琴/竖笛', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('794', '747', '', '西洋打击乐器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('795', '747', '', '各式乐器配件', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('796', '747', '', '电脑音乐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('797', '747', '', '工艺礼品乐器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('798', '56', '', '奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('799', '56', '', '营养辅食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('800', '56', '', '尿裤湿巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('801', '56', '', '喂养用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('802', '56', '', '洗护用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('803', '56', '', '童车童床', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('804', '56', '', '服饰寝居', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('805', '56', '', '妈妈专区', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('806', '798', '', '品牌奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('807', '798', '', '妈妈奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('808', '798', '', '1段奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('809', '798', '', '2段奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('810', '798', '', '3段奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('811', '798', '', '4段奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('812', '798', '', '羊奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('813', '798', '', '特殊配方', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('814', '798', '', '成人奶粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('815', '799', '', '婴幼营养', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('816', '799', '', '初乳', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('817', '799', '', '米粉/菜粉', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('818', '799', '', '果泥/果汁', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('819', '799', '', '肉松/饼干', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('820', '799', '', '辅食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('821', '799', '', '孕期营养', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('822', '799', '', '清火/开胃', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('823', '799', '', '面条/粥', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('824', '800', '', '品牌尿裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('825', '800', '', '新生儿', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('826', '800', '', 'S号', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('827', '800', '', 'M号', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('828', '800', '', 'L号', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('829', '800', '', 'XL/XXL号', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('830', '800', '', '裤型尿裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('831', '800', '', '湿巾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('832', '800', '', '尿布/尿垫', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('833', '800', '', '成人尿裤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('834', '801', '', '奶瓶', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('835', '801', '', '奶嘴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('836', '801', '', '吸奶器', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('837', '801', '', '暖奶/消毒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('838', '801', '', '餐具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('839', '801', '', '水具', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('840', '801', '', '牙胶/安抚', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('841', '801', '', '辅助用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('842', '802', '', '宝宝护肤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('843', '802', '', '洗浴用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('844', '802', '', '洗发沐浴', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('845', '802', '', '清洁用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('846', '802', '', '护理用品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('847', '802', '', '妈妈护肤', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('848', '803', '', '婴儿推车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('849', '803', '', '餐椅摇椅', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('850', '803', '', '婴儿床', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('851', '803', '', '学步车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('852', '803', '', '三轮车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('853', '803', '', '自行车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('854', '803', '', '电动车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('855', '803', '', '健身车', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('856', '803', '', '安全座椅', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('857', '804', '', '婴儿外出服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('858', '804', '', '婴儿内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('859', '804', '', '婴儿礼盒', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('860', '804', '', '婴儿鞋帽袜', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('861', '804', '', '安全防护', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('862', '804', '', '家居床品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('863', '804', '', '其他', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('864', '805', '', '包/背婴带', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('865', '805', '', '妈妈护理', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('866', '805', '', '产后塑身', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('867', '805', '', '孕妇内衣', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('868', '805', '', '防辐射服', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('869', '805', '', '孕妇装', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('870', '805', '', '孕妇食品', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('871', '805', '', '妈妈美容', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('872', '57', '', '餐饮娱乐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('873', '57', '', '婚纱旅游', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('874', '57', '', '便民充值', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('875', '57', '', '游戏充值', '', '', '', '', '1', '0', '1', '1529042764', '0'); INSERT INTO `s_goods_category` VALUES ('876', '57', '', '票务服务', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('877', '872', '', '美食', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('878', '872', '', '电影票', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('879', '872', '', '自助餐', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('880', '872', '', '火锅', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('881', '873', '', '浪漫婚纱', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('882', '873', '', '旅游踏青', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('883', '874', '', '礼品卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('884', '874', '', '手机充值', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('885', '875', '', '游戏点卡', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('886', '875', '', 'QQ充值', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('887', '876', '', '代金券', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('888', '876', '', '演唱会', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('889', '876', '', '话剧/歌剧/音乐剧', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('890', '876', '', '体育赛事', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('891', '876', '', '舞蹈芭蕾', '', '', '', '', '1', '0', '1', '1529042764', '0'), ('892', '876', '', '戏曲综艺', '', '', '', '', '1', '0', '1', '1529042764', '0'); COMMIT; @@ -843,13 +869,13 @@ CREATE TABLE `s_goods_favor` ( `user_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户id', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品收藏'; +) ENGINE=InnoDB AUTO_INCREMENT=156 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品收藏'; -- ---------------------------- -- Records of `s_goods_favor` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_favor` VALUES ('108', '17', '90', '1539252289'), ('111', '8', '90', '1539700091'), ('113', '9', '90', '1539747818'), ('114', '16', '90', '1539747820'), ('117', '14', '90', '1539747830'), ('118', '4', '90', '1539747835'), ('119', '10', '90', '1539747841'), ('120', '13', '90', '1539747856'), ('121', '2', '90', '1539747864'), ('122', '1', '90', '1539747869'), ('123', '3', '90', '1539747874'), ('138', '18', '90', '1539764967'), ('139', '24', '90', '1540054699'), ('144', '16', '77', '1542781930'), ('146', '18', '77', '1542784296'), ('149', '12', '77', '1542786825'), ('150', '12', '90', '1544381199'), ('152', '6', '90', '1544905158'), ('154', '1', '77', '1545099141'); +INSERT INTO `s_goods_favor` VALUES ('108', '17', '90', '1539252289'), ('111', '8', '90', '1539700091'), ('113', '9', '90', '1539747818'), ('114', '16', '90', '1539747820'), ('117', '14', '90', '1539747830'), ('118', '4', '90', '1539747835'), ('119', '10', '90', '1539747841'), ('120', '13', '90', '1539747856'), ('121', '2', '90', '1539747864'), ('122', '1', '90', '1539747869'), ('123', '3', '90', '1539747874'), ('138', '18', '90', '1539764967'), ('139', '24', '90', '1540054699'), ('144', '16', '77', '1542781930'), ('146', '18', '77', '1542784296'), ('149', '12', '77', '1542786825'), ('152', '6', '90', '1544905158'), ('154', '1', '77', '1545099141'), ('155', '12', '90', '1545281677'); COMMIT; -- ---------------------------- @@ -966,7 +992,7 @@ CREATE TABLE `s_link` ( -- Records of `s_link` -- ---------------------------- BEGIN; -INSERT INTO `s_link` VALUES ('1', 'SchoolCMS', 'http://schoolcms.org/', 'SchoolCMS学校教务管理系统', '1', '1', '1', '1486292373', '0'), ('12', 'AmazeUI', 'http://amazeui.org/', 'AmazeUI国内首个HTML5框架', '4', '1', '1', '1486353476', '0'), ('13', '龚哥哥的博客', 'http://gong.gg/', '龚哥哥的博客', '2', '1', '1', '1486353528', '0'), ('14', 'ThinkPHP', 'http://www.thinkphp.cn/', 'ThinkPHP', '3', '1', '1', '1487919160', '0'), ('15', 'ShopXO', 'http://shopxo.net', 'ShopXO企业级电商系统提供商', '0', '1', '1', '1533711881', '1545126383'); +INSERT INTO `s_link` VALUES ('1', 'SchoolCMS', 'http://schoolcms.org/', 'SchoolCMS学校教务管理系统', '1', '1', '1', '1486292373', '0'), ('12', 'AmazeUI', 'http://amazeui.org/', 'AmazeUI国内首个HTML5框架', '4', '1', '1', '1486353476', '0'), ('13', '龚哥哥的博客', 'http://gong.gg/', '龚哥哥的博客', '2', '1', '1', '1486353528', '0'), ('14', 'ThinkPHP', 'http://www.thinkphp.cn/', 'ThinkPHP', '3', '1', '1', '1487919160', '0'), ('15', 'ShopXO', 'http://shopxo.net', 'ShopXO企业级电商系统提供商', '0', '1', '1', '1533711881', '1545322019'); COMMIT; -- ---------------------------- @@ -993,7 +1019,7 @@ CREATE TABLE `s_message` ( -- Records of `s_message` -- ---------------------------- BEGIN; -INSERT INTO `s_message` VALUES ('1', '90', '订单支付', '订单支付成功,金额1999元', '58', '1', '0', '1', '0', '0', '1539570030'), ('2', '90', '订单取消', '订单取消成功', '59', '1', '0', '1', '0', '0', '1539570342'), ('3', '90', '订单取消', '订单取消成功', '56', '1', '0', '1', '0', '0', '1539570393'), ('4', '90', '订单支付', '订单支付成功,金额2326.36元', '61', '1', '0', '1', '0', '0', '1539742303'), ('5', '90', '订单发货', '订单已发货', '61', '1', '0', '1', '0', '0', '1539742339'), ('6', '90', '订单发货', '订单已发货', '57', '1', '0', '1', '0', '0', '1539742453'), ('7', '90', '订单发货', '订单已发货', '58', '1', '0', '1', '0', '0', '1539742464'), ('8', '90', '订单收货', '订单收货成功', '58', '1', '0', '1', '0', '0', '1539742471'), ('9', '90', '订单收货', '订单收货成功', '57', '1', '0', '1', '0', '0', '1539742486'), ('10', '90', '订单支付', '订单支付成功,金额0.01元', '60', '1', '0', '0', '0', '0', '1542003542'), ('11', '90', '订单支付', '订单支付成功,金额0.03元', '62', '1', '0', '0', '0', '0', '1542003625'), ('12', '90', '订单支付', '订单支付成功,金额0.01元', '63', '1', '0', '0', '0', '0', '1542003727'), ('13', '90', '订单支付', '订单支付成功,金额0.01元', '64', '1', '0', '0', '0', '0', '1542004683'), ('14', '90', '订单支付', '订单支付成功,金额0.01元', '65', '1', '0', '0', '0', '0', '1542004726'), ('15', '90', '订单支付', '订单支付成功,金额0.01元', '66', '1', '0', '0', '0', '0', '1542004765'), ('16', '90', '订单支付', '订单支付成功,金额0.01元', '68', '1', '0', '0', '0', '0', '1542005503'), ('17', '90', '订单发货', '订单已发货', '68', '1', '0', '0', '0', '0', '1542005515'), ('18', '90', '订单发货', '订单已发货', '66', '1', '0', '0', '0', '0', '1542005811'), ('19', '90', '订单发货', '订单已发货', '65', '1', '0', '0', '0', '0', '1542006134'), ('20', '90', '订单支付', '订单支付成功,金额0.01元', '69', '1', '0', '0', '0', '0', '1542006196'), ('21', '90', '订单发货', '订单已发货', '69', '1', '0', '0', '0', '0', '1542006243'), ('22', '90', '订单取消', '订单取消成功', '71', '1', '0', '0', '0', '0', '1542010950'), ('23', '90', '订单支付', '订单支付成功,金额0.01元', '72', '1', '0', '0', '0', '0', '1542010986'), ('24', '90', '订单支付', '订单支付成功,金额0.01元', '73', '1', '0', '0', '0', '0', '1542011589'), ('25', '90', '订单确认', '订单确认成功', '75', '1', '0', '0', '0', '0', '1542012441'), ('26', '90', '订单取消', '订单取消成功', '75', '1', '0', '0', '0', '0', '1542099843'), ('27', '90', '订单取消', '订单取消成功', '74', '1', '0', '0', '0', '0', '1542100291'), ('28', '77', '订单取消', '订单取消成功', '53', '1', '0', '1', '0', '0', '1542173775'), ('29', '77', '订单确认', '订单确认成功', '76', '1', '0', '1', '0', '0', '1542173827'), ('30', '77', '订单取消', '订单取消成功', '76', '1', '0', '1', '0', '0', '1542173840'), ('31', '77', '积分变动', '管理员操作积分增加5', '0', '0', '0', '1', '0', '0', '1542176562'), ('32', '77', '积分变动', '管理员操作积分增加52', '0', '0', '0', '1', '0', '0', '1542176850'), ('33', '77', '订单确认', '订单确认成功', '77', '1', '0', '1', '0', '0', '1542178975'), ('34', '77', '订单支付', '订单支付成功,金额479元', '77', '1', '0', '1', '0', '0', '1542178997'), ('35', '77', '订单发货', '订单已发货', '77', '1', '0', '1', '0', '0', '1542179014'), ('36', '77', '积分变动', '订单商品完成赠送积分增加300', '0', '0', '0', '1', '0', '0', '1542179107'), ('37', '77', '订单收货', '订单收货成功', '77', '1', '0', '1', '0', '0', '1542179107'), ('38', '77', '订单支付', '订单支付成功,金额7028元', '78', '1', '0', '1', '0', '0', '1542179230'), ('39', '77', '订单发货', '订单已发货', '78', '1', '0', '1', '0', '0', '1542179249'), ('40', '77', '积分变动', '订单商品完成赠送积分增加300', '0', '0', '0', '1', '0', '0', '1542179275'), ('41', '77', '订单收货', '订单收货成功', '78', '1', '0', '1', '0', '0', '1542179275'), ('42', '77', '订单支付', '订单支付成功,金额1145元', '79', '1', '0', '1', '0', '0', '1542179388'), ('43', '77', '订单发货', '订单已发货', '79', '1', '0', '1', '0', '0', '1542179402'), ('44', '77', '积分变动', '订单商品完成赠送积分增加300', '0', '0', '0', '1', '0', '0', '1542179407'), ('45', '77', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '1', '0', '0', '1542179407'), ('46', '77', '订单收货', '订单收货成功', '79', '1', '0', '1', '0', '0', '1542179407'), ('47', '90', '订单发货', '订单已发货', '55', '1', '0', '0', '0', '0', '1542180014'), ('48', '77', '订单发货', '订单已发货', '48', '1', '0', '1', '0', '0', '1542180049'), ('49', '77', '订单支付', '订单支付成功,金额3584.68元', '80', '1', '0', '1', '0', '0', '1542185696'), ('50', '77', '订单发货', '订单已发货', '80', '1', '0', '1', '0', '0', '1542185715'), ('51', '77', '订单收货', '订单收货成功', '80', '1', '0', '1', '0', '0', '1542185723'), ('52', '77', '订单支付', '订单支付成功,金额202元', '81', '1', '0', '1', '0', '0', '1542867485'), ('53', '90', '订单发货', '订单已发货', '54', '1', '0', '0', '0', '0', '1542867879'), ('54', '77', '订单支付', '订单支付成功,金额36元', '84', '1', '0', '1', '0', '0', '1542874703'), ('55', '77', '订单支付', '订单支付成功,金额5450元', '83', '1', '0', '1', '0', '0', '1542875414'), ('56', '77', '订单支付', '订单支付成功,金额5450元', '85', '1', '0', '1', '0', '0', '1542875472'), ('57', '77', '订单支付', '订单支付成功,金额1980元', '86', '1', '0', '1', '0', '0', '1542875631'), ('58', '77', '订单取消', '订单取消成功', '87', '1', '0', '1', '0', '0', '1542937024'), ('59', '77', '订单发货', '订单已发货', '86', '1', '0', '1', '0', '0', '1542937187'), ('60', '77', '订单收货', '订单收货成功', '86', '1', '0', '1', '0', '0', '1542937207'), ('61', '77', '订单支付', '订单支付成功,金额318.72元', '82', '1', '0', '1', '0', '0', '1543197158'), ('62', '77', '订单支付', '订单支付成功,金额5450元', '85', '1', '0', '1', '0', '0', '1543197442'), ('63', '90', '订单支付', '订单支付成功,金额60217元', '3', '1', '0', '0', '0', '0', '1545103919'), ('64', '90', '订单收货', '订单收货成功', '3', '1', '0', '0', '0', '0', '1545104703'), ('65', '90', '订单取消', '订单取消成功', '2', '1', '0', '0', '0', '0', '1545104770'), ('66', '90', '订单删除', '订单删除成功', '2', '1', '0', '0', '0', '0', '1545104829'); +INSERT INTO `s_message` VALUES ('1', '90', '订单支付', '订单支付成功,金额1999元', '58', '1', '0', '1', '0', '0', '1539570030'), ('2', '90', '订单取消', '订单取消成功', '59', '1', '0', '1', '0', '0', '1539570342'), ('3', '90', '订单取消', '订单取消成功', '56', '1', '0', '1', '0', '0', '1539570393'), ('4', '90', '订单支付', '订单支付成功,金额2326.36元', '61', '1', '0', '1', '0', '0', '1539742303'), ('5', '90', '订单发货', '订单已发货', '61', '1', '0', '1', '0', '0', '1539742339'), ('6', '90', '订单发货', '订单已发货', '57', '1', '0', '1', '0', '0', '1539742453'), ('7', '90', '订单发货', '订单已发货', '58', '1', '0', '1', '0', '0', '1539742464'), ('8', '90', '订单收货', '订单收货成功', '58', '1', '0', '1', '0', '0', '1539742471'), ('9', '90', '订单收货', '订单收货成功', '57', '1', '0', '1', '0', '0', '1539742486'), ('10', '90', '订单支付', '订单支付成功,金额0.01元', '60', '1', '0', '1', '0', '0', '1542003542'), ('11', '90', '订单支付', '订单支付成功,金额0.03元', '62', '1', '0', '1', '0', '0', '1542003625'), ('12', '90', '订单支付', '订单支付成功,金额0.01元', '63', '1', '0', '1', '0', '0', '1542003727'), ('13', '90', '订单支付', '订单支付成功,金额0.01元', '64', '1', '0', '1', '0', '0', '1542004683'), ('14', '90', '订单支付', '订单支付成功,金额0.01元', '65', '1', '0', '1', '0', '0', '1542004726'), ('15', '90', '订单支付', '订单支付成功,金额0.01元', '66', '1', '0', '1', '0', '0', '1542004765'), ('16', '90', '订单支付', '订单支付成功,金额0.01元', '68', '1', '0', '1', '0', '0', '1542005503'), ('17', '90', '订单发货', '订单已发货', '68', '1', '0', '1', '0', '0', '1542005515'), ('18', '90', '订单发货', '订单已发货', '66', '1', '0', '1', '0', '0', '1542005811'), ('19', '90', '订单发货', '订单已发货', '65', '1', '0', '1', '0', '0', '1542006134'), ('20', '90', '订单支付', '订单支付成功,金额0.01元', '69', '1', '0', '1', '0', '0', '1542006196'), ('21', '90', '订单发货', '订单已发货', '69', '1', '0', '1', '0', '0', '1542006243'), ('22', '90', '订单取消', '订单取消成功', '71', '1', '0', '1', '0', '0', '1542010950'), ('23', '90', '订单支付', '订单支付成功,金额0.01元', '72', '1', '0', '1', '0', '0', '1542010986'), ('24', '90', '订单支付', '订单支付成功,金额0.01元', '73', '1', '0', '1', '0', '0', '1542011589'), ('25', '90', '订单确认', '订单确认成功', '75', '1', '0', '1', '0', '0', '1542012441'), ('26', '90', '订单取消', '订单取消成功', '75', '1', '0', '1', '0', '0', '1542099843'), ('27', '90', '订单取消', '订单取消成功', '74', '1', '0', '1', '0', '0', '1542100291'), ('28', '77', '订单取消', '订单取消成功', '53', '1', '0', '1', '0', '0', '1542173775'), ('29', '77', '订单确认', '订单确认成功', '76', '1', '0', '1', '0', '0', '1542173827'), ('30', '77', '订单取消', '订单取消成功', '76', '1', '0', '1', '0', '0', '1542173840'), ('31', '77', '积分变动', '管理员操作积分增加5', '0', '0', '0', '1', '0', '0', '1542176562'), ('32', '77', '积分变动', '管理员操作积分增加52', '0', '0', '0', '1', '0', '0', '1542176850'), ('33', '77', '订单确认', '订单确认成功', '77', '1', '0', '1', '0', '0', '1542178975'), ('34', '77', '订单支付', '订单支付成功,金额479元', '77', '1', '0', '1', '0', '0', '1542178997'), ('35', '77', '订单发货', '订单已发货', '77', '1', '0', '1', '0', '0', '1542179014'), ('36', '77', '积分变动', '订单商品完成赠送积分增加300', '0', '0', '0', '1', '0', '0', '1542179107'), ('37', '77', '订单收货', '订单收货成功', '77', '1', '0', '1', '0', '0', '1542179107'), ('38', '77', '订单支付', '订单支付成功,金额7028元', '78', '1', '0', '1', '0', '0', '1542179230'), ('39', '77', '订单发货', '订单已发货', '78', '1', '0', '1', '0', '0', '1542179249'), ('40', '77', '积分变动', '订单商品完成赠送积分增加300', '0', '0', '0', '1', '0', '0', '1542179275'), ('41', '77', '订单收货', '订单收货成功', '78', '1', '0', '1', '0', '0', '1542179275'), ('42', '77', '订单支付', '订单支付成功,金额1145元', '79', '1', '0', '1', '0', '0', '1542179388'), ('43', '77', '订单发货', '订单已发货', '79', '1', '0', '1', '0', '0', '1542179402'), ('44', '77', '积分变动', '订单商品完成赠送积分增加300', '0', '0', '0', '1', '0', '0', '1542179407'), ('45', '77', '积分变动', '订单商品完成赠送积分增加10', '0', '0', '0', '1', '0', '0', '1542179407'), ('46', '77', '订单收货', '订单收货成功', '79', '1', '0', '1', '0', '0', '1542179407'), ('47', '90', '订单发货', '订单已发货', '55', '1', '0', '1', '0', '0', '1542180014'), ('48', '77', '订单发货', '订单已发货', '48', '1', '0', '1', '0', '0', '1542180049'), ('49', '77', '订单支付', '订单支付成功,金额3584.68元', '80', '1', '0', '1', '0', '0', '1542185696'), ('50', '77', '订单发货', '订单已发货', '80', '1', '0', '1', '0', '0', '1542185715'), ('51', '77', '订单收货', '订单收货成功', '80', '1', '0', '1', '0', '0', '1542185723'), ('52', '77', '订单支付', '订单支付成功,金额202元', '81', '1', '0', '1', '0', '0', '1542867485'), ('53', '90', '订单发货', '订单已发货', '54', '1', '0', '1', '0', '0', '1542867879'), ('54', '77', '订单支付', '订单支付成功,金额36元', '84', '1', '0', '1', '0', '0', '1542874703'), ('55', '77', '订单支付', '订单支付成功,金额5450元', '83', '1', '0', '1', '0', '0', '1542875414'), ('56', '77', '订单支付', '订单支付成功,金额5450元', '85', '1', '0', '1', '0', '0', '1542875472'), ('57', '77', '订单支付', '订单支付成功,金额1980元', '86', '1', '0', '1', '0', '0', '1542875631'), ('58', '77', '订单取消', '订单取消成功', '87', '1', '0', '1', '0', '0', '1542937024'), ('59', '77', '订单发货', '订单已发货', '86', '1', '0', '1', '0', '0', '1542937187'), ('60', '77', '订单收货', '订单收货成功', '86', '1', '0', '1', '0', '0', '1542937207'), ('61', '77', '订单支付', '订单支付成功,金额318.72元', '82', '1', '0', '1', '0', '0', '1543197158'), ('62', '77', '订单支付', '订单支付成功,金额5450元', '85', '1', '0', '1', '0', '0', '1543197442'), ('63', '90', '订单支付', '订单支付成功,金额60217元', '3', '1', '0', '1', '0', '0', '1545103919'), ('64', '90', '订单收货', '订单收货成功', '3', '1', '0', '1', '0', '0', '1545104703'), ('65', '90', '订单取消', '订单取消成功', '2', '1', '0', '1', '0', '0', '1545104770'), ('66', '90', '订单删除', '订单删除成功', '2', '1', '0', '1', '0', '0', '1545104829'); COMMIT; -- ---------------------------- @@ -1270,7 +1296,7 @@ CREATE TABLE `s_power` ( -- Records of `s_power` -- ---------------------------- BEGIN; -INSERT INTO `s_power` VALUES ('1', '0', '权限控制', 'Power', 'Index', '2', '1', 'icon-quanxian', '1481612301'), ('4', '1', '角色管理', 'Power', 'Role', '11', '1', '', '1481639037'), ('13', '1', '权限分配', 'Power', 'Index', '21', '1', '', '1482156143'), ('15', '1', '权限添加/编辑', 'Power', 'PowerSave', '22', '0', '', '1482243750'), ('16', '1', '权限删除', 'Power', 'PowerDelete', '23', '0', '', '1482243797'), ('17', '1', '角色组添加/编辑页面', 'Power', 'RoleSaveInfo', '12', '0', '', '1482243855'), ('18', '1', '角色组添加/编辑', 'Power', 'RoleSave', '13', '0', '', '1482243888'), ('19', '1', '管理员添加/编辑页面', 'Admin', 'SaveInfo', '2', '0', '', '1482244637'), ('20', '1', '管理员添加/编辑', 'Admin', 'Save', '3', '0', '', '1482244666'), ('21', '1', '管理员删除', 'Admin', 'Delete', '4', '0', '', '1482244688'), ('22', '1', '管理员列表', 'Admin', 'Index', '1', '1', '', '1482568868'), ('23', '1', '角色删除', 'Power', 'RoleDelete', '14', '0', '', '1482569155'), ('38', '0', '商品管理', 'Goods', 'Index', '3', '1', 'icon-shangpin', '1483283430'), ('39', '38', '商品管理', 'Goods', 'Index', '1', '1', '', '1483283546'), ('41', '0', '后台配置', 'Config', 'Index', '0', '1', 'icon-peizhi', '1483362358'), ('42', '41', '配置保存', 'Config', 'Save', '1', '0', '', '1483432335'), ('57', '38', '商品添加/编辑页面', 'Goods', 'SaveInfo', '2', '0', '', '1483616439'), ('58', '38', '商品添加/编辑', 'Goods', 'Save', '3', '0', '', '1483616492'), ('59', '38', '商品删除', 'Goods', 'Delete', '4', '0', '', '1483616569'), ('81', '0', '站点配置', 'Site', 'Index', '1', '1', 'icon-zhandianpeizhi', '1486182943'), ('103', '81', '站点设置', 'Site', 'Index', '0', '1', '', '1486561470'), ('104', '81', '短信设置', 'Sms', 'Index', '10', '1', '', '1486561615'), ('105', '81', '站点设置编辑', 'Site', 'Save', '1', '0', '', '1486561780'), ('107', '81', '短信设置编辑', 'Sms', 'Save', '11', '0', '', '1486562011'), ('118', '0', '工具', 'Tool', 'Index', '30', '1', 'icon-tools', '1488108044'), ('119', '118', '缓存管理', 'Cache', 'Index', '1', '1', '', '1488108107'), ('120', '118', '站点缓存更新', 'Cache', 'SiteUpdate', '2', '0', '', '1488108235'), ('121', '118', '模板缓存更新', 'Cache', 'TemplateUpdate', '2', '0', '', '1488108390'), ('122', '118', '模块缓存更新', 'Cache', 'ModuleUpdate', '3', '0', '', '1488108436'), ('126', '0', '用户管理', 'User', 'Index', '2', '1', 'icon-yonghuguanli', '1490794162'), ('127', '126', '用户列表', 'User', 'Index', '0', '1', '', '1490794316'), ('128', '126', '用户编辑/添加页面', 'User', 'SaveInfo', '1', '0', '', '1490794458'), ('129', '126', '用户添加/编辑', 'User', 'Save', '2', '0', '', '1490794510'), ('130', '126', '用户删除', 'User', 'Delete', '3', '0', '', '1490794585'), ('146', '126', 'Excel导出', 'User', 'ExcelExport', '6', '0', '', '1522223773'), ('152', '0', '资源管理', 'Resources', 'Index', '29', '1', 'icon-ziyuan', '1526304409'), ('153', '152', '地区管理', 'Region', 'Index', '0', '1', '', '1526304473'), ('154', '152', '地区添加/编辑', 'Region', 'Save', '1', '0', '', '1526304503'), ('155', '152', '地区删除', 'Region', 'Delete', '2', '0', '', '1526304531'), ('156', '152', '快递管理', 'Express', 'Index', '10', '1', '', '1526304473'), ('157', '152', '快递添加/编辑', 'Express', 'Save', '11', '0', '', '1526304473'), ('158', '152', '快递删除', 'Express', 'Delete', '12', '0', '', '1526304473'), ('162', '0', '营销管理', 'Marketing', 'Index', '27', '0', 'icon-yingxiao', '1527042204'), ('163', '162', '优惠券管理', 'Coupon', 'Index', '0', '1', '', '1527042261'), ('164', '162', '优惠券状态更新', 'Coupon', 'StateUpdate', '1', '0', '', '1527048618'), ('165', '162', '优惠券添加/编辑页面', 'Coupon', 'SaveInfo', '2', '0', '', '1527048754'), ('166', '162', '优惠券添加/编辑', 'Coupon', 'Save', '3', '0', '', '1527048791'), ('167', '162', '用户优惠券列表', 'Coupon', 'User', '4', '0', '', '1527048877'), ('168', '162', '用户优惠券删除', 'Coupon', 'Delete', '5', '0', '', '1527048935'), ('169', '162', '优惠券发放页面', 'Coupon', 'SendInfo', '6', '0', '', '1527061899'), ('170', '162', '优惠券发放', 'Coupon', 'Send', '7', '0', '', '1527061927'), ('171', '162', '优惠券发放-用户查询', 'Coupon', 'UserQuery', '8', '0', '', '1527066512'), ('172', '222', '首页轮播', 'Slide', 'Index', '70', '1', '', '1527149117'), ('173', '222', '轮播添加/编辑页面', 'Slide', 'SaveInfo', '71', '0', '', '1527149152'), ('174', '222', '轮播添加/编辑', 'Slide', 'Save', '72', '0', '', '1527149186'), ('175', '222', '轮播状态更新', 'Slide', 'StatusUpdate', '73', '0', '', '1527156980'), ('176', '222', '轮播删除', 'Slide', 'Delete', '74', '0', '', '1527157260'), ('177', '0', '订单管理', 'Order', 'Index', '5', '1', 'icon-dingdan', '1522229870'), ('178', '177', '订单管理', 'Order', 'Index', '1', '1', '', '1522317898'), ('179', '177', '订单删除', 'Order', 'Delete', '2', '0', '', '1522317917'), ('180', '177', '订单取消', 'Order', 'Cancel', '3', '0', '', '1527497803'), ('181', '38', '商品上下架', 'Goods', 'StatusShelves', '5', '0', '', '1528080200'), ('182', '0', '数据管理', 'Data', 'Index', '28', '1', 'icon-shuju', '1528096661'), ('183', '182', '消息管理', 'Message', 'Index', '0', '1', '', '1528080200'), ('184', '182', '消息删除', 'Message', 'Delete', '1', '0', '', '1528080200'), ('185', '182', '支付日志', 'PayLog', 'Index', '10', '1', '', '1528080200'), ('186', '182', '用户积分日志', 'UserIntegralLog', 'Index', '20', '1', '', '1528103067'), ('187', '182', '用户投诉', 'Complaint', 'Index', '30', '0', '', '1528189127'), ('188', '182', '投诉处理', 'Complaint', 'Save', '31', '0', '', '1528189193'), ('189', '182', '投诉删除', 'Complaint', 'Delete', '32', '0', '', '1528189211'), ('193', '222', '筛选价格', 'ScreeningPrice', 'Index', '80', '1', '', '1528708578'), ('194', '222', '筛选价格添加/编辑', 'ScreeningPrice', 'Save', '81', '0', '', '1528708609'), ('199', '81', 'SEO设置', 'Seo', 'Index', '30', '1', '', '1528771081'), ('200', '81', 'SEO设置编辑', 'Seo', 'Save', '31', '0', '', '1528771105'), ('201', '38', '商品分类', 'GoodsCategory', 'Index', '10', '1', '', '1529041901'), ('202', '38', '商品分类添加/编辑', 'GoodsCategory', 'Save', '11', '0', '', '1529041928'), ('203', '38', '商品分类删除', 'GoodsCategory', 'Delete', '12', '0', '', '1529041949'), ('204', '0', '文章管理', 'Article', 'Index', '26', '1', 'icon-wenzhang', '1530360560'), ('205', '204', '文章管理', 'Article', 'Index', '0', '1', '', '1530360593'), ('206', '204', '文章添加/编辑页面', 'Article', 'SaveInfo', '1', '0', '', '1530360625'), ('207', '204', '文章添加/编辑', 'Article', 'Save', '2', '0', '', '1530360663'), ('208', '204', '文章删除', 'Article', 'Delete', '3', '0', '', '1530360692'), ('209', '204', '文章状态更新', 'Article', 'StatusUpdate', '4', '0', '', '1530360730'), ('210', '204', '文章分类', 'ArticleCategory', 'Index', '10', '1', '', '1530361071'), ('211', '204', '文章分类编辑/添加', 'ArticleCategory', 'Save', '11', '0', '', '1530361101'), ('212', '204', '文章分类删除', 'ArticleCategory', 'Delete', '12', '0', '', '1530361126'), ('213', '0', '问答留言', 'Answer', 'Index', '6', '1', 'icon-wenda', '1533112421'), ('214', '213', '问答留言', 'Answer', 'Index', '0', '1', '', '1533112443'), ('215', '213', '问答留言回复', 'Answer', 'Reply', '1', '0', '', '1533119660'), ('216', '213', '问答留言删除', 'Answer', 'Delete', '2', '0', '', '1533119680'), ('217', '213', '问答留言状态更新', 'Answer', 'StatusUpdate', '3', '0', '', '1533119704'), ('218', '38', '商品首页推荐', 'Goods', 'StatusHomeRecommended', '6', '0', '', '1533564476'), ('219', '81', '邮箱设置', 'Email', 'Index', '20', '1', '', '1533636067'), ('220', '81', '邮箱添加/编辑', 'Email', 'Save', '21', '0', '', '1533636109'), ('221', '81', '邮件发送测试', 'Email', 'EmailTest', '22', '0', '', '1533636157'), ('222', '0', '网站管理', 'Navigation', 'Index', '7', '1', 'icon-wangzhanguanli', '1533692051'), ('223', '222', '导航管理', 'Navigation', 'Index', '0', '1', '', '1486183114'), ('226', '222', '导航添加/编辑', 'Navigation', 'Save', '2', '0', '', '1486183367'), ('227', '222', '导航删除', 'Navigation', 'Delete', '3', '0', '', '1486183410'), ('228', '222', '导航状态更新', 'Navigation', 'StatusUpdate', '4', '0', '', '1486183462'), ('234', '222', '自定义页面', 'CustomView', 'Index', '21', '1', '', '1486193400'), ('235', '222', '自定义页面添加/编辑页面', 'CustomView', 'SaveInfo', '22', '0', '', '1486193449'), ('236', '222', '自定义页面添加/编辑', 'CustomView', 'Save', '23', '0', '', '1486193473'), ('237', '222', '自定义页面删除', 'CustomView', 'Delete', '24', '0', '', '1486193516'), ('238', '222', '自定义页面状态更新', 'CustomView', 'StatusUpdate', '25', '0', '', '1486193582'), ('239', '222', '友情链接', 'Link', 'Index', '31', '1', '', '1486194358'), ('240', '222', '友情链接添加/编辑页面', 'Link', 'SaveInfo', '32', '0', '', '1486194392'), ('241', '222', '友情链接添加/编辑', 'Link', 'Save', '33', '0', '', '1486194413'), ('242', '222', '友情链接删除', 'Link', 'Delete', '34', '0', '', '1486194435'), ('243', '222', '友情链接状态更新', 'Link', 'StatusUpdate', '35', '0', '', '1486194479'), ('244', '222', '主题管理', 'Theme', 'Index', '60', '1', '', '1494381693'), ('245', '222', '主题管理添加/编辑', 'Theme', 'Save', '61', '0', '', '1494398194'), ('246', '222', '主题上传安装', 'Theme', 'Upload', '62', '0', '', '1494405096'), ('247', '222', '主题删除', 'Theme', 'Delete', '63', '0', '', '1494410655'), ('248', '204', '商品首页推荐', 'Article', 'StatusHomeRecommended', '5', '0', '', '1534156400'), ('249', '252', '品牌管理', 'Brand', 'Index', '0', '1', '', '1535683271'), ('250', '252', '品牌添加/编辑', 'Brand', 'Save', '2', '0', '', '1535683310'), ('251', '252', '品牌删除', 'Brand', 'Delete', '4', '0', '', '1535683351'), ('252', '0', '品牌管理', 'Brand', 'Index', '8', '1', 'icon-ico-pinpaiguanli', '1535684308'), ('253', '252', '品牌分类', 'BrandCategory', 'Index', '10', '1', '', '1535684401'), ('254', '252', '品牌分类添加/编辑', 'BrandCategory', 'Save', '11', '0', '', '1535684424'), ('255', '252', '品牌分类删除', 'BrandCategory', 'Delete', '12', '0', '', '1535684444'), ('256', '252', '品牌添加/编辑页面', 'Brand', 'SaveInfo', '1', '0', '', '1535694837'), ('257', '252', '品牌状态更新', 'Brand', 'StateUpdate', '3', '0', '', '1535694880'), ('258', '222', '筛选价格删除', 'ScreeningPrice', 'Delete', '82', '0', '', '1536227071'), ('259', '152', '支付方式', 'Payment', 'Index', '50', '1', '', '1537156351'), ('260', '152', '支付方式安装/编辑页面', 'Payment', 'SaveInfo', '51', '0', '', '1537156423'), ('261', '152', '支付方式安装/编辑', 'Payment', 'Save', '52', '0', '', '1537156463'), ('262', '152', '支付方式删除', 'Payment', 'Delete', '53', '0', '', '1537156502'), ('263', '152', '支付方式安装', 'Payment', 'Install', '54', '0', '', '1537166090'), ('264', '152', '支付宝方式状态更新', 'Payment', 'StatusUpdate', '55', '0', '', '1537166149'), ('265', '152', '支付方式卸载', 'Payment', 'Uninstall', '56', '0', '', '1537167814'), ('266', '152', '支付方式上传', 'Payment', 'Upload', '57', '0', '', '1537173653'), ('267', '177', '订单发货', 'Order', 'Delivery', '4', '0', '', '1538413499'), ('268', '177', '订单收货', 'Order', 'Collect', '5', '0', '', '1538414034'), ('269', '177', '订单支付', 'Order', 'Pay', '6', '0', '', '1538757043'), ('270', '0', '支付宝生活号', 'AlipayLife', 'Index', '25', '1', 'icon-zhifubao', '1540175293'), ('271', '270', '生活号管理', 'AlipayLife', 'Index', '0', '1', '', '1540175632'), ('272', '270', '生活号添加/编辑页面', 'AlipayLife', 'SaveInfo', '2', '0', '', '1540175668'), ('273', '270', '生活号添加/编辑', 'AlipayLife', 'Save', '2', '0', '', '1540175706'), ('274', '270', '生活号删除', 'AlipayLife', 'Delete', '4', '0', '', '1540175780'), ('275', '270', '消息管理', 'AlipayLifeMessage', 'Index', '20', '1', '', '1540175867'), ('276', '270', '消息创建页面', 'AlipayLifeMessage', 'SaveInfo', '21', '0', '', '1540175907'), ('277', '270', '消息保存', 'AlipayLifeMessage', 'Save', '22', '0', '', '1540175929'), ('278', '270', '消息删除', 'AlipayLifeMessage', 'Delete', '23', '0', '', '1540175951'), ('279', '270', '用户管理', 'AlipayLifeUser', 'Index', '70', '1', '', '1540175983'), ('280', '270', '用户删除', 'AlipayLifeUser', 'Delete', '71', '0', '', '1540176023'), ('281', '270', '生活号分类', 'AlipayLifeCategory', 'Index', '10', '1', '', '1540176023'), ('282', '270', '生活号分类添加/编辑', 'AlipayLifeCategory', 'Save', '11', '0', '', '1540176023'), ('283', '270', '生活号分类删除', 'AlipayLifeCategory', 'Delete', '12', '0', '', '1540176023'), ('284', '270', '生活号状态更新', 'AlipayLife', 'StatusUpdate', '3', '0', '', '1540179220'), ('285', '270', '消息发送', 'AlipayLifeMessage', 'Send', '24', '0', '', '1540361501'), ('286', '270', '生活号搜索', 'AlipayLifeMessage', 'Search', '25', '0', '', '1540778598'), ('287', '270', '消息内容列表', 'AlipayLifeMessage', 'ContentIndex', '26', '0', '', '1540800203'), ('288', '270', '消息内容添加/编辑页面', 'AlipayLifeMessage', 'ContentSaveInfo', '27', '0', '', '1540800240'), ('289', '270', '消息内容添加/编辑', 'AlipayLifeMessage', 'ContentSave', '28', '0', '', '1540803394'), ('290', '270', '消息内容删除', 'AlipayLifeMessage', 'ContentDelete', '29', '0', '', '1540808858'), ('291', '270', '消息详情', 'AlipayLifeMessage', 'Detail', '30', '0', '', '1540864003'), ('292', '270', '菜单管理', 'AlipayLifeMenu', 'Index', '40', '1', '', '1540869824'), ('293', '270', '菜单管理添加/编辑页面', 'AlipayLifeMenu', 'SaveInfo', '41', '0', '', '1540869856'), ('294', '270', '菜单管理添加/编辑', 'AlipayLifeMenu', 'Save', '42', '0', '', '1540869880'), ('295', '270', '菜单删除', 'AlipayLifeMenu', 'Delete', '43', '0', '', '1540869907'), ('296', '270', '菜单发布', 'AlipayLifeMenu', 'Release', '44', '0', '', '1540869949'), ('297', '270', '菜单内容管理', 'AlipayLifeMenu', 'ContentIndex', '50', '0', '', '1540869992'), ('298', '270', '生活号搜索', 'AlipayLifeMenu', 'Search', '45', '0', '', '1540871105'), ('299', '270', '菜单内容添加/编辑页面', 'AlipayLifeMenu', 'ContentSaveInfo', '51', '0', '', '1540880313'), ('300', '270', '菜单内容添加/编辑', 'AlipayLifeMenu', 'ContentSave', '52', '0', '', '1540880363'), ('301', '270', '菜单内容删除', 'AlipayLifeMenu', 'ContentDelete', '53', '0', '', '1540885691'), ('302', '270', '菜单详情', 'AlipayLifeMenu', 'Detail', '54', '0', '', '1540892591'), ('303', '270', '批量上下架', 'AlipayLifeStatus', 'Index', '60', '1', '', '1540973954'), ('304', '270', '批量上下架添加/编辑页面', 'AlipayLifeStatus', 'SaveInfo', '61', '0', '', '1540973997'), ('305', '270', '批量上下架添加/编辑', 'AlipayLifeStatus', 'Save', '62', '0', '', '1540974015'), ('306', '270', '批量上下架提交', 'AlipayLifeStatus', 'Submit', '63', '0', '', '1540974061'), ('307', '270', '批量上下架生活号搜索', 'AlipayLifeStatus', 'Search', '64', '0', '', '1540974544'), ('308', '270', '批量上下架详情', 'AlipayLifeStatus', 'Detail', '65', '0', '', '1540979165'), ('309', '270', '批量上下架删除', 'AlipayLifeStatus', 'Delete', '66', '0', '', '1540980479'), ('310', '177', '订单确认', 'Order', 'Confirm', '7', '0', '', '1542011799'), ('311', '1', '角色状态更新', 'Power', 'RoleStatusUpdate', '15', '0', '', '1542102071'), ('312', '0', '支付宝小程序', 'AppMiniAlipay', 'Index', '24', '1', 'icon-xiaochengxu-alipay', '1542558274'), ('313', '312', '基础配置', 'AppMiniAlipayConfig', 'Index', '0', '1', '', '1542558297'), ('314', '319', '首页导航', 'AppHomeNav', 'Index', '10', '1', '', '1542558318'), ('315', '319', '首页导航添加/编辑页面', 'AppHomeNav', 'SaveInfo', '11', '0', '', '1542558686'), ('316', '319', '首页导航添加/编辑', 'AppHomeNav', 'Save', '12', '0', '', '1542558706'), ('317', '319', '首页导航状态更新', 'AppHomeNav', 'StatusUpdate', '13', '0', '', '1542558747'), ('318', '319', '首页导航删除', 'AppHomeNav', 'Delete', '14', '0', '', '1542558767'), ('319', '0', '手机端管理', 'App', 'Index', '20', '1', 'icon-shouji', '0'), ('320', '319', '轮播管理', 'AppSlide', 'Index', '20', '1', '', '0'), ('321', '319', '轮播管理添加/编辑页面', 'AppSlide', 'SaveInfo', '21', '0', '', '0'), ('322', '319', '轮播管理添加/编辑', 'AppSlide', 'Save', '22', '0', '', '0'), ('323', '319', '轮播管理状态更新', 'AppSlide', 'StatusUpdate', '23', '0', '', '0'), ('324', '319', '轮播管理删除', 'AppSlide', 'Delete', '24', '0', '', '0'), ('325', '312', '基础配置保存', 'AppMiniAlipayConfig', 'Save', '1', '0', '', '1542596647'), ('326', '319', '基础配置', 'AppConfig', 'Index', '0', '1', '', '1543206359'), ('327', '319', '基础配置保存', 'AppConfig', 'Save', '1', '0', '', '1543206402'), ('328', '312', '小程序源码包', 'AppMiniAlipayList', 'Index', '10', '1', '', '1543304094'), ('329', '312', '小程序生成', 'AppMiniAlipayList', 'Created', '11', '0', '', '1543305528'), ('330', '312', '小程序删除', 'AppMiniAlipayList', 'Delete', '12', '0', '', '1543305609'); +INSERT INTO `s_power` VALUES ('1', '0', '权限控制', 'Power', 'Index', '2', '1', 'icon-quanxian', '1481612301'), ('4', '1', '角色管理', 'Power', 'Role', '11', '1', '', '1481639037'), ('13', '1', '权限分配', 'Power', 'Index', '21', '1', '', '1482156143'), ('15', '1', '权限添加/编辑', 'Power', 'PowerSave', '22', '0', '', '1482243750'), ('16', '1', '权限删除', 'Power', 'PowerDelete', '23', '0', '', '1482243797'), ('17', '1', '角色组添加/编辑页面', 'Power', 'RoleSaveInfo', '12', '0', '', '1482243855'), ('18', '1', '角色组添加/编辑', 'Power', 'RoleSave', '13', '0', '', '1482243888'), ('19', '1', '管理员添加/编辑页面', 'Admin', 'SaveInfo', '2', '0', '', '1482244637'), ('20', '1', '管理员添加/编辑', 'Admin', 'Save', '3', '0', '', '1482244666'), ('21', '1', '管理员删除', 'Admin', 'Delete', '4', '0', '', '1482244688'), ('22', '1', '管理员列表', 'Admin', 'Index', '1', '1', '', '1482568868'), ('23', '1', '角色删除', 'Power', 'RoleDelete', '14', '0', '', '1482569155'), ('38', '0', '商品管理', 'Goods', 'Index', '3', '1', 'icon-shangpin', '1483283430'), ('39', '38', '商品管理', 'Goods', 'Index', '1', '1', '', '1483283546'), ('41', '0', '后台配置', 'Config', 'Index', '0', '1', 'icon-peizhi', '1483362358'), ('42', '41', '配置保存', 'Config', 'Save', '1', '0', '', '1483432335'), ('57', '38', '商品添加/编辑页面', 'Goods', 'SaveInfo', '2', '0', '', '1483616439'), ('58', '38', '商品添加/编辑', 'Goods', 'Save', '3', '0', '', '1483616492'), ('59', '38', '商品删除', 'Goods', 'Delete', '4', '0', '', '1483616569'), ('81', '0', '站点配置', 'Site', 'Index', '1', '1', 'icon-zhandianpeizhi', '1486182943'), ('103', '81', '站点设置', 'Site', 'Index', '0', '1', '', '1486561470'), ('104', '81', '短信设置', 'Sms', 'Index', '10', '1', '', '1486561615'), ('105', '81', '站点设置编辑', 'Site', 'Save', '1', '0', '', '1486561780'), ('107', '81', '短信设置编辑', 'Sms', 'Save', '11', '0', '', '1486562011'), ('118', '0', '工具', 'Tool', 'Index', '30', '1', 'icon-tools', '1488108044'), ('119', '118', '缓存管理', 'Cache', 'Index', '1', '1', '', '1488108107'), ('120', '118', '站点缓存更新', 'Cache', 'SiteUpdate', '2', '0', '', '1488108235'), ('121', '118', '模板缓存更新', 'Cache', 'TemplateUpdate', '2', '0', '', '1488108390'), ('122', '118', '模块缓存更新', 'Cache', 'ModuleUpdate', '3', '0', '', '1488108436'), ('126', '0', '用户管理', 'User', 'Index', '2', '1', 'icon-yonghuguanli', '1490794162'), ('127', '126', '用户列表', 'User', 'Index', '0', '1', '', '1490794316'), ('128', '126', '用户编辑/添加页面', 'User', 'SaveInfo', '1', '0', '', '1490794458'), ('129', '126', '用户添加/编辑', 'User', 'Save', '2', '0', '', '1490794510'), ('130', '126', '用户删除', 'User', 'Delete', '3', '0', '', '1490794585'), ('146', '126', 'Excel导出', 'User', 'ExcelExport', '6', '0', '', '1522223773'), ('152', '0', '资源管理', 'Resources', 'Index', '29', '1', 'icon-ziyuan', '1526304409'), ('153', '152', '地区管理', 'Region', 'Index', '0', '1', '', '1526304473'), ('154', '152', '地区添加/编辑', 'Region', 'Save', '1', '0', '', '1526304503'), ('155', '152', '地区删除', 'Region', 'Delete', '2', '0', '', '1526304531'), ('156', '152', '快递管理', 'Express', 'Index', '10', '1', '', '1526304473'), ('157', '152', '快递添加/编辑', 'Express', 'Save', '11', '0', '', '1526304473'), ('158', '152', '快递删除', 'Express', 'Delete', '12', '0', '', '1526304473'), ('162', '0', '营销管理', 'Marketing', 'Index', '27', '0', 'icon-yingxiao', '1527042204'), ('163', '162', '优惠券管理', 'Coupon', 'Index', '0', '1', '', '1527042261'), ('164', '162', '优惠券状态更新', 'Coupon', 'StateUpdate', '1', '0', '', '1527048618'), ('165', '162', '优惠券添加/编辑页面', 'Coupon', 'SaveInfo', '2', '0', '', '1527048754'), ('166', '162', '优惠券添加/编辑', 'Coupon', 'Save', '3', '0', '', '1527048791'), ('167', '162', '用户优惠券列表', 'Coupon', 'User', '4', '0', '', '1527048877'), ('168', '162', '用户优惠券删除', 'Coupon', 'Delete', '5', '0', '', '1527048935'), ('169', '162', '优惠券发放页面', 'Coupon', 'SendInfo', '6', '0', '', '1527061899'), ('170', '162', '优惠券发放', 'Coupon', 'Send', '7', '0', '', '1527061927'), ('171', '162', '优惠券发放-用户查询', 'Coupon', 'UserQuery', '8', '0', '', '1527066512'), ('172', '222', '首页轮播', 'Slide', 'Index', '70', '1', '', '1527149117'), ('173', '222', '轮播添加/编辑页面', 'Slide', 'SaveInfo', '71', '0', '', '1527149152'), ('174', '222', '轮播添加/编辑', 'Slide', 'Save', '72', '0', '', '1527149186'), ('175', '222', '轮播状态更新', 'Slide', 'StatusUpdate', '73', '0', '', '1527156980'), ('176', '222', '轮播删除', 'Slide', 'Delete', '74', '0', '', '1527157260'), ('177', '0', '订单管理', 'Order', 'Index', '5', '1', 'icon-dingdan', '1522229870'), ('178', '177', '订单管理', 'Order', 'Index', '1', '1', '', '1522317898'), ('179', '177', '订单删除', 'Order', 'Delete', '2', '0', '', '1522317917'), ('180', '177', '订单取消', 'Order', 'Cancel', '3', '0', '', '1527497803'), ('181', '38', '商品上下架', 'Goods', 'StatusShelves', '5', '0', '', '1528080200'), ('182', '0', '数据管理', 'Data', 'Index', '28', '1', 'icon-shuju', '1528096661'), ('183', '182', '消息管理', 'Message', 'Index', '0', '1', '', '1528080200'), ('184', '182', '消息删除', 'Message', 'Delete', '1', '0', '', '1528080200'), ('185', '182', '支付日志', 'PayLog', 'Index', '10', '1', '', '1528080200'), ('186', '182', '用户积分日志', 'UserIntegralLog', 'Index', '20', '1', '', '1528103067'), ('187', '182', '用户投诉', 'Complaint', 'Index', '30', '0', '', '1528189127'), ('188', '182', '投诉处理', 'Complaint', 'Save', '31', '0', '', '1528189193'), ('189', '182', '投诉删除', 'Complaint', 'Delete', '32', '0', '', '1528189211'), ('193', '222', '筛选价格', 'ScreeningPrice', 'Index', '80', '1', '', '1528708578'), ('194', '222', '筛选价格添加/编辑', 'ScreeningPrice', 'Save', '81', '0', '', '1528708609'), ('199', '81', 'SEO设置', 'Seo', 'Index', '30', '1', '', '1528771081'), ('200', '81', 'SEO设置编辑', 'Seo', 'Save', '31', '0', '', '1528771105'), ('201', '38', '商品分类', 'GoodsCategory', 'Index', '10', '1', '', '1529041901'), ('202', '38', '商品分类添加/编辑', 'GoodsCategory', 'Save', '11', '0', '', '1529041928'), ('203', '38', '商品分类删除', 'GoodsCategory', 'Delete', '12', '0', '', '1529041949'), ('204', '0', '文章管理', 'Article', 'Index', '26', '1', 'icon-wenzhang', '1530360560'), ('205', '204', '文章管理', 'Article', 'Index', '0', '1', '', '1530360593'), ('206', '204', '文章添加/编辑页面', 'Article', 'SaveInfo', '1', '0', '', '1530360625'), ('207', '204', '文章添加/编辑', 'Article', 'Save', '2', '0', '', '1530360663'), ('208', '204', '文章删除', 'Article', 'Delete', '3', '0', '', '1530360692'), ('209', '204', '文章状态更新', 'Article', 'StatusUpdate', '4', '0', '', '1530360730'), ('210', '204', '文章分类', 'ArticleCategory', 'Index', '10', '1', '', '1530361071'), ('211', '204', '文章分类编辑/添加', 'ArticleCategory', 'Save', '11', '0', '', '1530361101'), ('212', '204', '文章分类删除', 'ArticleCategory', 'Delete', '12', '0', '', '1530361126'), ('213', '0', '问答留言', 'Answer', 'Index', '6', '1', 'icon-wenda', '1533112421'), ('214', '213', '问答留言', 'Answer', 'Index', '0', '1', '', '1533112443'), ('215', '213', '问答留言回复', 'Answer', 'Reply', '1', '0', '', '1533119660'), ('216', '213', '问答留言删除', 'Answer', 'Delete', '2', '0', '', '1533119680'), ('217', '213', '问答留言状态更新', 'Answer', 'StatusUpdate', '3', '0', '', '1533119704'), ('218', '38', '商品首页推荐', 'Goods', 'StatusHomeRecommended', '6', '0', '', '1533564476'), ('219', '81', '邮箱设置', 'Email', 'Index', '20', '1', '', '1533636067'), ('220', '81', '邮箱添加/编辑', 'Email', 'Save', '21', '0', '', '1533636109'), ('221', '81', '邮件发送测试', 'Email', 'EmailTest', '22', '0', '', '1533636157'), ('222', '0', '网站管理', 'Navigation', 'Index', '7', '1', 'icon-wangzhanguanli', '1533692051'), ('223', '222', '导航管理', 'Navigation', 'Index', '0', '1', '', '1486183114'), ('226', '222', '导航添加/编辑', 'Navigation', 'Save', '2', '0', '', '1486183367'), ('227', '222', '导航删除', 'Navigation', 'Delete', '3', '0', '', '1486183410'), ('228', '222', '导航状态更新', 'Navigation', 'StatusUpdate', '4', '0', '', '1486183462'), ('234', '222', '自定义页面', 'CustomView', 'Index', '21', '1', '', '1486193400'), ('235', '222', '自定义页面添加/编辑页面', 'CustomView', 'SaveInfo', '22', '0', '', '1486193449'), ('236', '222', '自定义页面添加/编辑', 'CustomView', 'Save', '23', '0', '', '1486193473'), ('237', '222', '自定义页面删除', 'CustomView', 'Delete', '24', '0', '', '1486193516'), ('238', '222', '自定义页面状态更新', 'CustomView', 'StatusUpdate', '25', '0', '', '1486193582'), ('239', '222', '友情链接', 'Link', 'Index', '31', '1', '', '1486194358'), ('240', '222', '友情链接添加/编辑页面', 'Link', 'SaveInfo', '32', '0', '', '1486194392'), ('241', '222', '友情链接添加/编辑', 'Link', 'Save', '33', '0', '', '1486194413'), ('242', '222', '友情链接删除', 'Link', 'Delete', '34', '0', '', '1486194435'), ('243', '222', '友情链接状态更新', 'Link', 'StatusUpdate', '35', '0', '', '1486194479'), ('244', '222', '主题管理', 'Theme', 'Index', '60', '1', '', '1494381693'), ('245', '222', '主题管理添加/编辑', 'Theme', 'Save', '61', '0', '', '1494398194'), ('246', '222', '主题上传安装', 'Theme', 'Upload', '62', '0', '', '1494405096'), ('247', '222', '主题删除', 'Theme', 'Delete', '63', '0', '', '1494410655'), ('248', '204', '商品首页推荐', 'Article', 'StatusHomeRecommended', '5', '0', '', '1534156400'), ('249', '252', '品牌管理', 'Brand', 'Index', '0', '1', '', '1535683271'), ('250', '252', '品牌添加/编辑', 'Brand', 'Save', '2', '0', '', '1535683310'), ('251', '252', '品牌删除', 'Brand', 'Delete', '4', '0', '', '1535683351'), ('252', '0', '品牌管理', 'Brand', 'Index', '8', '1', 'icon-ico-pinpaiguanli', '1535684308'), ('253', '252', '品牌分类', 'BrandCategory', 'Index', '10', '1', '', '1535684401'), ('254', '252', '品牌分类添加/编辑', 'BrandCategory', 'Save', '11', '0', '', '1535684424'), ('255', '252', '品牌分类删除', 'BrandCategory', 'Delete', '12', '0', '', '1535684444'), ('256', '252', '品牌添加/编辑页面', 'Brand', 'SaveInfo', '1', '0', '', '1535694837'), ('257', '252', '品牌状态更新', 'Brand', 'StatusUpdate', '3', '0', '', '1535694880'), ('258', '222', '筛选价格删除', 'ScreeningPrice', 'Delete', '82', '0', '', '1536227071'), ('259', '152', '支付方式', 'Payment', 'Index', '50', '1', '', '1537156351'), ('260', '152', '支付方式安装/编辑页面', 'Payment', 'SaveInfo', '51', '0', '', '1537156423'), ('261', '152', '支付方式安装/编辑', 'Payment', 'Save', '52', '0', '', '1537156463'), ('262', '152', '支付方式删除', 'Payment', 'Delete', '53', '0', '', '1537156502'), ('263', '152', '支付方式安装', 'Payment', 'Install', '54', '0', '', '1537166090'), ('264', '152', '支付宝方式状态更新', 'Payment', 'StatusUpdate', '55', '0', '', '1537166149'), ('265', '152', '支付方式卸载', 'Payment', 'Uninstall', '56', '0', '', '1537167814'), ('266', '152', '支付方式上传', 'Payment', 'Upload', '57', '0', '', '1537173653'), ('267', '177', '订单发货', 'Order', 'Delivery', '4', '0', '', '1538413499'), ('268', '177', '订单收货', 'Order', 'Collect', '5', '0', '', '1538414034'), ('269', '177', '订单支付', 'Order', 'Pay', '6', '0', '', '1538757043'), ('270', '0', '支付宝生活号', 'AlipayLife', 'Index', '25', '1', 'icon-zhifubao', '1540175293'), ('271', '270', '生活号管理', 'AlipayLife', 'Index', '0', '1', '', '1540175632'), ('272', '270', '生活号添加/编辑页面', 'AlipayLife', 'SaveInfo', '2', '0', '', '1540175668'), ('273', '270', '生活号添加/编辑', 'AlipayLife', 'Save', '2', '0', '', '1540175706'), ('274', '270', '生活号删除', 'AlipayLife', 'Delete', '4', '0', '', '1540175780'), ('275', '270', '消息管理', 'AlipayLifeMessage', 'Index', '20', '1', '', '1540175867'), ('276', '270', '消息创建页面', 'AlipayLifeMessage', 'SaveInfo', '21', '0', '', '1540175907'), ('277', '270', '消息保存', 'AlipayLifeMessage', 'Save', '22', '0', '', '1540175929'), ('278', '270', '消息删除', 'AlipayLifeMessage', 'Delete', '23', '0', '', '1540175951'), ('279', '270', '用户管理', 'AlipayLifeUser', 'Index', '70', '1', '', '1540175983'), ('280', '270', '用户删除', 'AlipayLifeUser', 'Delete', '71', '0', '', '1540176023'), ('281', '270', '生活号分类', 'AlipayLifeCategory', 'Index', '10', '1', '', '1540176023'), ('282', '270', '生活号分类添加/编辑', 'AlipayLifeCategory', 'Save', '11', '0', '', '1540176023'), ('283', '270', '生活号分类删除', 'AlipayLifeCategory', 'Delete', '12', '0', '', '1540176023'), ('284', '270', '生活号状态更新', 'AlipayLife', 'StatusUpdate', '3', '0', '', '1540179220'), ('285', '270', '消息发送', 'AlipayLifeMessage', 'Send', '24', '0', '', '1540361501'), ('286', '270', '生活号搜索', 'AlipayLifeMessage', 'Search', '25', '0', '', '1540778598'), ('287', '270', '消息内容列表', 'AlipayLifeMessage', 'ContentIndex', '26', '0', '', '1540800203'), ('288', '270', '消息内容添加/编辑页面', 'AlipayLifeMessage', 'ContentSaveInfo', '27', '0', '', '1540800240'), ('289', '270', '消息内容添加/编辑', 'AlipayLifeMessage', 'ContentSave', '28', '0', '', '1540803394'), ('290', '270', '消息内容删除', 'AlipayLifeMessage', 'ContentDelete', '29', '0', '', '1540808858'), ('291', '270', '消息详情', 'AlipayLifeMessage', 'Detail', '30', '0', '', '1540864003'), ('292', '270', '菜单管理', 'AlipayLifeMenu', 'Index', '40', '1', '', '1540869824'), ('293', '270', '菜单管理添加/编辑页面', 'AlipayLifeMenu', 'SaveInfo', '41', '0', '', '1540869856'), ('294', '270', '菜单管理添加/编辑', 'AlipayLifeMenu', 'Save', '42', '0', '', '1540869880'), ('295', '270', '菜单删除', 'AlipayLifeMenu', 'Delete', '43', '0', '', '1540869907'), ('296', '270', '菜单发布', 'AlipayLifeMenu', 'Release', '44', '0', '', '1540869949'), ('297', '270', '菜单内容管理', 'AlipayLifeMenu', 'ContentIndex', '50', '0', '', '1540869992'), ('298', '270', '生活号搜索', 'AlipayLifeMenu', 'Search', '45', '0', '', '1540871105'), ('299', '270', '菜单内容添加/编辑页面', 'AlipayLifeMenu', 'ContentSaveInfo', '51', '0', '', '1540880313'), ('300', '270', '菜单内容添加/编辑', 'AlipayLifeMenu', 'ContentSave', '52', '0', '', '1540880363'), ('301', '270', '菜单内容删除', 'AlipayLifeMenu', 'ContentDelete', '53', '0', '', '1540885691'), ('302', '270', '菜单详情', 'AlipayLifeMenu', 'Detail', '54', '0', '', '1540892591'), ('303', '270', '批量上下架', 'AlipayLifeStatus', 'Index', '60', '1', '', '1540973954'), ('304', '270', '批量上下架添加/编辑页面', 'AlipayLifeStatus', 'SaveInfo', '61', '0', '', '1540973997'), ('305', '270', '批量上下架添加/编辑', 'AlipayLifeStatus', 'Save', '62', '0', '', '1540974015'), ('306', '270', '批量上下架提交', 'AlipayLifeStatus', 'Submit', '63', '0', '', '1540974061'), ('307', '270', '批量上下架生活号搜索', 'AlipayLifeStatus', 'Search', '64', '0', '', '1540974544'), ('308', '270', '批量上下架详情', 'AlipayLifeStatus', 'Detail', '65', '0', '', '1540979165'), ('309', '270', '批量上下架删除', 'AlipayLifeStatus', 'Delete', '66', '0', '', '1540980479'), ('310', '177', '订单确认', 'Order', 'Confirm', '7', '0', '', '1542011799'), ('311', '1', '角色状态更新', 'Power', 'RoleStatusUpdate', '15', '0', '', '1542102071'), ('312', '0', '支付宝小程序', 'AppMiniAlipay', 'Index', '24', '1', 'icon-xiaochengxu-alipay', '1542558274'), ('313', '312', '基础配置', 'AppMiniAlipayConfig', 'Index', '0', '1', '', '1542558297'), ('314', '319', '首页导航', 'AppHomeNav', 'Index', '10', '1', '', '1542558318'), ('315', '319', '首页导航添加/编辑页面', 'AppHomeNav', 'SaveInfo', '11', '0', '', '1542558686'), ('316', '319', '首页导航添加/编辑', 'AppHomeNav', 'Save', '12', '0', '', '1542558706'), ('317', '319', '首页导航状态更新', 'AppHomeNav', 'StatusUpdate', '13', '0', '', '1542558747'), ('318', '319', '首页导航删除', 'AppHomeNav', 'Delete', '14', '0', '', '1542558767'), ('319', '0', '手机端管理', 'App', 'Index', '20', '1', 'icon-shouji', '0'), ('320', '319', '轮播管理', 'AppSlide', 'Index', '20', '1', '', '0'), ('321', '319', '轮播管理添加/编辑页面', 'AppSlide', 'SaveInfo', '21', '0', '', '0'), ('322', '319', '轮播管理添加/编辑', 'AppSlide', 'Save', '22', '0', '', '0'), ('323', '319', '轮播管理状态更新', 'AppSlide', 'StatusUpdate', '23', '0', '', '0'), ('324', '319', '轮播管理删除', 'AppSlide', 'Delete', '24', '0', '', '0'), ('325', '312', '基础配置保存', 'AppMiniAlipayConfig', 'Save', '1', '0', '', '1542596647'), ('326', '319', '基础配置', 'AppConfig', 'Index', '0', '1', '', '1543206359'), ('327', '319', '基础配置保存', 'AppConfig', 'Save', '1', '0', '', '1543206402'), ('328', '312', '小程序源码包', 'AppMiniAlipayList', 'Index', '10', '1', '', '1543304094'), ('329', '312', '小程序生成', 'AppMiniAlipayList', 'Created', '11', '0', '', '1543305528'), ('330', '312', '小程序删除', 'AppMiniAlipayList', 'Delete', '12', '0', '', '1543305609'); COMMIT; -- ---------------------------- @@ -1401,7 +1427,7 @@ CREATE TABLE `s_screening_price` ( -- Records of `s_screening_price` -- ---------------------------- BEGIN; -INSERT INTO `s_screening_price` VALUES ('7', '0', '100以下', '0', '100', '1', '0', '0', '1536228912'), ('10', '0', '100-300', '100', '300', '1', '0', '0', '1536285074'), ('16', '0', '300-600', '300', '600', '1', '0', '1482840545', '1536284623'), ('17', '0', '600-1000', '600', '1000', '1', '0', '1482840557', '1536284638'), ('18', '0', '1000-1500', '1000', '1500', '1', '0', '1482840577', '1536284653'), ('24', '0', '1500-2000', '1500', '2000', '1', '0', '1483951541', '1536284667'), ('25', '0', '2000-3000', '2000', '3000', '1', '0', '1535684676', '1536284683'), ('26', '0', '3000-5000', '3000', '5000', '1', '0', '1535684688', '1536284701'), ('27', '0', '5000-8000', '5000', '8000', '1', '0', '1535684701', '1536284736'), ('28', '0', '8000-12000', '8000', '12000', '1', '0', '1535684707', '1536284767'), ('29', '0', '12000-16000', '12000', '16000', '1', '0', '1535684729', '1536284787'), ('30', '0', '16000-20000', '16000', '20000', '1', '0', '1535684745', '1536284805'), ('31', '0', '20000以上', '20000', '0', '1', '0', '1535684797', '1536284828'); +INSERT INTO `s_screening_price` VALUES ('7', '0', '100以下', '0', '100', '1', '0', '0', '1545321887'), ('10', '0', '100-300', '100', '300', '1', '0', '0', '1536285074'), ('16', '0', '300-600', '300', '600', '1', '0', '1482840545', '1536284623'), ('17', '0', '600-1000', '600', '1000', '1', '0', '1482840557', '1536284638'), ('18', '0', '1000-1500', '1000', '1500', '1', '0', '1482840577', '1536284653'), ('24', '0', '1500-2000', '1500', '2000', '1', '0', '1483951541', '1536284667'), ('25', '0', '2000-3000', '2000', '3000', '1', '0', '1535684676', '1536284683'), ('26', '0', '3000-5000', '3000', '5000', '1', '0', '1535684688', '1536284701'), ('27', '0', '5000-8000', '5000', '8000', '1', '0', '1535684701', '1536284736'), ('28', '0', '8000-12000', '8000', '12000', '1', '0', '1535684707', '1536284767'), ('29', '0', '12000-16000', '12000', '16000', '1', '0', '1535684729', '1536284787'), ('30', '0', '16000-20000', '16000', '20000', '1', '0', '1535684745', '1536284805'), ('31', '0', '20000以上', '20000', '0', '1', '0', '1535684797', '1536284828'); COMMIT; -- ---------------------------- @@ -1420,13 +1446,13 @@ CREATE TABLE `s_search_history` ( `ymd` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '日期 ymd', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=135 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; +) ENGINE=InnoDB AUTO_INCREMENT=138 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; -- ---------------------------- -- Records of `s_search_history` -- ---------------------------- BEGIN; -INSERT INTO `s_search_history` VALUES ('1', '0', '0', '1', '', '', 'default', 'desc', '20181030', '1540914667'), ('2', '0', '0', '0', '连衣裙', '', 'default', 'desc', '20181030', '1540914775'), ('3', '0', '0', '0', '连衣裙', '300-600', 'default', 'desc', '20181030', '1540915071'), ('4', '0', '0', '0', '连衣裙', '100-300', 'default', 'desc', '20181030', '1540915073'), ('5', '0', '0', '0', '连衣裙', '', 'default', 'desc', '20181030', '1540915083'), ('6', '0', '0', '0', '连衣裙', '0-100', 'default', 'desc', '20181030', '1540915083'), ('7', '0', '0', '0', '连衣裙', '0-100', 'sales_count', 'desc', '20181030', '1540915094'), ('8', '0', '0', '0', '连衣裙', '0-100', 'sales_count', 'asc', '20181030', '1540915094'), ('9', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'asc', '20181030', '1540915096'), ('10', '0', '0', '0', '连衣裙', '300-600', 'sales_count', 'asc', '20181030', '1540915097'), ('11', '0', '0', '0', '连衣裙', '300-600', 'price', 'desc', '20181030', '1540915098'), ('12', '0', '0', '0', '连衣裙', '300-600', 'price', 'asc', '20181030', '1540915098'), ('13', '0', '0', '0', '连衣裙', '100-300', 'price', 'asc', '20181030', '1540915099'), ('14', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915100'), ('15', '0', '0', '0', '连衣裙', '100-300', 'default', 'desc', '20181030', '1540915101'), ('16', '0', '0', '0', '连衣裙', '100-300', 'default', 'asc', '20181030', '1540915101'), ('17', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915101'), ('18', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'asc', '20181030', '1540915102'), ('19', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915102'), ('20', '0', '0', '0', '连衣裙', '100-300', 'price', 'desc', '20181030', '1540915103'), ('21', '0', '0', '0', '连衣裙', '100-300', 'price', 'asc', '20181030', '1540915103'), ('22', '0', '0', '0', '连衣裙', '', 'price', 'asc', '20181030', '1540915123'), ('23', '0', '0', '2', '', '', 'default', 'asc', '20181030', '1540915128'), ('24', '0', '2', '2', '', '', 'default', 'asc', '20181030', '1540915142'), ('25', '0', '4', '2', '', '', 'default', 'asc', '20181030', '1540915145'), ('26', '0', '4', '305', '', '', 'default', 'asc', '20181030', '1540915147'), ('27', '0', '4', '304', '', '', 'default', 'asc', '20181030', '1540915148'), ('28', '0', '4', '310', '', '', 'default', 'asc', '20181030', '1540915151'), ('29', '0', '4', '308', '', '', 'default', 'asc', '20181030', '1540915152'), ('30', '0', '4', '189', '', '', 'default', 'asc', '20181030', '1540915153'), ('31', '0', '4', '191', '', '', 'default', 'asc', '20181030', '1540915154'), ('32', '0', '4', '2', '', '', 'default', 'asc', '20181030', '1540915155'), ('33', '0', '4', '309', '', '', 'default', 'asc', '20181030', '1540915158'), ('34', '0', '4', '311', '', '', 'default', 'asc', '20181030', '1540915158'), ('35', '0', '4', '188', '', '', 'default', 'asc', '20181030', '1540915159'), ('36', '90', '0', '2', '', '', 'default', 'asc', '20181031', '1540915293'), ('37', '77', '0', '0', '小米', '', 'default', 'asc', '20181114', '1542173791'), ('38', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542184198'), ('39', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184466'), ('40', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184650'), ('41', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184688'), ('42', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184896'), ('43', '77', '0', '0', '', '', 'sales_count', 'desc', '20181114', '1542184903'), ('44', '77', '0', '0', '', '', 'sales_count', 'asc', '20181114', '1542184908'), ('45', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185667'), ('46', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185701'), ('47', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185706'), ('48', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185727'), ('49', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185730'), ('50', '77', '0', '0', '', '', 'sales_count', 'desc', '20181114', '1542185740'), ('51', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185862'), ('52', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185870'), ('53', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185873'), ('54', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185878'), ('55', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185879'), ('56', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185881'), ('57', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185931'), ('58', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185933'), ('59', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185934'), ('60', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185936'), ('61', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185956'), ('62', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185979'), ('63', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185981'), ('64', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185981'), ('65', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185986'), ('66', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185996'), ('67', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185997'), ('68', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185998'), ('69', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185999'), ('70', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542186002'), ('71', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542186044'), ('72', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542187732'), ('73', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542189218'), ('74', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542189248'), ('75', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189252'), ('76', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189502'), ('77', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189516'), ('78', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189526'), ('79', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252090'), ('80', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252092'), ('81', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252093'), ('82', '0', '0', '0', '', '', 'default', 'asc', '20181119', '1542592056'), ('83', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542957596'), ('84', '77', '0', '0', '', '100-300', 'default', 'asc', '20181123', '1542957600'), ('85', '77', '0', '0', '', '100-300', 'sales_count', 'desc', '20181123', '1542957614'), ('86', '77', '0', '0', '', '100-300', 'sales_count', 'asc', '20181123', '1542957618'), ('87', '77', '0', '0', '', '100-300', 'price', 'desc', '20181123', '1542957662'), ('88', '77', '0', '0', '', '100-300', 'price', 'asc', '20181123', '1542957663'), ('89', '77', '0', '0', '', '100-300', 'price', 'desc', '20181123', '1542957664'), ('90', '77', '0', '0', '', '100-300', 'default', 'desc', '20181123', '1542965524'), ('91', '77', '0', '0', '', '100-300', 'default', 'asc', '20181123', '1542965524'), ('92', '77', '0', '0', '', '100-300', 'sales_count', 'desc', '20181123', '1542965539'), ('93', '77', '0', '0', '', '100-300', 'sales_count', 'asc', '20181123', '1542965540'), ('94', '77', '0', '0', '', '100-300', 'price', 'desc', '20181123', '1542965547'), ('95', '77', '0', '0', '', '100-300', 'price', 'asc', '20181123', '1542965547'), ('96', '77', '0', '0', '', '100-300', 'default', 'desc', '20181123', '1542965972'), ('97', '77', '0', '0', '', '100-300', 'default', 'asc', '20181123', '1542965982'), ('98', '77', '0', '0', '', '100-300', 'default', 'desc', '20181123', '1542965982'), ('99', '77', '0', '0', '', '100-300', 'default', 'asc', '20181123', '1542965990'), ('100', '77', '0', '0', '', '100-300', 'default', 'desc', '20181123', '1542965990'), ('101', '77', '0', '0', '', '100-300', 'sales_count', 'desc', '20181123', '1542966020'), ('102', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542966024'), ('103', '77', '0', '0', '', '', 'sales_count', 'desc', '20181123', '1542966026'), ('104', '77', '0', '0', '', '', 'price', 'desc', '20181123', '1542966029'), ('105', '77', '0', '0', '', '', 'sales_count', 'desc', '20181123', '1542966032'), ('106', '77', '0', '0', '', '', 'sales_count', 'asc', '20181123', '1542966035'), ('107', '77', '0', '0', '', '', 'price', 'desc', '20181123', '1542966558'), ('108', '77', '0', '0', '', '', 'default', 'desc', '20181123', '1542966563'), ('109', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542966566'), ('110', '77', '0', '0', '', '', 'default', 'desc', '20181123', '1542966583'), ('111', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542966587'), ('112', '77', '0', '0', '', '', 'default', 'desc', '20181123', '1542969135'), ('113', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542969145'), ('114', '0', '0', '0', '', '', 'default', 'asc', '20181130', '1543507657'), ('115', '0', '0', '0', '', '', 'default', 'asc', '20181130', '1543507758'), ('116', '0', '0', '1', '', '', 'default', 'asc', '20181201', '1543603782'), ('117', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544903500'), ('118', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544903504'), ('119', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544903510'), ('120', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544975348'), ('121', '90', '0', '0', '', '0-0', 'price', 'desc', '20181216', '1544975351'), ('122', '90', '0', '0', '', '0-0', 'price', 'asc', '20181216', '1544975354'), ('123', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544975416'), ('124', '90', '0', '0', '', '0-0', 'price', 'desc', '20181216', '1544975417'), ('125', '90', '0', '0', '', '0-0', 'price', 'asc', '20181216', '1544975419'), ('126', '90', '0', '0', '', '0-0', 'price', 'desc', '20181216', '1544975424'), ('127', '90', '0', '0', '', '0-0', 'price', 'asc', '20181216', '1544975425'), ('128', '0', '0', '0', '', '0-0', 'default', 'asc', '20181217', '1545033506'), ('129', '0', '0', '0', '', '0-0', 'default', 'asc', '20181217', '1545033647'), ('130', '77', '0', '0', '', '0-0', 'default', 'asc', '20181218', '1545099179'), ('131', '77', '0', '0', '', '0-0', 'default', 'asc', '20181218', '1545099182'), ('132', '77', '0', '0', '', '0-0', 'default', 'asc', '20181218', '1545099183'), ('133', '77', '0', '0', '', '0-0', 'default', 'asc', '20181218', '1545099185'), ('134', '90', '0', '1', '', '0-0', 'default', 'asc', '20181218', '1545116747'); +INSERT INTO `s_search_history` VALUES ('1', '0', '0', '1', '', '', 'default', 'desc', '20181030', '1540914667'), ('2', '0', '0', '0', '连衣裙', '', 'default', 'desc', '20181030', '1540914775'), ('3', '0', '0', '0', '连衣裙', '300-600', 'default', 'desc', '20181030', '1540915071'), ('4', '0', '0', '0', '连衣裙', '100-300', 'default', 'desc', '20181030', '1540915073'), ('5', '0', '0', '0', '连衣裙', '', 'default', 'desc', '20181030', '1540915083'), ('6', '0', '0', '0', '连衣裙', '0-100', 'default', 'desc', '20181030', '1540915083'), ('7', '0', '0', '0', '连衣裙', '0-100', 'sales_count', 'desc', '20181030', '1540915094'), ('8', '0', '0', '0', '连衣裙', '0-100', 'sales_count', 'asc', '20181030', '1540915094'), ('9', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'asc', '20181030', '1540915096'), ('10', '0', '0', '0', '连衣裙', '300-600', 'sales_count', 'asc', '20181030', '1540915097'), ('11', '0', '0', '0', '连衣裙', '300-600', 'price', 'desc', '20181030', '1540915098'), ('12', '0', '0', '0', '连衣裙', '300-600', 'price', 'asc', '20181030', '1540915098'), ('13', '0', '0', '0', '连衣裙', '100-300', 'price', 'asc', '20181030', '1540915099'), ('14', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915100'), ('15', '0', '0', '0', '连衣裙', '100-300', 'default', 'desc', '20181030', '1540915101'), ('16', '0', '0', '0', '连衣裙', '100-300', 'default', 'asc', '20181030', '1540915101'), ('17', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915101'), ('18', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'asc', '20181030', '1540915102'), ('19', '0', '0', '0', '连衣裙', '100-300', 'sales_count', 'desc', '20181030', '1540915102'), ('20', '0', '0', '0', '连衣裙', '100-300', 'price', 'desc', '20181030', '1540915103'), ('21', '0', '0', '0', '连衣裙', '100-300', 'price', 'asc', '20181030', '1540915103'), ('22', '0', '0', '0', '连衣裙', '', 'price', 'asc', '20181030', '1540915123'), ('23', '0', '0', '2', '', '', 'default', 'asc', '20181030', '1540915128'), ('24', '0', '2', '2', '', '', 'default', 'asc', '20181030', '1540915142'), ('25', '0', '4', '2', '', '', 'default', 'asc', '20181030', '1540915145'), ('26', '0', '4', '305', '', '', 'default', 'asc', '20181030', '1540915147'), ('27', '0', '4', '304', '', '', 'default', 'asc', '20181030', '1540915148'), ('28', '0', '4', '310', '', '', 'default', 'asc', '20181030', '1540915151'), ('29', '0', '4', '308', '', '', 'default', 'asc', '20181030', '1540915152'), ('30', '0', '4', '189', '', '', 'default', 'asc', '20181030', '1540915153'), ('31', '0', '4', '191', '', '', 'default', 'asc', '20181030', '1540915154'), ('32', '0', '4', '2', '', '', 'default', 'asc', '20181030', '1540915155'), ('33', '0', '4', '309', '', '', 'default', 'asc', '20181030', '1540915158'), ('34', '0', '4', '311', '', '', 'default', 'asc', '20181030', '1540915158'), ('35', '0', '4', '188', '', '', 'default', 'asc', '20181030', '1540915159'), ('36', '90', '0', '2', '', '', 'default', 'asc', '20181031', '1540915293'), ('37', '77', '0', '0', '小米', '', 'default', 'asc', '20181114', '1542173791'), ('38', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542184198'), ('39', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184466'), ('40', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184650'), ('41', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184688'), ('42', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542184896'), ('43', '77', '0', '0', '', '', 'sales_count', 'desc', '20181114', '1542184903'), ('44', '77', '0', '0', '', '', 'sales_count', 'asc', '20181114', '1542184908'), ('45', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185667'), ('46', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185701'), ('47', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185706'), ('48', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185727'), ('49', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185730'), ('50', '77', '0', '0', '', '', 'sales_count', 'desc', '20181114', '1542185740'), ('51', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185862'), ('52', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185870'), ('53', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185873'), ('54', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185878'), ('55', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185879'), ('56', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185881'), ('57', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185931'), ('58', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185933'), ('59', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185934'), ('60', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185936'), ('61', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185956'), ('62', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185979'), ('63', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185981'), ('64', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185981'), ('65', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185986'), ('66', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185996'), ('67', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185997'), ('68', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185998'), ('69', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542185999'), ('70', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542186002'), ('71', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542186044'), ('72', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542187732'), ('73', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542189218'), ('74', '77', '0', '0', '', '', 'default', 'asc', '20181114', '1542189248'), ('75', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189252'), ('76', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189502'), ('77', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189516'), ('78', '77', '0', '1', '', '', 'default', 'asc', '20181114', '1542189526'), ('79', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252090'), ('80', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252092'), ('81', '77', '0', '0', '', '', 'default', 'asc', '20181115', '1542252093'), ('82', '0', '0', '0', '', '', 'default', 'asc', '20181119', '1542592056'), ('83', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542957596'), ('84', '77', '0', '0', '', '100-300', 'default', 'asc', '20181123', '1542957600'), ('85', '77', '0', '0', '', '100-300', 'sales_count', 'desc', '20181123', '1542957614'), ('86', '77', '0', '0', '', '100-300', 'sales_count', 'asc', '20181123', '1542957618'), ('87', '77', '0', '0', '', '100-300', 'price', 'desc', '20181123', '1542957662'), ('88', '77', '0', '0', '', '100-300', 'price', 'asc', '20181123', '1542957663'), ('89', '77', '0', '0', '', '100-300', 'price', 'desc', '20181123', '1542957664'), ('90', '77', '0', '0', '', '100-300', 'default', 'desc', '20181123', '1542965524'), ('91', '77', '0', '0', '', '100-300', 'default', 'asc', '20181123', '1542965524'), ('92', '77', '0', '0', '', '100-300', 'sales_count', 'desc', '20181123', '1542965539'), ('93', '77', '0', '0', '', '100-300', 'sales_count', 'asc', '20181123', '1542965540'), ('94', '77', '0', '0', '', '100-300', 'price', 'desc', '20181123', '1542965547'), ('95', '77', '0', '0', '', '100-300', 'price', 'asc', '20181123', '1542965547'), ('96', '77', '0', '0', '', '100-300', 'default', 'desc', '20181123', '1542965972'), ('97', '77', '0', '0', '', '100-300', 'default', 'asc', '20181123', '1542965982'), ('98', '77', '0', '0', '', '100-300', 'default', 'desc', '20181123', '1542965982'), ('99', '77', '0', '0', '', '100-300', 'default', 'asc', '20181123', '1542965990'), ('100', '77', '0', '0', '', '100-300', 'default', 'desc', '20181123', '1542965990'), ('101', '77', '0', '0', '', '100-300', 'sales_count', 'desc', '20181123', '1542966020'), ('102', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542966024'), ('103', '77', '0', '0', '', '', 'sales_count', 'desc', '20181123', '1542966026'), ('104', '77', '0', '0', '', '', 'price', 'desc', '20181123', '1542966029'), ('105', '77', '0', '0', '', '', 'sales_count', 'desc', '20181123', '1542966032'), ('106', '77', '0', '0', '', '', 'sales_count', 'asc', '20181123', '1542966035'), ('107', '77', '0', '0', '', '', 'price', 'desc', '20181123', '1542966558'), ('108', '77', '0', '0', '', '', 'default', 'desc', '20181123', '1542966563'), ('109', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542966566'), ('110', '77', '0', '0', '', '', 'default', 'desc', '20181123', '1542966583'), ('111', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542966587'), ('112', '77', '0', '0', '', '', 'default', 'desc', '20181123', '1542969135'), ('113', '77', '0', '0', '', '', 'default', 'asc', '20181123', '1542969145'), ('114', '0', '0', '0', '', '', 'default', 'asc', '20181130', '1543507657'), ('115', '0', '0', '0', '', '', 'default', 'asc', '20181130', '1543507758'), ('116', '0', '0', '1', '', '', 'default', 'asc', '20181201', '1543603782'), ('117', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544903500'), ('118', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544903504'), ('119', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544903510'), ('120', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544975348'), ('121', '90', '0', '0', '', '0-0', 'price', 'desc', '20181216', '1544975351'), ('122', '90', '0', '0', '', '0-0', 'price', 'asc', '20181216', '1544975354'), ('123', '90', '0', '0', '', '0-0', 'default', 'asc', '20181216', '1544975416'), ('124', '90', '0', '0', '', '0-0', 'price', 'desc', '20181216', '1544975417'), ('125', '90', '0', '0', '', '0-0', 'price', 'asc', '20181216', '1544975419'), ('126', '90', '0', '0', '', '0-0', 'price', 'desc', '20181216', '1544975424'), ('127', '90', '0', '0', '', '0-0', 'price', 'asc', '20181216', '1544975425'), ('128', '0', '0', '0', '', '0-0', 'default', 'asc', '20181217', '1545033506'), ('129', '0', '0', '0', '', '0-0', 'default', 'asc', '20181217', '1545033647'), ('130', '77', '0', '0', '', '0-0', 'default', 'asc', '20181218', '1545099179'), ('131', '77', '0', '0', '', '0-0', 'default', 'asc', '20181218', '1545099182'), ('132', '77', '0', '0', '', '0-0', 'default', 'asc', '20181218', '1545099183'), ('133', '77', '0', '0', '', '0-0', 'default', 'asc', '20181218', '1545099185'), ('134', '90', '0', '1', '', '0-0', 'default', 'asc', '20181218', '1545116747'), ('135', '90', '0', '0', '', '0-0', 'default', 'asc', '20181220', '1545307211'), ('136', '90', '0', '0', '', '0-0', 'default', 'asc', '20181220', '1545307214'), ('137', '90', '0', '68', '', '0-0', 'default', 'asc', '20181220', '1545307219'); COMMIT; -- ---------------------------- @@ -1455,7 +1481,7 @@ CREATE TABLE `s_slide` ( -- Records of `s_slide` -- ---------------------------- BEGIN; -INSERT INTO `s_slide` VALUES ('6', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810094402044087.jpeg', '浪漫七夕', '', '1', '7', '1533865442', '1542618695'), ('7', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810095910423687.jpeg', '海洋的未来', '', '1', '6', '1533866350', '1542618690'), ('8', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810100811853567.jpeg', '大闸蟹', '', '1', '5', '1533866891', '1542618684'), ('9', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810101045451156.jpeg', '情定七夕', '', '1', '4', '1533867045', '1542618679'), ('10', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810101106984022.jpeg', '美酒', '', '1', '3', '1533867066', '1542618673'), ('11', 'alipay', '3', 'ShopXO|上海浦东新区张江高科技园区XXX号|121.626444|31.20843', '/static/upload/images/slide/2018/08/20180810101154662873.jpeg', '助力七夕', '', '1', '2', '1533867114', '1543212317'), ('12', 'alipay', '0', 'https://shopxo.net', '/static/upload/images/slide/2018/08/20180810101224227323.jpeg', '爱在厨房', '', '1', '1', '1533867144', '1542618583'), ('13', 'pc', '1', '/pages/goods-detail/goods-detail?goods_id=1', '/static/upload/images/slide/2018/08/20180810101305611263.jpeg', '预享甜蜜', '#FF0000', '1', '0', '1533867185', '1545210518'); +INSERT INTO `s_slide` VALUES ('6', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810094402044087.jpeg', '浪漫七夕', '#080718', '1', '7', '1533865442', '1542618695'), ('7', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810095910423687.jpeg', '海洋的未来', '#016bcc', '1', '6', '1533866350', '1542618690'), ('8', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810100811853567.jpeg', '大闸蟹', '#f2efe6', '1', '5', '1533866891', '1542618684'), ('9', 'alipay', '-1', '', '/static/upload/images/slide/2018/08/20180810101045451156.jpeg', '情定七夕', '#7ddcf3', '1', '4', '1533867045', '1542618679'), ('10', 'pc', '-1', '', '/static/upload/images/slide/2018/08/20180810101106984022.jpeg', '美酒', '#f4bccb', '1', '3', '1533867066', '1545290302'), ('11', 'alipay', '3', 'ShopXO|上海浦东新区张江高科技园区XXX号|121.626444|31.20843', '/static/upload/images/slide/2018/08/20180810101154662873.jpeg', '助力七夕', '#85c8c7', '1', '2', '1533867114', '1543212317'), ('12', 'pc', '0', 'https://shopxo.net', '/static/upload/images/slide/2018/08/20180810101224227323.jpeg', '爱在厨房', '#efc6c4', '1', '1', '1533867144', '1545290041'), ('13', 'alipay', '1', '/pages/goods-detail/goods-detail?goods_id=1', '/static/upload/images/slide/2018/08/20180810101305611263.jpeg', '预享甜蜜', '#f6f6f4', '1', '0', '1533867185', '1545290030'); COMMIT; -- ---------------------------- diff --git a/public/static/admin/default/css/brand.css b/public/static/admin/default/css/brand.css index 150222433..583d813f5 100755 --- a/public/static/admin/default/css/brand.css +++ b/public/static/admin/default/css/brand.css @@ -15,4 +15,9 @@ } @media only screen and (max-width: 321px) { .view-operation button { margin: 2px 0px; } -} \ No newline at end of file +} + +/** + * 插件覆盖 + */ +ul.plug-file-upload-view li { width: 150px; height: 58px; } \ No newline at end of file diff --git a/public/static/common/css/common.css b/public/static/common/css/common.css index c1d7555b5..1e40ff496 100755 --- a/public/static/common/css/common.css +++ b/public/static/common/css/common.css @@ -191,6 +191,7 @@ ul.plug-file-upload-view li i { right: 5px; top: 5px; cursor: pointer; + text-shadow: -2px 1px #fff; } ul.plug-file-upload-view li:hover > i { color: #e90f0f; -- GitLab