• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

谷粒商城 -- 项目环境搭建

武飞扬头像
lwj_07
帮助1

注:以下的项目环境搭建过程,适用于所有的微服务项目的环境搭建,以后做微服务项目的时候看着这个笔记进行搭建环境即可

一、项目微服务划分图

二、Linux安装Docker

 三、Docker安装mysql / redis

四、Vscode下载安装

五、谷粒项目结构创建&将项目提交到码云托管

1、先从码云上创建一个仓库

 2、把码云上的仓库克隆下来作为本地仓库

3、把各个服务模块都创建到总项目目录中

4、gulimall总项目聚合模块服务

 5、去掉项目中的垃圾文件提交项目代码到码云中托管

编辑

六、谷粒项目数据库初始化

gulimall_sms.sql语句: 

我们以gulimall_sms.sql为例进行演示:

gulimall_oms.sql语句:

gulimall_pms.sql语句:

gulimall_ums.sql语句:

gulimalll_wms.sql语句:

一、项目微服务划分图

学新通

二、Linux安装Docker

        这里的安装过程,看前面的Docker中的安装笔记跟着步骤安装即可(把这下面的五个笔记中的步骤做完即可)。

学新通

 三、Docker安装mysql / redis

看着笔记进行安装即可。

四、Vscode下载安装

学新通

学新通

 然后直接等待下载完成打开即可(点击确定):

学新通

点击完确定之后,直接点击下一步即可,那么以后我们写前端的代码的时候就用这个vscode即可。

为了以后我们使用vscode方便,我们也可以打开vscode编辑器安装一些插件:

把这些插件都安装一下即可:

注:ESlint最好别安装了(能折磨死人)

学新通

上面的插件说明:

EsLint——语法纠错

AutoCloseTag——自动闭合HTML/XML标签

AutoRenameTag——自动完成另一侧标签的同步修改

JavaScript(ES6)codesnippets——ES6语法智能提示以及快速输入,除js外还支持.ts,.jsx,.tsx,.html,.vue,省去了配置其支持各种包含js代码文件的时间HTMLCSSSupport——让html标签上写class智能提示当前项目所支持的样式

HTMLSnippets——html快速自动补全

Openinbrowser——浏览器快速打开

LiveServer——以内嵌服务器方式打开Chinese(Simplified)LanguagePackforVisualStudioCode——中文语言包

vscode上如何安装这些插件: 我们以第一个EsLint插件安装演示(其余的都一样):

 学新通

 上面的整体插件安装完成之后,我们就可以重启vscode了就能够生效了。

五、谷粒项目结构创建&将项目提交到码云托管

1、先从码云上创建一个仓库

学新通

 2、把码云上的仓库克隆下来作为本地仓库

忘记的话看git的笔记: 我们本地仓库可以有两种方式创建,一种是手动创建本地仓库,第二种就是把码云上的仓库克隆下来当作本地仓库使用,我们这里直接克隆码云上的仓库作为本地仓库,然后我们的谷粒项目代码以后就可以先提交到本地仓库当中然后再推送到码云上的远程仓库中进行托管了。

首先我们先在idea上配置一下git插件:

学新通

 学新通

 配置好git插件之后,我们就可以通过下面的方式将码云上面的gulimall为名的远程仓库克隆下来当作本地仓库了:

学新通

 学新通

 学新通

3、把各个服务模块都创建到总项目目录中

通过上面我们这个gulimall模块项目就创建成功了,我们就以这个gulimall项目作为我们谷粒商城项目的总项目,现在我们就可以先把一些微服务创建出来了(如:商品服务、仓储服务、订单服务、优惠券服务、用户服务这些目录都可以先创建在gulimall下了):

 这些模块服务创建步骤如下所示(以商品服务为例):

学新通

 然后把微服务项目必备的两个依赖先选择上,其他的依赖等用到的时候再导入即可(所有的微服务项目都可以先勾选上这两个依赖):

学新通

学新通

 按照商品服务的创建方式把其他的服务模块都创建出来最终的微服务模块都创建完成后的整体如下所示:

学新通

和以前我们创建springboot的项目形式差不多一个样子(springboot项目创建的形式如下所示,忘记的话可以看springboot的笔记有创建的步骤):

学新通 学新通

4、gulimall总项目聚合模块服务

也就是说此时gulimall作为总项目,下面有五个微服务模块,现在我们需要先把gulimall总项目聚合一下这五个微服务模块的pom,那么也就是说以后只需要操作gulimall整体模块的pom,那么这五个微服务模块的坐标也会随之跟着变化了

 学新通

 然后我们点击maven的加号:

学新通

学新通 学新通

 学新通

 5、去掉项目中的垃圾文件提交项目代码到码云中托管

学新通

 然后我们就可以先把这个整体的谷粒项目代码框架提交到码云中进行托管了:

可以先把整体的gulimall项目加入到暂存区当中:

学新通

 然后就可以把暂存区中的总体谷粒商城项目代码提交到本地仓库然后推送到码云远程仓库当中了:

学新通

 学新通

学新通

 最终会发现推送成功了:

学新通

并且可以看到项目中的一些垃圾文件确实没有提交到码云仓库上:

学新通

 学新通

六、谷粒项目数据库初始化

我们上面知道,mysql数据库我们是由Docker容器管理了,因此我们需要先把Docker容器中的mysql容器启动起来,然后用Navicat可视化工具连接mysql容器。

补充Docker命令:将mysql容器设定为自动启动命令:

                                        docker update --restart=always mysql

学新通

 开启后,就可以用可视化工具进行连接了:

学新通

 学新通

五个模块对应的数据库创建好之后,我们就可以在各自对应的数据库当中创建生成表了

gulimall_sms.sql语句: 

  1.  
    /*
  2.  
    Navicat MySQL Data Transfer
  3.  
     
  4.  
    Source Server : 192.168.56.10_3306
  5.  
    Source Server Version : 50727
  6.  
    Source Host : 192.168.56.10:3306
  7.  
    Source Database : gulimall_sms
  8.  
     
  9.  
    Target Server Type : MYSQL
  10.  
    Target Server Version : 50727
  11.  
    File Encoding : 65001
  12.  
     
  13.  
    Date: 2020-03-11 17:37:07
  14.  
    */
  15.  
     
  16.  
    SET FOREIGN_KEY_CHECKS=0;
  17.  
     
  18.  
    -- ----------------------------
  19.  
    -- Table structure for sms_coupon
  20.  
    -- ----------------------------
  21.  
    DROP TABLE IF EXISTS `sms_coupon`;
  22.  
    CREATE TABLE `sms_coupon` (
  23.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  24.  
    `coupon_type` tinyint(1) DEFAULT NULL COMMENT '优惠卷类型[0->全场赠券;1->会员赠券;2->购物赠券;3->注册赠券]',
  25.  
    `coupon_img` varchar(2000) DEFAULT NULL COMMENT '优惠券图片',
  26.  
    `coupon_name` varchar(100) DEFAULT NULL COMMENT '优惠卷名字',
  27.  
    `num` int(11) DEFAULT NULL COMMENT '数量',
  28.  
    `amount` decimal(18,4) DEFAULT NULL COMMENT '金额',
  29.  
    `per_limit` int(11) DEFAULT NULL COMMENT '每人限领张数',
  30.  
    `min_point` decimal(18,4) DEFAULT NULL COMMENT '使用门槛',
  31.  
    `start_time` datetime DEFAULT NULL COMMENT '开始时间',
  32.  
    `end_time` datetime DEFAULT NULL COMMENT '结束时间',
  33.  
    `use_type` tinyint(1) DEFAULT NULL COMMENT '使用类型[0->全场通用;1->指定分类;2->指定商品]',
  34.  
    `note` varchar(200) DEFAULT NULL COMMENT '备注',
  35.  
    `publish_count` int(11) DEFAULT NULL COMMENT '发行数量',
  36.  
    `use_count` int(11) DEFAULT NULL COMMENT '已使用数量',
  37.  
    `receive_count` int(11) DEFAULT NULL COMMENT '领取数量',
  38.  
    `enable_start_time` datetime DEFAULT NULL COMMENT '可以领取的开始日期',
  39.  
    `enable_end_time` datetime DEFAULT NULL COMMENT '可以领取的结束日期',
  40.  
    `code` varchar(64) DEFAULT NULL COMMENT '优惠码',
  41.  
    `member_level` tinyint(1) DEFAULT NULL COMMENT '可以领取的会员等级[0->不限等级,其他-对应等级]',
  42.  
    `publish` tinyint(1) DEFAULT NULL COMMENT '发布状态[0-未发布,1-已发布]',
  43.  
    PRIMARY KEY (`id`)
  44.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='优惠券信息';
  45.  
     
  46.  
    -- ----------------------------
  47.  
    -- Records of sms_coupon
  48.  
    -- ----------------------------
  49.  
     
  50.  
    -- ----------------------------
  51.  
    -- Table structure for sms_coupon_history
  52.  
    -- ----------------------------
  53.  
    DROP TABLE IF EXISTS `sms_coupon_history`;
  54.  
    CREATE TABLE `sms_coupon_history` (
  55.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  56.  
    `coupon_id` bigint(20) DEFAULT NULL COMMENT '优惠券id',
  57.  
    `member_id` bigint(20) DEFAULT NULL COMMENT '会员id',
  58.  
    `member_nick_name` varchar(64) DEFAULT NULL COMMENT '会员名字',
  59.  
    `get_type` tinyint(1) DEFAULT NULL COMMENT '获取方式[0->后台赠送;1->主动领取]',
  60.  
    `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  61.  
    `use_type` tinyint(1) DEFAULT NULL COMMENT '使用状态[0->未使用;1->已使用;2->已过期]',
  62.  
    `use_time` datetime DEFAULT NULL COMMENT '使用时间',
  63.  
    `order_id` bigint(20) DEFAULT NULL COMMENT '订单id',
  64.  
    `order_sn` bigint(20) DEFAULT NULL COMMENT '订单号',
  65.  
    PRIMARY KEY (`id`)
  66.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='优惠券领取历史记录';
  67.  
     
  68.  
    -- ----------------------------
  69.  
    -- Records of sms_coupon_history
  70.  
    -- ----------------------------
  71.  
     
  72.  
    -- ----------------------------
  73.  
    -- Table structure for sms_coupon_spu_category_relation
  74.  
    -- ----------------------------
  75.  
    DROP TABLE IF EXISTS `sms_coupon_spu_category_relation`;
  76.  
    CREATE TABLE `sms_coupon_spu_category_relation` (
  77.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  78.  
    `coupon_id` bigint(20) DEFAULT NULL COMMENT '优惠券id',
  79.  
    `category_id` bigint(20) DEFAULT NULL COMMENT '产品分类id',
  80.  
    `category_name` varchar(64) DEFAULT NULL COMMENT '产品分类名称',
  81.  
    PRIMARY KEY (`id`)
  82.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='优惠券分类关联';
  83.  
     
  84.  
    -- ----------------------------
  85.  
    -- Records of sms_coupon_spu_category_relation
  86.  
    -- ----------------------------
  87.  
     
  88.  
    -- ----------------------------
  89.  
    -- Table structure for sms_coupon_spu_relation
  90.  
    -- ----------------------------
  91.  
    DROP TABLE IF EXISTS `sms_coupon_spu_relation`;
  92.  
    CREATE TABLE `sms_coupon_spu_relation` (
  93.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  94.  
    `coupon_id` bigint(20) DEFAULT NULL COMMENT '优惠券id',
  95.  
    `spu_id` bigint(20) DEFAULT NULL COMMENT 'spu_id',
  96.  
    `spu_name` varchar(255) DEFAULT NULL COMMENT 'spu_name',
  97.  
    PRIMARY KEY (`id`)
  98.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='优惠券与产品关联';
  99.  
     
  100.  
    -- ----------------------------
  101.  
    -- Records of sms_coupon_spu_relation
  102.  
    -- ----------------------------
  103.  
     
  104.  
    -- ----------------------------
  105.  
    -- Table structure for sms_home_adv
  106.  
    -- ----------------------------
  107.  
    DROP TABLE IF EXISTS `sms_home_adv`;
  108.  
    CREATE TABLE `sms_home_adv` (
  109.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  110.  
    `name` varchar(100) DEFAULT NULL COMMENT '名字',
  111.  
    `pic` varchar(500) DEFAULT NULL COMMENT '图片地址',
  112.  
    `start_time` datetime DEFAULT NULL COMMENT '开始时间',
  113.  
    `end_time` datetime DEFAULT NULL COMMENT '结束时间',
  114.  
    `status` tinyint(1) DEFAULT NULL COMMENT '状态',
  115.  
    `click_count` int(11) DEFAULT NULL COMMENT '点击数',
  116.  
    `url` varchar(500) DEFAULT NULL COMMENT '广告详情连接地址',
  117.  
    `note` varchar(500) DEFAULT NULL COMMENT '备注',
  118.  
    `sort` int(11) DEFAULT NULL COMMENT '排序',
  119.  
    `publisher_id` bigint(20) DEFAULT NULL COMMENT '发布者',
  120.  
    `auth_id` bigint(20) DEFAULT NULL COMMENT '审核者',
  121.  
    PRIMARY KEY (`id`)
  122.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='首页轮播广告';
  123.  
     
  124.  
    -- ----------------------------
  125.  
    -- Records of sms_home_adv
  126.  
    -- ----------------------------
  127.  
     
  128.  
    -- ----------------------------
  129.  
    -- Table structure for sms_home_subject
  130.  
    -- ----------------------------
  131.  
    DROP TABLE IF EXISTS `sms_home_subject`;
  132.  
    CREATE TABLE `sms_home_subject` (
  133.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  134.  
    `name` varchar(200) DEFAULT NULL COMMENT '专题名字',
  135.  
    `title` varchar(255) DEFAULT NULL COMMENT '专题标题',
  136.  
    `sub_title` varchar(255) DEFAULT NULL COMMENT '专题副标题',
  137.  
    `status` tinyint(1) DEFAULT NULL COMMENT '显示状态',
  138.  
    `url` varchar(500) DEFAULT NULL COMMENT '详情连接',
  139.  
    `sort` int(11) DEFAULT NULL COMMENT '排序',
  140.  
    `img` varchar(500) DEFAULT NULL COMMENT '专题图片地址',
  141.  
    PRIMARY KEY (`id`)
  142.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='首页专题表【jd首页下面很多专题,每个专题链接新的页面,展示专题商品信息】';
  143.  
     
  144.  
    -- ----------------------------
  145.  
    -- Records of sms_home_subject
  146.  
    -- ----------------------------
  147.  
     
  148.  
    -- ----------------------------
  149.  
    -- Table structure for sms_home_subject_spu
  150.  
    -- ----------------------------
  151.  
    DROP TABLE IF EXISTS `sms_home_subject_spu`;
  152.  
    CREATE TABLE `sms_home_subject_spu` (
  153.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  154.  
    `name` varchar(200) DEFAULT NULL COMMENT '专题名字',
  155.  
    `subject_id` bigint(20) DEFAULT NULL COMMENT '专题id',
  156.  
    `spu_id` bigint(20) DEFAULT NULL COMMENT 'spu_id',
  157.  
    `sort` int(11) DEFAULT NULL COMMENT '排序',
  158.  
    PRIMARY KEY (`id`)
  159.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='专题商品';
  160.  
     
  161.  
    -- ----------------------------
  162.  
    -- Records of sms_home_subject_spu
  163.  
    -- ----------------------------
  164.  
     
  165.  
    -- ----------------------------
  166.  
    -- Table structure for sms_member_price
  167.  
    -- ----------------------------
  168.  
    DROP TABLE IF EXISTS `sms_member_price`;
  169.  
    CREATE TABLE `sms_member_price` (
  170.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  171.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  172.  
    `member_level_id` bigint(20) DEFAULT NULL COMMENT '会员等级id',
  173.  
    `member_level_name` varchar(100) DEFAULT NULL COMMENT '会员等级名',
  174.  
    `member_price` decimal(18,4) DEFAULT NULL COMMENT '会员对应价格',
  175.  
    `add_other` tinyint(1) DEFAULT NULL COMMENT '可否叠加其他优惠[0-不可叠加优惠,1-可叠加]',
  176.  
    PRIMARY KEY (`id`)
  177.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品会员价格';
  178.  
     
  179.  
    -- ----------------------------
  180.  
    -- Records of sms_member_price
  181.  
    -- ----------------------------
  182.  
     
  183.  
    -- ----------------------------
  184.  
    -- Table structure for sms_seckill_promotion
  185.  
    -- ----------------------------
  186.  
    DROP TABLE IF EXISTS `sms_seckill_promotion`;
  187.  
    CREATE TABLE `sms_seckill_promotion` (
  188.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  189.  
    `title` varchar(255) DEFAULT NULL COMMENT '活动标题',
  190.  
    `start_time` datetime DEFAULT NULL COMMENT '开始日期',
  191.  
    `end_time` datetime DEFAULT NULL COMMENT '结束日期',
  192.  
    `status` tinyint(4) DEFAULT NULL COMMENT '上下线状态',
  193.  
    `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  194.  
    `user_id` bigint(20) DEFAULT NULL COMMENT '创建人',
  195.  
    PRIMARY KEY (`id`)
  196.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='秒杀活动';
  197.  
     
  198.  
    -- ----------------------------
  199.  
    -- Records of sms_seckill_promotion
  200.  
    -- ----------------------------
  201.  
     
  202.  
    -- ----------------------------
  203.  
    -- Table structure for sms_seckill_session
  204.  
    -- ----------------------------
  205.  
    DROP TABLE IF EXISTS `sms_seckill_session`;
  206.  
    CREATE TABLE `sms_seckill_session` (
  207.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  208.  
    `name` varchar(200) DEFAULT NULL COMMENT '场次名称',
  209.  
    `start_time` datetime DEFAULT NULL COMMENT '每日开始时间',
  210.  
    `end_time` datetime DEFAULT NULL COMMENT '每日结束时间',
  211.  
    `status` tinyint(1) DEFAULT NULL COMMENT '启用状态',
  212.  
    `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  213.  
    PRIMARY KEY (`id`)
  214.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='秒杀活动场次';
  215.  
     
  216.  
    -- ----------------------------
  217.  
    -- Records of sms_seckill_session
  218.  
    -- ----------------------------
  219.  
     
  220.  
    -- ----------------------------
  221.  
    -- Table structure for sms_seckill_sku_notice
  222.  
    -- ----------------------------
  223.  
    DROP TABLE IF EXISTS `sms_seckill_sku_notice`;
  224.  
    CREATE TABLE `sms_seckill_sku_notice` (
  225.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  226.  
    `member_id` bigint(20) DEFAULT NULL COMMENT 'member_id',
  227.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  228.  
    `session_id` bigint(20) DEFAULT NULL COMMENT '活动场次id',
  229.  
    `subcribe_time` datetime DEFAULT NULL COMMENT '订阅时间',
  230.  
    `send_time` datetime DEFAULT NULL COMMENT '发送时间',
  231.  
    `notice_type` tinyint(1) DEFAULT NULL COMMENT '通知方式[0-短信,1-邮件]',
  232.  
    PRIMARY KEY (`id`)
  233.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='秒杀商品通知订阅';
  234.  
     
  235.  
    -- ----------------------------
  236.  
    -- Records of sms_seckill_sku_notice
  237.  
    -- ----------------------------
  238.  
     
  239.  
    -- ----------------------------
  240.  
    -- Table structure for sms_seckill_sku_relation
  241.  
    -- ----------------------------
  242.  
    DROP TABLE IF EXISTS `sms_seckill_sku_relation`;
  243.  
    CREATE TABLE `sms_seckill_sku_relation` (
  244.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  245.  
    `promotion_id` bigint(20) DEFAULT NULL COMMENT '活动id',
  246.  
    `promotion_session_id` bigint(20) DEFAULT NULL COMMENT '活动场次id',
  247.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT '商品id',
  248.  
    `seckill_price` decimal(10,4) DEFAULT NULL COMMENT '秒杀价格',
  249.  
    `seckill_count` int(11) DEFAULT NULL COMMENT '秒杀总量',
  250.  
    `seckill_limit` int(11) DEFAULT NULL COMMENT '每人限购数量',
  251.  
    `seckill_sort` int(11) DEFAULT NULL COMMENT '排序',
  252.  
    PRIMARY KEY (`id`)
  253.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='秒杀活动商品关联';
  254.  
     
  255.  
    -- ----------------------------
  256.  
    -- Records of sms_seckill_sku_relation
  257.  
    -- ----------------------------
  258.  
     
  259.  
    -- ----------------------------
  260.  
    -- Table structure for sms_sku_full_reduction
  261.  
    -- ----------------------------
  262.  
    DROP TABLE IF EXISTS `sms_sku_full_reduction`;
  263.  
    CREATE TABLE `sms_sku_full_reduction` (
  264.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  265.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'spu_id',
  266.  
    `full_price` decimal(18,4) DEFAULT NULL COMMENT '满多少',
  267.  
    `reduce_price` decimal(18,4) DEFAULT NULL COMMENT '减多少',
  268.  
    `add_other` tinyint(1) DEFAULT NULL COMMENT '是否参与其他优惠',
  269.  
    PRIMARY KEY (`id`)
  270.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品满减信息';
  271.  
     
  272.  
    -- ----------------------------
  273.  
    -- Records of sms_sku_full_reduction
  274.  
    -- ----------------------------
  275.  
     
  276.  
    -- ----------------------------
  277.  
    -- Table structure for sms_sku_ladder
  278.  
    -- ----------------------------
  279.  
    DROP TABLE IF EXISTS `sms_sku_ladder`;
  280.  
    CREATE TABLE `sms_sku_ladder` (
  281.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  282.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'spu_id',
  283.  
    `full_count` int(11) DEFAULT NULL COMMENT '满几件',
  284.  
    `discount` decimal(4,2) DEFAULT NULL COMMENT '打几折',
  285.  
    `price` decimal(18,4) DEFAULT NULL COMMENT '折后价',
  286.  
    `add_other` tinyint(1) DEFAULT NULL COMMENT '是否叠加其他优惠[0-不可叠加,1-可叠加]',
  287.  
    PRIMARY KEY (`id`)
  288.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品阶梯价格';
  289.  
     
  290.  
    -- ----------------------------
  291.  
    -- Records of sms_sku_ladder
  292.  
    -- ----------------------------
  293.  
     
  294.  
    -- ----------------------------
  295.  
    -- Table structure for sms_spu_bounds
  296.  
    -- ----------------------------
  297.  
    DROP TABLE IF EXISTS `sms_spu_bounds`;
  298.  
    CREATE TABLE `sms_spu_bounds` (
  299.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  300.  
    `spu_id` bigint(20) DEFAULT NULL,
  301.  
    `grow_bounds` decimal(18,4) DEFAULT NULL COMMENT '成长积分',
  302.  
    `buy_bounds` decimal(18,4) DEFAULT NULL COMMENT '购物积分',
  303.  
    `work` tinyint(1) DEFAULT NULL COMMENT '优惠生效情况[1111(四个状态位,从右到左);0 - 无优惠,成长积分是否赠送;1 - 无优惠,购物积分是否赠送;2 - 有优惠,成长积分是否赠送;3 - 有优惠,购物积分是否赠送【状态位0:不赠送,1:赠送】]',
  304.  
    PRIMARY KEY (`id`)
  305.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品spu积分设置';
  306.  
     
  307.  
    -- ----------------------------
  308.  
    -- Records of sms_spu_bounds
  309.  
    -- ----------------------------
  310.  
     
  311.  
    -- ----------------------------
  312.  
    -- Table structure for undo_log
  313.  
    -- ----------------------------
  314.  
    DROP TABLE IF EXISTS `undo_log`;
  315.  
    CREATE TABLE `undo_log` (
  316.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT,
  317.  
    `branch_id` bigint(20) NOT NULL,
  318.  
    `xid` varchar(100) NOT NULL,
  319.  
    `context` varchar(128) NOT NULL,
  320.  
    `rollback_info` longblob NOT NULL,
  321.  
    `log_status` int(11) NOT NULL,
  322.  
    `log_created` datetime NOT NULL,
  323.  
    `log_modified` datetime NOT NULL,
  324.  
    `ext` varchar(100) DEFAULT NULL,
  325.  
    PRIMARY KEY (`id`),
  326.  
    UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`) USING BTREE
  327.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  328.  
     
  329.  
    -- ----------------------------
  330.  
    -- Records of undo_log
  331.  
    -- ----------------------------
学新通

我们以gulimall_sms.sql为例进行演示:

学新通

 学新通

 学新通

gulimall_oms.sql语句:

  1.  
    /*
  2.  
    Navicat MySQL Data Transfer
  3.  
     
  4.  
    Source Server : 192.168.56.10_3306
  5.  
    Source Server Version : 50727
  6.  
    Source Host : 192.168.56.10:3306
  7.  
    Source Database : gulimall_oms
  8.  
     
  9.  
    Target Server Type : MYSQL
  10.  
    Target Server Version : 50727
  11.  
    File Encoding : 65001
  12.  
     
  13.  
    Date: 2020-03-11 17:36:38
  14.  
    */
  15.  
     
  16.  
    SET FOREIGN_KEY_CHECKS=0;
  17.  
     
  18.  
    -- ----------------------------
  19.  
    -- Table structure for mq_message
  20.  
    -- ----------------------------
  21.  
    DROP TABLE IF EXISTS `mq_message`;
  22.  
    CREATE TABLE `mq_message` (
  23.  
    `message_id` char(32) NOT NULL,
  24.  
    `content` text,
  25.  
    `to_exchane` varchar(255) DEFAULT NULL,
  26.  
    `routing_key` varchar(255) DEFAULT NULL,
  27.  
    `class_type` varchar(255) DEFAULT NULL,
  28.  
    `message_status` int(1) DEFAULT '0' COMMENT '0-新建 1-已发送 2-错误抵达 3-已抵达',
  29.  
    `create_time` datetime DEFAULT NULL,
  30.  
    `update_time` datetime DEFAULT NULL,
  31.  
    PRIMARY KEY (`message_id`)
  32.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  33.  
     
  34.  
    -- ----------------------------
  35.  
    -- Records of mq_message
  36.  
    -- ----------------------------
  37.  
     
  38.  
    -- ----------------------------
  39.  
    -- Table structure for oms_order
  40.  
    -- ----------------------------
  41.  
    DROP TABLE IF EXISTS `oms_order`;
  42.  
    CREATE TABLE `oms_order` (
  43.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  44.  
    `member_id` bigint(20) DEFAULT NULL COMMENT 'member_id',
  45.  
    `order_sn` char(64) DEFAULT NULL COMMENT '订单号',
  46.  
    `coupon_id` bigint(20) DEFAULT NULL COMMENT '使用的优惠券',
  47.  
    `create_time` datetime DEFAULT NULL COMMENT 'create_time',
  48.  
    `member_username` varchar(200) DEFAULT NULL COMMENT '用户名',
  49.  
    `total_amount` decimal(18,4) DEFAULT NULL COMMENT '订单总额',
  50.  
    `pay_amount` decimal(18,4) DEFAULT NULL COMMENT '应付总额',
  51.  
    `freight_amount` decimal(18,4) DEFAULT NULL COMMENT '运费金额',
  52.  
    `promotion_amount` decimal(18,4) DEFAULT NULL COMMENT '促销优化金额(促销价、满减、阶梯价)',
  53.  
    `integration_amount` decimal(18,4) DEFAULT NULL COMMENT '积分抵扣金额',
  54.  
    `coupon_amount` decimal(18,4) DEFAULT NULL COMMENT '优惠券抵扣金额',
  55.  
    `discount_amount` decimal(18,4) DEFAULT NULL COMMENT '后台调整订单使用的折扣金额',
  56.  
    `pay_type` tinyint(4) DEFAULT NULL COMMENT '支付方式【1->支付宝;2->微信;3->银联; 4->货到付款;】',
  57.  
    `source_type` tinyint(4) DEFAULT NULL COMMENT '订单来源[0->PC订单;1->app订单]',
  58.  
    `status` tinyint(4) DEFAULT NULL COMMENT '订单状态【0->待付款;1->待发货;2->已发货;3->已完成;4->已关闭;5->无效订单】',
  59.  
    `delivery_company` varchar(64) DEFAULT NULL COMMENT '物流公司(配送方式)',
  60.  
    `delivery_sn` varchar(64) DEFAULT NULL COMMENT '物流单号',
  61.  
    `auto_confirm_day` int(11) DEFAULT NULL COMMENT '自动确认时间(天)',
  62.  
    `integration` int(11) DEFAULT NULL COMMENT '可以获得的积分',
  63.  
    `growth` int(11) DEFAULT NULL COMMENT '可以获得的成长值',
  64.  
    `bill_type` tinyint(4) DEFAULT NULL COMMENT '发票类型[0->不开发票;1->电子发票;2->纸质发票]',
  65.  
    `bill_header` varchar(255) DEFAULT NULL COMMENT '发票抬头',
  66.  
    `bill_content` varchar(255) DEFAULT NULL COMMENT '发票内容',
  67.  
    `bill_receiver_phone` varchar(32) DEFAULT NULL COMMENT '收票人电话',
  68.  
    `bill_receiver_email` varchar(64) DEFAULT NULL COMMENT '收票人邮箱',
  69.  
    `receiver_name` varchar(100) DEFAULT NULL COMMENT '收货人姓名',
  70.  
    `receiver_phone` varchar(32) DEFAULT NULL COMMENT '收货人电话',
  71.  
    `receiver_post_code` varchar(32) DEFAULT NULL COMMENT '收货人邮编',
  72.  
    `receiver_province` varchar(32) DEFAULT NULL COMMENT '省份/直辖市',
  73.  
    `receiver_city` varchar(32) DEFAULT NULL COMMENT '城市',
  74.  
    `receiver_region` varchar(32) DEFAULT NULL COMMENT '区',
  75.  
    `receiver_detail_address` varchar(200) DEFAULT NULL COMMENT '详细地址',
  76.  
    `note` varchar(500) DEFAULT NULL COMMENT '订单备注',
  77.  
    `confirm_status` tinyint(4) DEFAULT NULL COMMENT '确认收货状态[0->未确认;1->已确认]',
  78.  
    `delete_status` tinyint(4) DEFAULT NULL COMMENT '删除状态【0->未删除;1->已删除】',
  79.  
    `use_integration` int(11) DEFAULT NULL COMMENT '下单时使用的积分',
  80.  
    `payment_time` datetime DEFAULT NULL COMMENT '支付时间',
  81.  
    `delivery_time` datetime DEFAULT NULL COMMENT '发货时间',
  82.  
    `receive_time` datetime DEFAULT NULL COMMENT '确认收货时间',
  83.  
    `comment_time` datetime DEFAULT NULL COMMENT '评价时间',
  84.  
    `modify_time` datetime DEFAULT NULL COMMENT '修改时间',
  85.  
    PRIMARY KEY (`id`),
  86.  
    UNIQUE KEY `order_sn` (`order_sn`) USING BTREE
  87.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='订单';
  88.  
     
  89.  
    -- ----------------------------
  90.  
    -- Records of oms_order
  91.  
    -- ----------------------------
  92.  
     
  93.  
    -- ----------------------------
  94.  
    -- Table structure for oms_order_item
  95.  
    -- ----------------------------
  96.  
    DROP TABLE IF EXISTS `oms_order_item`;
  97.  
    CREATE TABLE `oms_order_item` (
  98.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  99.  
    `order_id` bigint(20) DEFAULT NULL COMMENT 'order_id',
  100.  
    `order_sn` char(64) DEFAULT NULL COMMENT 'order_sn',
  101.  
    `spu_id` bigint(20) DEFAULT NULL COMMENT 'spu_id',
  102.  
    `spu_name` varchar(255) DEFAULT NULL COMMENT 'spu_name',
  103.  
    `spu_pic` varchar(500) DEFAULT NULL COMMENT 'spu_pic',
  104.  
    `spu_brand` varchar(200) DEFAULT NULL COMMENT '品牌',
  105.  
    `category_id` bigint(20) DEFAULT NULL COMMENT '商品分类id',
  106.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT '商品sku编号',
  107.  
    `sku_name` varchar(255) DEFAULT NULL COMMENT '商品sku名字',
  108.  
    `sku_pic` varchar(500) DEFAULT NULL COMMENT '商品sku图片',
  109.  
    `sku_price` decimal(18,4) DEFAULT NULL COMMENT '商品sku价格',
  110.  
    `sku_quantity` int(11) DEFAULT NULL COMMENT '商品购买的数量',
  111.  
    `sku_attrs_vals` varchar(500) DEFAULT NULL COMMENT '商品销售属性组合(JSON)',
  112.  
    `promotion_amount` decimal(18,4) DEFAULT NULL COMMENT '商品促销分解金额',
  113.  
    `coupon_amount` decimal(18,4) DEFAULT NULL COMMENT '优惠券优惠分解金额',
  114.  
    `integration_amount` decimal(18,4) DEFAULT NULL COMMENT '积分优惠分解金额',
  115.  
    `real_amount` decimal(18,4) DEFAULT NULL COMMENT '该商品经过优惠后的分解金额',
  116.  
    `gift_integration` int(11) DEFAULT NULL COMMENT '赠送积分',
  117.  
    `gift_growth` int(11) DEFAULT NULL COMMENT '赠送成长值',
  118.  
    PRIMARY KEY (`id`)
  119.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='订单项信息';
  120.  
     
  121.  
    -- ----------------------------
  122.  
    -- Records of oms_order_item
  123.  
    -- ----------------------------
  124.  
     
  125.  
    -- ----------------------------
  126.  
    -- Table structure for oms_order_operate_history
  127.  
    -- ----------------------------
  128.  
    DROP TABLE IF EXISTS `oms_order_operate_history`;
  129.  
    CREATE TABLE `oms_order_operate_history` (
  130.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  131.  
    `order_id` bigint(20) DEFAULT NULL COMMENT '订单id',
  132.  
    `operate_man` varchar(100) DEFAULT NULL COMMENT '操作人[用户;系统;后台管理员]',
  133.  
    `create_time` datetime DEFAULT NULL COMMENT '操作时间',
  134.  
    `order_status` tinyint(4) DEFAULT NULL COMMENT '订单状态【0->待付款;1->待发货;2->已发货;3->已完成;4->已关闭;5->无效订单】',
  135.  
    `note` varchar(500) DEFAULT NULL COMMENT '备注',
  136.  
    PRIMARY KEY (`id`)
  137.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='订单操作历史记录';
  138.  
     
  139.  
    -- ----------------------------
  140.  
    -- Records of oms_order_operate_history
  141.  
    -- ----------------------------
  142.  
     
  143.  
    -- ----------------------------
  144.  
    -- Table structure for oms_order_return_apply
  145.  
    -- ----------------------------
  146.  
    DROP TABLE IF EXISTS `oms_order_return_apply`;
  147.  
    CREATE TABLE `oms_order_return_apply` (
  148.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  149.  
    `order_id` bigint(20) DEFAULT NULL COMMENT 'order_id',
  150.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT '退货商品id',
  151.  
    `order_sn` char(32) DEFAULT NULL COMMENT '订单编号',
  152.  
    `create_time` datetime DEFAULT NULL COMMENT '申请时间',
  153.  
    `member_username` varchar(64) DEFAULT NULL COMMENT '会员用户名',
  154.  
    `return_amount` decimal(18,4) DEFAULT NULL COMMENT '退款金额',
  155.  
    `return_name` varchar(100) DEFAULT NULL COMMENT '退货人姓名',
  156.  
    `return_phone` varchar(20) DEFAULT NULL COMMENT '退货人电话',
  157.  
    `status` tinyint(1) DEFAULT NULL COMMENT '申请状态[0->待处理;1->退货中;2->已完成;3->已拒绝]',
  158.  
    `handle_time` datetime DEFAULT NULL COMMENT '处理时间',
  159.  
    `sku_img` varchar(500) DEFAULT NULL COMMENT '商品图片',
  160.  
    `sku_name` varchar(200) DEFAULT NULL COMMENT '商品名称',
  161.  
    `sku_brand` varchar(200) DEFAULT NULL COMMENT '商品品牌',
  162.  
    `sku_attrs_vals` varchar(500) DEFAULT NULL COMMENT '商品销售属性(JSON)',
  163.  
    `sku_count` int(11) DEFAULT NULL COMMENT '退货数量',
  164.  
    `sku_price` decimal(18,4) DEFAULT NULL COMMENT '商品单价',
  165.  
    `sku_real_price` decimal(18,4) DEFAULT NULL COMMENT '商品实际支付单价',
  166.  
    `reason` varchar(200) DEFAULT NULL COMMENT '原因',
  167.  
    `description述` varchar(500) DEFAULT NULL COMMENT '描述',
  168.  
    `desc_pics` varchar(2000) DEFAULT NULL COMMENT '凭证图片,以逗号隔开',
  169.  
    `handle_note` varchar(500) DEFAULT NULL COMMENT '处理备注',
  170.  
    `handle_man` varchar(200) DEFAULT NULL COMMENT '处理人员',
  171.  
    `receive_man` varchar(100) DEFAULT NULL COMMENT '收货人',
  172.  
    `receive_time` datetime DEFAULT NULL COMMENT '收货时间',
  173.  
    `receive_note` varchar(500) DEFAULT NULL COMMENT '收货备注',
  174.  
    `receive_phone` varchar(20) DEFAULT NULL COMMENT '收货电话',
  175.  
    `company_address` varchar(500) DEFAULT NULL COMMENT '公司收货地址',
  176.  
    PRIMARY KEY (`id`)
  177.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='订单退货申请';
  178.  
     
  179.  
    -- ----------------------------
  180.  
    -- Records of oms_order_return_apply
  181.  
    -- ----------------------------
  182.  
     
  183.  
    -- ----------------------------
  184.  
    -- Table structure for oms_order_return_reason
  185.  
    -- ----------------------------
  186.  
    DROP TABLE IF EXISTS `oms_order_return_reason`;
  187.  
    CREATE TABLE `oms_order_return_reason` (
  188.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  189.  
    `name` varchar(200) DEFAULT NULL COMMENT '退货原因名',
  190.  
    `sort` int(11) DEFAULT NULL COMMENT '排序',
  191.  
    `status` tinyint(1) DEFAULT NULL COMMENT '启用状态',
  192.  
    `create_time` datetime DEFAULT NULL COMMENT 'create_time',
  193.  
    PRIMARY KEY (`id`)
  194.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='退货原因';
  195.  
     
  196.  
    -- ----------------------------
  197.  
    -- Records of oms_order_return_reason
  198.  
    -- ----------------------------
  199.  
     
  200.  
    -- ----------------------------
  201.  
    -- Table structure for oms_order_setting
  202.  
    -- ----------------------------
  203.  
    DROP TABLE IF EXISTS `oms_order_setting`;
  204.  
    CREATE TABLE `oms_order_setting` (
  205.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  206.  
    `flash_order_overtime` int(11) DEFAULT NULL COMMENT '秒杀订单超时关闭时间(分)',
  207.  
    `normal_order_overtime` int(11) DEFAULT NULL COMMENT '正常订单超时时间(分)',
  208.  
    `confirm_overtime` int(11) DEFAULT NULL COMMENT '发货后自动确认收货时间(天)',
  209.  
    `finish_overtime` int(11) DEFAULT NULL COMMENT '自动完成交易时间,不能申请退货(天)',
  210.  
    `comment_overtime` int(11) DEFAULT NULL COMMENT '订单完成后自动好评时间(天)',
  211.  
    `member_level` tinyint(2) DEFAULT NULL COMMENT '会员等级【0-不限会员等级,全部通用;其他-对应的其他会员等级】',
  212.  
    PRIMARY KEY (`id`)
  213.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='订单配置信息';
  214.  
     
  215.  
    -- ----------------------------
  216.  
    -- Records of oms_order_setting
  217.  
    -- ----------------------------
  218.  
     
  219.  
    -- ----------------------------
  220.  
    -- Table structure for oms_payment_info
  221.  
    -- ----------------------------
  222.  
    DROP TABLE IF EXISTS `oms_payment_info`;
  223.  
    CREATE TABLE `oms_payment_info` (
  224.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  225.  
    `order_sn` char(64) DEFAULT NULL COMMENT '订单号(对外业务号)',
  226.  
    `order_id` bigint(20) DEFAULT NULL COMMENT '订单id',
  227.  
    `alipay_trade_no` varchar(50) DEFAULT NULL COMMENT '支付宝交易流水号',
  228.  
    `total_amount` decimal(18,4) DEFAULT NULL COMMENT '支付总金额',
  229.  
    `subject` varchar(200) DEFAULT NULL COMMENT '交易内容',
  230.  
    `payment_status` varchar(20) DEFAULT NULL COMMENT '支付状态',
  231.  
    `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  232.  
    `confirm_time` datetime DEFAULT NULL COMMENT '确认时间',
  233.  
    `callback_content` varchar(4000) DEFAULT NULL COMMENT '回调内容',
  234.  
    `callback_time` datetime DEFAULT NULL COMMENT '回调时间',
  235.  
    PRIMARY KEY (`id`),
  236.  
    UNIQUE KEY `order_sn` (`order_sn`) USING BTREE,
  237.  
    UNIQUE KEY `alipay_trade_no` (`alipay_trade_no`) USING BTREE
  238.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='支付信息表';
  239.  
     
  240.  
    -- ----------------------------
  241.  
    -- Records of oms_payment_info
  242.  
    -- ----------------------------
  243.  
     
  244.  
    -- ----------------------------
  245.  
    -- Table structure for oms_refund_info
  246.  
    -- ----------------------------
  247.  
    DROP TABLE IF EXISTS `oms_refund_info`;
  248.  
    CREATE TABLE `oms_refund_info` (
  249.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  250.  
    `order_return_id` bigint(20) DEFAULT NULL COMMENT '退款的订单',
  251.  
    `refund` decimal(18,4) DEFAULT NULL COMMENT '退款金额',
  252.  
    `refund_sn` varchar(64) DEFAULT NULL COMMENT '退款交易流水号',
  253.  
    `refund_status` tinyint(1) DEFAULT NULL COMMENT '退款状态',
  254.  
    `refund_channel` tinyint(4) DEFAULT NULL COMMENT '退款渠道[1-支付宝,2-微信,3-银联,4-汇款]',
  255.  
    `refund_content` varchar(5000) DEFAULT NULL,
  256.  
    PRIMARY KEY (`id`)
  257.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='退款信息';
  258.  
     
  259.  
    -- ----------------------------
  260.  
    -- Records of oms_refund_info
  261.  
    -- ----------------------------
  262.  
     
  263.  
    -- ----------------------------
  264.  
    -- Table structure for undo_log
  265.  
    -- ----------------------------
  266.  
    DROP TABLE IF EXISTS `undo_log`;
  267.  
    CREATE TABLE `undo_log` (
  268.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT,
  269.  
    `branch_id` bigint(20) NOT NULL,
  270.  
    `xid` varchar(100) NOT NULL,
  271.  
    `context` varchar(128) NOT NULL,
  272.  
    `rollback_info` longblob NOT NULL,
  273.  
    `log_status` int(11) NOT NULL,
  274.  
    `log_created` datetime NOT NULL,
  275.  
    `log_modified` datetime NOT NULL,
  276.  
    `ext` varchar(100) DEFAULT NULL,
  277.  
    PRIMARY KEY (`id`),
  278.  
    UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`) USING BTREE
  279.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  280.  
     
  281.  
    -- ----------------------------
  282.  
    -- Records of undo_log
  283.  
    -- ----------------------------
学新通

gulimall_pms.sql语句:

  1.  
    /*
  2.  
    Navicat MySQL Data Transfer
  3.  
     
  4.  
    Source Server : 192.168.56.10_3306
  5.  
    Source Server Version : 50727
  6.  
    Source Host : 192.168.56.10:3306
  7.  
    Source Database : gulimall_pms
  8.  
     
  9.  
    Target Server Type : MYSQL
  10.  
    Target Server Version : 50727
  11.  
    File Encoding : 65001
  12.  
     
  13.  
    Date: 2020-03-11 17:36:52
  14.  
    */
  15.  
     
  16.  
    SET FOREIGN_KEY_CHECKS=0;
  17.  
     
  18.  
    -- ----------------------------
  19.  
    -- Table structure for pms_attr
  20.  
    -- ----------------------------
  21.  
    DROP TABLE IF EXISTS `pms_attr`;
  22.  
    CREATE TABLE `pms_attr` (
  23.  
    `attr_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '属性id',
  24.  
    `attr_name` char(30) DEFAULT NULL COMMENT '属性名',
  25.  
    `search_type` tinyint(4) DEFAULT NULL COMMENT '是否需要检索[0-不需要,1-需要]',
  26.  
    `value_type` tinyint(4) DEFAULT NULL COMMENT '值类型[0-为单个值,1-可以选择多个值]',
  27.  
    `icon` varchar(255) DEFAULT NULL COMMENT '属性图标',
  28.  
    `value_select` char(255) DEFAULT NULL COMMENT '可选值列表[用逗号分隔]',
  29.  
    `attr_type` tinyint(4) DEFAULT NULL COMMENT '属性类型[0-销售属性,1-基本属性',
  30.  
    `enable` bigint(20) DEFAULT NULL COMMENT '启用状态[0 - 禁用,1 - 启用]',
  31.  
    `catelog_id` bigint(20) DEFAULT NULL COMMENT '所属分类',
  32.  
    `show_desc` tinyint(4) DEFAULT NULL COMMENT '快速展示【是否展示在介绍上;0-否 1-是】,在sku中仍然可以调整',
  33.  
    PRIMARY KEY (`attr_id`)
  34.  
    ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COMMENT='商品属性';
  35.  
     
  36.  
    -- ----------------------------
  37.  
    -- Records of pms_attr
  38.  
    -- ----------------------------
  39.  
    INSERT INTO `pms_attr` VALUES ('7', '入网型号', '0', '0', 'xxx', 'A2217;C3J;以官网信息为准', '1', '1', '225', '0');
  40.  
    INSERT INTO `pms_attr` VALUES ('8', '上市年份', '0', '0', 'xxx', '2018;2019', '1', '1', '225', '0');
  41.  
    INSERT INTO `pms_attr` VALUES ('9', '颜色', '0', '0', 'xxx', '黑色;白色;蓝色', '0', '1', '225', '0');
  42.  
    INSERT INTO `pms_attr` VALUES ('10', '内存', '0', '0', 'xxx', '4GB;6GB;8GB;12GB', '0', '1', '225', '0');
  43.  
    INSERT INTO `pms_attr` VALUES ('11', '机身颜色', '0', '0', 'xxx', '黑色;白色', '1', '1', '225', '1');
  44.  
    INSERT INTO `pms_attr` VALUES ('12', '版本', '0', '0', 'xxx', '', '0', '1', '225', '0');
  45.  
    INSERT INTO `pms_attr` VALUES ('13', '机身长度(mm)', '0', '0', 'xx', '158.3;135.9', '1', '1', '225', '0');
  46.  
    INSERT INTO `pms_attr` VALUES ('14', '机身材质工艺', '0', '1', 'xxx', '以官网信息为准;陶瓷;玻璃', '1', '1', '225', '0');
  47.  
    INSERT INTO `pms_attr` VALUES ('15', 'CPU品牌', '1', '0', 'xxx', '高通(Qualcomm);海思(Hisilicon);以官网信息为准', '1', '1', '225', '1');
  48.  
    INSERT INTO `pms_attr` VALUES ('16', 'CPU型号', '1', '0', 'xxx', '骁龙665;骁龙845;骁龙855;骁龙730;HUAWEI Kirin 980;HUAWEI Kirin 970', '1', '1', '225', '0');
  49.  
     
  50.  
    -- ----------------------------
  51.  
    -- Table structure for pms_attr_attrgroup_relation
  52.  
    -- ----------------------------
  53.  
    DROP TABLE IF EXISTS `pms_attr_attrgroup_relation`;
  54.  
    CREATE TABLE `pms_attr_attrgroup_relation` (
  55.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  56.  
    `attr_id` bigint(20) DEFAULT NULL COMMENT '属性id',
  57.  
    `attr_group_id` bigint(20) DEFAULT NULL COMMENT '属性分组id',
  58.  
    `attr_sort` int(11) DEFAULT NULL COMMENT '属性组内排序',
  59.  
    PRIMARY KEY (`id`)
  60.  
    ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COMMENT='属性&属性分组关联';
  61.  
     
  62.  
    -- ----------------------------
  63.  
    -- Records of pms_attr_attrgroup_relation
  64.  
    -- ----------------------------
  65.  
    INSERT INTO `pms_attr_attrgroup_relation` VALUES ('23', '7', '1', null);
  66.  
    INSERT INTO `pms_attr_attrgroup_relation` VALUES ('24', '8', '1', null);
  67.  
    INSERT INTO `pms_attr_attrgroup_relation` VALUES ('26', '11', '2', null);
  68.  
    INSERT INTO `pms_attr_attrgroup_relation` VALUES ('27', '13', '2', null);
  69.  
    INSERT INTO `pms_attr_attrgroup_relation` VALUES ('28', '14', '2', null);
  70.  
    INSERT INTO `pms_attr_attrgroup_relation` VALUES ('29', '15', '7', null);
  71.  
    INSERT INTO `pms_attr_attrgroup_relation` VALUES ('30', '16', '7', null);
  72.  
     
  73.  
    -- ----------------------------
  74.  
    -- Table structure for pms_attr_group
  75.  
    -- ----------------------------
  76.  
    DROP TABLE IF EXISTS `pms_attr_group`;
  77.  
    CREATE TABLE `pms_attr_group` (
  78.  
    `attr_group_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '分组id',
  79.  
    `attr_group_name` char(20) DEFAULT NULL COMMENT '组名',
  80.  
    `sort` int(11) DEFAULT NULL COMMENT '排序',
  81.  
    `descript` varchar(255) DEFAULT NULL COMMENT '描述',
  82.  
    `icon` varchar(255) DEFAULT NULL COMMENT '组图标',
  83.  
    `catelog_id` bigint(20) DEFAULT NULL COMMENT '所属分类id',
  84.  
    PRIMARY KEY (`attr_group_id`)
  85.  
    ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COMMENT='属性分组';
  86.  
     
  87.  
    -- ----------------------------
  88.  
    -- Records of pms_attr_group
  89.  
    -- ----------------------------
  90.  
    INSERT INTO `pms_attr_group` VALUES ('1', '主体', '0', '主体', 'dd', '225');
  91.  
    INSERT INTO `pms_attr_group` VALUES ('2', '基本信息', '0', '基本信息', 'xx', '225');
  92.  
    INSERT INTO `pms_attr_group` VALUES ('4', '屏幕', '0', '屏幕', 'xx', '233');
  93.  
    INSERT INTO `pms_attr_group` VALUES ('7', '主芯片', '0', '主芯片', 'xx', '225');
  94.  
     
  95.  
    -- ----------------------------
  96.  
    -- Table structure for pms_brand
  97.  
    -- ----------------------------
  98.  
    DROP TABLE IF EXISTS `pms_brand`;
  99.  
    CREATE TABLE `pms_brand` (
  100.  
    `brand_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '品牌id',
  101.  
    `name` char(50) DEFAULT NULL COMMENT '品牌名',
  102.  
    `logo` varchar(2000) DEFAULT NULL COMMENT '品牌logo地址',
  103.  
    `descript` longtext COMMENT '介绍',
  104.  
    `show_status` tinyint(4) DEFAULT NULL COMMENT '显示状态[0-不显示;1-显示]',
  105.  
    `first_letter` char(1) DEFAULT NULL COMMENT '检索首字母',
  106.  
    `sort` int(11) DEFAULT NULL COMMENT '排序',
  107.  
    PRIMARY KEY (`brand_id`)
  108.  
    ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COMMENT='品牌';
  109.  
     
  110.  
    -- ----------------------------
  111.  
    -- Records of pms_brand
  112.  
    -- ----------------------------
  113.  
    INSERT INTO `pms_brand` VALUES ('9', '华为', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-18/de2426bd-a689-41d0-865a-d45d1afa7cde_huawei.png', '华为', '1', 'H', '1');
  114.  
    INSERT INTO `pms_brand` VALUES ('10', '小米', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-18/1f9e6968-cf92-462e-869a-4c2331a4113f_xiaomi.png', '小米', '1', 'M', '1');
  115.  
    INSERT INTO `pms_brand` VALUES ('11', 'oppo', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-18/5c8303f2-8b0c-4a5b-89a6-86513133d758_oppo.png', 'oppo', '1', 'O', '1');
  116.  
    INSERT INTO `pms_brand` VALUES ('12', 'Apple', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-18/819bb0b1-3ed8-4072-8304-78811a289781_apple.png', '苹果', '1', 'A', '1');
  117.  
     
  118.  
    -- ----------------------------
  119.  
    -- Table structure for pms_category
  120.  
    -- ----------------------------
  121.  
    DROP TABLE IF EXISTS `pms_category`;
  122.  
    CREATE TABLE `pms_category` (
  123.  
    `cat_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '分类id',
  124.  
    `name` char(50) DEFAULT NULL COMMENT '分类名称',
  125.  
    `parent_cid` bigint(20) DEFAULT NULL COMMENT '父分类id',
  126.  
    `cat_level` int(11) DEFAULT NULL COMMENT '层级',
  127.  
    `show_status` tinyint(4) DEFAULT NULL COMMENT '是否显示[0-不显示,1显示]',
  128.  
    `sort` int(11) DEFAULT NULL COMMENT '排序',
  129.  
    `icon` char(255) DEFAULT NULL COMMENT '图标地址',
  130.  
    `product_unit` char(50) DEFAULT NULL COMMENT '计量单位',
  131.  
    `product_count` int(11) DEFAULT NULL COMMENT '商品数量',
  132.  
    PRIMARY KEY (`cat_id`),
  133.  
    KEY `parent_cid` (`parent_cid`)
  134.  
    ) ENGINE=InnoDB AUTO_INCREMENT=1433 DEFAULT CHARSET=utf8mb4 COMMENT='商品三级分类';
  135.  
     
  136.  
    -- ----------------------------
  137.  
    -- Records of pms_category
  138.  
    -- ----------------------------
  139.  
    INSERT INTO `pms_category` VALUES ('1', '图书、音像、电子书刊', '0', '1', '1', '0', null, null, '0');
  140.  
    INSERT INTO `pms_category` VALUES ('2', '手机', '0', '1', '1', '0', '111q', null, '0');
  141.  
    INSERT INTO `pms_category` VALUES ('3', '家用电器', '0', '1', '1', '0', 'aaa', null, '0');
  142.  
    INSERT INTO `pms_category` VALUES ('4', '数码', '0', '1', '1', '0', 'aaa', null, '0');
  143.  
    INSERT INTO `pms_category` VALUES ('5', '家居家装', '0', '1', '1', '0', null, null, '0');
  144.  
    INSERT INTO `pms_category` VALUES ('6', '电脑办公', '0', '1', '1', '0', null, null, '0');
  145.  
    INSERT INTO `pms_category` VALUES ('7', '厨具', '0', '1', '1', '0', null, null, '0');
  146.  
    INSERT INTO `pms_category` VALUES ('8', '个护化妆', '0', '1', '1', '0', null, null, '0');
  147.  
    INSERT INTO `pms_category` VALUES ('9', '服饰内衣', '0', '1', '1', '0', null, null, '0');
  148.  
    INSERT INTO `pms_category` VALUES ('10', '钟表', '0', '1', '1', '0', null, null, '0');
  149.  
    INSERT INTO `pms_category` VALUES ('11', '鞋靴', '0', '1', '1', '0', null, null, '0');
  150.  
    INSERT INTO `pms_category` VALUES ('12', '母婴', '0', '1', '1', '0', null, null, '0');
  151.  
    INSERT INTO `pms_category` VALUES ('13', '礼品箱包', '0', '1', '1', '0', null, null, '0');
  152.  
    INSERT INTO `pms_category` VALUES ('14', '食品饮料、保健食品', '0', '1', '1', '0', null, null, '0');
  153.  
    INSERT INTO `pms_category` VALUES ('15', '珠宝', '0', '1', '1', '0', null, null, '0');
  154.  
    INSERT INTO `pms_category` VALUES ('16', '汽车用品', '0', '1', '1', '0', null, null, '0');
  155.  
    INSERT INTO `pms_category` VALUES ('17', '运动健康', '0', '1', '1', '0', null, null, '0');
  156.  
    INSERT INTO `pms_category` VALUES ('18', '玩具乐器', '0', '1', '1', '0', null, null, '0');
  157.  
    INSERT INTO `pms_category` VALUES ('19', '彩票、旅行、充值、票务', '0', '1', '1', '0', null, null, '0');
  158.  
    INSERT INTO `pms_category` VALUES ('20', '生鲜', '0', '1', '1', '0', null, null, '0');
  159.  
    INSERT INTO `pms_category` VALUES ('21', '整车', '0', '1', '1', '0', null, null, '0');
  160.  
    INSERT INTO `pms_category` VALUES ('22', '电子书刊', '1', '2', '1', '0', null, null, '0');
  161.  
    INSERT INTO `pms_category` VALUES ('23', '音像', '1', '2', '1', '0', null, null, '0');
  162.  
    INSERT INTO `pms_category` VALUES ('24', '英文原版', '1', '2', '1', '0', null, null, '0');
  163.  
    INSERT INTO `pms_category` VALUES ('25', '文艺', '1', '2', '1', '0', null, null, '0');
  164.  
    INSERT INTO `pms_category` VALUES ('26', '少儿', '1', '2', '1', '0', null, null, '0');
  165.  
    INSERT INTO `pms_category` VALUES ('27', '人文社科', '1', '2', '1', '0', null, null, '0');
  166.  
    INSERT INTO `pms_category` VALUES ('28', '经管励志', '1', '2', '1', '0', null, null, '0');
  167.  
    INSERT INTO `pms_category` VALUES ('29', '生活', '1', '2', '1', '0', null, null, '0');
  168.  
    INSERT INTO `pms_category` VALUES ('30', '科技', '1', '2', '1', '0', null, null, '0');
  169.  
    INSERT INTO `pms_category` VALUES ('31', '教育', '1', '2', '1', '0', null, null, '0');
  170.  
    INSERT INTO `pms_category` VALUES ('32', '港台图书', '1', '2', '1', '0', null, null, '0');
  171.  
    INSERT INTO `pms_category` VALUES ('33', '其他', '1', '2', '1', '0', null, null, '0');
  172.  
    INSERT INTO `pms_category` VALUES ('34', '手机通讯', '2', '2', '1', '0', null, null, '0');
  173.  
    INSERT INTO `pms_category` VALUES ('35', '运营商', '2', '2', '1', '0', null, null, '0');
  174.  
    INSERT INTO `pms_category` VALUES ('36', '手机配件', '2', '2', '1', '0', null, null, '0');
  175.  
    INSERT INTO `pms_category` VALUES ('37', '大 家 电', '3', '2', '1', '0', null, null, '0');
  176.  
    INSERT INTO `pms_category` VALUES ('38', '厨卫大电', '3', '2', '1', '0', null, null, '0');
  177.  
    INSERT INTO `pms_category` VALUES ('39', '厨房小电', '3', '2', '1', '0', null, null, '0');
  178.  
    INSERT INTO `pms_category` VALUES ('40', '生活电器', '3', '2', '1', '0', null, null, '0');
  179.  
    INSERT INTO `pms_category` VALUES ('41', '个护健康', '3', '2', '1', '0', null, null, '0');
  180.  
    INSERT INTO `pms_category` VALUES ('42', '五金家装', '3', '2', '1', '0', null, null, '0');
  181.  
    INSERT INTO `pms_category` VALUES ('43', '摄影摄像', '4', '2', '1', '0', null, null, '0');
  182.  
    INSERT INTO `pms_category` VALUES ('44', '数码配件', '4', '2', '1', '0', null, null, '0');
  183.  
    INSERT INTO `pms_category` VALUES ('45', '智能设备', '4', '2', '1', '0', null, null, '0');
  184.  
    INSERT INTO `pms_category` VALUES ('46', '影音娱乐', '4', '2', '1', '0', null, null, '0');
  185.  
    INSERT INTO `pms_category` VALUES ('47', '电子教育', '4', '2', '1', '0', null, null, '0');
  186.  
    INSERT INTO `pms_category` VALUES ('48', '虚拟商品', '4', '2', '1', '0', null, null, '0');
  187.  
    INSERT INTO `pms_category` VALUES ('49', '家纺', '5', '2', '1', '0', null, null, '0');
  188.  
    INSERT INTO `pms_category` VALUES ('50', '灯具', '5', '2', '1', '0', null, null, '0');
  189.  
    INSERT INTO `pms_category` VALUES ('51', '生活日用', '5', '2', '1', '0', null, null, '0');
  190.  
    INSERT INTO `pms_category` VALUES ('52', '家装软饰', '5', '2', '1', '0', null, null, '0');
  191.  
    INSERT INTO `pms_category` VALUES ('53', '宠物生活', '5', '2', '1', '0', null, null, '0');
  192.  
    INSERT INTO `pms_category` VALUES ('54', '电脑整机', '6', '2', '1', '0', null, null, '0');
  193.  
    INSERT INTO `pms_category` VALUES ('55', '电脑配件', '6', '2', '1', '0', null, null, '0');
  194.  
    INSERT INTO `pms_category` VALUES ('56', '外设产品', '6', '2', '1', '0', null, null, '0');
  195.  
    INSERT INTO `pms_category` VALUES ('57', '游戏设备', '6', '2', '1', '0', null, null, '0');
  196.  
    INSERT INTO `pms_category` VALUES ('58', '网络产品', '6', '2', '1', '0', null, null, '0');
  197.  
    INSERT INTO `pms_category` VALUES ('59', '办公设备', '6', '2', '1', '0', null, null, '0');
  198.  
    INSERT INTO `pms_category` VALUES ('60', '文具/耗材', '6', '2', '1', '0', null, null, '0');
  199.  
    INSERT INTO `pms_category` VALUES ('61', '服务产品', '6', '2', '1', '0', null, null, '0');
  200.  
    INSERT INTO `pms_category` VALUES ('62', '烹饪锅具', '7', '2', '1', '0', null, null, '0');
  201.  
    INSERT INTO `pms_category` VALUES ('63', '刀剪菜板', '7', '2', '1', '0', null, null, '0');
  202.  
    INSERT INTO `pms_category` VALUES ('64', '厨房配件', '7', '2', '1', '0', null, null, '0');
  203.  
    INSERT INTO `pms_category` VALUES ('65', '水具酒具', '7', '2', '1', '0', null, null, '0');
  204.  
    INSERT INTO `pms_category` VALUES ('66', '餐具', '7', '2', '1', '0', null, null, '0');
  205.  
    INSERT INTO `pms_category` VALUES ('67', '酒店用品', '7', '2', '1', '0', null, null, '0');
  206.  
    INSERT INTO `pms_category` VALUES ('68', '茶具/咖啡具', '7', '2', '1', '0', null, null, '0');
  207.  
    INSERT INTO `pms_category` VALUES ('69', '清洁用品', '8', '2', '1', '0', null, null, '0');
  208.  
    INSERT INTO `pms_category` VALUES ('70', '面部护肤', '8', '2', '1', '0', null, null, '0');
  209.  
    INSERT INTO `pms_category` VALUES ('71', '身体护理', '8', '2', '1', '0', null, null, '0');
  210.  
    INSERT INTO `pms_category` VALUES ('72', '口腔护理', '8', '2', '1', '0', null, null, '0');
  211.  
    INSERT INTO `pms_category` VALUES ('73', '女性护理', '8', '2', '1', '0', null, null, '0');
  212.  
    INSERT INTO `pms_category` VALUES ('74', '洗发护发', '8', '2', '1', '0', null, null, '0');
  213.  
    INSERT INTO `pms_category` VALUES ('75', '香水彩妆', '8', '2', '1', '0', null, null, '0');
  214.  
    INSERT INTO `pms_category` VALUES ('76', '女装', '9', '2', '1', '0', null, null, '0');
  215.  
    INSERT INTO `pms_category` VALUES ('77', '男装', '9', '2', '1', '0', null, null, '0');
  216.  
    INSERT INTO `pms_category` VALUES ('78', '内衣', '9', '2', '1', '0', null, null, '0');
  217.  
    INSERT INTO `pms_category` VALUES ('79', '洗衣服务', '9', '2', '1', '0', null, null, '0');
  218.  
    INSERT INTO `pms_category` VALUES ('80', '服饰配件', '9', '2', '1', '0', null, null, '0');
  219.  
    INSERT INTO `pms_category` VALUES ('81', '钟表', '10', '2', '1', '0', null, null, '0');
  220.  
    INSERT INTO `pms_category` VALUES ('82', '流行男鞋', '11', '2', '1', '0', null, null, '0');
  221.  
    INSERT INTO `pms_category` VALUES ('83', '时尚女鞋', '11', '2', '1', '0', null, null, '0');
  222.  
    INSERT INTO `pms_category` VALUES ('84', '奶粉', '12', '2', '1', '0', null, null, '0');
  223.  
    INSERT INTO `pms_category` VALUES ('85', '营养辅食', '12', '2', '1', '0', null, null, '0');
  224.  
    INSERT INTO `pms_category` VALUES ('86', '尿裤湿巾', '12', '2', '1', '0', null, null, '0');
  225.  
    INSERT INTO `pms_category` VALUES ('87', '喂养用品', '12', '2', '1', '0', null, null, '0');
  226.  
    INSERT INTO `pms_category` VALUES ('88', '洗护用品', '12', '2', '1', '0', null, null, '0');
  227.  
    INSERT INTO `pms_category` VALUES ('89', '童车童床', '12', '2', '1', '0', null, null, '0');
  228.  
    INSERT INTO `pms_category` VALUES ('90', '寝居服饰', '12', '2', '1', '0', null, null, '0');
  229.  
    INSERT INTO `pms_category` VALUES ('91', '妈妈专区', '12', '2', '1', '0', null, null, '0');
  230.  
    INSERT INTO `pms_category` VALUES ('92', '童装童鞋', '12', '2', '1', '0', null, null, '0');
  231.  
    INSERT INTO `pms_category` VALUES ('93', '安全座椅', '12', '2', '1', '0', null, null, '0');
  232.  
    INSERT INTO `pms_category` VALUES ('94', '潮流女包', '13', '2', '1', '0', null, null, '0');
  233.  
    INSERT INTO `pms_category` VALUES ('95', '精品男包', '13', '2', '1', '0', null, null, '0');
  234.  
    INSERT INTO `pms_category` VALUES ('96', '功能箱包', '13', '2', '1', '0', null, null, '0');
  235.  
    INSERT INTO `pms_category` VALUES ('97', '礼品', '13', '2', '1', '0', null, null, '0');
  236.  
    INSERT INTO `pms_category` VALUES ('98', '奢侈品', '13', '2', '1', '0', null, null, '0');
  237.  
    INSERT INTO `pms_category` VALUES ('99', '婚庆', '13', '2', '1', '0', null, null, '0');
  238.  
    INSERT INTO `pms_category` VALUES ('100', '进口食品', '14', '2', '1', '0', null, null, '0');
  239.  
    INSERT INTO `pms_category` VALUES ('101', '地方特产', '14', '2', '1', '0', null, null, '0');
  240.  
    INSERT INTO `pms_category` VALUES ('102', '休闲食品', '14', '2', '1', '0', null, null, '0');
  241.  
    INSERT INTO `pms_category` VALUES ('103', '粮油调味', '14', '2', '1', '0', null, null, '0');
  242.  
    INSERT INTO `pms_category` VALUES ('104', '饮料冲调', '14', '2', '1', '0', null, null, '0');
  243.  
    INSERT INTO `pms_category` VALUES ('105', '食品礼券', '14', '2', '1', '0', null, null, '0');
  244.  
    INSERT INTO `pms_category` VALUES ('106', '茗茶', '14', '2', '1', '0', null, null, '0');
  245.  
    INSERT INTO `pms_category` VALUES ('107', '时尚饰品', '15', '2', '1', '0', null, null, '0');
  246.  
    INSERT INTO `pms_category` VALUES ('108', '黄金', '15', '2', '1', '0', null, null, '0');
  247.  
    INSERT INTO `pms_category` VALUES ('109', 'K金饰品', '15', '2', '1', '0', null, null, '0');
  248.  
    INSERT INTO `pms_category` VALUES ('110', '金银投资', '15', '2', '1', '0', null, null, '0');
  249.  
    INSERT INTO `pms_category` VALUES ('111', '银饰', '15', '2', '1', '0', null, null, '0');
  250.  
    INSERT INTO `pms_category` VALUES ('112', '钻石', '15', '2', '1', '0', null, null, '0');
  251.  
    INSERT INTO `pms_category` VALUES ('113', '翡翠玉石', '15', '2', '1', '0', null, null, '0');
  252.  
    INSERT INTO `pms_category` VALUES ('114', '水晶玛瑙', '15', '2', '1', '0', null, null, '0');
  253.  
    INSERT INTO `pms_category` VALUES ('115', '彩宝', '15', '2', '1', '0', null, null, '0');
  254.  
    INSERT INTO `pms_category` VALUES ('116', '铂金', '15', '2', '1', '0', null, null, '0');
  255.  
    INSERT INTO `pms_category` VALUES ('117', '木手串/把件', '15', '2', '1', '0', null, null, '0');
  256.  
    INSERT INTO `pms_category` VALUES ('118', '珍珠', '15', '2', '1', '0', null, null, '0');
  257.  
    INSERT INTO `pms_category` VALUES ('119', '维修保养', '16', '2', '1', '0', null, null, '0');
  258.  
    INSERT INTO `pms_category` VALUES ('120', '车载电器', '16', '2', '1', '0', null, null, '0');
  259.  
    INSERT INTO `pms_category` VALUES ('121', '美容清洗', '16', '2', '1', '0', null, null, '0');
  260.  
    INSERT INTO `pms_category` VALUES ('122', '汽车装饰', '16', '2', '1', '0', null, null, '0');
  261.  
    INSERT INTO `pms_category` VALUES ('123', '安全自驾', '16', '2', '1', '0', null, null, '0');
  262.  
    INSERT INTO `pms_category` VALUES ('124', '汽车服务', '16', '2', '1', '0', null, null, '0');
  263.  
    INSERT INTO `pms_category` VALUES ('125', '赛事改装', '16', '2', '1', '0', null, null, '0');
  264.  
    INSERT INTO `pms_category` VALUES ('126', '运动鞋包', '17', '2', '1', '0', null, null, '0');
  265.  
    INSERT INTO `pms_category` VALUES ('127', '运动服饰', '17', '2', '1', '0', null, null, '0');
  266.  
    INSERT INTO `pms_category` VALUES ('128', '骑行运动', '17', '2', '1', '0', null, null, '0');
  267.  
    INSERT INTO `pms_category` VALUES ('129', '垂钓用品', '17', '2', '1', '0', null, null, '0');
  268.  
    INSERT INTO `pms_category` VALUES ('130', '游泳用品', '17', '2', '1', '0', null, null, '0');
  269.  
    INSERT INTO `pms_category` VALUES ('131', '户外鞋服', '17', '2', '1', '0', null, null, '0');
  270.  
    INSERT INTO `pms_category` VALUES ('132', '户外装备', '17', '2', '1', '0', null, null, '0');
  271.  
    INSERT INTO `pms_category` VALUES ('133', '健身训练', '17', '2', '1', '0', null, null, '0');
  272.  
    INSERT INTO `pms_category` VALUES ('134', '体育用品', '17', '2', '1', '0', null, null, '0');
  273.  
    INSERT INTO `pms_category` VALUES ('135', '适用年龄', '18', '2', '1', '0', null, null, '0');
  274.  
    INSERT INTO `pms_category` VALUES ('136', '遥控/电动', '18', '2', '1', '0', null, null, '0');
  275.  
    INSERT INTO `pms_category` VALUES ('137', '毛绒布艺', '18', '2', '1', '0', null, null, '0');
  276.  
    INSERT INTO `pms_category` VALUES ('138', '娃娃玩具', '18', '2', '1', '0', null, null, '0');
  277.  
    INSERT INTO `pms_category` VALUES ('139', '模型玩具', '18', '2', '1', '0', null, null, '0');
  278.  
    INSERT INTO `pms_category` VALUES ('140', '健身玩具', '18', '2', '1', '0', null, null, '0');
  279.  
    INSERT INTO `pms_category` VALUES ('141', '动漫玩具', '18', '2', '1', '0', null, null, '0');
  280.  
    INSERT INTO `pms_category` VALUES ('142', '益智玩具', '18', '2', '1', '0', null, null, '0');
  281.  
    INSERT INTO `pms_category` VALUES ('143', '积木拼插', '18', '2', '1', '0', null, null, '0');
  282.  
    INSERT INTO `pms_category` VALUES ('144', 'DIY玩具', '18', '2', '1', '0', null, null, '0');
  283.  
    INSERT INTO `pms_category` VALUES ('145', '创意减压', '18', '2', '1', '0', null, null, '0');
  284.  
    INSERT INTO `pms_category` VALUES ('146', '乐器', '18', '2', '1', '0', null, null, '0');
  285.  
    INSERT INTO `pms_category` VALUES ('147', '彩票', '19', '2', '1', '0', null, null, '0');
  286.  
    INSERT INTO `pms_category` VALUES ('148', '机票', '19', '2', '1', '0', null, null, '0');
  287.  
    INSERT INTO `pms_category` VALUES ('149', '酒店', '19', '2', '1', '0', null, null, '0');
  288.  
    INSERT INTO `pms_category` VALUES ('150', '旅行', '19', '2', '1', '0', null, null, '0');
  289.  
    INSERT INTO `pms_category` VALUES ('151', '充值', '19', '2', '1', '0', null, null, '0');
  290.  
    INSERT INTO `pms_category` VALUES ('152', '游戏', '19', '2', '1', '0', null, null, '0');
  291.  
    INSERT INTO `pms_category` VALUES ('153', '票务', '19', '2', '1', '0', null, null, '0');
  292.  
    INSERT INTO `pms_category` VALUES ('154', '产地直供', '20', '2', '1', '0', null, null, '0');
  293.  
    INSERT INTO `pms_category` VALUES ('155', '水果', '20', '2', '1', '0', null, null, '0');
  294.  
    INSERT INTO `pms_category` VALUES ('156', '猪牛羊肉', '20', '2', '1', '0', null, null, '0');
  295.  
    INSERT INTO `pms_category` VALUES ('157', '海鲜水产', '20', '2', '1', '0', null, null, '0');
  296.  
    INSERT INTO `pms_category` VALUES ('158', '禽肉蛋品', '20', '2', '1', '0', null, null, '0');
  297.  
    INSERT INTO `pms_category` VALUES ('159', '冷冻食品', '20', '2', '1', '0', null, null, '0');
  298.  
    INSERT INTO `pms_category` VALUES ('160', '熟食腊味', '20', '2', '1', '0', null, null, '0');
  299.  
    INSERT INTO `pms_category` VALUES ('161', '饮品甜品', '20', '2', '1', '0', null, null, '0');
  300.  
    INSERT INTO `pms_category` VALUES ('162', '蔬菜', '20', '2', '1', '0', null, null, '0');
  301.  
    INSERT INTO `pms_category` VALUES ('163', '全新整车', '21', '2', '1', '0', null, null, '0');
  302.  
    INSERT INTO `pms_category` VALUES ('164', '二手车', '21', '2', '1', '0', null, null, '0');
  303.  
    INSERT INTO `pms_category` VALUES ('165', '电子书', '22', '3', '1', '1', null, null, '0');
  304.  
    INSERT INTO `pms_category` VALUES ('166', '网络原创', '22', '3', '1', '0', null, null, '0');
  305.  
    INSERT INTO `pms_category` VALUES ('167', '数字杂志', '22', '3', '1', '2', null, null, '0');
  306.  
    INSERT INTO `pms_category` VALUES ('168', '多媒体图书', '22', '3', '1', '3', null, null, '0');
  307.  
    INSERT INTO `pms_category` VALUES ('169', '音乐', '23', '3', '1', '0', null, null, '0');
  308.  
    INSERT INTO `pms_category` VALUES ('170', '影视', '23', '3', '1', '0', null, null, '0');
  309.  
    INSERT INTO `pms_category` VALUES ('171', '教育音像', '23', '3', '1', '0', null, null, '0');
  310.  
    INSERT INTO `pms_category` VALUES ('172', '少儿', '24', '3', '1', '0', null, null, '0');
  311.  
    INSERT INTO `pms_category` VALUES ('173', '商务投资', '24', '3', '1', '0', null, null, '0');
  312.  
    INSERT INTO `pms_category` VALUES ('174', '英语学习与考试', '24', '3', '1', '0', null, null, '0');
  313.  
    INSERT INTO `pms_category` VALUES ('175', '文学', '24', '3', '1', '0', null, null, '0');
  314.  
    INSERT INTO `pms_category` VALUES ('176', '传记', '24', '3', '1', '0', null, null, '0');
  315.  
    INSERT INTO `pms_category` VALUES ('177', '励志', '24', '3', '1', '0', null, null, '0');
  316.  
    INSERT INTO `pms_category` VALUES ('178', '小说', '25', '3', '1', '0', null, null, '0');
  317.  
    INSERT INTO `pms_category` VALUES ('179', '文学', '25', '3', '1', '0', null, null, '0');
  318.  
    INSERT INTO `pms_category` VALUES ('180', '青春文学', '25', '3', '1', '0', null, null, '0');
  319.  
    INSERT INTO `pms_category` VALUES ('181', '传记', '25', '3', '1', '0', null, null, '0');
  320.  
    INSERT INTO `pms_category` VALUES ('182', '艺术', '25', '3', '1', '0', null, null, '0');
  321.  
    INSERT INTO `pms_category` VALUES ('183', '少儿', '26', '3', '1', '0', null, null, '0');
  322.  
    INSERT INTO `pms_category` VALUES ('184', '0-2岁', '26', '3', '1', '0', null, null, '0');
  323.  
    INSERT INTO `pms_category` VALUES ('185', '3-6岁', '26', '3', '1', '0', null, null, '0');
  324.  
    INSERT INTO `pms_category` VALUES ('186', '7-10岁', '26', '3', '1', '0', null, null, '0');
  325.  
    INSERT INTO `pms_category` VALUES ('187', '11-14岁', '26', '3', '1', '0', null, null, '0');
  326.  
    INSERT INTO `pms_category` VALUES ('188', '历史', '27', '3', '1', '0', null, null, '0');
  327.  
    INSERT INTO `pms_category` VALUES ('189', '哲学', '27', '3', '1', '0', null, null, '0');
  328.  
    INSERT INTO `pms_category` VALUES ('190', '国学', '27', '3', '1', '0', null, null, '0');
  329.  
    INSERT INTO `pms_category` VALUES ('191', '政治/军事', '27', '3', '1', '0', null, null, '0');
  330.  
    INSERT INTO `pms_category` VALUES ('192', '法律', '27', '3', '1', '0', null, null, '0');
  331.  
    INSERT INTO `pms_category` VALUES ('193', '人文社科', '27', '3', '1', '0', null, null, '0');
  332.  
    INSERT INTO `pms_category` VALUES ('194', '心理学', '27', '3', '1', '0', null, null, '0');
  333.  
    INSERT INTO `pms_category` VALUES ('195', '文化', '27', '3', '1', '0', null, null, '0');
  334.  
    INSERT INTO `pms_category` VALUES ('196', '社会科学', '27', '3', '1', '0', null, null, '0');
  335.  
    INSERT INTO `pms_category` VALUES ('197', '经济', '28', '3', '1', '0', null, null, '0');
  336.  
    INSERT INTO `pms_category` VALUES ('198', '金融与投资', '28', '3', '1', '0', null, null, '0');
  337.  
    INSERT INTO `pms_category` VALUES ('199', '管理', '28', '3', '1', '0', null, null, '0');
  338.  
    INSERT INTO `pms_category` VALUES ('200', '励志与成功', '28', '3', '1', '0', null, null, '0');
  339.  
    INSERT INTO `pms_category` VALUES ('201', '生活', '29', '3', '1', '0', null, null, '0');
  340.  
    INSERT INTO `pms_category` VALUES ('202', '健身与保健', '29', '3', '1', '0', null, null, '0');
  341.  
    INSERT INTO `pms_category` VALUES ('203', '家庭与育儿', '29', '3', '1', '0', null, null, '0');
  342.  
    INSERT INTO `pms_category` VALUES ('204', '旅游', '29', '3', '1', '0', null, null, '0');
  343.  
    INSERT INTO `pms_category` VALUES ('205', '烹饪美食', '29', '3', '1', '0', null, null, '0');
  344.  
    INSERT INTO `pms_category` VALUES ('206', '工业技术', '30', '3', '1', '0', null, null, '0');
  345.  
    INSERT INTO `pms_category` VALUES ('207', '科普读物', '30', '3', '1', '0', null, null, '0');
  346.  
    INSERT INTO `pms_category` VALUES ('208', '建筑', '30', '3', '1', '0', null, null, '0');
  347.  
    INSERT INTO `pms_category` VALUES ('209', '医学', '30', '3', '1', '0', null, null, '0');
  348.  
    INSERT INTO `pms_category` VALUES ('210', '科学与自然', '30', '3', '1', '0', null, null, '0');
  349.  
    INSERT INTO `pms_category` VALUES ('211', '计算机与互联网', '30', '3', '1', '0', null, null, '0');
  350.  
    INSERT INTO `pms_category` VALUES ('212', '电子通信', '30', '3', '1', '0', null, null, '0');
  351.  
    INSERT INTO `pms_category` VALUES ('213', '中小学教辅', '31', '3', '1', '0', null, null, '0');
  352.  
    INSERT INTO `pms_category` VALUES ('214', '教育与考试', '31', '3', '1', '0', null, null, '0');
  353.  
    INSERT INTO `pms_category` VALUES ('215', '外语学习', '31', '3', '1', '0', null, null, '0');
  354.  
    INSERT INTO `pms_category` VALUES ('216', '大中专教材', '31', '3', '1', '0', null, null, '0');
  355.  
    INSERT INTO `pms_category` VALUES ('217', '字典词典', '31', '3', '1', '0', null, null, '0');
  356.  
    INSERT INTO `pms_category` VALUES ('218', '艺术/设计/收藏', '32', '3', '1', '0', null, null, '0');
  357.  
    INSERT INTO `pms_category` VALUES ('219', '经济管理', '32', '3', '1', '0', null, null, '0');
  358.  
    INSERT INTO `pms_category` VALUES ('220', '文化/学术', '32', '3', '1', '0', null, null, '0');
  359.  
    INSERT INTO `pms_category` VALUES ('221', '少儿', '32', '3', '1', '0', null, null, '0');
  360.  
    INSERT INTO `pms_category` VALUES ('222', '工具书', '33', '3', '1', '0', null, null, '0');
  361.  
    INSERT INTO `pms_category` VALUES ('223', '杂志/期刊', '33', '3', '1', '0', null, null, '0');
  362.  
    INSERT INTO `pms_category` VALUES ('224', '套装书', '33', '3', '1', '0', null, null, '0');
  363.  
    INSERT INTO `pms_category` VALUES ('225', '手机', '34', '3', '1', '0', null, null, '0');
  364.  
    INSERT INTO `pms_category` VALUES ('226', '对讲机', '34', '3', '1', '0', null, null, '0');
  365.  
    INSERT INTO `pms_category` VALUES ('227', '合约机', '35', '3', '1', '0', null, null, '0');
  366.  
    INSERT INTO `pms_category` VALUES ('228', '选号中心', '35', '3', '1', '0', null, null, '0');
  367.  
    INSERT INTO `pms_category` VALUES ('229', '装宽带', '35', '3', '1', '0', null, null, '0');
  368.  
    INSERT INTO `pms_category` VALUES ('230', '办套餐', '35', '3', '1', '0', null, null, '0');
  369.  
    INSERT INTO `pms_category` VALUES ('231', '移动电源', '36', '3', '1', '0', null, null, '0');
  370.  
    INSERT INTO `pms_category` VALUES ('232', '电池/移动电源', '36', '3', '1', '0', null, null, '0');
  371.  
    INSERT INTO `pms_category` VALUES ('233', '蓝牙耳机', '36', '3', '1', '0', null, null, '0');
  372.  
    INSERT INTO `pms_category` VALUES ('234', '充电器/数据线', '36', '3', '1', '0', null, null, '0');
  373.  
    INSERT INTO `pms_category` VALUES ('235', '苹果周边', '36', '3', '1', '0', null, null, '0');
  374.  
    INSERT INTO `pms_category` VALUES ('236', '手机耳机', '36', '3', '1', '0', null, null, '0');
  375.  
    INSERT INTO `pms_category` VALUES ('237', '手机贴膜', '36', '3', '1', '0', null, null, '0');
  376.  
    INSERT INTO `pms_category` VALUES ('238', '手机存储卡', '36', '3', '1', '0', null, null, '0');
  377.  
    INSERT INTO `pms_category` VALUES ('239', '充电器', '36', '3', '1', '0', null, null, '0');
  378.  
    INSERT INTO `pms_category` VALUES ('240', '数据线', '36', '3', '1', '0', null, null, '0');
  379.  
    INSERT INTO `pms_category` VALUES ('241', '手机保护套', '36', '3', '1', '0', null, null, '0');
  380.  
    INSERT INTO `pms_category` VALUES ('242', '车载配件', '36', '3', '1', '0', null, null, '0');
  381.  
    INSERT INTO `pms_category` VALUES ('243', 'iPhone 配件', '36', '3', '1', '0', null, null, '0');
  382.  
    INSERT INTO `pms_category` VALUES ('244', '手机电池', '36', '3', '1', '0', null, null, '0');
  383.  
    INSERT INTO `pms_category` VALUES ('245', '创意配件', '36', '3', '1', '0', null, null, '0');
  384.  
    INSERT INTO `pms_category` VALUES ('246', '便携/无线音响', '36', '3', '1', '0', null, null, '0');
  385.  
    INSERT INTO `pms_category` VALUES ('247', '手机饰品', '36', '3', '1', '0', null, null, '0');
  386.  
    INSERT INTO `pms_category` VALUES ('248', '拍照配件', '36', '3', '1', '0', null, null, '0');
  387.  
    INSERT INTO `pms_category` VALUES ('249', '手机支架', '36', '3', '1', '0', null, null, '0');
  388.  
    INSERT INTO `pms_category` VALUES ('250', '平板电视', '37', '3', '1', '0', null, null, '0');
  389.  
    INSERT INTO `pms_category` VALUES ('251', '空调', '37', '3', '1', '0', null, null, '0');
  390.  
    INSERT INTO `pms_category` VALUES ('252', '冰箱', '37', '3', '1', '0', null, null, '0');
  391.  
    INSERT INTO `pms_category` VALUES ('253', '洗衣机', '37', '3', '1', '0', null, null, '0');
  392.  
    INSERT INTO `pms_category` VALUES ('254', '家庭影院', '37', '3', '1', '0', null, null, '0');
  393.  
    INSERT INTO `pms_category` VALUES ('255', 'DVD/电视盒子', '37', '3', '1', '0', null, null, '0');
  394.  
    INSERT INTO `pms_category` VALUES ('256', '迷你音响', '37', '3', '1', '0', null, null, '0');
  395.  
    INSERT INTO `pms_category` VALUES ('257', '冷柜/冰吧', '37', '3', '1', '0', null, null, '0');
  396.  
    INSERT INTO `pms_category` VALUES ('258', '家电配件', '37', '3', '1', '0', null, null, '0');
  397.  
    INSERT INTO `pms_category` VALUES ('259', '功放', '37', '3', '1', '0', null, null, '0');
  398.  
    INSERT INTO `pms_category` VALUES ('260', '回音壁/Soundbar', '37', '3', '1', '0', null, null, '0');
  399.  
    INSERT INTO `pms_category` VALUES ('261', 'Hi-Fi专区', '37', '3', '1', '0', null, null, '0');
  400.  
    INSERT INTO `pms_category` VALUES ('262', '电视盒子', '37', '3', '1', '0', null, null, '0');
  401.  
    INSERT INTO `pms_category` VALUES ('263', '酒柜', '37', '3', '1', '0', null, null, '0');
  402.  
    INSERT INTO `pms_category` VALUES ('264', '燃气灶', '38', '3', '1', '0', null, null, '0');
  403.  
    INSERT INTO `pms_category` VALUES ('265', '油烟机', '38', '3', '1', '0', null, null, '0');
  404.  
    INSERT INTO `pms_category` VALUES ('266', '热水器', '38', '3', '1', '0', null, null, '0');
  405.  
    INSERT INTO `pms_category` VALUES ('267', '消毒柜', '38', '3', '1', '0', null, null, '0');
  406.  
    INSERT INTO `pms_category` VALUES ('268', '洗碗机', '38', '3', '1', '0', null, null, '0');
  407.  
    INSERT INTO `pms_category` VALUES ('269', '料理机', '39', '3', '1', '0', null, null, '0');
  408.  
    INSERT INTO `pms_category` VALUES ('270', '榨汁机', '39', '3', '1', '0', null, null, '0');
  409.  
    INSERT INTO `pms_category` VALUES ('271', '电饭煲', '39', '3', '1', '0', null, null, '0');
  410.  
    INSERT INTO `pms_category` VALUES ('272', '电压力锅', '39', '3', '1', '0', null, null, '0');
  411.  
    INSERT INTO `pms_category` VALUES ('273', '豆浆机', '39', '3', '1', '0', null, null, '0');
  412.  
    INSERT INTO `pms_category` VALUES ('274', '咖啡机', '39', '3', '1', '0', null, null, '0');
  413.  
    INSERT INTO `pms_category` VALUES ('275', '微波炉', '39', '3', '1', '0', null, null, '0');
  414.  
    INSERT INTO `pms_category` VALUES ('276', '电烤箱', '39', '3', '1', '0', null, null, '0');
  415.  
    INSERT INTO `pms_category` VALUES ('277', '电磁炉', '39', '3', '1', '0', null, null, '0');
  416.  
    INSERT INTO `pms_category` VALUES ('278', '面包机', '39', '3', '1', '0', null, null, '0');
  417.  
    INSERT INTO `pms_category` VALUES ('279', '煮蛋器', '39', '3', '1', '0', null, null, '0');
  418.  
    INSERT INTO `pms_category` VALUES ('280', '酸奶机', '39', '3', '1', '0', null, null, '0');
  419.  
    INSERT INTO `pms_category` VALUES ('281', '电炖锅', '39', '3', '1', '0', null, null, '0');
  420.  
    INSERT INTO `pms_category` VALUES ('282', '电水壶/热水瓶', '39', '3', '1', '0', null, null, '0');
  421.  
    INSERT INTO `pms_category` VALUES ('283', '电饼铛', '39', '3', '1', '0', null, null, '0');
  422.  
    INSERT INTO `pms_category` VALUES ('284', '多用途锅', '39', '3', '1', '0', null, null, '0');
  423.  
    INSERT INTO `pms_category` VALUES ('285', '电烧烤炉', '39', '3', '1', '0', null, null, '0');
  424.  
    INSERT INTO `pms_category` VALUES ('286', '果蔬解毒机', '39', '3', '1', '0', null, null, '0');
  425.  
    INSERT INTO `pms_category` VALUES ('287', '其它厨房电器', '39', '3', '1', '0', null, null, '0');
  426.  
    INSERT INTO `pms_category` VALUES ('288', '养生壶/煎药壶', '39', '3', '1', '0', null, null, '0');
  427.  
    INSERT INTO `pms_category` VALUES ('289', '电热饭盒', '39', '3', '1', '0', null, null, '0');
  428.  
    INSERT INTO `pms_category` VALUES ('290', '取暖电器', '40', '3', '1', '0', null, null, '0');
  429.  
    INSERT INTO `pms_category` VALUES ('291', '净化器', '40', '3', '1', '0', null, null, '0');
  430.  
    INSERT INTO `pms_category` VALUES ('292', '加湿器', '40', '3', '1', '0', null, null, '0');
  431.  
    INSERT INTO `pms_category` VALUES ('293', '扫地机器人', '40', '3', '1', '0', null, null, '0');
  432.  
    INSERT INTO `pms_category` VALUES ('294', '吸尘器', '40', '3', '1', '0', null, null, '0');
  433.  
    INSERT INTO `pms_category` VALUES ('295', '挂烫机/熨斗', '40', '3', '1', '0', null, null, '0');
  434.  
    INSERT INTO `pms_category` VALUES ('296', '插座', '40', '3', '1', '0', null, null, '0');
  435.  
    INSERT INTO `pms_category` VALUES ('297', '电话机', '40', '3', '1', '0', null, null, '0');
  436.  
    INSERT INTO `pms_category` VALUES ('298', '清洁机', '40', '3', '1', '0', null, null, '0');
  437.  
    INSERT INTO `pms_category` VALUES ('299', '除湿机', '40', '3', '1', '0', null, null, '0');
  438.  
    INSERT INTO `pms_category` VALUES ('300', '干衣机', '40', '3', '1', '0', null, null, '0');
  439.  
    INSERT INTO `pms_category` VALUES ('301', '收录/音机', '40', '3', '1', '0', null, null, '0');
  440.  
    INSERT INTO `pms_category` VALUES ('302', '电风扇', '40', '3', '1', '0', null, null, '0');
  441.  
    INSERT INTO `pms_category` VALUES ('303', '冷风扇', '40', '3', '1', '0', null, null, '0');
  442.  
    INSERT INTO `pms_category` VALUES ('304', '其它生活电器', '40', '3', '1', '0', null, null, '0');
  443.  
    INSERT INTO `pms_category` VALUES ('305', '生活电器配件', '40', '3', '1', '0', null, null, '0');
  444.  
    INSERT INTO `pms_category` VALUES ('306', '净水器', '40', '3', '1', '0', null, null, '0');
  445.  
    INSERT INTO `pms_category` VALUES ('307', '饮水机', '40', '3', '1', '0', null, null, '0');
  446.  
    INSERT INTO `pms_category` VALUES ('308', '剃须刀', '41', '3', '1', '0', null, null, '0');
  447.  
    INSERT INTO `pms_category` VALUES ('309', '剃/脱毛器', '41', '3', '1', '0', null, null, '0');
  448.  
    INSERT INTO `pms_category` VALUES ('310', '口腔护理', '41', '3', '1', '0', null, null, '0');
  449.  
    INSERT INTO `pms_category` VALUES ('311', '电吹风', '41', '3', '1', '0', null, null, '0');
  450.  
    INSERT INTO `pms_category` VALUES ('312', '美容器', '41', '3', '1', '0', null, null, '0');
  451.  
    INSERT INTO `pms_category` VALUES ('313', '理发器', '41', '3', '1', '0', null, null, '0');
  452.  
    INSERT INTO `pms_category` VALUES ('314', '卷/直发器', '41', '3', '1', '0', null, null, '0');
  453.  
    INSERT INTO `pms_category` VALUES ('315', '按摩椅', '41', '3', '1', '0', null, null, '0');
  454.  
    INSERT INTO `pms_category` VALUES ('316', '按摩器', '41', '3', '1', '0', null, null, '0');
  455.  
    INSERT INTO `pms_category` VALUES ('317', '足浴盆', '41', '3', '1', '0', null, null, '0');
  456.  
    INSERT INTO `pms_category` VALUES ('318', '血压计', '41', '3', '1', '0', null, null, '0');
  457.  
    INSERT INTO `pms_category` VALUES ('319', '电子秤/厨房秤', '41', '3', '1', '0', null, null, '0');
  458.  
    INSERT INTO `pms_category` VALUES ('320', '血糖仪', '41', '3', '1', '0', null, null, '0');
  459.  
    INSERT INTO `pms_category` VALUES ('321', '体温计', '41', '3', '1', '0', null, null, '0');
  460.  
    INSERT INTO `pms_category` VALUES ('322', '其它健康电器', '41', '3', '1', '0', null, null, '0');
  461.  
    INSERT INTO `pms_category` VALUES ('323', '计步器/脂肪检测仪', '41', '3', '1', '0', null, null, '0');
  462.  
    INSERT INTO `pms_category` VALUES ('324', '电动工具', '42', '3', '1', '0', null, null, '0');
  463.  
    INSERT INTO `pms_category` VALUES ('325', '手动工具', '42', '3', '1', '0', null, null, '0');
  464.  
    INSERT INTO `pms_category` VALUES ('326', '仪器仪表', '42', '3', '1', '0', null, null, '0');
  465.  
    INSERT INTO `pms_category` VALUES ('327', '浴霸/排气扇', '42', '3', '1', '0', null, null, '0');
  466.  
    INSERT INTO `pms_category` VALUES ('328', '灯具', '42', '3', '1', '0', null, null, '0');
  467.  
    INSERT INTO `pms_category` VALUES ('329', 'LED灯', '42', '3', '1', '0', null, null, '0');
  468.  
    INSERT INTO `pms_category` VALUES ('330', '洁身器', '42', '3', '1', '0', null, null, '0');
  469.  
    INSERT INTO `pms_category` VALUES ('331', '水槽', '42', '3', '1', '0', null, null, '0');
  470.  
    INSERT INTO `pms_category` VALUES ('332', '龙头(领头)(领头)', '42', '3', '1', '0', null, null, '0');
  471.  
    INSERT INTO `pms_category` VALUES ('333', '淋浴花洒', '42', '3', '1', '0', null, null, '0');
  472.  
    INSERT INTO `pms_category` VALUES ('334', '厨卫五金', '42', '3', '1', '0', null, null, '0');
  473.  
    INSERT INTO `pms_category` VALUES ('335', '家具五金', '42', '3', '1', '0', null, null, '0');
  474.  
    INSERT INTO `pms_category` VALUES ('336', '门铃', '42', '3', '1', '0', null, null, '0');
  475.  
    INSERT INTO `pms_category` VALUES ('337', '电气开关', '42', '3', '1', '0', null, null, '0');
  476.  
    INSERT INTO `pms_category` VALUES ('338', '插座', '42', '3', '1', '0', null, null, '0');
  477.  
    INSERT INTO `pms_category` VALUES ('339', '电工电料', '42', '3', '1', '0', null, null, '0');
  478.  
    INSERT INTO `pms_category` VALUES ('340', '监控安防', '42', '3', '1', '0', null, null, '0');
  479.  
    INSERT INTO `pms_category` VALUES ('341', '电线/线缆', '42', '3', '1', '0', null, null, '0');
  480.  
    INSERT INTO `pms_category` VALUES ('342', '数码相机', '43', '3', '1', '0', null, null, '0');
  481.  
    INSERT INTO `pms_category` VALUES ('343', '单电/微单相机', '43', '3', '1', '0', null, null, '0');
  482.  
    INSERT INTO `pms_category` VALUES ('344', '单反相机', '43', '3', '1', '0', null, null, '0');
  483.  
    INSERT INTO `pms_category` VALUES ('345', '摄像机', '43', '3', '1', '0', null, null, '0');
  484.  
    INSERT INTO `pms_category` VALUES ('346', '拍立得', '43', '3', '1', '0', null, null, '0');
  485.  
    INSERT INTO `pms_category` VALUES ('347', '运动相机', '43', '3', '1', '0', null, null, '0');
  486.  
    INSERT INTO `pms_category` VALUES ('348', '镜头', '43', '3', '1', '0', null, null, '0');
  487.  
    INSERT INTO `pms_category` VALUES ('349', '户外器材', '43', '3', '1', '0', null, null, '0');
  488.  
    INSERT INTO `pms_category` VALUES ('350', '影棚器材', '43', '3', '1', '0', null, null, '0');
  489.  
    INSERT INTO `pms_category` VALUES ('351', '冲印服务', '43', '3', '1', '0', null, null, '0');
  490.  
    INSERT INTO `pms_category` VALUES ('352', '数码相框', '43', '3', '1', '0', null, null, '0');
  491.  
    INSERT INTO `pms_category` VALUES ('353', '存储卡', '44', '3', '1', '0', null, null, '0');
  492.  
    INSERT INTO `pms_category` VALUES ('354', '读卡器', '44', '3', '1', '0', null, null, '0');
  493.  
    INSERT INTO `pms_category` VALUES ('355', '滤镜', '44', '3', '1', '0', null, null, '0');
  494.  
    INSERT INTO `pms_category` VALUES ('356', '闪光灯/手柄', '44', '3', '1', '0', null, null, '0');
  495.  
    INSERT INTO `pms_category` VALUES ('357', '相机包', '44', '3', '1', '0', null, null, '0');
  496.  
    INSERT INTO `pms_category` VALUES ('358', '三脚架/云台', '44', '3', '1', '0', null, null, '0');
  497.  
    INSERT INTO `pms_category` VALUES ('359', '相机清洁/贴膜', '44', '3', '1', '0', null, null, '0');
  498.  
    INSERT INTO `pms_category` VALUES ('360', '机身附件', '44', '3', '1', '0', null, null, '0');
  499.  
    INSERT INTO `pms_category` VALUES ('361', '镜头附件', '44', '3', '1', '0', null, null, '0');
  500.  
    INSERT INTO `pms_category` VALUES ('362', '电池/充电器', '44', '3', '1', '0', null, null, '0');
  501.  
    INSERT INTO `pms_category` VALUES ('363', '移动电源', '44', '3', '1', '0', null, null, '0');
  502.  
    INSERT INTO `pms_category` VALUES ('364', '数码支架', '44', '3', '1', '0', null, null, '0');
  503.  
    INSERT INTO `pms_category` VALUES ('365', '智能手环', '45', '3', '1', '0', null, null, '0');
  504.  
    INSERT INTO `pms_category` VALUES ('366', '智能手表', '45', '3', '1', '0', null, null, '0');
  505.  
    INSERT INTO `pms_category` VALUES ('367', '智能眼镜', '45', '3', '1', '0', null, null, '0');
  506.  
    INSERT INTO `pms_category` VALUES ('368', '运动跟踪器', '45', '3', '1', '0', null, null, '0');
  507.  
    INSERT INTO `pms_category` VALUES ('369', '健康监测', '45', '3', '1', '0', null, null, '0');
  508.  
    INSERT INTO `pms_category` VALUES ('370', '智能配饰', '45', '3', '1', '0', null, null, '0');
  509.  
    INSERT INTO `pms_category` VALUES ('371', '智能家居', '45', '3', '1', '0', null, null, '0');
  510.  
    INSERT INTO `pms_category` VALUES ('372', '体感车', '45', '3', '1', '0', null, null, '0');
  511.  
    INSERT INTO `pms_category` VALUES ('373', '其他配件', '45', '3', '1', '0', null, null, '0');
  512.  
    INSERT INTO `pms_category` VALUES ('374', '智能机器人', '45', '3', '1', '0', null, null, '0');
  513.  
    INSERT INTO `pms_category` VALUES ('375', '无人机', '45', '3', '1', '0', null, null, '0');
  514.  
    INSERT INTO `pms_category` VALUES ('376', 'MP3/MP4', '46', '3', '1', '0', null, null, '0');
  515.  
    INSERT INTO `pms_category` VALUES ('377', '智能设备', '46', '3', '1', '0', null, null, '0');
  516.  
    INSERT INTO `pms_category` VALUES ('378', '耳机/耳麦', '46', '3', '1', '0', null, null, '0');
  517.  
    INSERT INTO `pms_category` VALUES ('379', '便携/无线音箱', '46', '3', '1', '0', null, null, '0');
  518.  
    INSERT INTO `pms_category` VALUES ('380', '音箱/音响', '46', '3', '1', '0', null, null, '0');
  519.  
    INSERT INTO `pms_category` VALUES ('381', '高清播放器', '46', '3', '1', '0', null, null, '0');
  520.  
    INSERT INTO `pms_category` VALUES ('382', '收音机', '46', '3', '1', '0', null, null, '0');
  521.  
    INSERT INTO `pms_category` VALUES ('383', 'MP3/MP4配件', '46', '3', '1', '0', null, null, '0');
  522.  
    INSERT INTO `pms_category` VALUES ('384', '麦克风', '46', '3', '1', '0', null, null, '0');
  523.  
    INSERT INTO `pms_category` VALUES ('385', '专业音频', '46', '3', '1', '0', null, null, '0');
  524.  
    INSERT INTO `pms_category` VALUES ('386', '苹果配件', '46', '3', '1', '0', null, null, '0');
  525.  
    INSERT INTO `pms_category` VALUES ('387', '学生平板', '47', '3', '1', '0', null, null, '0');
  526.  
    INSERT INTO `pms_category` VALUES ('388', '点读机/笔', '47', '3', '1', '0', null, null, '0');
  527.  
    INSERT INTO `pms_category` VALUES ('389', '早教益智', '47', '3', '1', '0', null, null, '0');
  528.  
    INSERT INTO `pms_category` VALUES ('390', '录音笔', '47', '3', '1', '0', null, null, '0');
  529.  
    INSERT INTO `pms_category` VALUES ('391', '电纸书', '47', '3', '1', '0', null, null, '0');
  530.  
    INSERT INTO `pms_category` VALUES ('392', '电子词典', '47', '3', '1', '0', null, null, '0');
  531.  
    INSERT INTO `pms_category` VALUES ('393', '复读机', '47', '3', '1', '0', null, null, '0');
  532.  
    INSERT INTO `pms_category` VALUES ('394', '延保服务', '48', '3', '1', '0', null, null, '0');
  533.  
    INSERT INTO `pms_category` VALUES ('395', '杀毒软件', '48', '3', '1', '0', null, null, '0');
  534.  
    INSERT INTO `pms_category` VALUES ('396', '积分商品', '48', '3', '1', '0', null, null, '0');
  535.  
    INSERT INTO `pms_category` VALUES ('397', '桌布/罩件', '49', '3', '1', '0', null, null, '0');
  536.  
    INSERT INTO `pms_category` VALUES ('398', '地毯地垫', '49', '3', '1', '0', null, null, '0');
  537.  
    INSERT INTO `pms_category` VALUES ('399', '沙发垫套/椅垫', '49', '3', '1', '0', null, null, '0');
  538.  
    INSERT INTO `pms_category` VALUES ('400', '床品套件', '49', '3', '1', '0', null, null, '0');
  539.  
    INSERT INTO `pms_category` VALUES ('401', '被子', '49', '3', '1', '0', null, null, '0');
  540.  
    INSERT INTO `pms_category` VALUES ('402', '枕芯', '49', '3', '1', '0', null, null, '0');
  541.  
    INSERT INTO `pms_category` VALUES ('403', '床单被罩', '49', '3', '1', '0', null, null, '0');
  542.  
    INSERT INTO `pms_category` VALUES ('404', '毯子', '49', '3', '1', '0', null, null, '0');
  543.  
    INSERT INTO `pms_category` VALUES ('405', '床垫/床褥', '49', '3', '1', '0', null, null, '0');
  544.  
    INSERT INTO `pms_category` VALUES ('406', '蚊帐', '49', '3', '1', '0', null, null, '0');
  545.  
    INSERT INTO `pms_category` VALUES ('407', '抱枕靠垫', '49', '3', '1', '0', null, null, '0');
  546.  
    INSERT INTO `pms_category` VALUES ('408', '毛巾浴巾', '49', '3', '1', '0', null, null, '0');
  547.  
    INSERT INTO `pms_category` VALUES ('409', '电热毯', '49', '3', '1', '0', null, null, '0');
  548.  
    INSERT INTO `pms_category` VALUES ('410', '窗帘/窗纱', '49', '3', '1', '0', null, null, '0');
  549.  
    INSERT INTO `pms_category` VALUES ('411', '布艺软饰', '49', '3', '1', '0', null, null, '0');
  550.  
    INSERT INTO `pms_category` VALUES ('412', '凉席', '49', '3', '1', '0', null, null, '0');
  551.  
    INSERT INTO `pms_category` VALUES ('413', '台灯', '50', '3', '1', '0', null, null, '0');
  552.  
    INSERT INTO `pms_category` VALUES ('414', '节能灯', '50', '3', '1', '0', null, null, '0');
  553.  
    INSERT INTO `pms_category` VALUES ('415', '装饰灯', '50', '3', '1', '0', null, null, '0');
  554.  
    INSERT INTO `pms_category` VALUES ('416', '落地灯', '50', '3', '1', '0', null, null, '0');
  555.  
    INSERT INTO `pms_category` VALUES ('417', '应急灯/手电', '50', '3', '1', '0', null, null, '0');
  556.  
    INSERT INTO `pms_category` VALUES ('418', 'LED灯', '50', '3', '1', '0', null, null, '0');
  557.  
    INSERT INTO `pms_category` VALUES ('419', '吸顶灯', '50', '3', '1', '0', null, null, '0');
  558.  
    INSERT INTO `pms_category` VALUES ('420', '五金电器', '50', '3', '1', '0', null, null, '0');
  559.  
    INSERT INTO `pms_category` VALUES ('421', '筒灯射灯', '50', '3', '1', '0', null, null, '0');
  560.  
    INSERT INTO `pms_category` VALUES ('422', '吊灯', '50', '3', '1', '0', null, null, '0');
  561.  
    INSERT INTO `pms_category` VALUES ('423', '氛围照明', '50', '3', '1', '0', null, null, '0');
  562.  
    INSERT INTO `pms_category` VALUES ('424', '保暖防护', '51', '3', '1', '0', null, null, '0');
  563.  
    INSERT INTO `pms_category` VALUES ('425', '收纳用品', '51', '3', '1', '0', null, null, '0');
  564.  
    INSERT INTO `pms_category` VALUES ('426', '雨伞雨具', '51', '3', '1', '0', null, null, '0');
  565.  
    INSERT INTO `pms_category` VALUES ('427', '浴室用品', '51', '3', '1', '0', null, null, '0');
  566.  
    INSERT INTO `pms_category` VALUES ('428', '缝纫/针织用品', '51', '3', '1', '0', null, null, '0');
  567.  
    INSERT INTO `pms_category` VALUES ('429', '洗晒/熨烫', '51', '3', '1', '0', null, null, '0');
  568.  
    INSERT INTO `pms_category` VALUES ('430', '净化除味', '51', '3', '1', '0', null, null, '0');
  569.  
    INSERT INTO `pms_category` VALUES ('431', '相框/照片墙', '52', '3', '1', '0', null, null, '0');
  570.  
    INSERT INTO `pms_category` VALUES ('432', '装饰字画', '52', '3', '1', '0', null, null, '0');
  571.  
    INSERT INTO `pms_category` VALUES ('433', '节庆饰品', '52', '3', '1', '0', null, null, '0');
  572.  
    INSERT INTO `pms_category` VALUES ('434', '手工/十字绣', '52', '3', '1', '0', null, null, '0');
  573.  
    INSERT INTO `pms_category` VALUES ('435', '装饰摆件', '52', '3', '1', '0', null, null, '0');
  574.  
    INSERT INTO `pms_category` VALUES ('436', '帘艺隔断', '52', '3', '1', '0', null, null, '0');
  575.  
    INSERT INTO `pms_category` VALUES ('437', '墙贴/装饰贴', '52', '3', '1', '0', null, null, '0');
  576.  
    INSERT INTO `pms_category` VALUES ('438', '钟饰', '52', '3', '1', '0', null, null, '0');
  577.  
    INSERT INTO `pms_category` VALUES ('439', '花瓶花艺', '52', '3', '1', '0', null, null, '0');
  578.  
    INSERT INTO `pms_category` VALUES ('440', '香薰蜡烛', '52', '3', '1', '0', null, null, '0');
  579.  
    INSERT INTO `pms_category` VALUES ('441', '创意家居', '52', '3', '1', '0', null, null, '0');
  580.  
    INSERT INTO `pms_category` VALUES ('442', '宠物主粮', '53', '3', '1', '0', null, null, '0');
  581.  
    INSERT INTO `pms_category` VALUES ('443', '宠物零食', '53', '3', '1', '0', null, null, '0');
  582.  
    INSERT INTO `pms_category` VALUES ('444', '医疗保健', '53', '3', '1', '0', null, null, '0');
  583.  
    INSERT INTO `pms_category` VALUES ('445', '家居日用', '53', '3', '1', '0', null, null, '0');
  584.  
    INSERT INTO `pms_category` VALUES ('446', '宠物玩具', '53', '3', '1', '0', null, null, '0');
  585.  
    INSERT INTO `pms_category` VALUES ('447', '出行装备', '53', '3', '1', '0', null, null, '0');
  586.  
    INSERT INTO `pms_category` VALUES ('448', '洗护美容', '53', '3', '1', '0', null, null, '0');
  587.  
    INSERT INTO `pms_category` VALUES ('449', '笔记本', '54', '3', '1', '0', null, null, '0');
  588.  
    INSERT INTO `pms_category` VALUES ('450', '超极本', '54', '3', '1', '0', null, null, '0');
  589.  
    INSERT INTO `pms_category` VALUES ('451', '游戏本', '54', '3', '1', '0', null, null, '0');
  590.  
    INSERT INTO `pms_category` VALUES ('452', '平板电脑', '54', '3', '1', '0', null, null, '0');
  591.  
    INSERT INTO `pms_category` VALUES ('453', '平板电脑配件', '54', '3', '1', '0', null, null, '0');
  592.  
    INSERT INTO `pms_category` VALUES ('454', '台式机', '54', '3', '1', '0', null, null, '0');
  593.  
    INSERT INTO `pms_category` VALUES ('455', '服务器/工作站', '54', '3', '1', '0', null, null, '0');
  594.  
    INSERT INTO `pms_category` VALUES ('456', '笔记本配件', '54', '3', '1', '0', null, null, '0');
  595.  
    INSERT INTO `pms_category` VALUES ('457', '一体机', '54', '3', '1', '0', null, null, '0');
  596.  
    INSERT INTO `pms_category` VALUES ('458', 'CPU', '55', '3', '1', '0', null, null, '0');
  597.  
    INSERT INTO `pms_category` VALUES ('459', '主板', '55', '3', '1', '0', null, null, '0');
  598.  
    INSERT INTO `pms_category` VALUES ('460', '显卡', '55', '3', '1', '0', null, null, '0');
  599.  
    INSERT INTO `pms_category` VALUES ('461', '硬盘', '55', '3', '1', '0', null, null, '0');
  600.  
    INSERT INTO `pms_category` VALUES ('462', 'SSD固态硬盘', '55', '3', '1', '0', null, null, '0');
  601.  
    INSERT INTO `pms_category` VALUES ('463', '内存', '55', '3', '1', '0', null, null, '0');
  602.  
    INSERT INTO `pms_category` VALUES ('464', '机箱', '55', '3', '1', '0', null, null, '0');
  603.  
    INSERT INTO `pms_category` VALUES ('465', '电源', '55', '3', '1', '0', null, null, '0');
  604.  
    INSERT INTO `pms_category` VALUES ('466', '显示器', '55', '3', '1', '0', null, null, '0');
  605.  
    INSERT INTO `pms_category` VALUES ('467', '刻录机/光驱', '55', '3', '1', '0', null, null, '0');
  606.  
    INSERT INTO `pms_category` VALUES ('468', '散热器', '55', '3', '1', '0', null, null, '0');
  607.  
    INSERT INTO `pms_category` VALUES ('469', '声卡/扩展卡', '55', '3', '1', '0', null, null, '0');
  608.  
    INSERT INTO `pms_category` VALUES ('470', '装机配件', '55', '3', '1', '0', null, null, '0');
  609.  
    INSERT INTO `pms_category` VALUES ('471', '组装电脑', '55', '3', '1', '0', null, null, '0');
  610.  
    INSERT INTO `pms_category` VALUES ('472', '移动硬盘', '56', '3', '1', '0', null, null, '0');
  611.  
    INSERT INTO `pms_category` VALUES ('473', 'U盘', '56', '3', '1', '0', null, null, '0');
  612.  
    INSERT INTO `pms_category` VALUES ('474', '鼠标', '56', '3', '1', '0', null, null, '0');
  613.  
    INSERT INTO `pms_category` VALUES ('475', '键盘', '56', '3', '1', '0', null, null, '0');
  614.  
    INSERT INTO `pms_category` VALUES ('476', '鼠标垫', '56', '3', '1', '0', null, null, '0');
  615.  
    INSERT INTO `pms_category` VALUES ('477', '摄像头', '56', '3', '1', '0', null, null, '0');
  616.  
    INSERT INTO `pms_category` VALUES ('478', '手写板', '56', '3', '1', '0', null, null, '0');
  617.  
    INSERT INTO `pms_category` VALUES ('479', '硬盘盒', '56', '3', '1', '0', null, null, '0');
  618.  
    INSERT INTO `pms_category` VALUES ('480', '插座', '56', '3', '1', '0', null, null, '0');
  619.  
    INSERT INTO `pms_category` VALUES ('481', '线缆', '56', '3', '1', '0', null, null, '0');
  620.  
    INSERT INTO `pms_category` VALUES ('482', 'UPS电源', '56', '3', '1', '0', null, null, '0');
  621.  
    INSERT INTO `pms_category` VALUES ('483', '电脑工具', '56', '3', '1', '0', null, null, '0');
  622.  
    INSERT INTO `pms_category` VALUES ('484', '游戏设备', '56', '3', '1', '0', null, null, '0');
  623.  
    INSERT INTO `pms_category` VALUES ('485', '电玩', '56', '3', '1', '0', null, null, '0');
  624.  
    INSERT INTO `pms_category` VALUES ('486', '电脑清洁', '56', '3', '1', '0', null, null, '0');
  625.  
    INSERT INTO `pms_category` VALUES ('487', '网络仪表仪器', '56', '3', '1', '0', null, null, '0');
  626.  
    INSERT INTO `pms_category` VALUES ('488', '游戏机', '57', '3', '1', '0', null, null, '0');
  627.  
    INSERT INTO `pms_category` VALUES ('489', '游戏耳机', '57', '3', '1', '0', null, null, '0');
  628.  
    INSERT INTO `pms_category` VALUES ('490', '手柄/方向盘', '57', '3', '1', '0', null, null, '0');
  629.  
    INSERT INTO `pms_category` VALUES ('491', '游戏软件', '57', '3', '1', '0', null, null, '0');
  630.  
    INSERT INTO `pms_category` VALUES ('492', '游戏周边', '57', '3', '1', '0', null, null, '0');
  631.  
    INSERT INTO `pms_category` VALUES ('493', '路由器', '58', '3', '1', '0', null, null, '0');
  632.  
    INSERT INTO `pms_category` VALUES ('494', '网卡', '58', '3', '1', '0', null, null, '0');
  633.  
    INSERT INTO `pms_category` VALUES ('495', '交换机', '58', '3', '1', '0', null, null, '0');
  634.  
    INSERT INTO `pms_category` VALUES ('496', '网络存储', '58', '3', '1', '0', null, null, '0');
  635.  
    INSERT INTO `pms_category` VALUES ('497', '4G/3G上网', '58', '3', '1', '0', null, null, '0');
  636.  
    INSERT INTO `pms_category` VALUES ('498', '网络盒子', '58', '3', '1', '0', null, null, '0');
  637.  
    INSERT INTO `pms_category` VALUES ('499', '网络配件', '58', '3', '1', '0', null, null, '0');
  638.  
    INSERT INTO `pms_category` VALUES ('500', '投影机', '59', '3', '1', '0', null, null, '0');
  639.  
    INSERT INTO `pms_category` VALUES ('501', '投影配件', '59', '3', '1', '0', null, null, '0');
  640.  
    INSERT INTO `pms_category` VALUES ('502', '多功能一体机', '59', '3', '1', '0', null, null, '0');
  641.  
    INSERT INTO `pms_category` VALUES ('503', '打印机', '59', '3', '1', '0', null, null, '0');
  642.  
    INSERT INTO `pms_category` VALUES ('504', '传真设备', '59', '3', '1', '0', null, null, '0');
  643.  
    INSERT INTO `pms_category` VALUES ('505', '验钞/点钞机', '59', '3', '1', '0', null, null, '0');
  644.  
    INSERT INTO `pms_category` VALUES ('506', '扫描设备', '59', '3', '1', '0', null, null, '0');
  645.  
    INSERT INTO `pms_category` VALUES ('507', '复合机', '59', '3', '1', '0', null, null, '0');
  646.  
    INSERT INTO `pms_category` VALUES ('508', '碎纸机', '59', '3', '1', '0', null, null, '0');
  647.  
    INSERT INTO `pms_category` VALUES ('509', '考勤机', '59', '3', '1', '0', null, null, '0');
  648.  
    INSERT INTO `pms_category` VALUES ('510', '收款/POS机', '59', '3', '1', '0', null, null, '0');
  649.  
    INSERT INTO `pms_category` VALUES ('511', '会议音频视频', '59', '3', '1', '0', null, null, '0');
  650.  
    INSERT INTO `pms_category` VALUES ('512', '保险柜', '59', '3', '1', '0', null, null, '0');
  651.  
    INSERT INTO `pms_category` VALUES ('513', '装订/封装机', '59', '3', '1', '0', null, null, '0');
  652.  
    INSERT INTO `pms_category` VALUES ('514', '安防监控', '59', '3', '1', '0', null, null, '0');
  653.  
    INSERT INTO `pms_category` VALUES ('515', '办公家具', '59', '3', '1', '0', null, null, '0');
  654.  
    INSERT INTO `pms_category` VALUES ('516', '白板', '59', '3', '1', '0', null, null, '0');
  655.  
    INSERT INTO `pms_category` VALUES ('517', '硒鼓/墨粉', '60', '3', '1', '0', null, null, '0');
  656.  
    INSERT INTO `pms_category` VALUES ('518', '墨盒', '60', '3', '1', '0', null, null, '0');
  657.  
    INSERT INTO `pms_category` VALUES ('519', '色带', '60', '3', '1', '0', null, null, '0');
  658.  
    INSERT INTO `pms_category` VALUES ('520', '纸类', '60', '3', '1', '0', null, null, '0');
  659.  
    INSERT INTO `pms_category` VALUES ('521', '办公文具', '60', '3', '1', '0', null, null, '0');
  660.  
    INSERT INTO `pms_category` VALUES ('522', '学生文具', '60', '3', '1', '0', null, null, '0');
  661.  
    INSERT INTO `pms_category` VALUES ('523', '财会用品', '60', '3', '1', '0', null, null, '0');
  662.  
    INSERT INTO `pms_category` VALUES ('524', '文件管理', '60', '3', '1', '0', null, null, '0');
  663.  
    INSERT INTO `pms_category` VALUES ('525', '本册/便签', '60', '3', '1', '0', null, null, '0');
  664.  
    INSERT INTO `pms_category` VALUES ('526', '计算器', '60', '3', '1', '0', null, null, '0');
  665.  
    INSERT INTO `pms_category` VALUES ('527', '笔类', '60', '3', '1', '0', null, null, '0');
  666.  
    INSERT INTO `pms_category` VALUES ('528', '画具画材', '60', '3', '1', '0', null, null, '0');
  667.  
    INSERT INTO `pms_category` VALUES ('529', '刻录碟片/附件', '60', '3', '1', '0', null, null, '0');
  668.  
    INSERT INTO `pms_category` VALUES ('530', '上门安装', '61', '3', '1', '0', null, null, '0');
  669.  
    INSERT INTO `pms_category` VALUES ('531', '延保服务', '61', '3', '1', '0', null, null, '0');
  670.  
    INSERT INTO `pms_category` VALUES ('532', '维修保养', '61', '3', '1', '0', null, null, '0');
  671.  
    INSERT INTO `pms_category` VALUES ('533', '电脑软件', '61', '3', '1', '0', null, null, '0');
  672.  
    INSERT INTO `pms_category` VALUES ('534', '京东服务', '61', '3', '1', '0', null, null, '0');
  673.  
    INSERT INTO `pms_category` VALUES ('535', '炒锅', '62', '3', '1', '0', null, null, '0');
  674.  
    INSERT INTO `pms_category` VALUES ('536', '煎锅', '62', '3', '1', '0', null, null, '0');
  675.  
    INSERT INTO `pms_category` VALUES ('537', '压力锅', '62', '3', '1', '0', null, null, '0');
  676.  
    INSERT INTO `pms_category` VALUES ('538', '蒸锅', '62', '3', '1', '0', null, null, '0');
  677.  
    INSERT INTO `pms_category` VALUES ('539', '汤锅', '62', '3', '1', '0', null, null, '0');
  678.  
    INSERT INTO `pms_category` VALUES ('540', '奶锅', '62', '3', '1', '0', null, null, '0');
  679.  
    INSERT INTO `pms_category` VALUES ('541', '锅具套装', '62', '3', '1', '0', null, null, '0');
  680.  
    INSERT INTO `pms_category` VALUES ('542', '煲类', '62', '3', '1', '0', null, null, '0');
  681.  
    INSERT INTO `pms_category` VALUES ('543', '水壶', '62', '3', '1', '0', null, null, '0');
  682.  
    INSERT INTO `pms_category` VALUES ('544', '火锅', '62', '3', '1', '0', null, null, '0');
  683.  
    INSERT INTO `pms_category` VALUES ('545', '菜刀', '63', '3', '1', '0', null, null, '0');
  684.  
    INSERT INTO `pms_category` VALUES ('546', '剪刀', '63', '3', '1', '0', null, null, '0');
  685.  
    INSERT INTO `pms_category` VALUES ('547', '刀具套装', '63', '3', '1', '0', null, null, '0');
  686.  
    INSERT INTO `pms_category` VALUES ('548', '砧板', '63', '3', '1', '0', null, null, '0');
  687.  
    INSERT INTO `pms_category` VALUES ('549', '瓜果刀/刨', '63', '3', '1', '0', null, null, '0');
  688.  
    INSERT INTO `pms_category` VALUES ('550', '多功能刀', '63', '3', '1', '0', null, null, '0');
  689.  
    INSERT INTO `pms_category` VALUES ('551', '保鲜盒', '64', '3', '1', '0', null, null, '0');
  690.  
    INSERT INTO `pms_category` VALUES ('552', '烘焙/烧烤', '64', '3', '1', '0', null, null, '0');
  691.  
    INSERT INTO `pms_category` VALUES ('553', '饭盒/提锅', '64', '3', '1', '0', null, null, '0');
  692.  
    INSERT INTO `pms_category` VALUES ('554', '储物/置物架', '64', '3', '1', '0', null, null, '0');
  693.  
    INSERT INTO `pms_category` VALUES ('555', '厨房DIY/小工具', '64', '3', '1', '0', null, null, '0');
  694.  
    INSERT INTO `pms_category` VALUES ('556', '塑料杯', '65', '3', '1', '0', null, null, '0');
  695.  
    INSERT INTO `pms_category` VALUES ('557', '运动水壶', '65', '3', '1', '0', null, null, '0');
  696.  
    INSERT INTO `pms_category` VALUES ('558', '玻璃杯', '65', '3', '1', '0', null, null, '0');
  697.  
    INSERT INTO `pms_category` VALUES ('559', '陶瓷/马克杯', '65', '3', '1', '0', null, null, '0');
  698.  
    INSERT INTO `pms_category` VALUES ('560', '保温杯', '65', '3', '1', '0', null, null, '0');
  699.  
    INSERT INTO `pms_category` VALUES ('561', '保温壶', '65', '3', '1', '0', null, null, '0');
  700.  
    INSERT INTO `pms_category` VALUES ('562', '酒杯/酒具', '65', '3', '1', '0', null, null, '0');
  701.  
    INSERT INTO `pms_category` VALUES ('563', '杯具套装', '65', '3', '1', '0', null, null, '0');
  702.  
    INSERT INTO `pms_category` VALUES ('564', '餐具套装', '66', '3', '1', '0', null, null, '0');
  703.  
    INSERT INTO `pms_category` VALUES ('565', '碗/碟/盘', '66', '3', '1', '0', null, null, '0');
  704.  
    INSERT INTO `pms_category` VALUES ('566', '筷勺/刀叉', '66', '3', '1', '0', null, null, '0');
  705.  
    INSERT INTO `pms_category` VALUES ('567', '一次性用品', '66', '3', '1', '0', null, null, '0');
  706.  
    INSERT INTO `pms_category` VALUES ('568', '果盘/果篮', '66', '3', '1', '0', null, null, '0');
  707.  
    INSERT INTO `pms_category` VALUES ('569', '自助餐炉', '67', '3', '1', '0', null, null, '0');
  708.  
    INSERT INTO `pms_category` VALUES ('570', '酒店餐具', '67', '3', '1', '0', null, null, '0');
  709.  
    INSERT INTO `pms_category` VALUES ('571', '酒店水具', '67', '3', '1', '0', null, null, '0');
  710.  
    INSERT INTO `pms_category` VALUES ('572', '整套茶具', '68', '3', '1', '0', null, null, '0');
  711.  
    INSERT INTO `pms_category` VALUES ('573', '茶杯', '68', '3', '1', '0', null, null, '0');
  712.  
    INSERT INTO `pms_category` VALUES ('574', '茶壶', '68', '3', '1', '0', null, null, '0');
  713.  
    INSERT INTO `pms_category` VALUES ('575', '茶盘茶托', '68', '3', '1', '0', null, null, '0');
  714.  
    INSERT INTO `pms_category` VALUES ('576', '茶叶罐', '68', '3', '1', '0', null, null, '0');
  715.  
    INSERT INTO `pms_category` VALUES ('577', '茶具配件', '68', '3', '1', '0', null, null, '0');
  716.  
    INSERT INTO `pms_category` VALUES ('578', '茶宠摆件', '68', '3', '1', '0', null, null, '0');
  717.  
    INSERT INTO `pms_category` VALUES ('579', '咖啡具', '68', '3', '1', '0', null, null, '0');
  718.  
    INSERT INTO `pms_category` VALUES ('580', '其他', '68', '3', '1', '0', null, null, '0');
  719.  
    INSERT INTO `pms_category` VALUES ('581', '纸品湿巾', '69', '3', '1', '0', null, null, '0');
  720.  
    INSERT INTO `pms_category` VALUES ('582', '衣物清洁', '69', '3', '1', '0', null, null, '0');
  721.  
    INSERT INTO `pms_category` VALUES ('583', '清洁工具', '69', '3', '1', '0', null, null, '0');
  722.  
    INSERT INTO `pms_category` VALUES ('584', '驱虫用品', '69', '3', '1', '0', null, null, '0');
  723.  
    INSERT INTO `pms_category` VALUES ('585', '家庭清洁', '69', '3', '1', '0', null, null, '0');
  724.  
    INSERT INTO `pms_category` VALUES ('586', '皮具护理', '69', '3', '1', '0', null, null, '0');
  725.  
    INSERT INTO `pms_category` VALUES ('587', '一次性用品', '69', '3', '1', '0', null, null, '0');
  726.  
    INSERT INTO `pms_category` VALUES ('588', '洁面', '70', '3', '1', '0', null, null, '0');
  727.  
    INSERT INTO `pms_category` VALUES ('589', '乳液面霜', '70', '3', '1', '0', null, null, '0');
  728.  
    INSERT INTO `pms_category` VALUES ('590', '面膜', '70', '3', '1', '0', null, null, '0');
  729.  
    INSERT INTO `pms_category` VALUES ('591', '剃须', '70', '3', '1', '0', null, null, '0');
  730.  
    INSERT INTO `pms_category` VALUES ('592', '套装', '70', '3', '1', '0', null, null, '0');
  731.  
    INSERT INTO `pms_category` VALUES ('593', '精华', '70', '3', '1', '0', null, null, '0');
  732.  
    INSERT INTO `pms_category` VALUES ('594', '眼霜', '70', '3', '1', '0', null, null, '0');
  733.  
    INSERT INTO `pms_category` VALUES ('595', '卸妆', '70', '3', '1', '0', null, null, '0');
  734.  
    INSERT INTO `pms_category` VALUES ('596', '防晒', '70', '3', '1', '0', null, null, '0');
  735.  
    INSERT INTO `pms_category` VALUES ('597', '防晒隔离', '70', '3', '1', '0', null, null, '0');
  736.  
    INSERT INTO `pms_category` VALUES ('598', 'T区护理', '70', '3', '1', '0', null, null, '0');
  737.  
    INSERT INTO `pms_category` VALUES ('599', '眼部护理', '70', '3', '1', '0', null, null, '0');
  738.  
    INSERT INTO `pms_category` VALUES ('600', '精华露', '70', '3', '1', '0', null, null, '0');
  739.  
    INSERT INTO `pms_category` VALUES ('601', '爽肤水', '70', '3', '1', '0', null, null, '0');
  740.  
    INSERT INTO `pms_category` VALUES ('602', '沐浴', '71', '3', '1', '0', null, null, '0');
  741.  
    INSERT INTO `pms_category` VALUES ('603', '润肤', '71', '3', '1', '0', null, null, '0');
  742.  
    INSERT INTO `pms_category` VALUES ('604', '颈部', '71', '3', '1', '0', null, null, '0');
  743.  
    INSERT INTO `pms_category` VALUES ('605', '手足', '71', '3', '1', '0', null, null, '0');
  744.  
    INSERT INTO `pms_category` VALUES ('606', '纤体塑形', '71', '3', '1', '0', null, null, '0');
  745.  
    INSERT INTO `pms_category` VALUES ('607', '美胸', '71', '3', '1', '0', null, null, '0');
  746.  
    INSERT INTO `pms_category` VALUES ('608', '套装', '71', '3', '1', '0', null, null, '0');
  747.  
    INSERT INTO `pms_category` VALUES ('609', '精油', '71', '3', '1', '0', null, null, '0');
  748.  
    INSERT INTO `pms_category` VALUES ('610', '洗发护发', '71', '3', '1', '0', null, null, '0');
  749.  
    INSERT INTO `pms_category` VALUES ('611', '染发/造型', '71', '3', '1', '0', null, null, '0');
  750.  
    INSERT INTO `pms_category` VALUES ('612', '香薰精油', '71', '3', '1', '0', null, null, '0');
  751.  
    INSERT INTO `pms_category` VALUES ('613', '磨砂/浴盐', '71', '3', '1', '0', null, null, '0');
  752.  
    INSERT INTO `pms_category` VALUES ('614', '手工/香皂', '71', '3', '1', '0', null, null, '0');
  753.  
    INSERT INTO `pms_category` VALUES ('615', '洗发', '71', '3', '1', '0', null, null, '0');
  754.  
    INSERT INTO `pms_category` VALUES ('616', '护发', '71', '3', '1', '0', null, null, '0');
  755.  
    INSERT INTO `pms_category` VALUES ('617', '染发', '71', '3', '1', '0', null, null, '0');
  756.  
    INSERT INTO `pms_category` VALUES ('618', '磨砂膏', '71', '3', '1', '0', null, null, '0');
  757.  
    INSERT INTO `pms_category` VALUES ('619', '香皂', '71', '3', '1', '0', null, null, '0');
  758.  
    INSERT INTO `pms_category` VALUES ('620', '牙膏/牙粉', '72', '3', '1', '0', null, null, '0');
  759.  
    INSERT INTO `pms_category` VALUES ('621', '牙刷/牙线', '72', '3', '1', '0', null, null, '0');
  760.  
    INSERT INTO `pms_category` VALUES ('622', '漱口水', '72', '3', '1', '0', null, null, '0');
  761.  
    INSERT INTO `pms_category` VALUES ('623', '套装', '72', '3', '1', '0', null, null, '0');
  762.  
    INSERT INTO `pms_category` VALUES ('624', '卫生巾', '73', '3', '1', '0', null, null, '0');
  763.  
    INSERT INTO `pms_category` VALUES ('625', '卫生护垫', '73', '3', '1', '0', null, null, '0');
  764.  
    INSERT INTO `pms_category` VALUES ('626', '私密护理', '73', '3', '1', '0', null, null, '0');
  765.  
    INSERT INTO `pms_category` VALUES ('627', '脱毛膏', '73', '3', '1', '0', null, null, '0');
  766.  
    INSERT INTO `pms_category` VALUES ('628', '其他', '73', '3', '1', '0', null, null, '0');
  767.  
    INSERT INTO `pms_category` VALUES ('629', '洗发', '74', '3', '1', '0', null, null, '0');
  768.  
    INSERT INTO `pms_category` VALUES ('630', '护发', '74', '3', '1', '0', null, null, '0');
  769.  
    INSERT INTO `pms_category` VALUES ('631', '染发', '74', '3', '1', '0', null, null, '0');
  770.  
    INSERT INTO `pms_category` VALUES ('632', '造型', '74', '3', '1', '0', null, null, '0');
  771.  
    INSERT INTO `pms_category` VALUES ('633', '假发', '74', '3', '1', '0', null, null, '0');
  772.  
    INSERT INTO `pms_category` VALUES ('634', '套装', '74', '3', '1', '0', null, null, '0');
  773.  
    INSERT INTO `pms_category` VALUES ('635', '美发工具', '74', '3', '1', '0', null, null, '0');
  774.  
    INSERT INTO `pms_category` VALUES ('636', '脸部护理', '74', '3', '1', '0', null, null, '0');
  775.  
    INSERT INTO `pms_category` VALUES ('637', '香水', '75', '3', '1', '0', null, null, '0');
  776.  
    INSERT INTO `pms_category` VALUES ('638', '底妆', '75', '3', '1', '0', null, null, '0');
  777.  
    INSERT INTO `pms_category` VALUES ('639', '腮红', '75', '3', '1', '0', null, null, '0');
  778.  
    INSERT INTO `pms_category` VALUES ('640', '眼影', '75', '3', '1', '0', null, null, '0');
  779.  
    INSERT INTO `pms_category` VALUES ('641', '唇部', '75', '3', '1', '0', null, null, '0');
  780.  
    INSERT INTO `pms_category` VALUES ('642', '美甲', '75', '3', '1', '0', null, null, '0');
  781.  
    INSERT INTO `pms_category` VALUES ('643', '眼线', '75', '3', '1', '0', null, null, '0');
  782.  
    INSERT INTO `pms_category` VALUES ('644', '美妆工具', '75', '3', '1', '0', null, null, '0');
  783.  
    INSERT INTO `pms_category` VALUES ('645', '套装', '75', '3', '1', '0', null, null, '0');
  784.  
    INSERT INTO `pms_category` VALUES ('646', '防晒隔离', '75', '3', '1', '0', null, null, '0');
  785.  
    INSERT INTO `pms_category` VALUES ('647', '卸妆', '75', '3', '1', '0', null, null, '0');
  786.  
    INSERT INTO `pms_category` VALUES ('648', '眉笔', '75', '3', '1', '0', null, null, '0');
  787.  
    INSERT INTO `pms_category` VALUES ('649', '睫毛膏', '75', '3', '1', '0', null, null, '0');
  788.  
    INSERT INTO `pms_category` VALUES ('650', 'T恤', '76', '3', '1', '0', null, null, '0');
  789.  
    INSERT INTO `pms_category` VALUES ('651', '衬衫', '76', '3', '1', '0', null, null, '0');
  790.  
    INSERT INTO `pms_category` VALUES ('652', '针织衫', '76', '3', '1', '0', null, null, '0');
  791.  
    INSERT INTO `pms_category` VALUES ('653', '雪纺衫', '76', '3', '1', '0', null, null, '0');
  792.  
    INSERT INTO `pms_category` VALUES ('654', '卫衣', '76', '3', '1', '0', null, null, '0');
  793.  
    INSERT INTO `pms_category` VALUES ('655', '马甲', '76', '3', '1', '0', null, null, '0');
  794.  
    INSERT INTO `pms_category` VALUES ('656', '连衣裙', '76', '3', '1', '0', null, null, '0');
  795.  
    INSERT INTO `pms_category` VALUES ('657', '半身裙', '76', '3', '1', '0', null, null, '0');
  796.  
    INSERT INTO `pms_category` VALUES ('658', '牛仔裤', '76', '3', '1', '0', null, null, '0');
  797.  
    INSERT INTO `pms_category` VALUES ('659', '休闲裤', '76', '3', '1', '0', null, null, '0');
  798.  
    INSERT INTO `pms_category` VALUES ('660', '打底裤', '76', '3', '1', '0', null, null, '0');
  799.  
    INSERT INTO `pms_category` VALUES ('661', '正装裤', '76', '3', '1', '0', null, null, '0');
  800.  
    INSERT INTO `pms_category` VALUES ('662', '小西装', '76', '3', '1', '0', null, null, '0');
  801.  
    INSERT INTO `pms_category` VALUES ('663', '短外套', '76', '3', '1', '0', null, null, '0');
  802.  
    INSERT INTO `pms_category` VALUES ('664', '风衣', '76', '3', '1', '0', null, null, '0');
  803.  
    INSERT INTO `pms_category` VALUES ('665', '毛呢大衣', '76', '3', '1', '0', null, null, '0');
  804.  
    INSERT INTO `pms_category` VALUES ('666', '真皮皮衣', '76', '3', '1', '0', null, null, '0');
  805.  
    INSERT INTO `pms_category` VALUES ('667', '棉服', '76', '3', '1', '0', null, null, '0');
  806.  
    INSERT INTO `pms_category` VALUES ('668', '羽绒服', '76', '3', '1', '0', null, null, '0');
  807.  
    INSERT INTO `pms_category` VALUES ('669', '大码女装', '76', '3', '1', '0', null, null, '0');
  808.  
    INSERT INTO `pms_category` VALUES ('670', '中老年女装', '76', '3', '1', '0', null, null, '0');
  809.  
    INSERT INTO `pms_category` VALUES ('671', '婚纱', '76', '3', '1', '0', null, null, '0');
  810.  
    INSERT INTO `pms_category` VALUES ('672', '打底衫', '76', '3', '1', '0', null, null, '0');
  811.  
    INSERT INTO `pms_category` VALUES ('673', '旗袍/唐装', '76', '3', '1', '0', null, null, '0');
  812.  
    INSERT INTO `pms_category` VALUES ('674', '加绒裤', '76', '3', '1', '0', null, null, '0');
  813.  
    INSERT INTO `pms_category` VALUES ('675', '吊带/背心', '76', '3', '1', '0', null, null, '0');
  814.  
    INSERT INTO `pms_category` VALUES ('676', '羊绒衫', '76', '3', '1', '0', null, null, '0');
  815.  
    INSERT INTO `pms_category` VALUES ('677', '短裤', '76', '3', '1', '0', null, null, '0');
  816.  
    INSERT INTO `pms_category` VALUES ('678', '皮草', '76', '3', '1', '0', null, null, '0');
  817.  
    INSERT INTO `pms_category` VALUES ('679', '礼服', '76', '3', '1', '0', null, null, '0');
  818.  
    INSERT INTO `pms_category` VALUES ('680', '仿皮皮衣', '76', '3', '1', '0', null, null, '0');
  819.  
    INSERT INTO `pms_category` VALUES ('681', '羊毛衫', '76', '3', '1', '0', null, null, '0');
  820.  
    INSERT INTO `pms_category` VALUES ('682', '设计师/潮牌', '76', '3', '1', '0', null, null, '0');
  821.  
    INSERT INTO `pms_category` VALUES ('683', '衬衫', '77', '3', '1', '0', null, null, '0');
  822.  
    INSERT INTO `pms_category` VALUES ('684', 'T恤', '77', '3', '1', '0', null, null, '0');
  823.  
    INSERT INTO `pms_category` VALUES ('685', 'POLO衫', '77', '3', '1', '0', null, null, '0');
  824.  
    INSERT INTO `pms_category` VALUES ('686', '针织衫', '77', '3', '1', '0', null, null, '0');
  825.  
    INSERT INTO `pms_category` VALUES ('687', '羊绒衫', '77', '3', '1', '0', null, null, '0');
  826.  
    INSERT INTO `pms_category` VALUES ('688', '卫衣', '77', '3', '1', '0', null, null, '0');
  827.  
    INSERT INTO `pms_category` VALUES ('689', '马甲/背心', '77', '3', '1', '0', null, null, '0');
  828.  
    INSERT INTO `pms_category` VALUES ('690', '夹克', '77', '3', '1', '0', null, null, '0');
  829.  
    INSERT INTO `pms_category` VALUES ('691', '风衣', '77', '3', '1', '0', null, null, '0');
  830.  
    INSERT INTO `pms_category` VALUES ('692', '毛呢大衣', '77', '3', '1', '0', null, null, '0');
  831.  
    INSERT INTO `pms_category` VALUES ('693', '仿皮皮衣', '77', '3', '1', '0', null, null, '0');
  832.  
    INSERT INTO `pms_category` VALUES ('694', '西服', '77', '3', '1', '0', null, null, '0');
  833.  
    INSERT INTO `pms_category` VALUES ('695', '棉服', '77', '3', '1', '0', null, null, '0');
  834.  
    INSERT INTO `pms_category` VALUES ('696', '羽绒服', '77', '3', '1', '0', null, null, '0');
  835.  
    INSERT INTO `pms_category` VALUES ('697', '牛仔裤', '77', '3', '1', '0', null, null, '0');
  836.  
    INSERT INTO `pms_category` VALUES ('698', '休闲裤', '77', '3', '1', '0', null, null, '0');
  837.  
    INSERT INTO `pms_category` VALUES ('699', '西裤', '77', '3', '1', '0', null, null, '0');
  838.  
    INSERT INTO `pms_category` VALUES ('700', '西服套装', '77', '3', '1', '0', null, null, '0');
  839.  
    INSERT INTO `pms_category` VALUES ('701', '大码男装', '77', '3', '1', '0', null, null, '0');
  840.  
    INSERT INTO `pms_category` VALUES ('702', '中老年男装', '77', '3', '1', '0', null, null, '0');
  841.  
    INSERT INTO `pms_category` VALUES ('703', '唐装/中山装', '77', '3', '1', '0', null, null, '0');
  842.  
    INSERT INTO `pms_category` VALUES ('704', '工装', '77', '3', '1', '0', null, null, '0');
  843.  
    INSERT INTO `pms_category` VALUES ('705', '真皮皮衣', '77', '3', '1', '0', null, null, '0');
  844.  
    INSERT INTO `pms_category` VALUES ('706', '加绒裤', '77', '3', '1', '0', null, null, '0');
  845.  
    INSERT INTO `pms_category` VALUES ('707', '卫裤/运动裤', '77', '3', '1', '0', null, null, '0');
  846.  
    INSERT INTO `pms_category` VALUES ('708', '短裤', '77', '3', '1', '0', null, null, '0');
  847.  
    INSERT INTO `pms_category` VALUES ('709', '设计师/潮牌', '77', '3', '1', '0', null, null, '0');
  848.  
    INSERT INTO `pms_category` VALUES ('710', '羊毛衫', '77', '3', '1', '0', null, null, '0');
  849.  
    INSERT INTO `pms_category` VALUES ('711', '文胸', '78', '3', '1', '0', null, null, '0');
  850.  
    INSERT INTO `pms_category` VALUES ('712', '女式内裤', '78', '3', '1', '0', null, null, '0');
  851.  
    INSERT INTO `pms_category` VALUES ('713', '男式内裤', '78', '3', '1', '0', null, null, '0');
  852.  
    INSERT INTO `pms_category` VALUES ('714', '睡衣/家居服', '78', '3', '1', '0', null, null, '0');
  853.  
    INSERT INTO `pms_category` VALUES ('715', '塑身美体', '78', '3', '1', '0', null, null, '0');
  854.  
    INSERT INTO `pms_category` VALUES ('716', '泳衣', '78', '3', '1', '0', null, null, '0');
  855.  
    INSERT INTO `pms_category` VALUES ('717', '吊带/背心', '78', '3', '1', '0', null, null, '0');
  856.  
    INSERT INTO `pms_category` VALUES ('718', '抹胸', '78', '3', '1', '0', null, null, '0');
  857.  
    INSERT INTO `pms_category` VALUES ('719', '连裤袜/丝袜', '78', '3', '1', '0', null, null, '0');
  858.  
    INSERT INTO `pms_category` VALUES ('720', '美腿袜', '78', '3', '1', '0', null, null, '0');
  859.  
    INSERT INTO `pms_category` VALUES ('721', '商务男袜', '78', '3', '1', '0', null, null, '0');
  860.  
    INSERT INTO `pms_category` VALUES ('722', '保暖内衣', '78', '3', '1', '0', null, null, '0');
  861.  
    INSERT INTO `pms_category` VALUES ('723', '情侣睡衣', '78', '3', '1', '0', null, null, '0');
  862.  
    INSERT INTO `pms_category` VALUES ('724', '文胸套装', '78', '3', '1', '0', null, null, '0');
  863.  
    INSERT INTO `pms_category` VALUES ('725', '少女文胸', '78', '3', '1', '0', null, null, '0');
  864.  
    INSERT INTO `pms_category` VALUES ('726', '休闲棉袜', '78', '3', '1', '0', null, null, '0');
  865.  
    INSERT INTO `pms_category` VALUES ('727', '大码内衣', '78', '3', '1', '0', null, null, '0');
  866.  
    INSERT INTO `pms_category` VALUES ('728', '内衣配件', '78', '3', '1', '0', null, null, '0');
  867.  
    INSERT INTO `pms_category` VALUES ('729', '打底裤袜', '78', '3', '1', '0', null, null, '0');
  868.  
    INSERT INTO `pms_category` VALUES ('730', '打底衫', '78', '3', '1', '0', null, null, '0');
  869.  
    INSERT INTO `pms_category` VALUES ('731', '秋衣秋裤', '78', '3', '1', '0', null, null, '0');
  870.  
    INSERT INTO `pms_category` VALUES ('732', '情趣内衣', '78', '3', '1', '0', null, null, '0');
  871.  
    INSERT INTO `pms_category` VALUES ('733', '服装洗护', '79', '3', '1', '0', null, null, '0');
  872.  
    INSERT INTO `pms_category` VALUES ('734', '太阳镜', '80', '3', '1', '0', null, null, '0');
  873.  
    INSERT INTO `pms_category` VALUES ('735', '光学镜架/镜片', '80', '3', '1', '0', null, null, '0');
  874.  
    INSERT INTO `pms_category` VALUES ('736', '围巾/手套/帽子套装', '80', '3', '1', '0', null, null, '0');
  875.  
    INSERT INTO `pms_category` VALUES ('737', '袖扣', '80', '3', '1', '0', null, null, '0');
  876.  
    INSERT INTO `pms_category` VALUES ('738', '棒球帽', '80', '3', '1', '0', null, null, '0');
  877.  
    INSERT INTO `pms_category` VALUES ('739', '毛线帽', '80', '3', '1', '0', null, null, '0');
  878.  
    INSERT INTO `pms_category` VALUES ('740', '遮阳帽', '80', '3', '1', '0', null, null, '0');
  879.  
    INSERT INTO `pms_category` VALUES ('741', '老花镜', '80', '3', '1', '0', null, null, '0');
  880.  
    INSERT INTO `pms_category` VALUES ('742', '装饰眼镜', '80', '3', '1', '0', null, null, '0');
  881.  
    INSERT INTO `pms_category` VALUES ('743', '防辐射眼镜', '80', '3', '1', '0', null, null, '0');
  882.  
    INSERT INTO `pms_category` VALUES ('744', '游泳镜', '80', '3', '1', '0', null, null, '0');
  883.  
    INSERT INTO `pms_category` VALUES ('745', '女士丝巾/围巾/披肩', '80', '3', '1', '0', null, null, '0');
  884.  
    INSERT INTO `pms_category` VALUES ('746', '男士丝巾/围巾', '80', '3', '1', '0', null, null, '0');
  885.  
    INSERT INTO `pms_category` VALUES ('747', '鸭舌帽', '80', '3', '1', '0', null, null, '0');
  886.  
    INSERT INTO `pms_category` VALUES ('748', '贝雷帽', '80', '3', '1', '0', null, null, '0');
  887.  
    INSERT INTO `pms_category` VALUES ('749', '礼帽', '80', '3', '1', '0', null, null, '0');
  888.  
    INSERT INTO `pms_category` VALUES ('750', '真皮手套', '80', '3', '1', '0', null, null, '0');
  889.  
    INSERT INTO `pms_category` VALUES ('751', '毛线手套', '80', '3', '1', '0', null, null, '0');
  890.  
    INSERT INTO `pms_category` VALUES ('752', '防晒手套', '80', '3', '1', '0', null, null, '0');
  891.  
    INSERT INTO `pms_category` VALUES ('753', '男士腰带/礼盒', '80', '3', '1', '0', null, null, '0');
  892.  
    INSERT INTO `pms_category` VALUES ('754', '女士腰带/礼盒', '80', '3', '1', '0', null, null, '0');
  893.  
    INSERT INTO `pms_category` VALUES ('755', '钥匙扣', '80', '3', '1', '0', null, null, '0');
  894.  
    INSERT INTO `pms_category` VALUES ('756', '遮阳伞/雨伞', '80', '3', '1', '0', null, null, '0');
  895.  
    INSERT INTO `pms_category` VALUES ('757', '口罩', '80', '3', '1', '0', null, null, '0');
  896.  
    INSERT INTO `pms_category` VALUES ('758', '耳罩/耳包', '80', '3', '1', '0', null, null, '0');
  897.  
    INSERT INTO `pms_category` VALUES ('759', '假领', '80', '3', '1', '0', null, null, '0');
  898.  
    INSERT INTO `pms_category` VALUES ('760', '毛线/布面料', '80', '3', '1', '0', null, null, '0');
  899.  
    INSERT INTO `pms_category` VALUES ('761', '领带/领结/领带夹', '80', '3', '1', '0', null, null, '0');
  900.  
    INSERT INTO `pms_category` VALUES ('762', '男表', '81', '3', '1', '0', null, null, '0');
  901.  
    INSERT INTO `pms_category` VALUES ('763', '瑞表', '81', '3', '1', '0', null, null, '0');
  902.  
    INSERT INTO `pms_category` VALUES ('764', '女表', '81', '3', '1', '0', null, null, '0');
  903.  
    INSERT INTO `pms_category` VALUES ('765', '国表', '81', '3', '1', '0', null, null, '0');
  904.  
    INSERT INTO `pms_category` VALUES ('766', '日韩表', '81', '3', '1', '0', null, null, '0');
  905.  
    INSERT INTO `pms_category` VALUES ('767', '欧美表', '81', '3', '1', '0', null, null, '0');
  906.  
    INSERT INTO `pms_category` VALUES ('768', '德表', '81', '3', '1', '0', null, null, '0');
  907.  
    INSERT INTO `pms_category` VALUES ('769', '儿童手表', '81', '3', '1', '0', null, null, '0');
  908.  
    INSERT INTO `pms_category` VALUES ('770', '智能手表', '81', '3', '1', '0', null, null, '0');
  909.  
    INSERT INTO `pms_category` VALUES ('771', '闹钟', '81', '3', '1', '0', null, null, '0');
  910.  
    INSERT INTO `pms_category` VALUES ('772', '座钟挂钟', '81', '3', '1', '0', null, null, '0');
  911.  
    INSERT INTO `pms_category` VALUES ('773', '钟表配件', '81', '3', '1', '0', null, null, '0');
  912.  
    INSERT INTO `pms_category` VALUES ('774', '商务休闲鞋', '82', '3', '1', '0', null, null, '0');
  913.  
    INSERT INTO `pms_category` VALUES ('775', '正装鞋', '82', '3', '1', '0', null, null, '0');
  914.  
    INSERT INTO `pms_category` VALUES ('776', '休闲鞋', '82', '3', '1', '0', null, null, '0');
  915.  
    INSERT INTO `pms_category` VALUES ('777', '凉鞋/沙滩鞋', '82', '3', '1', '0', null, null, '0');
  916.  
    INSERT INTO `pms_category` VALUES ('778', '男靴', '82', '3', '1', '0', null, null, '0');
  917.  
    INSERT INTO `pms_category` VALUES ('779', '功能鞋', '82', '3', '1', '0', null, null, '0');
  918.  
    INSERT INTO `pms_category` VALUES ('780', '拖鞋/人字拖', '82', '3', '1', '0', null, null, '0');
  919.  
    INSERT INTO `pms_category` VALUES ('781', '雨鞋/雨靴', '82', '3', '1', '0', null, null, '0');
  920.  
    INSERT INTO `pms_category` VALUES ('782', '传统布鞋', '82', '3', '1', '0', null, null, '0');
  921.  
    INSERT INTO `pms_category` VALUES ('783', '鞋配件', '82', '3', '1', '0', null, null, '0');
  922.  
    INSERT INTO `pms_category` VALUES ('784', '帆布鞋', '82', '3', '1', '0', null, null, '0');
  923.  
    INSERT INTO `pms_category` VALUES ('785', '增高鞋', '82', '3', '1', '0', null, null, '0');
  924.  
    INSERT INTO `pms_category` VALUES ('786', '工装鞋', '82', '3', '1', '0', null, null, '0');
  925.  
    INSERT INTO `pms_category` VALUES ('787', '定制鞋', '82', '3', '1', '0', null, null, '0');
  926.  
    INSERT INTO `pms_category` VALUES ('788', '高跟鞋', '83', '3', '1', '0', null, null, '0');
  927.  
    INSERT INTO `pms_category` VALUES ('789', '单鞋', '83', '3', '1', '0', null, null, '0');
  928.  
    INSERT INTO `pms_category` VALUES ('790', '休闲鞋', '83', '3', '1', '0', null, null, '0');
  929.  
    INSERT INTO `pms_category` VALUES ('791', '凉鞋', '83', '3', '1', '0', null, null, '0');
  930.  
    INSERT INTO `pms_category` VALUES ('792', '女靴', '83', '3', '1', '0', null, null, '0');
  931.  
    INSERT INTO `pms_category` VALUES ('793', '雪地靴', '83', '3', '1', '0', null, null, '0');
  932.  
    INSERT INTO `pms_category` VALUES ('794', '拖鞋/人字拖', '83', '3', '1', '0', null, null, '0');
  933.  
    INSERT INTO `pms_category` VALUES ('795', '踝靴', '83', '3', '1', '0', null, null, '0');
  934.  
    INSERT INTO `pms_category` VALUES ('796', '筒靴', '83', '3', '1', '0', null, null, '0');
  935.  
    INSERT INTO `pms_category` VALUES ('797', '帆布鞋', '83', '3', '1', '0', null, null, '0');
  936.  
    INSERT INTO `pms_category` VALUES ('798', '雨鞋/雨靴', '83', '3', '1', '0', null, null, '0');
  937.  
    INSERT INTO `pms_category` VALUES ('799', '妈妈鞋', '83', '3', '1', '0', null, null, '0');
  938.  
    INSERT INTO `pms_category` VALUES ('800', '鞋配件', '83', '3', '1', '0', null, null, '0');
  939.  
    INSERT INTO `pms_category` VALUES ('801', '特色鞋', '83', '3', '1', '0', null, null, '0');
  940.  
    INSERT INTO `pms_category` VALUES ('802', '鱼嘴鞋', '83', '3', '1', '0', null, null, '0');
  941.  
    INSERT INTO `pms_category` VALUES ('803', '布鞋/绣花鞋', '83', '3', '1', '0', null, null, '0');
  942.  
    INSERT INTO `pms_category` VALUES ('804', '马丁靴', '83', '3', '1', '0', null, null, '0');
  943.  
    INSERT INTO `pms_category` VALUES ('805', '坡跟鞋', '83', '3', '1', '0', null, null, '0');
  944.  
    INSERT INTO `pms_category` VALUES ('806', '松糕鞋', '83', '3', '1', '0', null, null, '0');
  945.  
    INSERT INTO `pms_category` VALUES ('807', '内增高', '83', '3', '1', '0', null, null, '0');
  946.  
    INSERT INTO `pms_category` VALUES ('808', '防水台', '83', '3', '1', '0', null, null, '0');
  947.  
    INSERT INTO `pms_category` VALUES ('809', '婴幼奶粉', '84', '3', '1', '0', null, null, '0');
  948.  
    INSERT INTO `pms_category` VALUES ('810', '孕妈奶粉', '84', '3', '1', '0', null, null, '0');
  949.  
    INSERT INTO `pms_category` VALUES ('811', '益生菌/初乳', '85', '3', '1', '0', null, null, '0');
  950.  
    INSERT INTO `pms_category` VALUES ('812', '米粉/菜粉', '85', '3', '1', '0', null, null, '0');
  951.  
    INSERT INTO `pms_category` VALUES ('813', '果泥/果汁', '85', '3', '1', '0', null, null, '0');
  952.  
    INSERT INTO `pms_category` VALUES ('814', 'DHA', '85', '3', '1', '0', null, null, '0');
  953.  
    INSERT INTO `pms_category` VALUES ('815', '宝宝零食', '85', '3', '1', '0', null, null, '0');
  954.  
    INSERT INTO `pms_category` VALUES ('816', '钙铁锌/维生素', '85', '3', '1', '0', null, null, '0');
  955.  
    INSERT INTO `pms_category` VALUES ('817', '清火/开胃', '85', '3', '1', '0', null, null, '0');
  956.  
    INSERT INTO `pms_category` VALUES ('818', '面条/粥', '85', '3', '1', '0', null, null, '0');
  957.  
    INSERT INTO `pms_category` VALUES ('819', '婴儿尿裤', '86', '3', '1', '0', null, null, '0');
  958.  
    INSERT INTO `pms_category` VALUES ('820', '拉拉裤', '86', '3', '1', '0', null, null, '0');
  959.  
    INSERT INTO `pms_category` VALUES ('821', '婴儿湿巾', '86', '3', '1', '0', null, null, '0');
  960.  
    INSERT INTO `pms_category` VALUES ('822', '成人尿裤', '86', '3', '1', '0', null, null, '0');
  961.  
    INSERT INTO `pms_category` VALUES ('823', '奶瓶奶嘴', '87', '3', '1', '0', null, null, '0');
  962.  
    INSERT INTO `pms_category` VALUES ('824', '吸奶器', '87', '3', '1', '0', null, null, '0');
  963.  
    INSERT INTO `pms_category` VALUES ('825', '暖奶消毒', '87', '3', '1', '0', null, null, '0');
  964.  
    INSERT INTO `pms_category` VALUES ('826', '儿童餐具', '87', '3', '1', '0', null, null, '0');
  965.  
    INSERT INTO `pms_category` VALUES ('827', '水壶/水杯', '87', '3', '1', '0', null, null, '0');
  966.  
    INSERT INTO `pms_category` VALUES ('828', '牙胶安抚', '87', '3', '1', '0', null, null, '0');
  967.  
    INSERT INTO `pms_category` VALUES ('829', '围兜/防溅衣', '87', '3', '1', '0', null, null, '0');
  968.  
    INSERT INTO `pms_category` VALUES ('830', '辅食料理机', '87', '3', '1', '0', null, null, '0');
  969.  
    INSERT INTO `pms_category` VALUES ('831', '食物存储', '87', '3', '1', '0', null, null, '0');
  970.  
    INSERT INTO `pms_category` VALUES ('832', '宝宝护肤', '88', '3', '1', '0', null, null, '0');
  971.  
    INSERT INTO `pms_category` VALUES ('833', '洗发沐浴', '88', '3', '1', '0', null, null, '0');
  972.  
    INSERT INTO `pms_category` VALUES ('834', '奶瓶清洗', '88', '3', '1', '0', null, null, '0');
  973.  
    INSERT INTO `pms_category` VALUES ('835', '驱蚊防晒', '88', '3', '1', '0', null, null, '0');
  974.  
    INSERT INTO `pms_category` VALUES ('836', '理发器', '88', '3', '1', '0', null, null, '0');
  975.  
    INSERT INTO `pms_category` VALUES ('837', '洗澡用具', '88', '3', '1', '0', null, null, '0');
  976.  
    INSERT INTO `pms_category` VALUES ('838', '婴儿口腔清洁', '88', '3', '1', '0', null, null, '0');
  977.  
    INSERT INTO `pms_category` VALUES ('839', '洗衣液/皂', '88', '3', '1', '0', null, null, '0');
  978.  
    INSERT INTO `pms_category` VALUES ('840', '日常护理', '88', '3', '1', '0', null, null, '0');
  979.  
    INSERT INTO `pms_category` VALUES ('841', '座便器', '88', '3', '1', '0', null, null, '0');
  980.  
    INSERT INTO `pms_category` VALUES ('842', '婴儿推车', '89', '3', '1', '0', null, null, '0');
  981.  
    INSERT INTO `pms_category` VALUES ('843', '餐椅摇椅', '89', '3', '1', '0', null, null, '0');
  982.  
    INSERT INTO `pms_category` VALUES ('844', '婴儿床', '89', '3', '1', '0', null, null, '0');
  983.  
    INSERT INTO `pms_category` VALUES ('845', '学步车', '89', '3', '1', '0', null, null, '0');
  984.  
    INSERT INTO `pms_category` VALUES ('846', '三轮车', '89', '3', '1', '0', null, null, '0');
  985.  
    INSERT INTO `pms_category` VALUES ('847', '自行车', '89', '3', '1', '0', null, null, '0');
  986.  
    INSERT INTO `pms_category` VALUES ('848', '电动车', '89', '3', '1', '0', null, null, '0');
  987.  
    INSERT INTO `pms_category` VALUES ('849', '扭扭车', '89', '3', '1', '0', null, null, '0');
  988.  
    INSERT INTO `pms_category` VALUES ('850', '滑板车', '89', '3', '1', '0', null, null, '0');
  989.  
    INSERT INTO `pms_category` VALUES ('851', '婴儿床垫', '89', '3', '1', '0', null, null, '0');
  990.  
    INSERT INTO `pms_category` VALUES ('852', '婴儿外出服', '90', '3', '1', '0', null, null, '0');
  991.  
    INSERT INTO `pms_category` VALUES ('853', '婴儿内衣', '90', '3', '1', '0', null, null, '0');
  992.  
    INSERT INTO `pms_category` VALUES ('854', '婴儿礼盒', '90', '3', '1', '0', null, null, '0');
  993.  
    INSERT INTO `pms_category` VALUES ('855', '婴儿鞋帽袜', '90', '3', '1', '0', null, null, '0');
  994.  
    INSERT INTO `pms_category` VALUES ('856', '安全防护', '90', '3', '1', '0', null, null, '0');
  995.  
    INSERT INTO `pms_category` VALUES ('857', '家居床品', '90', '3', '1', '0', null, null, '0');
  996.  
    INSERT INTO `pms_category` VALUES ('858', '睡袋/抱被', '90', '3', '1', '0', null, null, '0');
  997.  
    INSERT INTO `pms_category` VALUES ('859', '爬行垫', '90', '3', '1', '0', null, null, '0');
  998.  
    INSERT INTO `pms_category` VALUES ('860', '妈咪包/背婴带', '91', '3', '1', '0', null, null, '0');
  999.  
    INSERT INTO `pms_category` VALUES ('861', '产后塑身', '91', '3', '1', '0', null, null, '0');
  1000.  
    INSERT INTO `pms_category` VALUES ('862', '文胸/内裤', '91', '3', '1', '0', null, null, '0');
  1001.  
    INSERT INTO `pms_category` VALUES ('863', '防辐射服', '91', '3', '1', '0', null, null, '0');
  1002.  
    INSERT INTO `pms_category` VALUES ('864', '孕妈装', '91', '3', '1', '0', null, null, '0');
  1003.  
    INSERT INTO `pms_category` VALUES ('865', '孕期营养', '91', '3', '1', '0', null, null, '0');
  1004.  
    INSERT INTO `pms_category` VALUES ('866', '孕妇护肤', '91', '3', '1', '0', null, null, '0');
  1005.  
    INSERT INTO `pms_category` VALUES ('867', '待产护理', '91', '3', '1', '0', null, null, '0');
  1006.  
    INSERT INTO `pms_category` VALUES ('868', '月子装', '91', '3', '1', '0', null, null, '0');
  1007.  
    INSERT INTO `pms_category` VALUES ('869', '防溢乳垫', '91', '3', '1', '0', null, null, '0');
  1008.  
    INSERT INTO `pms_category` VALUES ('870', '套装', '92', '3', '1', '0', null, null, '0');
  1009.  
    INSERT INTO `pms_category` VALUES ('871', '上衣', '92', '3', '1', '0', null, null, '0');
  1010.  
    INSERT INTO `pms_category` VALUES ('872', '裤子', '92', '3', '1', '0', null, null, '0');
  1011.  
    INSERT INTO `pms_category` VALUES ('873', '裙子', '92', '3', '1', '0', null, null, '0');
  1012.  
    INSERT INTO `pms_category` VALUES ('874', '内衣/家居服', '92', '3', '1', '0', null, null, '0');
  1013.  
    INSERT INTO `pms_category` VALUES ('875', '羽绒服/棉服', '92', '3', '1', '0', null, null, '0');
  1014.  
    INSERT INTO `pms_category` VALUES ('876', '亲子装', '92', '3', '1', '0', null, null, '0');
  1015.  
    INSERT INTO `pms_category` VALUES ('877', '儿童配饰', '92', '3', '1', '0', null, null, '0');
  1016.  
    INSERT INTO `pms_category` VALUES ('878', '礼服/演出服', '92', '3', '1', '0', null, null, '0');
  1017.  
    INSERT INTO `pms_category` VALUES ('879', '运动鞋', '92', '3', '1', '0', null, null, '0');
  1018.  
    INSERT INTO `pms_category` VALUES ('880', '皮鞋/帆布鞋', '92', '3', '1', '0', null, null, '0');
  1019.  
    INSERT INTO `pms_category` VALUES ('881', '靴子', '92', '3', '1', '0', null, null, '0');
  1020.  
    INSERT INTO `pms_category` VALUES ('882', '凉鞋', '92', '3', '1', '0', null, null, '0');
  1021.  
    INSERT INTO `pms_category` VALUES ('883', '功能鞋', '92', '3', '1', '0', null, null, '0');
  1022.  
    INSERT INTO `pms_category` VALUES ('884', '户外/运动服', '92', '3', '1', '0', null, null, '0');
  1023.  
    INSERT INTO `pms_category` VALUES ('885', '提篮式', '93', '3', '1', '0', null, null, '0');
  1024.  
    INSERT INTO `pms_category` VALUES ('886', '安全座椅', '93', '3', '1', '0', null, null, '0');
  1025.  
    INSERT INTO `pms_category` VALUES ('887', '增高垫', '93', '3', '1', '0', null, null, '0');
  1026.  
    INSERT INTO `pms_category` VALUES ('888', '钱包', '94', '3', '1', '0', null, null, '0');
  1027.  
    INSERT INTO `pms_category` VALUES ('889', '手拿包', '94', '3', '1', '0', null, null, '0');
  1028.  
    INSERT INTO `pms_category` VALUES ('890', '单肩包', '94', '3', '1', '0', null, null, '0');
  1029.  
    INSERT INTO `pms_category` VALUES ('891', '双肩包', '94', '3', '1', '0', null, null, '0');
  1030.  
    INSERT INTO `pms_category` VALUES ('892', '手提包', '94', '3', '1', '0', null, null, '0');
  1031.  
    INSERT INTO `pms_category` VALUES ('893', '斜挎包', '94', '3', '1', '0', null, null, '0');
  1032.  
    INSERT INTO `pms_category` VALUES ('894', '钥匙包', '94', '3', '1', '0', null, null, '0');
  1033.  
    INSERT INTO `pms_category` VALUES ('895', '卡包/零钱包', '94', '3', '1', '0', null, null, '0');
  1034.  
    INSERT INTO `pms_category` VALUES ('896', '男士钱包', '95', '3', '1', '0', null, null, '0');
  1035.  
    INSERT INTO `pms_category` VALUES ('897', '男士手包', '95', '3', '1', '0', null, null, '0');
  1036.  
    INSERT INTO `pms_category` VALUES ('898', '卡包名片夹', '95', '3', '1', '0', null, null, '0');
  1037.  
    INSERT INTO `pms_category` VALUES ('899', '商务公文包', '95', '3', '1', '0', null, null, '0');
  1038.  
    INSERT INTO `pms_category` VALUES ('900', '双肩包', '95', '3', '1', '0', null, null, '0');
  1039.  
    INSERT INTO `pms_category` VALUES ('901', '单肩/斜挎包', '95', '3', '1', '0', null, null, '0');
  1040.  
    INSERT INTO `pms_category` VALUES ('902', '钥匙包', '95', '3', '1', '0', null, null, '0');
  1041.  
    INSERT INTO `pms_category` VALUES ('903', '电脑包', '96', '3', '1', '0', null, null, '0');
  1042.  
    INSERT INTO `pms_category` VALUES ('904', '拉杆箱', '96', '3', '1', '0', null, null, '0');
  1043.  
    INSERT INTO `pms_category` VALUES ('905', '旅行包', '96', '3', '1', '0', null, null, '0');
  1044.  
    INSERT INTO `pms_category` VALUES ('906', '旅行配件', '96', '3', '1', '0', null, null, '0');
  1045.  
    INSERT INTO `pms_category` VALUES ('907', '休闲运动包', '96', '3', '1', '0', null, null, '0');
  1046.  
    INSERT INTO `pms_category` VALUES ('908', '拉杆包', '96', '3', '1', '0', null, null, '0');
  1047.  
    INSERT INTO `pms_category` VALUES ('909', '登山包', '96', '3', '1', '0', null, null, '0');
  1048.  
    INSERT INTO `pms_category` VALUES ('910', '妈咪包', '96', '3', '1', '0', null, null, '0');
  1049.  
    INSERT INTO `pms_category` VALUES ('911', '书包', '96', '3', '1', '0', null, null, '0');
  1050.  
    INSERT INTO `pms_category` VALUES ('912', '相机包', '96', '3', '1', '0', null, null, '0');
  1051.  
    INSERT INTO `pms_category` VALUES ('913', '腰包/胸包', '96', '3', '1', '0', null, null, '0');
  1052.  
    INSERT INTO `pms_category` VALUES ('914', '火机烟具', '97', '3', '1', '0', null, null, '0');
  1053.  
    INSERT INTO `pms_category` VALUES ('915', '礼品文具', '97', '3', '1', '0', null, null, '0');
  1054.  
    INSERT INTO `pms_category` VALUES ('916', '军刀军具', '97', '3', '1', '0', null, null, '0');
  1055.  
    INSERT INTO `pms_category` VALUES ('917', '收藏品', '97', '3', '1', '0', null, null, '0');
  1056.  
    INSERT INTO `pms_category` VALUES ('918', '工艺礼品', '97', '3', '1', '0', null, null, '0');
  1057.  
    INSERT INTO `pms_category` VALUES ('919', '创意礼品', '97', '3', '1', '0', null, null, '0');
  1058.  
    INSERT INTO `pms_category` VALUES ('920', '礼盒礼券', '97', '3', '1', '0', null, null, '0');
  1059.  
    INSERT INTO `pms_category` VALUES ('921', '鲜花绿植', '97', '3', '1', '0', null, null, '0');
  1060.  
    INSERT INTO `pms_category` VALUES ('922', '婚庆节庆', '97', '3', '1', '0', null, null, '0');
  1061.  
    INSERT INTO `pms_category` VALUES ('923', '京东卡', '97', '3', '1', '0', null, null, '0');
  1062.  
    INSERT INTO `pms_category` VALUES ('924', '美妆礼品', '97', '3', '1', '0', null, null, '0');
  1063.  
    INSERT INTO `pms_category` VALUES ('925', '礼品定制', '97', '3', '1', '0', null, null, '0');
  1064.  
    INSERT INTO `pms_category` VALUES ('926', '京东福卡', '97', '3', '1', '0', null, null, '0');
  1065.  
    INSERT INTO `pms_category` VALUES ('927', '古董文玩', '97', '3', '1', '0', null, null, '0');
  1066.  
    INSERT INTO `pms_category` VALUES ('928', '箱包', '98', '3', '1', '0', null, null, '0');
  1067.  
    INSERT INTO `pms_category` VALUES ('929', '钱包', '98', '3', '1', '0', null, null, '0');
  1068.  
    INSERT INTO `pms_category` VALUES ('930', '服饰', '98', '3', '1', '0', null, null, '0');
  1069.  
    INSERT INTO `pms_category` VALUES ('931', '腰带', '98', '3', '1', '0', null, null, '0');
  1070.  
    INSERT INTO `pms_category` VALUES ('932', '太阳镜/眼镜框', '98', '3', '1', '0', null, null, '0');
  1071.  
    INSERT INTO `pms_category` VALUES ('933', '配件', '98', '3', '1', '0', null, null, '0');
  1072.  
    INSERT INTO `pms_category` VALUES ('934', '鞋靴', '98', '3', '1', '0', null, null, '0');
  1073.  
    INSERT INTO `pms_category` VALUES ('935', '饰品', '98', '3', '1', '0', null, null, '0');
  1074.  
    INSERT INTO `pms_category` VALUES ('936', '名品腕表', '98', '3', '1', '0', null, null, '0');
  1075.  
    INSERT INTO `pms_category` VALUES ('937', '高档化妆品', '98', '3', '1', '0', null, null, '0');
  1076.  
    INSERT INTO `pms_category` VALUES ('938', '婚嫁首饰', '99', '3', '1', '0', null, null, '0');
  1077.  
    INSERT INTO `pms_category` VALUES ('939', '婚纱摄影', '99', '3', '1', '0', null, null, '0');
  1078.  
    INSERT INTO `pms_category` VALUES ('940', '婚纱礼服', '99', '3', '1', '0', null, null, '0');
  1079.  
    INSERT INTO `pms_category` VALUES ('941', '婚庆服务', '99', '3', '1', '0', null, null, '0');
  1080.  
    INSERT INTO `pms_category` VALUES ('942', '婚庆礼品/用品', '99', '3', '1', '0', null, null, '0');
  1081.  
    INSERT INTO `pms_category` VALUES ('943', '婚宴', '99', '3', '1', '0', null, null, '0');
  1082.  
    INSERT INTO `pms_category` VALUES ('944', '饼干蛋糕', '100', '3', '1', '0', null, null, '0');
  1083.  
    INSERT INTO `pms_category` VALUES ('945', '糖果/巧克力', '100', '3', '1', '0', null, null, '0');
  1084.  
    INSERT INTO `pms_category` VALUES ('946', '休闲零食', '100', '3', '1', '0', null, null, '0');
  1085.  
    INSERT INTO `pms_category` VALUES ('947', '冲调饮品', '100', '3', '1', '0', null, null, '0');
  1086.  
    INSERT INTO `pms_category` VALUES ('948', '粮油调味', '100', '3', '1', '0', null, null, '0');
  1087.  
    INSERT INTO `pms_category` VALUES ('949', '牛奶', '100', '3', '1', '0', null, null, '0');
  1088.  
    INSERT INTO `pms_category` VALUES ('950', '其他特产', '101', '3', '1', '0', null, null, '0');
  1089.  
    INSERT INTO `pms_category` VALUES ('951', '新疆', '101', '3', '1', '0', null, null, '0');
  1090.  
    INSERT INTO `pms_category` VALUES ('952', '北京', '101', '3', '1', '0', null, null, '0');
  1091.  
    INSERT INTO `pms_category` VALUES ('953', '山西', '101', '3', '1', '0', null, null, '0');
  1092.  
    INSERT INTO `pms_category` VALUES ('954', '内蒙古', '101', '3', '1', '0', null, null, '0');
  1093.  
    INSERT INTO `pms_category` VALUES ('955', '福建', '101', '3', '1', '0', null, null, '0');
  1094.  
    INSERT INTO `pms_category` VALUES ('956', '湖南', '101', '3', '1', '0', null, null, '0');
  1095.  
    INSERT INTO `pms_category` VALUES ('957', '四川', '101', '3', '1', '0', null, null, '0');
  1096.  
    INSERT INTO `pms_category` VALUES ('958', '云南', '101', '3', '1', '0', null, null, '0');
  1097.  
    INSERT INTO `pms_category` VALUES ('959', '东北', '101', '3', '1', '0', null, null, '0');
  1098.  
    INSERT INTO `pms_category` VALUES ('960', '休闲零食', '102', '3', '1', '0', null, null, '0');
  1099.  
    INSERT INTO `pms_category` VALUES ('961', '坚果炒货', '102', '3', '1', '0', null, null, '0');
  1100.  
    INSERT INTO `pms_category` VALUES ('962', '肉干肉脯', '102', '3', '1', '0', null, null, '0');
  1101.  
    INSERT INTO `pms_category` VALUES ('963', '蜜饯果干', '102', '3', '1', '0', null, null, '0');
  1102.  
    INSERT INTO `pms_category` VALUES ('964', '糖果/巧克力', '102', '3', '1', '0', null, null, '0');
  1103.  
    INSERT INTO `pms_category` VALUES ('965', '饼干蛋糕', '102', '3', '1', '0', null, null, '0');
  1104.  
    INSERT INTO `pms_category` VALUES ('966', '无糖食品', '102', '3', '1', '0', null, null, '0');
  1105.  
    INSERT INTO `pms_category` VALUES ('967', '米面杂粮', '103', '3', '1', '0', null, null, '0');
  1106.  
    INSERT INTO `pms_category` VALUES ('968', '食用油', '103', '3', '1', '0', null, null, '0');
  1107.  
    INSERT INTO `pms_category` VALUES ('969', '调味品', '103', '3', '1', '0', null, null, '0');
  1108.  
    INSERT INTO `pms_category` VALUES ('970', '南北干货', '103', '3', '1', '0', null, null, '0');
  1109.  
    INSERT INTO `pms_category` VALUES ('971', '方便食品', '103', '3', '1', '0', null, null, '0');
  1110.  
    INSERT INTO `pms_category` VALUES ('972', '有机食品', '103', '3', '1', '0', null, null, '0');
  1111.  
    INSERT INTO `pms_category` VALUES ('973', '饮用水', '104', '3', '1', '0', null, null, '0');
  1112.  
    INSERT INTO `pms_category` VALUES ('974', '饮料', '104', '3', '1', '0', null, null, '0');
  1113.  
    INSERT INTO `pms_category` VALUES ('975', '牛奶乳品', '104', '3', '1', '0', null, null, '0');
  1114.  
    INSERT INTO `pms_category` VALUES ('976', '咖啡/奶茶', '104', '3', '1', '0', null, null, '0');
  1115.  
    INSERT INTO `pms_category` VALUES ('977', '冲饮谷物', '104', '3', '1', '0', null, null, '0');
  1116.  
    INSERT INTO `pms_category` VALUES ('978', '蜂蜜/柚子茶', '104', '3', '1', '0', null, null, '0');
  1117.  
    INSERT INTO `pms_category` VALUES ('979', '成人奶粉', '104', '3', '1', '0', null, null, '0');
  1118.  
    INSERT INTO `pms_category` VALUES ('980', '月饼', '105', '3', '1', '0', null, null, '0');
  1119.  
    INSERT INTO `pms_category` VALUES ('981', '大闸蟹', '105', '3', '1', '0', null, null, '0');
  1120.  
    INSERT INTO `pms_category` VALUES ('982', '粽子', '105', '3', '1', '0', null, null, '0');
  1121.  
    INSERT INTO `pms_category` VALUES ('983', '卡券', '105', '3', '1', '0', null, null, '0');
  1122.  
    INSERT INTO `pms_category` VALUES ('984', '铁观音', '106', '3', '1', '0', null, null, '0');
  1123.  
    INSERT INTO `pms_category` VALUES ('985', '普洱', '106', '3', '1', '0', null, null, '0');
  1124.  
    INSERT INTO `pms_category` VALUES ('986', '龙井', '106', '3', '1', '0', null, null, '0');
  1125.  
    INSERT INTO `pms_category` VALUES ('987', '绿茶', '106', '3', '1', '0', null, null, '0');
  1126.  
    INSERT INTO `pms_category` VALUES ('988', '红茶', '106', '3', '1', '0', null, null, '0');
  1127.  
    INSERT INTO `pms_category` VALUES ('989', '乌龙茶', '106', '3', '1', '0', null, null, '0');
  1128.  
    INSERT INTO `pms_category` VALUES ('990', '花草茶', '106', '3', '1', '0', null, null, '0');
  1129.  
    INSERT INTO `pms_category` VALUES ('991', '花果茶', '106', '3', '1', '0', null, null, '0');
  1130.  
    INSERT INTO `pms_category` VALUES ('992', '养生茶', '106', '3', '1', '0', null, null, '0');
  1131.  
    INSERT INTO `pms_category` VALUES ('993', '黑茶', '106', '3', '1', '0', null, null, '0');
  1132.  
    INSERT INTO `pms_category` VALUES ('994', '白茶', '106', '3', '1', '0', null, null, '0');
  1133.  
    INSERT INTO `pms_category` VALUES ('995', '其它茶', '106', '3', '1', '0', null, null, '0');
  1134.  
    INSERT INTO `pms_category` VALUES ('996', '项链', '107', '3', '1', '0', null, null, '0');
  1135.  
    INSERT INTO `pms_category` VALUES ('997', '手链/脚链', '107', '3', '1', '0', null, null, '0');
  1136.  
    INSERT INTO `pms_category` VALUES ('998', '戒指', '107', '3', '1', '0', null, null, '0');
  1137.  
    INSERT INTO `pms_category` VALUES ('999', '耳饰', '107', '3', '1', '0', null, null, '0');
  1138.  
    INSERT INTO `pms_category` VALUES ('1000', '毛衣链', '107', '3', '1', '0', null, null, '0');
  1139.  
    INSERT INTO `pms_category` VALUES ('1001', '发饰/发卡', '107', '3', '1', '0', null, null, '0');
  1140.  
    INSERT INTO `pms_category` VALUES ('1002', '胸针', '107', '3', '1', '0', null, null, '0');
  1141.  
    INSERT INTO `pms_category` VALUES ('1003', '饰品配件', '107', '3', '1', '0', null, null, '0');
  1142.  
    INSERT INTO `pms_category` VALUES ('1004', '婚庆饰品', '107', '3', '1', '0', null, null, '0');
  1143.  
    INSERT INTO `pms_category` VALUES ('1005', '黄金吊坠', '108', '3', '1', '0', null, null, '0');
  1144.  
    INSERT INTO `pms_category` VALUES ('1006', '黄金项链', '108', '3', '1', '0', null, null, '0');
  1145.  
    INSERT INTO `pms_category` VALUES ('1007', '黄金转运珠', '108', '3', '1', '0', null, null, '0');
  1146.  
    INSERT INTO `pms_category` VALUES ('1008', '黄金手镯/手链/脚链', '108', '3', '1', '0', null, null, '0');
  1147.  
    INSERT INTO `pms_category` VALUES ('1009', '黄金耳饰', '108', '3', '1', '0', null, null, '0');
  1148.  
    INSERT INTO `pms_category` VALUES ('1010', '黄金戒指', '108', '3', '1', '0', null, null, '0');
  1149.  
    INSERT INTO `pms_category` VALUES ('1011', 'K金吊坠', '109', '3', '1', '0', null, null, '0');
  1150.  
    INSERT INTO `pms_category` VALUES ('1012', 'K金项链', '109', '3', '1', '0', null, null, '0');
  1151.  
    INSERT INTO `pms_category` VALUES ('1013', 'K金手镯/手链/脚链', '109', '3', '1', '0', null, null, '0');
  1152.  
    INSERT INTO `pms_category` VALUES ('1014', 'K金戒指', '109', '3', '1', '0', null, null, '0');
  1153.  
    INSERT INTO `pms_category` VALUES ('1015', 'K金耳饰', '109', '3', '1', '0', null, null, '0');
  1154.  
    INSERT INTO `pms_category` VALUES ('1016', '投资金', '110', '3', '1', '0', null, null, '0');
  1155.  
    INSERT INTO `pms_category` VALUES ('1017', '投资银', '110', '3', '1', '0', null, null, '0');
  1156.  
    INSERT INTO `pms_category` VALUES ('1018', '投资收藏', '110', '3', '1', '0', null, null, '0');
  1157.  
    INSERT INTO `pms_category` VALUES ('1019', '银吊坠/项链', '111', '3', '1', '0', null, null, '0');
  1158.  
    INSERT INTO `pms_category` VALUES ('1020', '银手镯/手链/脚链', '111', '3', '1', '0', null, null, '0');
  1159.  
    INSERT INTO `pms_category` VALUES ('1021', '银戒指', '111', '3', '1', '0', null, null, '0');
  1160.  
    INSERT INTO `pms_category` VALUES ('1022', '银耳饰', '111', '3', '1', '0', null, null, '0');
  1161.  
    INSERT INTO `pms_category` VALUES ('1023', '足银手镯', '111', '3', '1', '0', null, null, '0');
  1162.  
    INSERT INTO `pms_category` VALUES ('1024', '宝宝银饰', '111', '3', '1', '0', null, null, '0');
  1163.  
    INSERT INTO `pms_category` VALUES ('1025', '裸钻', '112', '3', '1', '0', null, null, '0');
  1164.  
    INSERT INTO `pms_category` VALUES ('1026', '钻戒', '112', '3', '1', '0', null, null, '0');
  1165.  
    INSERT INTO `pms_category` VALUES ('1027', '钻石项链/吊坠', '112', '3', '1', '0', null, null, '0');
  1166.  
    INSERT INTO `pms_category` VALUES ('1028', '钻石耳饰', '112', '3', '1', '0', null, null, '0');
  1167.  
    INSERT INTO `pms_category` VALUES ('1029', '钻石手镯/手链', '112', '3', '1', '0', null, null, '0');
  1168.  
    INSERT INTO `pms_category` VALUES ('1030', '项链/吊坠', '113', '3', '1', '0', null, null, '0');
  1169.  
    INSERT INTO `pms_category` VALUES ('1031', '手镯/手串', '113', '3', '1', '0', null, null, '0');
  1170.  
    INSERT INTO `pms_category` VALUES ('1032', '戒指', '113', '3', '1', '0', null, null, '0');
  1171.  
    INSERT INTO `pms_category` VALUES ('1033', '耳饰', '113', '3', '1', '0', null, null, '0');
  1172.  
    INSERT INTO `pms_category` VALUES ('1034', '挂件/摆件/把件', '113', '3', '1', '0', null, null, '0');
  1173.  
    INSERT INTO `pms_category` VALUES ('1035', '玉石孤品', '113', '3', '1', '0', null, null, '0');
  1174.  
    INSERT INTO `pms_category` VALUES ('1036', '项链/吊坠', '114', '3', '1', '0', null, null, '0');
  1175.  
    INSERT INTO `pms_category` VALUES ('1037', '耳饰', '114', '3', '1', '0', null, null, '0');
  1176.  
    INSERT INTO `pms_category` VALUES ('1038', '手镯/手链/脚链', '114', '3', '1', '0', null, null, '0');
  1177.  
    INSERT INTO `pms_category` VALUES ('1039', '戒指', '114', '3', '1', '0', null, null, '0');
  1178.  
    INSERT INTO `pms_category` VALUES ('1040', '头饰/胸针', '114', '3', '1', '0', null, null, '0');
  1179.  
    INSERT INTO `pms_category` VALUES ('1041', '摆件/挂件', '114', '3', '1', '0', null, null, '0');
  1180.  
    INSERT INTO `pms_category` VALUES ('1042', '琥珀/蜜蜡', '115', '3', '1', '0', null, null, '0');
  1181.  
    INSERT INTO `pms_category` VALUES ('1043', '碧玺', '115', '3', '1', '0', null, null, '0');
  1182.  
    INSERT INTO `pms_category` VALUES ('1044', '红宝石/蓝宝石', '115', '3', '1', '0', null, null, '0');
  1183.  
    INSERT INTO `pms_category` VALUES ('1045', '坦桑石', '115', '3', '1', '0', null, null, '0');
  1184.  
    INSERT INTO `pms_category` VALUES ('1046', '珊瑚', '115', '3', '1', '0', null, null, '0');
  1185.  
    INSERT INTO `pms_category` VALUES ('1047', '祖母绿', '115', '3', '1', '0', null, null, '0');
  1186.  
    INSERT INTO `pms_category` VALUES ('1048', '葡萄石', '115', '3', '1', '0', null, null, '0');
  1187.  
    INSERT INTO `pms_category` VALUES ('1049', '其他天然宝石', '115', '3', '1', '0', null, null, '0');
  1188.  
    INSERT INTO `pms_category` VALUES ('1050', '项链/吊坠', '115', '3', '1', '0', null, null, '0');
  1189.  
    INSERT INTO `pms_category` VALUES ('1051', '耳饰', '115', '3', '1', '0', null, null, '0');
  1190.  
    INSERT INTO `pms_category` VALUES ('1052', '手镯/手链', '115', '3', '1', '0', null, null, '0');
  1191.  
    INSERT INTO `pms_category` VALUES ('1053', '戒指', '115', '3', '1', '0', null, null, '0');
  1192.  
    INSERT INTO `pms_category` VALUES ('1054', '铂金项链/吊坠', '116', '3', '1', '0', null, null, '0');
  1193.  
    INSERT INTO `pms_category` VALUES ('1055', '铂金手镯/手链/脚链', '116', '3', '1', '0', null, null, '0');
  1194.  
    INSERT INTO `pms_category` VALUES ('1056', '铂金戒指', '116', '3', '1', '0', null, null, '0');
  1195.  
    INSERT INTO `pms_category` VALUES ('1057', '铂金耳饰', '116', '3', '1', '0', null, null, '0');
  1196.  
    INSERT INTO `pms_category` VALUES ('1058', '小叶紫檀', '117', '3', '1', '0', null, null, '0');
  1197.  
    INSERT INTO `pms_category` VALUES ('1059', '黄花梨', '117', '3', '1', '0', null, null, '0');
  1198.  
    INSERT INTO `pms_category` VALUES ('1060', '沉香木', '117', '3', '1', '0', null, null, '0');
  1199.  
    INSERT INTO `pms_category` VALUES ('1061', '金丝楠', '117', '3', '1', '0', null, null, '0');
  1200.  
    INSERT INTO `pms_category` VALUES ('1062', '菩提', '117', '3', '1', '0', null, null, '0');
  1201.  
    INSERT INTO `pms_category` VALUES ('1063', '其他', '117', '3', '1', '0', null, null, '0');
  1202.  
    INSERT INTO `pms_category` VALUES ('1064', '橄榄核/核桃', '117', '3', '1', '0', null, null, '0');
  1203.  
    INSERT INTO `pms_category` VALUES ('1065', '檀香', '117', '3', '1', '0', null, null, '0');
  1204.  
    INSERT INTO `pms_category` VALUES ('1066', '珍珠项链', '118', '3', '1', '0', null, null, '0');
  1205.  
    INSERT INTO `pms_category` VALUES ('1067', '珍珠吊坠', '118', '3', '1', '0', null, null, '0');
  1206.  
    INSERT INTO `pms_category` VALUES ('1068', '珍珠耳饰', '118', '3', '1', '0', null, null, '0');
  1207.  
    INSERT INTO `pms_category` VALUES ('1069', '珍珠手链', '118', '3', '1', '0', null, null, '0');
  1208.  
    INSERT INTO `pms_category` VALUES ('1070', '珍珠戒指', '118', '3', '1', '0', null, null, '0');
  1209.  
    INSERT INTO `pms_category` VALUES ('1071', '珍珠胸针', '118', '3', '1', '0', null, null, '0');
  1210.  
    INSERT INTO `pms_category` VALUES ('1072', '机油', '119', '3', '1', '0', null, null, '0');
  1211.  
    INSERT INTO `pms_category` VALUES ('1073', '正时皮带', '119', '3', '1', '0', null, null, '0');
  1212.  
    INSERT INTO `pms_category` VALUES ('1074', '添加剂', '119', '3', '1', '0', null, null, '0');
  1213.  
    INSERT INTO `pms_category` VALUES ('1075', '汽车喇叭', '119', '3', '1', '0', null, null, '0');
  1214.  
    INSERT INTO `pms_category` VALUES ('1076', '防冻液', '119', '3', '1', '0', null, null, '0');
  1215.  
    INSERT INTO `pms_category` VALUES ('1077', '汽车玻璃', '119', '3', '1', '0', null, null, '0');
  1216.  
    INSERT INTO `pms_category` VALUES ('1078', '滤清器', '119', '3', '1', '0', null, null, '0');
  1217.  
    INSERT INTO `pms_category` VALUES ('1079', '火花塞', '119', '3', '1', '0', null, null, '0');
  1218.  
    INSERT INTO `pms_category` VALUES ('1080', '减震器', '119', '3', '1', '0', null, null, '0');
  1219.  
    INSERT INTO `pms_category` VALUES ('1081', '柴机油/辅助油', '119', '3', '1', '0', null, null, '0');
  1220.  
    INSERT INTO `pms_category` VALUES ('1082', '雨刷', '119', '3', '1', '0', null, null, '0');
  1221.  
    INSERT INTO `pms_category` VALUES ('1083', '车灯', '119', '3', '1', '0', null, null, '0');
  1222.  
    INSERT INTO `pms_category` VALUES ('1084', '后视镜', '119', '3', '1', '0', null, null, '0');
  1223.  
    INSERT INTO `pms_category` VALUES ('1085', '轮胎', '119', '3', '1', '0', null, null, '0');
  1224.  
    INSERT INTO `pms_category` VALUES ('1086', '轮毂', '119', '3', '1', '0', null, null, '0');
  1225.  
    INSERT INTO `pms_category` VALUES ('1087', '刹车片/盘', '119', '3', '1', '0', null, null, '0');
  1226.  
    INSERT INTO `pms_category` VALUES ('1088', '维修配件', '119', '3', '1', '0', null, null, '0');
  1227.  
    INSERT INTO `pms_category` VALUES ('1089', '蓄电池', '119', '3', '1', '0', null, null, '0');
  1228.  
    INSERT INTO `pms_category` VALUES ('1090', '底盘装甲/护板', '119', '3', '1', '0', null, null, '0');
  1229.  
    INSERT INTO `pms_category` VALUES ('1091', '贴膜', '119', '3', '1', '0', null, null, '0');
  1230.  
    INSERT INTO `pms_category` VALUES ('1092', '汽修工具', '119', '3', '1', '0', null, null, '0');
  1231.  
    INSERT INTO `pms_category` VALUES ('1093', '改装配件', '119', '3', '1', '0', null, null, '0');
  1232.  
    INSERT INTO `pms_category` VALUES ('1094', '导航仪', '120', '3', '1', '0', null, null, '0');
  1233.  
    INSERT INTO `pms_category` VALUES ('1095', '安全预警仪', '120', '3', '1', '0', null, null, '0');
  1234.  
    INSERT INTO `pms_category` VALUES ('1096', '行车记录仪', '120', '3', '1', '0', null, null, '0');
  1235.  
    INSERT INTO `pms_category` VALUES ('1097', '倒车雷达', '120', '3', '1', '0', null, null, '0');
  1236.  
    INSERT INTO `pms_category` VALUES ('1098', '蓝牙设备', '120', '3', '1', '0', null, null, '0');
  1237.  
    INSERT INTO `pms_category` VALUES ('1099', '车载影音', '120', '3', '1', '0', null, null, '0');
  1238.  
    INSERT INTO `pms_category` VALUES ('1100', '净化器', '120', '3', '1', '0', null, null, '0');
  1239.  
    INSERT INTO `pms_category` VALUES ('1101', '电源', '120', '3', '1', '0', null, null, '0');
  1240.  
    INSERT INTO `pms_category` VALUES ('1102', '智能驾驶', '120', '3', '1', '0', null, null, '0');
  1241.  
    INSERT INTO `pms_category` VALUES ('1103', '车载电台', '120', '3', '1', '0', null, null, '0');
  1242.  
    INSERT INTO `pms_category` VALUES ('1104', '车载电器配件', '120', '3', '1', '0', null, null, '0');
  1243.  
    INSERT INTO `pms_category` VALUES ('1105', '吸尘器', '120', '3', '1', '0', null, null, '0');
  1244.  
    INSERT INTO `pms_category` VALUES ('1106', '智能车机', '120', '3', '1', '0', null, null, '0');
  1245.  
    INSERT INTO `pms_category` VALUES ('1107', '冰箱', '120', '3', '1', '0', null, null, '0');
  1246.  
    INSERT INTO `pms_category` VALUES ('1108', '汽车音响', '120', '3', '1', '0', null, null, '0');
  1247.  
    INSERT INTO `pms_category` VALUES ('1109', '车载生活电器', '120', '3', '1', '0', null, null, '0');
  1248.  
    INSERT INTO `pms_category` VALUES ('1110', '车蜡', '121', '3', '1', '0', null, null, '0');
  1249.  
    INSERT INTO `pms_category` VALUES ('1111', '补漆笔', '121', '3', '1', '0', null, null, '0');
  1250.  
    INSERT INTO `pms_category` VALUES ('1112', '玻璃水', '121', '3', '1', '0', null, null, '0');
  1251.  
    INSERT INTO `pms_category` VALUES ('1113', '清洁剂', '121', '3', '1', '0', null, null, '0');
  1252.  
    INSERT INTO `pms_category` VALUES ('1114', '洗车工具', '121', '3', '1', '0', null, null, '0');
  1253.  
    INSERT INTO `pms_category` VALUES ('1115', '镀晶镀膜', '121', '3', '1', '0', null, null, '0');
  1254.  
    INSERT INTO `pms_category` VALUES ('1116', '打蜡机', '121', '3', '1', '0', null, null, '0');
  1255.  
    INSERT INTO `pms_category` VALUES ('1117', '洗车配件', '121', '3', '1', '0', null, null, '0');
  1256.  
    INSERT INTO `pms_category` VALUES ('1118', '洗车机', '121', '3', '1', '0', null, null, '0');
  1257.  
    INSERT INTO `pms_category` VALUES ('1119', '洗车水枪', '121', '3', '1', '0', null, null, '0');
  1258.  
    INSERT INTO `pms_category` VALUES ('1120', '毛巾掸子', '121', '3', '1', '0', null, null, '0');
  1259.  
    INSERT INTO `pms_category` VALUES ('1121', '脚垫', '122', '3', '1', '0', null, null, '0');
  1260.  
    INSERT INTO `pms_category` VALUES ('1122', '座垫', '122', '3', '1', '0', null, null, '0');
  1261.  
    INSERT INTO `pms_category` VALUES ('1123', '座套', '122', '3', '1', '0', null, null, '0');
  1262.  
    INSERT INTO `pms_category` VALUES ('1124', '后备箱垫', '122', '3', '1', '0', null, null, '0');
  1263.  
    INSERT INTO `pms_category` VALUES ('1125', '头枕腰靠', '122', '3', '1', '0', null, null, '0');
  1264.  
    INSERT INTO `pms_category` VALUES ('1126', '方向盘套', '122', '3', '1', '0', null, null, '0');
  1265.  
    INSERT INTO `pms_category` VALUES ('1127', '香水', '122', '3', '1', '0', null, null, '0');
  1266.  
    INSERT INTO `pms_category` VALUES ('1128', '空气净化', '122', '3', '1', '0', null, null, '0');
  1267.  
    INSERT INTO `pms_category` VALUES ('1129', '挂件摆件', '122', '3', '1', '0', null, null, '0');
  1268.  
    INSERT INTO `pms_category` VALUES ('1130', '功能小件', '122', '3', '1', '0', null, null, '0');
  1269.  
    INSERT INTO `pms_category` VALUES ('1131', '车身装饰件', '122', '3', '1', '0', null, null, '0');
  1270.  
    INSERT INTO `pms_category` VALUES ('1132', '车衣', '122', '3', '1', '0', null, null, '0');
  1271.  
    INSERT INTO `pms_category` VALUES ('1133', '安全座椅', '123', '3', '1', '0', null, null, '0');
  1272.  
    INSERT INTO `pms_category` VALUES ('1134', '胎压监测', '123', '3', '1', '0', null, null, '0');
  1273.  
    INSERT INTO `pms_category` VALUES ('1135', '防盗设备', '123', '3', '1', '0', null, null, '0');
  1274.  
    INSERT INTO `pms_category` VALUES ('1136', '应急救援', '123', '3', '1', '0', null, null, '0');
  1275.  
    INSERT INTO `pms_category` VALUES ('1137', '保温箱', '123', '3', '1', '0', null, null, '0');
  1276.  
    INSERT INTO `pms_category` VALUES ('1138', '地锁', '123', '3', '1', '0', null, null, '0');
  1277.  
    INSERT INTO `pms_category` VALUES ('1139', '摩托车', '123', '3', '1', '0', null, null, '0');
  1278.  
    INSERT INTO `pms_category` VALUES ('1140', '充气泵', '123', '3', '1', '0', null, null, '0');
  1279.  
    INSERT INTO `pms_category` VALUES ('1141', '储物箱', '123', '3', '1', '0', null, null, '0');
  1280.  
    INSERT INTO `pms_category` VALUES ('1142', '自驾野营', '123', '3', '1', '0', null, null, '0');
  1281.  
    INSERT INTO `pms_category` VALUES ('1143', '摩托车装备', '123', '3', '1', '0', null, null, '0');
  1282.  
    INSERT INTO `pms_category` VALUES ('1144', '清洗美容', '124', '3', '1', '0', null, null, '0');
  1283.  
    INSERT INTO `pms_category` VALUES ('1145', '功能升级', '124', '3', '1', '0', null, null, '0');
  1284.  
    INSERT INTO `pms_category` VALUES ('1146', '保养维修', '124', '3', '1', '0', null, null, '0');
  1285.  
    INSERT INTO `pms_category` VALUES ('1147', '油卡充值', '124', '3', '1', '0', null, null, '0');
  1286.  
    INSERT INTO `pms_category` VALUES ('1148', '车险', '124', '3', '1', '0', null, null, '0');
  1287.  
    INSERT INTO `pms_category` VALUES ('1149', '加油卡', '124', '3', '1', '0', null, null, '0');
  1288.  
    INSERT INTO `pms_category` VALUES ('1150', 'ETC', '124', '3', '1', '0', null, null, '0');
  1289.  
    INSERT INTO `pms_category` VALUES ('1151', '驾驶培训', '124', '3', '1', '0', null, null, '0');
  1290.  
    INSERT INTO `pms_category` VALUES ('1152', '赛事服装', '125', '3', '1', '0', null, null, '0');
  1291.  
    INSERT INTO `pms_category` VALUES ('1153', '赛事用品', '125', '3', '1', '0', null, null, '0');
  1292.  
    INSERT INTO `pms_category` VALUES ('1154', '制动系统', '125', '3', '1', '0', null, null, '0');
  1293.  
    INSERT INTO `pms_category` VALUES ('1155', '悬挂系统', '125', '3', '1', '0', null, null, '0');
  1294.  
    INSERT INTO `pms_category` VALUES ('1156', '进气系统', '125', '3', '1', '0', null, null, '0');
  1295.  
    INSERT INTO `pms_category` VALUES ('1157', '排气系统', '125', '3', '1', '0', null, null, '0');
  1296.  
    INSERT INTO `pms_category` VALUES ('1158', '电子管理', '125', '3', '1', '0', null, null, '0');
  1297.  
    INSERT INTO `pms_category` VALUES ('1159', '车身强化', '125', '3', '1', '0', null, null, '0');
  1298.  
    INSERT INTO `pms_category` VALUES ('1160', '赛事座椅', '125', '3', '1', '0', null, null, '0');
  1299.  
    INSERT INTO `pms_category` VALUES ('1161', '跑步鞋', '126', '3', '1', '0', null, null, '0');
  1300.  
    INSERT INTO `pms_category` VALUES ('1162', '休闲鞋', '126', '3', '1', '0', null, null, '0');
  1301.  
    INSERT INTO `pms_category` VALUES ('1163', '篮球鞋', '126', '3', '1', '0', null, null, '0');
  1302.  
    INSERT INTO `pms_category` VALUES ('1164', '板鞋', '126', '3', '1', '0', null, null, '0');
  1303.  
    INSERT INTO `pms_category` VALUES ('1165', '帆布鞋', '126', '3', '1', '0', null, null, '0');
  1304.  
    INSERT INTO `pms_category` VALUES ('1166', '足球鞋', '126', '3', '1', '0', null, null, '0');
  1305.  
    INSERT INTO `pms_category` VALUES ('1167', '乒羽网鞋', '126', '3', '1', '0', null, null, '0');
  1306.  
    INSERT INTO `pms_category` VALUES ('1168', '专项运动鞋', '126', '3', '1', '0', null, null, '0');
  1307.  
    INSERT INTO `pms_category` VALUES ('1169', '训练鞋', '126', '3', '1', '0', null, null, '0');
  1308.  
    INSERT INTO `pms_category` VALUES ('1170', '拖鞋', '126', '3', '1', '0', null, null, '0');
  1309.  
    INSERT INTO `pms_category` VALUES ('1171', '运动包', '126', '3', '1', '0', null, null, '0');
  1310.  
    INSERT INTO `pms_category` VALUES ('1172', '羽绒服', '127', '3', '1', '0', null, null, '0');
  1311.  
    INSERT INTO `pms_category` VALUES ('1173', '棉服', '127', '3', '1', '0', null, null, '0');
  1312.  
    INSERT INTO `pms_category` VALUES ('1174', '运动裤', '127', '3', '1', '0', null, null, '0');
  1313.  
    INSERT INTO `pms_category` VALUES ('1175', '夹克/风衣', '127', '3', '1', '0', null, null, '0');
  1314.  
    INSERT INTO `pms_category` VALUES ('1176', '卫衣/套头衫', '127', '3', '1', '0', null, null, '0');
  1315.  
    INSERT INTO `pms_category` VALUES ('1177', 'T恤', '127', '3', '1', '0', null, null, '0');
  1316.  
    INSERT INTO `pms_category` VALUES ('1178', '套装', '127', '3', '1', '0', null, null, '0');
  1317.  
    INSERT INTO `pms_category` VALUES ('1179', '乒羽网服', '127', '3', '1', '0', null, null, '0');
  1318.  
    INSERT INTO `pms_category` VALUES ('1180', '健身服', '127', '3', '1', '0', null, null, '0');
  1319.  
    INSERT INTO `pms_category` VALUES ('1181', '运动背心', '127', '3', '1', '0', null, null, '0');
  1320.  
    INSERT INTO `pms_category` VALUES ('1182', '毛衫/线衫', '127', '3', '1', '0', null, null, '0');
  1321.  
    INSERT INTO `pms_category` VALUES ('1183', '运动配饰', '127', '3', '1', '0', null, null, '0');
  1322.  
    INSERT INTO `pms_category` VALUES ('1184', '折叠车', '128', '3', '1', '0', null, null, '0');
  1323.  
    INSERT INTO `pms_category` VALUES ('1185', '山地车/公路车', '128', '3', '1', '0', null, null, '0');
  1324.  
    INSERT INTO `pms_category` VALUES ('1186', '电动车', '128', '3', '1', '0', null, null, '0');
  1325.  
    INSERT INTO `pms_category` VALUES ('1187', '其他整车', '128', '3', '1', '0', null, null, '0');
  1326.  
    INSERT INTO `pms_category` VALUES ('1188', '骑行服', '128', '3', '1', '0', null, null, '0');
  1327.  
    INSERT INTO `pms_category` VALUES ('1189', '骑行装备', '128', '3', '1', '0', null, null, '0');
  1328.  
    INSERT INTO `pms_category` VALUES ('1190', '平衡车', '128', '3', '1', '0', null, null, '0');
  1329.  
    INSERT INTO `pms_category` VALUES ('1191', '鱼竿鱼线', '129', '3', '1', '0', null, null, '0');
  1330.  
    INSERT INTO `pms_category` VALUES ('1192', '浮漂鱼饵', '129', '3', '1', '0', null, null, '0');
  1331.  
    INSERT INTO `pms_category` VALUES ('1193', '钓鱼桌椅', '129', '3', '1', '0', null, null, '0');
  1332.  
    INSERT INTO `pms_category` VALUES ('1194', '钓鱼配件', '129', '3', '1', '0', null, null, '0');
  1333.  
    INSERT INTO `pms_category` VALUES ('1195', '钓箱鱼包', '129', '3', '1', '0', null, null, '0');
  1334.  
    INSERT INTO `pms_category` VALUES ('1196', '其它', '129', '3', '1', '0', null, null, '0');
  1335.  
    INSERT INTO `pms_category` VALUES ('1197', '泳镜', '130', '3', '1', '0', null, null, '0');
  1336.  
    INSERT INTO `pms_category` VALUES ('1198', '泳帽', '130', '3', '1', '0', null, null, '0');
  1337.  
    INSERT INTO `pms_category` VALUES ('1199', '游泳包防水包', '130', '3', '1', '0', null, null, '0');
  1338.  
    INSERT INTO `pms_category` VALUES ('1200', '女士泳衣', '130', '3', '1', '0', null, null, '0');
  1339.  
    INSERT INTO `pms_category` VALUES ('1201', '男士泳衣', '130', '3', '1', '0', null, null, '0');
  1340.  
    INSERT INTO `pms_category` VALUES ('1202', '比基尼', '130', '3', '1', '0', null, null, '0');
  1341.  
    INSERT INTO `pms_category` VALUES ('1203', '其它', '130', '3', '1', '0', null, null, '0');
  1342.  
    INSERT INTO `pms_category` VALUES ('1204', '冲锋衣裤', '131', '3', '1', '0', null, null, '0');
  1343.  
    INSERT INTO `pms_category` VALUES ('1205', '速干衣裤', '131', '3', '1', '0', null, null, '0');
  1344.  
    INSERT INTO `pms_category` VALUES ('1206', '滑雪服', '131', '3', '1', '0', null, null, '0');
  1345.  
    INSERT INTO `pms_category` VALUES ('1207', '羽绒服/棉服', '131', '3', '1', '0', null, null, '0');
  1346.  
    INSERT INTO `pms_category` VALUES ('1208', '休闲衣裤', '131', '3', '1', '0', null, null, '0');
  1347.  
    INSERT INTO `pms_category` VALUES ('1209', '抓绒衣裤', '131', '3', '1', '0', null, null, '0');
  1348.  
    INSERT INTO `pms_category` VALUES ('1210', '软壳衣裤', '131', '3', '1', '0', null, null, '0');
  1349.  
    INSERT INTO `pms_category` VALUES ('1211', 'T恤', '131', '3', '1', '0', null, null, '0');
  1350.  
    INSERT INTO `pms_category` VALUES ('1212', '户外风衣', '131', '3', '1', '0', null, null, '0');
  1351.  
    INSERT INTO `pms_category` VALUES ('1213', '功能内衣', '131', '3', '1', '0', null, null, '0');
  1352.  
    INSERT INTO `pms_category` VALUES ('1214', '军迷服饰', '131', '3', '1', '0', null, null, '0');
  1353.  
    INSERT INTO `pms_category` VALUES ('1215', '登山鞋', '131', '3', '1', '0', null, null, '0');
  1354.  
    INSERT INTO `pms_category` VALUES ('1216', '雪地靴', '131', '3', '1', '0', null, null, '0');
  1355.  
    INSERT INTO `pms_category` VALUES ('1217', '徒步鞋', '131', '3', '1', '0', null, null, '0');
  1356.  
    INSERT INTO `pms_category` VALUES ('1218', '越野跑鞋', '131', '3', '1', '0', null, null, '0');
  1357.  
    INSERT INTO `pms_category` VALUES ('1219', '休闲鞋', '131', '3', '1', '0', null, null, '0');
  1358.  
    INSERT INTO `pms_category` VALUES ('1220', '工装鞋', '131', '3', '1', '0', null, null, '0');
  1359.  
    INSERT INTO `pms_category` VALUES ('1221', '溯溪鞋', '131', '3', '1', '0', null, null, '0');
  1360.  
    INSERT INTO `pms_category` VALUES ('1222', '沙滩/凉拖', '131', '3', '1', '0', null, null, '0');
  1361.  
    INSERT INTO `pms_category` VALUES ('1223', '户外袜', '131', '3', '1', '0', null, null, '0');
  1362.  
    INSERT INTO `pms_category` VALUES ('1224', '帐篷/垫子', '132', '3', '1', '0', null, null, '0');
  1363.  
    INSERT INTO `pms_category` VALUES ('1225', '睡袋/吊床', '132', '3', '1', '0', null, null, '0');
  1364.  
    INSERT INTO `pms_category` VALUES ('1226', '登山攀岩', '132', '3', '1', '0', null, null, '0');
  1365.  
    INSERT INTO `pms_category` VALUES ('1227', '户外配饰', '132', '3', '1', '0', null, null, '0');
  1366.  
    INSERT INTO `pms_category` VALUES ('1228', '背包', '132', '3', '1', '0', null, null, '0');
  1367.  
    INSERT INTO `pms_category` VALUES ('1229', '户外照明', '132', '3', '1', '0', null, null, '0');
  1368.  
    INSERT INTO `pms_category` VALUES ('1230', '户外仪表', '132', '3', '1', '0', null, null, '0');
  1369.  
    INSERT INTO `pms_category` VALUES ('1231', '户外工具', '132', '3', '1', '0', null, null, '0');
  1370.  
    INSERT INTO `pms_category` VALUES ('1232', '望远镜', '132', '3', '1', '0', null, null, '0');
  1371.  
    INSERT INTO `pms_category` VALUES ('1233', '旅游用品', '132', '3', '1', '0', null, null, '0');
  1372.  
    INSERT INTO `pms_category` VALUES ('1234', '便携桌椅床', '132', '3', '1', '0', null, null, '0');
  1373.  
    INSERT INTO `pms_category` VALUES ('1235', '野餐烧烤', '132', '3', '1', '0', null, null, '0');
  1374.  
    INSERT INTO `pms_category` VALUES ('1236', '军迷用品', '132', '3', '1', '0', null, null, '0');
  1375.  
    INSERT INTO `pms_category` VALUES ('1237', '救援装备', '132', '3', '1', '0', null, null, '0');
  1376.  
    INSERT INTO `pms_category` VALUES ('1238', '滑雪装备', '132', '3', '1', '0', null, null, '0');
  1377.  
    INSERT INTO `pms_category` VALUES ('1239', '极限户外', '132', '3', '1', '0', null, null, '0');
  1378.  
    INSERT INTO `pms_category` VALUES ('1240', '冲浪潜水', '132', '3', '1', '0', null, null, '0');
  1379.  
    INSERT INTO `pms_category` VALUES ('1241', '综合训练器', '133', '3', '1', '0', null, null, '0');
  1380.  
    INSERT INTO `pms_category` VALUES ('1242', '其他大型器械', '133', '3', '1', '0', null, null, '0');
  1381.  
    INSERT INTO `pms_category` VALUES ('1243', '哑铃', '133', '3', '1', '0', null, null, '0');
  1382.  
    INSERT INTO `pms_category` VALUES ('1244', '仰卧板/收腹机', '133', '3', '1', '0', null, null, '0');
  1383.  
    INSERT INTO `pms_category` VALUES ('1245', '其他中小型器材', '133', '3', '1', '0', null, null, '0');
  1384.  
    INSERT INTO `pms_category` VALUES ('1246', '瑜伽舞蹈', '133', '3', '1', '0', null, null, '0');
  1385.  
    INSERT INTO `pms_category` VALUES ('1247', '甩脂机', '133', '3', '1', '0', null, null, '0');
  1386.  
    INSERT INTO `pms_category` VALUES ('1248', '踏步机', '133', '3', '1', '0', null, null, '0');
  1387.  
    INSERT INTO `pms_category` VALUES ('1249', '武术搏击', '133', '3', '1', '0', null, null, '0');
  1388.  
    INSERT INTO `pms_category` VALUES ('1250', '健身车/动感单车', '133', '3', '1', '0', null, null, '0');
  1389.  
    INSERT INTO `pms_category` VALUES ('1251', '跑步机', '133', '3', '1', '0', null, null, '0');
  1390.  
    INSERT INTO `pms_category` VALUES ('1252', '运动护具', '133', '3', '1', '0', null, null, '0');
  1391.  
    INSERT INTO `pms_category` VALUES ('1253', '羽毛球', '134', '3', '1', '0', null, null, '0');
  1392.  
    INSERT INTO `pms_category` VALUES ('1254', '乒乓球', '134', '3', '1', '0', null, null, '0');
  1393.  
    INSERT INTO `pms_category` VALUES ('1255', '篮球', '134', '3', '1', '0', null, null, '0');
  1394.  
    INSERT INTO `pms_category` VALUES ('1256', '足球', '134', '3', '1', '0', null, null, '0');
  1395.  
    INSERT INTO `pms_category` VALUES ('1257', '网球', '134', '3', '1', '0', null, null, '0');
  1396.  
    INSERT INTO `pms_category` VALUES ('1258', '排球', '134', '3', '1', '0', null, null, '0');
  1397.  
    INSERT INTO `pms_category` VALUES ('1259', '高尔夫', '134', '3', '1', '0', null, null, '0');
  1398.  
    INSERT INTO `pms_category` VALUES ('1260', '台球', '134', '3', '1', '0', null, null, '0');
  1399.  
    INSERT INTO `pms_category` VALUES ('1261', '棋牌麻将', '134', '3', '1', '0', null, null, '0');
  1400.  
    INSERT INTO `pms_category` VALUES ('1262', '轮滑滑板', '134', '3', '1', '0', null, null, '0');
  1401.  
    INSERT INTO `pms_category` VALUES ('1263', '其他', '134', '3', '1', '0', null, null, '0');
  1402.  
    INSERT INTO `pms_category` VALUES ('1264', '0-6个月', '135', '3', '1', '0', null, null, '0');
  1403.  
    INSERT INTO `pms_category` VALUES ('1265', '6-12个月', '135', '3', '1', '0', null, null, '0');
  1404.  
    INSERT INTO `pms_category` VALUES ('1266', '1-3岁', '135', '3', '1', '0', null, null, '0');
  1405.  
    INSERT INTO `pms_category` VALUES ('1267', '3-6岁', '135', '3', '1', '0', null, null, '0');
  1406.  
    INSERT INTO `pms_category` VALUES ('1268', '6-14岁', '135', '3', '1', '0', null, null, '0');
  1407.  
    INSERT INTO `pms_category` VALUES ('1269', '14岁以上', '135', '3', '1', '0', null, null, '0');
  1408.  
    INSERT INTO `pms_category` VALUES ('1270', '遥控车', '136', '3', '1', '0', null, null, '0');
  1409.  
    INSERT INTO `pms_category` VALUES ('1271', '遥控飞机', '136', '3', '1', '0', null, null, '0');
  1410.  
    INSERT INTO `pms_category` VALUES ('1272', '遥控船', '136', '3', '1', '0', null, null, '0');
  1411.  
    INSERT INTO `pms_category` VALUES ('1273', '机器人', '136', '3', '1', '0', null, null, '0');
  1412.  
    INSERT INTO `pms_category` VALUES ('1274', '轨道/助力', '136', '3', '1', '0', null, null, '0');
  1413.  
    INSERT INTO `pms_category` VALUES ('1275', '毛绒/布艺', '137', '3', '1', '0', null, null, '0');
  1414.  
    INSERT INTO `pms_category` VALUES ('1276', '靠垫/抱枕', '137', '3', '1', '0', null, null, '0');
  1415.  
    INSERT INTO `pms_category` VALUES ('1277', '芭比娃娃', '138', '3', '1', '0', null, null, '0');
  1416.  
    INSERT INTO `pms_category` VALUES ('1278', '卡通娃娃', '138', '3', '1', '0', null, null, '0');
  1417.  
    INSERT INTO `pms_category` VALUES ('1279', '智能娃娃', '138', '3', '1', '0', null, null, '0');
  1418.  
    INSERT INTO `pms_category` VALUES ('1280', '仿真模型', '139', '3', '1', '0', null, null, '0');
  1419.  
    INSERT INTO `pms_category` VALUES ('1281', '拼插模型', '139', '3', '1', '0', null, null, '0');
  1420.  
    INSERT INTO `pms_category` VALUES ('1282', '收藏爱好', '139', '3', '1', '0', null, null, '0');
  1421.  
    INSERT INTO `pms_category` VALUES ('1283', '炫舞毯', '140', '3', '1', '0', null, null, '0');
  1422.  
    INSERT INTO `pms_category` VALUES ('1284', '爬行垫/毯', '140', '3', '1', '0', null, null, '0');
  1423.  
    INSERT INTO `pms_category` VALUES ('1285', '户外玩具', '140', '3', '1', '0', null, null, '0');
  1424.  
    INSERT INTO `pms_category` VALUES ('1286', '戏水玩具', '140', '3', '1', '0', null, null, '0');
  1425.  
    INSERT INTO `pms_category` VALUES ('1287', '电影周边', '141', '3', '1', '0', null, null, '0');
  1426.  
    INSERT INTO `pms_category` VALUES ('1288', '卡通周边', '141', '3', '1', '0', null, null, '0');
  1427.  
    INSERT INTO `pms_category` VALUES ('1289', '网游周边', '141', '3', '1', '0', null, null, '0');
  1428.  
    INSERT INTO `pms_category` VALUES ('1290', '摇铃/床铃', '142', '3', '1', '0', null, null, '0');
  1429.  
    INSERT INTO `pms_category` VALUES ('1291', '健身架', '142', '3', '1', '0', null, null, '0');
  1430.  
    INSERT INTO `pms_category` VALUES ('1292', '早教启智', '142', '3', '1', '0', null, null, '0');
  1431.  
    INSERT INTO `pms_category` VALUES ('1293', '拖拉玩具', '142', '3', '1', '0', null, null, '0');
  1432.  
    INSERT INTO `pms_category` VALUES ('1294', '积木', '143', '3', '1', '0', null, null, '0');
  1433.  
    INSERT INTO `pms_category` VALUES ('1295', '拼图', '143', '3', '1', '0', null, null, '0');
  1434.  
    INSERT INTO `pms_category` VALUES ('1296', '磁力棒', '143', '3', '1', '0', null, null, '0');
  1435.  
    INSERT INTO `pms_category` VALUES ('1297', '立体拼插', '143', '3', '1', '0', null, null, '0');
  1436.  
    INSERT INTO `pms_category` VALUES ('1298', '手工彩泥', '144', '3', '1', '0', null, null, '0');
  1437.  
    INSERT INTO `pms_category` VALUES ('1299', '绘画工具', '144', '3', '1', '0', null, null, '0');
  1438.  
    INSERT INTO `pms_category` VALUES ('1300', '情景玩具', '144', '3', '1', '0', null, null, '0');
  1439.  
    INSERT INTO `pms_category` VALUES ('1301', '减压玩具', '145', '3', '1', '0', null, null, '0');
  1440.  
    INSERT INTO `pms_category` VALUES ('1302', '创意玩具', '145', '3', '1', '0', null, null, '0');
  1441.  
    INSERT INTO `pms_category` VALUES ('1303', '钢琴', '146', '3', '1', '0', null, null, '0');
  1442.  
    INSERT INTO `pms_category` VALUES ('1304', '电子琴/电钢琴', '146', '3', '1', '0', null, null, '0');
  1443.  
    INSERT INTO `pms_category` VALUES ('1305', '吉他/尤克里里', '146', '3', '1', '0', null, null, '0');
  1444.  
    INSERT INTO `pms_category` VALUES ('1306', '打击乐器', '146', '3', '1', '0', null, null, '0');
  1445.  
    INSERT INTO `pms_category` VALUES ('1307', '西洋管弦', '146', '3', '1', '0', null, null, '0');
  1446.  
    INSERT INTO `pms_category` VALUES ('1308', '民族管弦乐器', '146', '3', '1', '0', null, null, '0');
  1447.  
    INSERT INTO `pms_category` VALUES ('1309', '乐器配件', '146', '3', '1', '0', null, null, '0');
  1448.  
    INSERT INTO `pms_category` VALUES ('1310', '电脑音乐', '146', '3', '1', '0', null, null, '0');
  1449.  
    INSERT INTO `pms_category` VALUES ('1311', '工艺礼品乐器', '146', '3', '1', '0', null, null, '0');
  1450.  
    INSERT INTO `pms_category` VALUES ('1312', '口琴/口风琴/竖笛', '146', '3', '1', '0', null, null, '0');
  1451.  
    INSERT INTO `pms_category` VALUES ('1313', '手风琴', '146', '3', '1', '0', null, null, '0');
  1452.  
    INSERT INTO `pms_category` VALUES ('1314', '双色球', '147', '3', '1', '0', null, null, '0');
  1453.  
    INSERT INTO `pms_category` VALUES ('1315', '大乐透', '147', '3', '1', '0', null, null, '0');
  1454.  
    INSERT INTO `pms_category` VALUES ('1316', '福彩3D', '147', '3', '1', '0', null, null, '0');
  1455.  
    INSERT INTO `pms_category` VALUES ('1317', '排列三', '147', '3', '1', '0', null, null, '0');
  1456.  
    INSERT INTO `pms_category` VALUES ('1318', '排列五', '147', '3', '1', '0', null, null, '0');
  1457.  
    INSERT INTO `pms_category` VALUES ('1319', '七星彩', '147', '3', '1', '0', null, null, '0');
  1458.  
    INSERT INTO `pms_category` VALUES ('1320', '七乐彩', '147', '3', '1', '0', null, null, '0');
  1459.  
    INSERT INTO `pms_category` VALUES ('1321', '竞彩足球', '147', '3', '1', '0', null, null, '0');
  1460.  
    INSERT INTO `pms_category` VALUES ('1322', '竞彩篮球', '147', '3', '1', '0', null, null, '0');
  1461.  
    INSERT INTO `pms_category` VALUES ('1323', '新时时彩', '147', '3', '1', '0', null, null, '0');
  1462.  
    INSERT INTO `pms_category` VALUES ('1324', '国内机票', '148', '3', '1', '0', null, null, '0');
  1463.  
    INSERT INTO `pms_category` VALUES ('1325', '国内酒店', '149', '3', '1', '0', null, null, '0');
  1464.  
    INSERT INTO `pms_category` VALUES ('1326', '酒店团购', '149', '3', '1', '0', null, null, '0');
  1465.  
    INSERT INTO `pms_category` VALUES ('1327', '度假', '150', '3', '1', '0', null, null, '0');
  1466.  
    INSERT INTO `pms_category` VALUES ('1328', '景点', '150', '3', '1', '0', null, null, '0');
  1467.  
    INSERT INTO `pms_category` VALUES ('1329', '租车', '150', '3', '1', '0', null, null, '0');
  1468.  
    INSERT INTO `pms_category` VALUES ('1330', '火车票', '150', '3', '1', '0', null, null, '0');
  1469.  
    INSERT INTO `pms_category` VALUES ('1331', '旅游团购', '150', '3', '1', '0', null, null, '0');
  1470.  
    INSERT INTO `pms_category` VALUES ('1332', '手机充值', '151', '3', '1', '0', null, null, '0');
  1471.  
    INSERT INTO `pms_category` VALUES ('1333', '游戏点卡', '152', '3', '1', '0', null, null, '0');
  1472.  
    INSERT INTO `pms_category` VALUES ('1334', 'QQ充值', '152', '3', '1', '0', null, null, '0');
  1473.  
    INSERT INTO `pms_category` VALUES ('1335', '电影票', '153', '3', '1', '0', null, null, '0');
  1474.  
    INSERT INTO `pms_category` VALUES ('1336', '演唱会', '153', '3', '1', '0', null, null, '0');
  1475.  
    INSERT INTO `pms_category` VALUES ('1337', '话剧歌剧', '153', '3', '1', '0', null, null, '0');
  1476.  
    INSERT INTO `pms_category` VALUES ('1338', '音乐会', '153', '3', '1', '0', null, null, '0');
  1477.  
    INSERT INTO `pms_category` VALUES ('1339', '体育赛事', '153', '3', '1', '0', null, null, '0');
  1478.  
    INSERT INTO `pms_category` VALUES ('1340', '舞蹈芭蕾', '153', '3', '1', '0', null, null, '0');
  1479.  
    INSERT INTO `pms_category` VALUES ('1341', '戏曲综艺', '153', '3', '1', '0', null, null, '0');
  1480.  
    INSERT INTO `pms_category` VALUES ('1342', '东北', '154', '3', '1', '0', null, null, '0');
  1481.  
    INSERT INTO `pms_category` VALUES ('1343', '华北', '154', '3', '1', '0', null, null, '0');
  1482.  
    INSERT INTO `pms_category` VALUES ('1344', '西北', '154', '3', '1', '0', null, null, '0');
  1483.  
    INSERT INTO `pms_category` VALUES ('1345', '华中', '154', '3', '1', '0', null, null, '0');
  1484.  
    INSERT INTO `pms_category` VALUES ('1346', '华东', '154', '3', '1', '0', null, null, '0');
  1485.  
    INSERT INTO `pms_category` VALUES ('1347', '华南', '154', '3', '1', '0', null, null, '0');
  1486.  
    INSERT INTO `pms_category` VALUES ('1348', '西南', '154', '3', '1', '0', null, null, '0');
  1487.  
    INSERT INTO `pms_category` VALUES ('1349', '苹果', '155', '3', '1', '0', null, null, '0');
  1488.  
    INSERT INTO `pms_category` VALUES ('1350', '橙子', '155', '3', '1', '0', null, null, '0');
  1489.  
    INSERT INTO `pms_category` VALUES ('1351', '奇异果/猕猴桃', '155', '3', '1', '0', null, null, '0');
  1490.  
    INSERT INTO `pms_category` VALUES ('1352', '车厘子/樱桃', '155', '3', '1', '0', null, null, '0');
  1491.  
    INSERT INTO `pms_category` VALUES ('1353', '芒果', '155', '3', '1', '0', null, null, '0');
  1492.  
    INSERT INTO `pms_category` VALUES ('1354', '蓝莓', '155', '3', '1', '0', null, null, '0');
  1493.  
    INSERT INTO `pms_category` VALUES ('1355', '火龙果', '155', '3', '1', '0', null, null, '0');
  1494.  
    INSERT INTO `pms_category` VALUES ('1356', '葡萄/提子', '155', '3', '1', '0', null, null, '0');
  1495.  
    INSERT INTO `pms_category` VALUES ('1357', '柚子', '155', '3', '1', '0', null, null, '0');
  1496.  
    INSERT INTO `pms_category` VALUES ('1358', '香蕉', '155', '3', '1', '0', null, null, '0');
  1497.  
    INSERT INTO `pms_category` VALUES ('1359', '牛油果', '155', '3', '1', '0', null, null, '0');
  1498.  
    INSERT INTO `pms_category` VALUES ('1360', '梨', '155', '3', '1', '0', null, null, '0');
  1499.  
    INSERT INTO `pms_category` VALUES ('1361', '菠萝/凤梨', '155', '3', '1', '0', null, null, '0');
  1500.  
    INSERT INTO `pms_category` VALUES ('1362', '桔/橘', '155', '3', '1', '0', null, null, '0');
  1501.  
    INSERT INTO `pms_category` VALUES ('1363', '柠檬', '155', '3', '1', '0', null, null, '0');
  1502.  
    INSERT INTO `pms_category` VALUES ('1364', '草莓', '155', '3', '1', '0', null, null, '0');
  1503.  
    INSERT INTO `pms_category` VALUES ('1365', '桃/李/杏', '155', '3', '1', '0', null, null, '0');
  1504.  
    INSERT INTO `pms_category` VALUES ('1366', '更多水果', '155', '3', '1', '0', null, null, '0');
  1505.  
    INSERT INTO `pms_category` VALUES ('1367', '水果礼盒/券', '155', '3', '1', '0', null, null, '0');
  1506.  
    INSERT INTO `pms_category` VALUES ('1368', '牛肉', '156', '3', '1', '0', null, null, '0');
  1507.  
    INSERT INTO `pms_category` VALUES ('1369', '羊肉', '156', '3', '1', '0', null, null, '0');
  1508.  
    INSERT INTO `pms_category` VALUES ('1370', '猪肉', '156', '3', '1', '0', null, null, '0');
  1509.  
    INSERT INTO `pms_category` VALUES ('1371', '内脏类', '156', '3', '1', '0', null, null, '0');
  1510.  
    INSERT INTO `pms_category` VALUES ('1372', '鱼类', '157', '3', '1', '0', null, null, '0');
  1511.  
    INSERT INTO `pms_category` VALUES ('1373', '虾类', '157', '3', '1', '0', null, null, '0');
  1512.  
    INSERT INTO `pms_category` VALUES ('1374', '蟹类', '157', '3', '1', '0', null, null, '0');
  1513.  
    INSERT INTO `pms_category` VALUES ('1375', '贝类', '157', '3', '1', '0', null, null, '0');
  1514.  
    INSERT INTO `pms_category` VALUES ('1376', '海参', '157', '3', '1', '0', null, null, '0');
  1515.  
    INSERT INTO `pms_category` VALUES ('1377', '海产干货', '157', '3', '1', '0', null, null, '0');
  1516.  
    INSERT INTO `pms_category` VALUES ('1378', '其他水产', '157', '3', '1', '0', null, null, '0');
  1517.  
    INSERT INTO `pms_category` VALUES ('1379', '海产礼盒', '157', '3', '1', '0', null, null, '0');
  1518.  
    INSERT INTO `pms_category` VALUES ('1380', '鸡肉', '158', '3', '1', '0', null, null, '0');
  1519.  
    INSERT INTO `pms_category` VALUES ('1381', '鸭肉', '158', '3', '1', '0', null, null, '0');
  1520.  
    INSERT INTO `pms_category` VALUES ('1382', '蛋类', '158', '3', '1', '0', null, null, '0');
  1521.  
    INSERT INTO `pms_category` VALUES ('1383', '其他禽类', '158', '3', '1', '0', null, null, '0');
  1522.  
    INSERT INTO `pms_category` VALUES ('1384', '水饺/馄饨', '159', '3', '1', '0', null, null, '0');
  1523.  
    INSERT INTO `pms_category` VALUES ('1385', '汤圆/元宵', '159', '3', '1', '0', null, null, '0');
  1524.  
    INSERT INTO `pms_category` VALUES ('1386', '面点', '159', '3', '1', '0', null, null, '0');
  1525.  
    INSERT INTO `pms_category` VALUES ('1387', '火锅丸串', '159', '3', '1', '0', null, null, '0');
  1526.  
    INSERT INTO `pms_category` VALUES ('1388', '速冻半成品', '159', '3', '1', '0', null, null, '0');
  1527.  
    INSERT INTO `pms_category` VALUES ('1389', '奶酪黄油', '159', '3', '1', '0', null, null, '0');
  1528.  
    INSERT INTO `pms_category` VALUES ('1390', '熟食', '160', '3', '1', '0', null, null, '0');
  1529.  
    INSERT INTO `pms_category` VALUES ('1391', '腊肠/腊肉', '160', '3', '1', '0', null, null, '0');
  1530.  
    INSERT INTO `pms_category` VALUES ('1392', '火腿', '160', '3', '1', '0', null, null, '0');
  1531.  
    INSERT INTO `pms_category` VALUES ('1393', '糕点', '160', '3', '1', '0', null, null, '0');
  1532.  
    INSERT INTO `pms_category` VALUES ('1394', '礼品卡券', '160', '3', '1', '0', null, null, '0');
  1533.  
    INSERT INTO `pms_category` VALUES ('1395', '冷藏果蔬汁', '161', '3', '1', '0', null, null, '0');
  1534.  
    INSERT INTO `pms_category` VALUES ('1396', '冰激凌', '161', '3', '1', '0', null, null, '0');
  1535.  
    INSERT INTO `pms_category` VALUES ('1397', '其他', '161', '3', '1', '0', null, null, '0');
  1536.  
    INSERT INTO `pms_category` VALUES ('1398', '叶菜类', '162', '3', '1', '0', null, null, '0');
  1537.  
    INSERT INTO `pms_category` VALUES ('1399', '茄果瓜类', '162', '3', '1', '0', null, null, '0');
  1538.  
    INSERT INTO `pms_category` VALUES ('1400', '根茎类', '162', '3', '1', '0', null, null, '0');
  1539.  
    INSERT INTO `pms_category` VALUES ('1401', '鲜菌菇', '162', '3', '1', '0', null, null, '0');
  1540.  
    INSERT INTO `pms_category` VALUES ('1402', '葱姜蒜椒', '162', '3', '1', '0', null, null, '0');
  1541.  
    INSERT INTO `pms_category` VALUES ('1403', '半加工蔬菜', '162', '3', '1', '0', null, null, '0');
  1542.  
    INSERT INTO `pms_category` VALUES ('1404', '微型车', '163', '3', '1', '0', null, null, '0');
  1543.  
    INSERT INTO `pms_category` VALUES ('1405', '小型车', '163', '3', '1', '0', null, null, '0');
  1544.  
    INSERT INTO `pms_category` VALUES ('1406', '紧凑型车', '163', '3', '1', '0', null, null, '0');
  1545.  
    INSERT INTO `pms_category` VALUES ('1407', '中型车', '163', '3', '1', '0', null, null, '0');
  1546.  
    INSERT INTO `pms_category` VALUES ('1408', '中大型车', '163', '3', '1', '0', null, null, '0');
  1547.  
    INSERT INTO `pms_category` VALUES ('1409', '豪华车', '163', '3', '1', '0', null, null, '0');
  1548.  
    INSERT INTO `pms_category` VALUES ('1410', 'MPV', '163', '3', '1', '0', null, null, '0');
  1549.  
    INSERT INTO `pms_category` VALUES ('1411', 'SUV', '163', '3', '1', '0', null, null, '0');
  1550.  
    INSERT INTO `pms_category` VALUES ('1412', '跑车', '163', '3', '1', '0', null, null, '0');
  1551.  
    INSERT INTO `pms_category` VALUES ('1413', '微型车(二手)', '164', '3', '1', '0', null, null, '0');
  1552.  
    INSERT INTO `pms_category` VALUES ('1414', '小型车(二手)', '164', '3', '1', '0', null, null, '0');
  1553.  
    INSERT INTO `pms_category` VALUES ('1415', '紧凑型车(二手)', '164', '3', '1', '0', null, null, '0');
  1554.  
    INSERT INTO `pms_category` VALUES ('1416', '中型车(二手)', '164', '3', '1', '0', null, null, '0');
  1555.  
    INSERT INTO `pms_category` VALUES ('1417', '中大型车(二手)', '164', '3', '1', '0', null, null, '0');
  1556.  
    INSERT INTO `pms_category` VALUES ('1418', '豪华车(二手)', '164', '3', '1', '0', null, null, '0');
  1557.  
    INSERT INTO `pms_category` VALUES ('1419', 'MPV(二手)', '164', '3', '1', '0', null, null, '0');
  1558.  
    INSERT INTO `pms_category` VALUES ('1420', 'SUV(二手)', '164', '3', '1', '0', null, null, '0');
  1559.  
    INSERT INTO `pms_category` VALUES ('1421', '跑车(二手)', '164', '3', '1', '0', null, null, '0');
  1560.  
    INSERT INTO `pms_category` VALUES ('1422', '皮卡(二手)', '164', '3', '1', '0', null, null, '0');
  1561.  
    INSERT INTO `pms_category` VALUES ('1423', '面包车(二手)', '164', '3', '1', '0', null, null, '0');
  1562.  
    INSERT INTO `pms_category` VALUES ('1431', 'dsa323', '1', '2', '1', null, null, null, null);
  1563.  
    INSERT INTO `pms_category` VALUES ('1432', 'fdsffdsadddd大萨达', '1431', '3', '1', null, null, null, null);
  1564.  
     
  1565.  
    -- ----------------------------
  1566.  
    -- Table structure for pms_category_brand_relation
  1567.  
    -- ----------------------------
  1568.  
    DROP TABLE IF EXISTS `pms_category_brand_relation`;
  1569.  
    CREATE TABLE `pms_category_brand_relation` (
  1570.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT,
  1571.  
    `brand_id` bigint(20) DEFAULT NULL COMMENT '品牌id',
  1572.  
    `catelog_id` bigint(20) DEFAULT NULL COMMENT '分类id',
  1573.  
    `brand_name` varchar(255) DEFAULT NULL,
  1574.  
    `catelog_name` varchar(255) DEFAULT NULL,
  1575.  
    PRIMARY KEY (`id`)
  1576.  
    ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COMMENT='品牌分类关联';
  1577.  
     
  1578.  
    -- ----------------------------
  1579.  
    -- Records of pms_category_brand_relation
  1580.  
    -- ----------------------------
  1581.  
    INSERT INTO `pms_category_brand_relation` VALUES ('13', '9', '225', '华为', '手机');
  1582.  
    INSERT INTO `pms_category_brand_relation` VALUES ('15', '9', '250', '华为', '平板电视');
  1583.  
    INSERT INTO `pms_category_brand_relation` VALUES ('16', '9', '449', '华为', '笔记本');
  1584.  
    INSERT INTO `pms_category_brand_relation` VALUES ('17', '10', '449', '小米', '笔记本');
  1585.  
    INSERT INTO `pms_category_brand_relation` VALUES ('18', '10', '225', '小米', '手机');
  1586.  
    INSERT INTO `pms_category_brand_relation` VALUES ('19', '10', '231', '小米', '移动电源');
  1587.  
    INSERT INTO `pms_category_brand_relation` VALUES ('20', '10', '233', '小米', '蓝牙耳机');
  1588.  
    INSERT INTO `pms_category_brand_relation` VALUES ('21', '10', '250', '小米', '平板电视');
  1589.  
    INSERT INTO `pms_category_brand_relation` VALUES ('22', '10', '449', '小米', '笔记本');
  1590.  
    INSERT INTO `pms_category_brand_relation` VALUES ('23', '11', '225', 'oppo', '手机');
  1591.  
    INSERT INTO `pms_category_brand_relation` VALUES ('24', '11', '227', 'oppo', '合约机');
  1592.  
    INSERT INTO `pms_category_brand_relation` VALUES ('25', '12', '225', 'Apple', '手机');
  1593.  
    INSERT INTO `pms_category_brand_relation` VALUES ('26', '12', '243', 'Apple', 'iPhone 配件');
  1594.  
    INSERT INTO `pms_category_brand_relation` VALUES ('27', '12', '366', 'Apple', '智能手表');
  1595.  
     
  1596.  
    -- ----------------------------
  1597.  
    -- Table structure for pms_comment_replay
  1598.  
    -- ----------------------------
  1599.  
    DROP TABLE IF EXISTS `pms_comment_replay`;
  1600.  
    CREATE TABLE `pms_comment_replay` (
  1601.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  1602.  
    `comment_id` bigint(20) DEFAULT NULL COMMENT '评论id',
  1603.  
    `reply_id` bigint(20) DEFAULT NULL COMMENT '回复id',
  1604.  
    PRIMARY KEY (`id`)
  1605.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品评价回复关系';
  1606.  
     
  1607.  
    -- ----------------------------
  1608.  
    -- Records of pms_comment_replay
  1609.  
    -- ----------------------------
  1610.  
     
  1611.  
    -- ----------------------------
  1612.  
    -- Table structure for pms_product_attr_value
  1613.  
    -- ----------------------------
  1614.  
    DROP TABLE IF EXISTS `pms_product_attr_value`;
  1615.  
    CREATE TABLE `pms_product_attr_value` (
  1616.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  1617.  
    `spu_id` bigint(20) DEFAULT NULL COMMENT '商品id',
  1618.  
    `attr_id` bigint(20) DEFAULT NULL COMMENT '属性id',
  1619.  
    `attr_name` varchar(200) DEFAULT NULL COMMENT '属性名',
  1620.  
    `attr_value` varchar(200) DEFAULT NULL COMMENT '属性值',
  1621.  
    `attr_sort` int(11) DEFAULT NULL COMMENT '顺序',
  1622.  
    `quick_show` tinyint(4) DEFAULT NULL COMMENT '快速展示【是否展示在介绍上;0-否 1-是】',
  1623.  
    PRIMARY KEY (`id`)
  1624.  
    ) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COMMENT='spu属性值';
  1625.  
     
  1626.  
    -- ----------------------------
  1627.  
    -- Records of pms_product_attr_value
  1628.  
    -- ----------------------------
  1629.  
    INSERT INTO `pms_product_attr_value` VALUES ('55', '13', '7', '入网型号', 'A2217', null, '0');
  1630.  
    INSERT INTO `pms_product_attr_value` VALUES ('56', '13', '8', '上市年份', '2018', null, '0');
  1631.  
    INSERT INTO `pms_product_attr_value` VALUES ('57', '13', '13', '机身长度(mm)', '158.3', null, '0');
  1632.  
    INSERT INTO `pms_product_attr_value` VALUES ('58', '13', '14', '机身材质工艺', '以官网信息为准', null, '0');
  1633.  
    INSERT INTO `pms_product_attr_value` VALUES ('59', '13', '15', 'CPU品牌', '以官网信息为准', null, '1');
  1634.  
    INSERT INTO `pms_product_attr_value` VALUES ('60', '13', '16', 'CPU型号', 'A13仿生', null, '1');
  1635.  
    INSERT INTO `pms_product_attr_value` VALUES ('61', '11', '7', '入网型号', 'LIO-AL00', null, '1');
  1636.  
    INSERT INTO `pms_product_attr_value` VALUES ('62', '11', '8', '上市年份', '2019', null, '0');
  1637.  
    INSERT INTO `pms_product_attr_value` VALUES ('63', '11', '11', '机身颜色', '黑色', null, '1');
  1638.  
    INSERT INTO `pms_product_attr_value` VALUES ('64', '11', '13', '机身长度(mm)', '158.3', null, '1');
  1639.  
    INSERT INTO `pms_product_attr_value` VALUES ('65', '11', '14', '机身材质工艺', '玻璃;陶瓷', null, '0');
  1640.  
    INSERT INTO `pms_product_attr_value` VALUES ('66', '11', '15', 'CPU品牌', '海思(Hisilicon)', null, '1');
  1641.  
    INSERT INTO `pms_product_attr_value` VALUES ('67', '11', '16', 'CPU型号', 'HUAWEI Kirin 970', null, '1');
  1642.  
     
  1643.  
    -- ----------------------------
  1644.  
    -- Table structure for pms_sku_images
  1645.  
    -- ----------------------------
  1646.  
    DROP TABLE IF EXISTS `pms_sku_images`;
  1647.  
    CREATE TABLE `pms_sku_images` (
  1648.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  1649.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  1650.  
    `img_url` varchar(255) DEFAULT NULL COMMENT '图片地址',
  1651.  
    `img_sort` int(11) DEFAULT NULL COMMENT '排序',
  1652.  
    `default_img` int(11) DEFAULT NULL COMMENT '默认图[0 - 不是默认图,1 - 是默认图]',
  1653.  
    PRIMARY KEY (`id`)
  1654.  
    ) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb4 COMMENT='sku图片';
  1655.  
     
  1656.  
    -- ----------------------------
  1657.  
    -- Records of pms_sku_images
  1658.  
    -- ----------------------------
  1659.  
    INSERT INTO `pms_sku_images` VALUES ('1', '1', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', null, '0');
  1660.  
    INSERT INTO `pms_sku_images` VALUES ('2', '1', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/20f83b0c-86ba-4a64-808a-f2ace190ea2c_1f15cdbcf9e1273c.jpg', null, '0');
  1661.  
    INSERT INTO `pms_sku_images` VALUES ('3', '1', '', null, '0');
  1662.  
    INSERT INTO `pms_sku_images` VALUES ('4', '1', '', null, '0');
  1663.  
    INSERT INTO `pms_sku_images` VALUES ('5', '1', '', null, '0');
  1664.  
    INSERT INTO `pms_sku_images` VALUES ('6', '1', '', null, '0');
  1665.  
    INSERT INTO `pms_sku_images` VALUES ('7', '1', '', null, '0');
  1666.  
    INSERT INTO `pms_sku_images` VALUES ('8', '1', '', null, '0');
  1667.  
    INSERT INTO `pms_sku_images` VALUES ('9', '1', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/d12516dd-43cf-4ace-8dc9-14618d2d75e4_919c850652e98031.jpg', null, '0');
  1668.  
    INSERT INTO `pms_sku_images` VALUES ('10', '1', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/60e65a44-f943-4ed5-87c8-8cf90f403018_d511faab82abb34b.jpg', null, '1');
  1669.  
    INSERT INTO `pms_sku_images` VALUES ('11', '2', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', null, '1');
  1670.  
    INSERT INTO `pms_sku_images` VALUES ('12', '2', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/20f83b0c-86ba-4a64-808a-f2ace190ea2c_1f15cdbcf9e1273c.jpg', null, '0');
  1671.  
    INSERT INTO `pms_sku_images` VALUES ('13', '2', '', null, '0');
  1672.  
    INSERT INTO `pms_sku_images` VALUES ('14', '2', '', null, '0');
  1673.  
    INSERT INTO `pms_sku_images` VALUES ('15', '2', '', null, '0');
  1674.  
    INSERT INTO `pms_sku_images` VALUES ('16', '2', '', null, '0');
  1675.  
    INSERT INTO `pms_sku_images` VALUES ('17', '2', '', null, '0');
  1676.  
    INSERT INTO `pms_sku_images` VALUES ('18', '2', '', null, '0');
  1677.  
    INSERT INTO `pms_sku_images` VALUES ('19', '2', '', null, '0');
  1678.  
    INSERT INTO `pms_sku_images` VALUES ('20', '2', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/60e65a44-f943-4ed5-87c8-8cf90f403018_d511faab82abb34b.jpg', null, '0');
  1679.  
    INSERT INTO `pms_sku_images` VALUES ('21', '3', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', null, '1');
  1680.  
    INSERT INTO `pms_sku_images` VALUES ('22', '3', '', null, '0');
  1681.  
    INSERT INTO `pms_sku_images` VALUES ('23', '3', '', null, '0');
  1682.  
    INSERT INTO `pms_sku_images` VALUES ('24', '3', '', null, '0');
  1683.  
    INSERT INTO `pms_sku_images` VALUES ('25', '3', '', null, '0');
  1684.  
    INSERT INTO `pms_sku_images` VALUES ('26', '3', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/099f297e-ddea-4fb5-87c7-78cd88e500c0_28f296629cca865e.jpg', null, '0');
  1685.  
    INSERT INTO `pms_sku_images` VALUES ('27', '3', '', null, '0');
  1686.  
    INSERT INTO `pms_sku_images` VALUES ('28', '3', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/7aa1019e-4e01-49dd-8ac4-7d2794d0b1a8_335b2c690e43a8f8.jpg', null, '0');
  1687.  
    INSERT INTO `pms_sku_images` VALUES ('29', '3', '', null, '0');
  1688.  
    INSERT INTO `pms_sku_images` VALUES ('30', '3', '', null, '0');
  1689.  
    INSERT INTO `pms_sku_images` VALUES ('31', '4', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', null, '1');
  1690.  
    INSERT INTO `pms_sku_images` VALUES ('32', '4', '', null, '0');
  1691.  
    INSERT INTO `pms_sku_images` VALUES ('33', '4', '', null, '0');
  1692.  
    INSERT INTO `pms_sku_images` VALUES ('34', '4', '', null, '0');
  1693.  
    INSERT INTO `pms_sku_images` VALUES ('35', '4', '', null, '0');
  1694.  
    INSERT INTO `pms_sku_images` VALUES ('36', '4', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/099f297e-ddea-4fb5-87c7-78cd88e500c0_28f296629cca865e.jpg', null, '0');
  1695.  
    INSERT INTO `pms_sku_images` VALUES ('37', '4', '', null, '0');
  1696.  
    INSERT INTO `pms_sku_images` VALUES ('38', '4', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/7aa1019e-4e01-49dd-8ac4-7d2794d0b1a8_335b2c690e43a8f8.jpg', null, '0');
  1697.  
    INSERT INTO `pms_sku_images` VALUES ('39', '4', '', null, '0');
  1698.  
    INSERT INTO `pms_sku_images` VALUES ('40', '4', '', null, '0');
  1699.  
    INSERT INTO `pms_sku_images` VALUES ('41', '5', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', null, '1');
  1700.  
    INSERT INTO `pms_sku_images` VALUES ('42', '5', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/20f83b0c-86ba-4a64-808a-f2ace190ea2c_1f15cdbcf9e1273c.jpg', null, '0');
  1701.  
    INSERT INTO `pms_sku_images` VALUES ('43', '5', '', null, '0');
  1702.  
    INSERT INTO `pms_sku_images` VALUES ('44', '5', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/9a6ba5c0-0a31-4364-8759-012bdfbf5ad3_3c24f9cd69534030.jpg', null, '0');
  1703.  
    INSERT INTO `pms_sku_images` VALUES ('45', '5', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/a73ef55a-79b4-41d9-8eb6-760c8b5a33dc_23d9fbb256ea5d4a.jpg', null, '0');
  1704.  
    INSERT INTO `pms_sku_images` VALUES ('46', '5', '', null, '0');
  1705.  
    INSERT INTO `pms_sku_images` VALUES ('47', '5', '', null, '0');
  1706.  
    INSERT INTO `pms_sku_images` VALUES ('48', '5', '', null, '0');
  1707.  
    INSERT INTO `pms_sku_images` VALUES ('49', '5', '', null, '0');
  1708.  
    INSERT INTO `pms_sku_images` VALUES ('50', '5', '', null, '0');
  1709.  
    INSERT INTO `pms_sku_images` VALUES ('51', '6', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', null, '1');
  1710.  
    INSERT INTO `pms_sku_images` VALUES ('52', '6', '', null, '0');
  1711.  
    INSERT INTO `pms_sku_images` VALUES ('53', '6', '', null, '0');
  1712.  
    INSERT INTO `pms_sku_images` VALUES ('54', '6', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/9a6ba5c0-0a31-4364-8759-012bdfbf5ad3_3c24f9cd69534030.jpg', null, '0');
  1713.  
    INSERT INTO `pms_sku_images` VALUES ('55', '6', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/a73ef55a-79b4-41d9-8eb6-760c8b5a33dc_23d9fbb256ea5d4a.jpg', null, '0');
  1714.  
    INSERT INTO `pms_sku_images` VALUES ('56', '6', '', null, '0');
  1715.  
    INSERT INTO `pms_sku_images` VALUES ('57', '6', '', null, '0');
  1716.  
    INSERT INTO `pms_sku_images` VALUES ('58', '6', '', null, '0');
  1717.  
    INSERT INTO `pms_sku_images` VALUES ('59', '6', '', null, '0');
  1718.  
    INSERT INTO `pms_sku_images` VALUES ('60', '6', '', null, '0');
  1719.  
    INSERT INTO `pms_sku_images` VALUES ('61', '7', '', null, '0');
  1720.  
    INSERT INTO `pms_sku_images` VALUES ('62', '7', '', null, '0');
  1721.  
    INSERT INTO `pms_sku_images` VALUES ('63', '7', '', null, '0');
  1722.  
    INSERT INTO `pms_sku_images` VALUES ('64', '7', '', null, '0');
  1723.  
    INSERT INTO `pms_sku_images` VALUES ('65', '7', '', null, '0');
  1724.  
    INSERT INTO `pms_sku_images` VALUES ('66', '7', '', null, '0');
  1725.  
    INSERT INTO `pms_sku_images` VALUES ('67', '7', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/38492c9f-b0e0-4cba-87a9-77cb6189ea73_73ab4d2e818d2211.jpg', null, '0');
  1726.  
    INSERT INTO `pms_sku_images` VALUES ('68', '7', '', null, '0');
  1727.  
    INSERT INTO `pms_sku_images` VALUES ('69', '7', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/d12516dd-43cf-4ace-8dc9-14618d2d75e4_919c850652e98031.jpg', null, '0');
  1728.  
    INSERT INTO `pms_sku_images` VALUES ('70', '7', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/60e65a44-f943-4ed5-87c8-8cf90f403018_d511faab82abb34b.jpg', null, '1');
  1729.  
    INSERT INTO `pms_sku_images` VALUES ('71', '8', '', null, '0');
  1730.  
    INSERT INTO `pms_sku_images` VALUES ('72', '8', '', null, '0');
  1731.  
    INSERT INTO `pms_sku_images` VALUES ('73', '8', '', null, '0');
  1732.  
    INSERT INTO `pms_sku_images` VALUES ('74', '8', '', null, '0');
  1733.  
    INSERT INTO `pms_sku_images` VALUES ('75', '8', '', null, '0');
  1734.  
    INSERT INTO `pms_sku_images` VALUES ('76', '8', '', null, '0');
  1735.  
    INSERT INTO `pms_sku_images` VALUES ('77', '8', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/38492c9f-b0e0-4cba-87a9-77cb6189ea73_73ab4d2e818d2211.jpg', null, '0');
  1736.  
    INSERT INTO `pms_sku_images` VALUES ('78', '8', '', null, '0');
  1737.  
    INSERT INTO `pms_sku_images` VALUES ('79', '8', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/d12516dd-43cf-4ace-8dc9-14618d2d75e4_919c850652e98031.jpg', null, '0');
  1738.  
    INSERT INTO `pms_sku_images` VALUES ('80', '8', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/60e65a44-f943-4ed5-87c8-8cf90f403018_d511faab82abb34b.jpg', null, '1');
  1739.  
    INSERT INTO `pms_sku_images` VALUES ('81', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', null, '0');
  1740.  
    INSERT INTO `pms_sku_images` VALUES ('82', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/bc4825d6-2a6c-43f8-8d75-5f35b77b9514_a2c208410ae84d1f.jpg', null, '1');
  1741.  
    INSERT INTO `pms_sku_images` VALUES ('83', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/f968b6ac-2fca-4440-842f-8db8b76478f0_b8494bf281991f94.jpg', null, '0');
  1742.  
    INSERT INTO `pms_sku_images` VALUES ('84', '10', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', null, '0');
  1743.  
    INSERT INTO `pms_sku_images` VALUES ('85', '10', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/bc4825d6-2a6c-43f8-8d75-5f35b77b9514_a2c208410ae84d1f.jpg', null, '1');
  1744.  
    INSERT INTO `pms_sku_images` VALUES ('86', '10', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/f968b6ac-2fca-4440-842f-8db8b76478f0_b8494bf281991f94.jpg', null, '0');
  1745.  
    INSERT INTO `pms_sku_images` VALUES ('87', '11', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', null, '0');
  1746.  
    INSERT INTO `pms_sku_images` VALUES ('88', '11', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/bc4825d6-2a6c-43f8-8d75-5f35b77b9514_a2c208410ae84d1f.jpg', null, '1');
  1747.  
    INSERT INTO `pms_sku_images` VALUES ('89', '11', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/f968b6ac-2fca-4440-842f-8db8b76478f0_b8494bf281991f94.jpg', null, '0');
  1748.  
    INSERT INTO `pms_sku_images` VALUES ('90', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', null, '1');
  1749.  
    INSERT INTO `pms_sku_images` VALUES ('91', '13', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', null, '1');
  1750.  
    INSERT INTO `pms_sku_images` VALUES ('92', '14', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', null, '1');
  1751.  
    INSERT INTO `pms_sku_images` VALUES ('93', '15', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1752.  
    INSERT INTO `pms_sku_images` VALUES ('94', '16', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1753.  
    INSERT INTO `pms_sku_images` VALUES ('95', '17', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1754.  
    INSERT INTO `pms_sku_images` VALUES ('96', '18', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1755.  
    INSERT INTO `pms_sku_images` VALUES ('97', '19', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1756.  
    INSERT INTO `pms_sku_images` VALUES ('98', '20', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1757.  
    INSERT INTO `pms_sku_images` VALUES ('99', '21', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/1756fa6d-1934-4d5c-8faf-84b3d882fe53_5b5e74d0978360a1.jpg', null, '0');
  1758.  
    INSERT INTO `pms_sku_images` VALUES ('100', '21', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/e21777b3-18ac-4580-819e-497c3aa25e4f_6a1b2703a9ed8737.jpg', null, '1');
  1759.  
    INSERT INTO `pms_sku_images` VALUES ('101', '21', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/2419c5cf-a641-4ec1-8f94-64981dc207f6_63e862164165f483.jpg', null, '0');
  1760.  
    INSERT INTO `pms_sku_images` VALUES ('102', '22', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/1756fa6d-1934-4d5c-8faf-84b3d882fe53_5b5e74d0978360a1.jpg', null, '0');
  1761.  
    INSERT INTO `pms_sku_images` VALUES ('103', '22', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/e21777b3-18ac-4580-819e-497c3aa25e4f_6a1b2703a9ed8737.jpg', null, '1');
  1762.  
    INSERT INTO `pms_sku_images` VALUES ('104', '22', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/2419c5cf-a641-4ec1-8f94-64981dc207f6_63e862164165f483.jpg', null, '0');
  1763.  
    INSERT INTO `pms_sku_images` VALUES ('105', '23', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/1756fa6d-1934-4d5c-8faf-84b3d882fe53_5b5e74d0978360a1.jpg', null, '0');
  1764.  
    INSERT INTO `pms_sku_images` VALUES ('106', '23', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/e21777b3-18ac-4580-819e-497c3aa25e4f_6a1b2703a9ed8737.jpg', null, '1');
  1765.  
    INSERT INTO `pms_sku_images` VALUES ('107', '23', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/2419c5cf-a641-4ec1-8f94-64981dc207f6_63e862164165f483.jpg', null, '0');
  1766.  
    INSERT INTO `pms_sku_images` VALUES ('108', '24', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1767.  
    INSERT INTO `pms_sku_images` VALUES ('109', '25', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1768.  
    INSERT INTO `pms_sku_images` VALUES ('110', '26', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, '1');
  1769.  
     
  1770.  
    -- ----------------------------
  1771.  
    -- Table structure for pms_sku_info
  1772.  
    -- ----------------------------
  1773.  
    DROP TABLE IF EXISTS `pms_sku_info`;
  1774.  
    CREATE TABLE `pms_sku_info` (
  1775.  
    `sku_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'skuId',
  1776.  
    `spu_id` bigint(20) DEFAULT NULL COMMENT 'spuId',
  1777.  
    `sku_name` varchar(255) DEFAULT NULL COMMENT 'sku名称',
  1778.  
    `sku_desc` varchar(2000) DEFAULT NULL COMMENT 'sku介绍描述',
  1779.  
    `catalog_id` bigint(20) DEFAULT NULL COMMENT '所属分类id',
  1780.  
    `brand_id` bigint(20) DEFAULT NULL COMMENT '品牌id',
  1781.  
    `sku_default_img` varchar(255) DEFAULT NULL COMMENT '默认图片',
  1782.  
    `sku_title` varchar(255) DEFAULT NULL COMMENT '标题',
  1783.  
    `sku_subtitle` varchar(2000) DEFAULT NULL COMMENT '副标题',
  1784.  
    `price` decimal(18,4) DEFAULT NULL COMMENT '价格',
  1785.  
    `sale_count` bigint(20) DEFAULT NULL COMMENT '销量',
  1786.  
    PRIMARY KEY (`sku_id`)
  1787.  
    ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COMMENT='sku信息';
  1788.  
     
  1789.  
    -- ----------------------------
  1790.  
    -- Records of pms_sku_info
  1791.  
    -- ----------------------------
  1792.  
    INSERT INTO `pms_sku_info` VALUES ('1', '11', '华为 HUAWEI Mate 30 Pro 星河银 8GB 256GB', null, '225', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/60e65a44-f943-4ed5-87c8-8cf90f403018_d511faab82abb34b.jpg', '华为 HUAWEI Mate 30 Pro 星河银 8GB 256GB麒麟990旗舰芯片OLED环幕屏双4000万徕卡电影四摄4G全网通手机', '【现货抢购!享白条12期免息!】麒麟990,OLED环幕屏双4000万徕卡电影四摄;Mate30系列享12期免息》', '6299.0000', '0');
  1793.  
    INSERT INTO `pms_sku_info` VALUES ('2', '11', '华为 HUAWEI Mate 30 Pro 星河银 8GB 128GB', null, '225', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', '华为 HUAWEI Mate 30 Pro 星河银 8GB 128GB麒麟990旗舰芯片OLED环幕屏双4000万徕卡电影四摄4G全网通手机', '【现货抢购!享白条12期免息!】麒麟990,OLED环幕屏双4000万徕卡电影四摄;Mate30系列享12期免息》', '5799.0000', '0');
  1794.  
    INSERT INTO `pms_sku_info` VALUES ('3', '11', '华为 HUAWEI Mate 30 Pro 亮黑色 8GB 256GB', null, '225', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', '华为 HUAWEI Mate 30 Pro 亮黑色 8GB 256GB麒麟990旗舰芯片OLED环幕屏双4000万徕卡电影四摄4G全网通手机', '【现货抢购!享白条12期免息!】麒麟990,OLED环幕屏双4000万徕卡电影四摄;Mate30系列享12期免息》', '6299.0000', '0');
  1795.  
    INSERT INTO `pms_sku_info` VALUES ('4', '11', '华为 HUAWEI Mate 30 Pro 亮黑色 8GB 128GB', null, '225', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', '华为 HUAWEI Mate 30 Pro 亮黑色 8GB 128GB麒麟990旗舰芯片OLED环幕屏双4000万徕卡电影四摄4G全网通手机', '【现货抢购!享白条12期免息!】麒麟990,OLED环幕屏双4000万徕卡电影四摄;Mate30系列享12期免息》', '5799.0000', '0');
  1796.  
    INSERT INTO `pms_sku_info` VALUES ('5', '11', '华为 HUAWEI Mate 30 Pro 翡冷翠 8GB 256GB', null, '225', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', '华为 HUAWEI Mate 30 Pro 翡冷翠 8GB 256GB麒麟990旗舰芯片OLED环幕屏双4000万徕卡电影四摄4G全网通手机', '【现货抢购!享白条12期免息!】麒麟990,OLED环幕屏双4000万徕卡电影四摄;Mate30系列享12期免息》', '6299.0000', '0');
  1797.  
    INSERT INTO `pms_sku_info` VALUES ('6', '11', '华为 HUAWEI Mate 30 Pro 翡冷翠 8GB 128GB', null, '225', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', '华为 HUAWEI Mate 30 Pro 翡冷翠 8GB 128GB麒麟990旗舰芯片OLED环幕屏双4000万徕卡电影四摄4G全网通手机', '【现货抢购!享白条12期免息!】麒麟990,OLED环幕屏双4000万徕卡电影四摄;Mate30系列享12期免息》', '5799.0000', '0');
  1798.  
    INSERT INTO `pms_sku_info` VALUES ('7', '11', '华为 HUAWEI Mate 30 Pro 罗兰紫 8GB 256GB', null, '225', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/60e65a44-f943-4ed5-87c8-8cf90f403018_d511faab82abb34b.jpg', '华为 HUAWEI Mate 30 Pro 罗兰紫 8GB 256GB麒麟990旗舰芯片OLED环幕屏双4000万徕卡电影四摄4G全网通手机', '【现货抢购!享白条12期免息!】麒麟990,OLED环幕屏双4000万徕卡电影四摄;Mate30系列享12期免息》', '6299.0000', '0');
  1799.  
    INSERT INTO `pms_sku_info` VALUES ('8', '11', '华为 HUAWEI Mate 30 Pro 罗兰紫 8GB 128GB', null, '225', '9', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/60e65a44-f943-4ed5-87c8-8cf90f403018_d511faab82abb34b.jpg', '华为 HUAWEI Mate 30 Pro 罗兰紫 8GB 128GB麒麟990旗舰芯片OLED环幕屏双4000万徕卡电影四摄4G全网通手机', '【现货抢购!享白条12期免息!】麒麟990,OLED环幕屏双4000万徕卡电影四摄;Mate30系列享12期免息》', '5799.0000', '0');
  1800.  
    INSERT INTO `pms_sku_info` VALUES ('9', '13', ' Apple iPhone 11 (A2223) 黑色 128GB ', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/bc4825d6-2a6c-43f8-8d75-5f35b77b9514_a2c208410ae84d1f.jpg', ' Apple iPhone 11 (A2223) 黑色 128GB 移动联通电信4G手机 双卡双待 最后几件优惠', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5999.0000', '0');
  1801.  
    INSERT INTO `pms_sku_info` VALUES ('10', '13', ' Apple iPhone 11 (A2223) 黑色 256GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/bc4825d6-2a6c-43f8-8d75-5f35b77b9514_a2c208410ae84d1f.jpg', ' Apple iPhone 11 (A2223) 黑色 256GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '6799.0000', '0');
  1802.  
    INSERT INTO `pms_sku_info` VALUES ('11', '13', ' Apple iPhone 11 (A2223) 黑色 64GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/bc4825d6-2a6c-43f8-8d75-5f35b77b9514_a2c208410ae84d1f.jpg', ' Apple iPhone 11 (A2223) 黑色 64GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5499.0000', '0');
  1803.  
    INSERT INTO `pms_sku_info` VALUES ('12', '13', ' Apple iPhone 11 (A2223) 白色 128GB ', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', ' Apple iPhone 11 (A2223) 白色 128GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5999.0000', '0');
  1804.  
    INSERT INTO `pms_sku_info` VALUES ('13', '13', ' Apple iPhone 11 (A2223) 白色 256GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', ' Apple iPhone 11 (A2223) 白色 256GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '6799.0000', '0');
  1805.  
    INSERT INTO `pms_sku_info` VALUES ('14', '13', ' Apple iPhone 11 (A2223) 白色 64GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', ' Apple iPhone 11 (A2223) 白色 64GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5499.0000', '0');
  1806.  
    INSERT INTO `pms_sku_info` VALUES ('15', '13', ' Apple iPhone 11 (A2223) 绿色 128GB ', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 绿色 128GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5999.0000', '0');
  1807.  
    INSERT INTO `pms_sku_info` VALUES ('16', '13', ' Apple iPhone 11 (A2223) 绿色 256GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 绿色 256GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '6799.0000', '0');
  1808.  
    INSERT INTO `pms_sku_info` VALUES ('17', '13', ' Apple iPhone 11 (A2223) 绿色 64GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 绿色 64GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5499.0000', '0');
  1809.  
    INSERT INTO `pms_sku_info` VALUES ('18', '13', ' Apple iPhone 11 (A2223) 黄色 128GB ', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 黄色 128GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5999.0000', '0');
  1810.  
    INSERT INTO `pms_sku_info` VALUES ('19', '13', ' Apple iPhone 11 (A2223) 黄色 256GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 黄色 256GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '6799.0000', '0');
  1811.  
    INSERT INTO `pms_sku_info` VALUES ('20', '13', ' Apple iPhone 11 (A2223) 黄色 64GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 黄色 64GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5499.0000', '0');
  1812.  
    INSERT INTO `pms_sku_info` VALUES ('21', '13', ' Apple iPhone 11 (A2223) 红色 128GB ', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/e21777b3-18ac-4580-819e-497c3aa25e4f_6a1b2703a9ed8737.jpg', ' Apple iPhone 11 (A2223) 红色 128GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5999.0000', '0');
  1813.  
    INSERT INTO `pms_sku_info` VALUES ('22', '13', ' Apple iPhone 11 (A2223) 红色 256GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/e21777b3-18ac-4580-819e-497c3aa25e4f_6a1b2703a9ed8737.jpg', ' Apple iPhone 11 (A2223) 红色 256GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '6799.0000', '0');
  1814.  
    INSERT INTO `pms_sku_info` VALUES ('23', '13', ' Apple iPhone 11 (A2223) 红色 64GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/e21777b3-18ac-4580-819e-497c3aa25e4f_6a1b2703a9ed8737.jpg', ' Apple iPhone 11 (A2223) 红色 64GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5499.0000', '0');
  1815.  
    INSERT INTO `pms_sku_info` VALUES ('24', '13', ' Apple iPhone 11 (A2223) 紫色 128GB ', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 紫色 128GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5999.0000', '0');
  1816.  
    INSERT INTO `pms_sku_info` VALUES ('25', '13', ' Apple iPhone 11 (A2223) 紫色 256GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 紫色 256GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '6799.0000', '0');
  1817.  
    INSERT INTO `pms_sku_info` VALUES ('26', '13', ' Apple iPhone 11 (A2223) 紫色 64GB', null, '225', '12', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', ' Apple iPhone 11 (A2223) 紫色 64GB 移动联通电信4G手机 双卡双待', 'iPhoneXS系列性能强劲,样样出色,现特惠来袭,低至5399元!详情请点击!', '5499.0000', '0');
  1818.  
     
  1819.  
    -- ----------------------------
  1820.  
    -- Table structure for pms_sku_sale_attr_value
  1821.  
    -- ----------------------------
  1822.  
    DROP TABLE IF EXISTS `pms_sku_sale_attr_value`;
  1823.  
    CREATE TABLE `pms_sku_sale_attr_value` (
  1824.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  1825.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  1826.  
    `attr_id` bigint(20) DEFAULT NULL COMMENT 'attr_id',
  1827.  
    `attr_name` varchar(200) DEFAULT NULL COMMENT '销售属性名',
  1828.  
    `attr_value` varchar(200) DEFAULT NULL COMMENT '销售属性值',
  1829.  
    `attr_sort` int(11) DEFAULT NULL COMMENT '顺序',
  1830.  
    PRIMARY KEY (`id`)
  1831.  
    ) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COMMENT='sku销售属性&值';
  1832.  
     
  1833.  
    -- ----------------------------
  1834.  
    -- Records of pms_sku_sale_attr_value
  1835.  
    -- ----------------------------
  1836.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('1', '1', '9', '颜色', '星河银', null);
  1837.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('2', '1', '12', '版本', '8GB 256GB', null);
  1838.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('3', '2', '9', '颜色', '星河银', null);
  1839.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('4', '2', '12', '版本', '8GB 128GB', null);
  1840.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('5', '3', '9', '颜色', '亮黑色', null);
  1841.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('6', '3', '12', '版本', '8GB 256GB', null);
  1842.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('7', '4', '9', '颜色', '亮黑色', null);
  1843.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('8', '4', '12', '版本', '8GB 128GB', null);
  1844.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('9', '5', '9', '颜色', '翡冷翠', null);
  1845.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('10', '5', '12', '版本', '8GB 256GB', null);
  1846.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('11', '6', '9', '颜色', '翡冷翠', null);
  1847.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('12', '6', '12', '版本', '8GB 128GB', null);
  1848.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('13', '7', '9', '颜色', '罗兰紫', null);
  1849.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('14', '7', '12', '版本', '8GB 256GB', null);
  1850.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('15', '8', '9', '颜色', '罗兰紫', null);
  1851.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('16', '8', '12', '版本', '8GB 128GB', null);
  1852.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('17', '9', '9', '颜色', '黑色', null);
  1853.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('18', '9', '12', '版本', '128GB ', null);
  1854.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('19', '10', '9', '颜色', '黑色', null);
  1855.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('20', '10', '12', '版本', '256GB', null);
  1856.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('21', '11', '9', '颜色', '黑色', null);
  1857.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('22', '11', '12', '版本', '64GB', null);
  1858.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('23', '12', '9', '颜色', '白色', null);
  1859.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('24', '12', '12', '版本', '128GB ', null);
  1860.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('25', '13', '9', '颜色', '白色', null);
  1861.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('26', '13', '12', '版本', '256GB', null);
  1862.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('27', '14', '9', '颜色', '白色', null);
  1863.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('28', '14', '12', '版本', '64GB', null);
  1864.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('29', '15', '9', '颜色', '绿色', null);
  1865.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('30', '15', '12', '版本', '128GB ', null);
  1866.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('31', '16', '9', '颜色', '绿色', null);
  1867.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('32', '16', '12', '版本', '256GB', null);
  1868.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('33', '17', '9', '颜色', '绿色', null);
  1869.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('34', '17', '12', '版本', '64GB', null);
  1870.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('35', '18', '9', '颜色', '黄色', null);
  1871.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('36', '18', '12', '版本', '128GB ', null);
  1872.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('37', '19', '9', '颜色', '黄色', null);
  1873.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('38', '19', '12', '版本', '256GB', null);
  1874.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('39', '20', '9', '颜色', '黄色', null);
  1875.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('40', '20', '12', '版本', '64GB', null);
  1876.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('41', '21', '9', '颜色', '红色', null);
  1877.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('42', '21', '12', '版本', '128GB ', null);
  1878.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('43', '22', '9', '颜色', '红色', null);
  1879.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('44', '22', '12', '版本', '256GB', null);
  1880.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('45', '23', '9', '颜色', '红色', null);
  1881.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('46', '23', '12', '版本', '64GB', null);
  1882.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('47', '24', '9', '颜色', '紫色', null);
  1883.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('48', '24', '12', '版本', '128GB ', null);
  1884.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('49', '25', '9', '颜色', '紫色', null);
  1885.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('50', '25', '12', '版本', '256GB', null);
  1886.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('51', '26', '9', '颜色', '紫色', null);
  1887.  
    INSERT INTO `pms_sku_sale_attr_value` VALUES ('52', '26', '12', '版本', '64GB', null);
  1888.  
     
  1889.  
    -- ----------------------------
  1890.  
    -- Table structure for pms_spu_comment
  1891.  
    -- ----------------------------
  1892.  
    DROP TABLE IF EXISTS `pms_spu_comment`;
  1893.  
    CREATE TABLE `pms_spu_comment` (
  1894.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  1895.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  1896.  
    `spu_id` bigint(20) DEFAULT NULL COMMENT 'spu_id',
  1897.  
    `spu_name` varchar(255) DEFAULT NULL COMMENT '商品名字',
  1898.  
    `member_nick_name` varchar(255) DEFAULT NULL COMMENT '会员昵称',
  1899.  
    `star` tinyint(1) DEFAULT NULL COMMENT '星级',
  1900.  
    `member_ip` varchar(64) DEFAULT NULL COMMENT '会员ip',
  1901.  
    `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  1902.  
    `show_status` tinyint(1) DEFAULT NULL COMMENT '显示状态[0-不显示,1-显示]',
  1903.  
    `spu_attributes` varchar(255) DEFAULT NULL COMMENT '购买时属性组合',
  1904.  
    `likes_count` int(11) DEFAULT NULL COMMENT '点赞数',
  1905.  
    `reply_count` int(11) DEFAULT NULL COMMENT '回复数',
  1906.  
    `resources` varchar(1000) DEFAULT NULL COMMENT '评论图片/视频[json数据;[{type:文件类型,url:资源路径}]]',
  1907.  
    `content` text COMMENT '内容',
  1908.  
    `member_icon` varchar(255) DEFAULT NULL COMMENT '用户头像',
  1909.  
    `comment_type` tinyint(4) DEFAULT NULL COMMENT '评论类型[0 - 对商品的直接评论,1 - 对评论的回复]',
  1910.  
    PRIMARY KEY (`id`)
  1911.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品评价';
  1912.  
     
  1913.  
    -- ----------------------------
  1914.  
    -- Records of pms_spu_comment
  1915.  
    -- ----------------------------
  1916.  
     
  1917.  
    -- ----------------------------
  1918.  
    -- Table structure for pms_spu_images
  1919.  
    -- ----------------------------
  1920.  
    DROP TABLE IF EXISTS `pms_spu_images`;
  1921.  
    CREATE TABLE `pms_spu_images` (
  1922.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  1923.  
    `spu_id` bigint(20) DEFAULT NULL COMMENT 'spu_id',
  1924.  
    `img_name` varchar(200) DEFAULT NULL COMMENT '图片名',
  1925.  
    `img_url` varchar(255) DEFAULT NULL COMMENT '图片地址',
  1926.  
    `img_sort` int(11) DEFAULT NULL COMMENT '顺序',
  1927.  
    `default_img` tinyint(4) DEFAULT NULL COMMENT '是否默认图',
  1928.  
    PRIMARY KEY (`id`)
  1929.  
    ) ENGINE=InnoDB AUTO_INCREMENT=95 DEFAULT CHARSET=utf8mb4 COMMENT='spu图片';
  1930.  
     
  1931.  
    -- ----------------------------
  1932.  
    -- Records of pms_spu_images
  1933.  
    -- ----------------------------
  1934.  
    INSERT INTO `pms_spu_images` VALUES ('71', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/ef2691e5-de1a-4ca3-827d-a60f39fbda93_0d40c24b264aa511.jpg', null, null);
  1935.  
    INSERT INTO `pms_spu_images` VALUES ('72', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/20f83b0c-86ba-4a64-808a-f2ace190ea2c_1f15cdbcf9e1273c.jpg', null, null);
  1936.  
    INSERT INTO `pms_spu_images` VALUES ('73', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/89e324b9-d0cf-4f4f-8e81-94bb219910b3_2b1837c6c50add30.jpg', null, null);
  1937.  
    INSERT INTO `pms_spu_images` VALUES ('74', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/9a6ba5c0-0a31-4364-8759-012bdfbf5ad3_3c24f9cd69534030.jpg', null, null);
  1938.  
    INSERT INTO `pms_spu_images` VALUES ('75', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/a73ef55a-79b4-41d9-8eb6-760c8b5a33dc_23d9fbb256ea5d4a.jpg', null, null);
  1939.  
    INSERT INTO `pms_spu_images` VALUES ('76', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/099f297e-ddea-4fb5-87c7-78cd88e500c0_28f296629cca865e.jpg', null, null);
  1940.  
    INSERT INTO `pms_spu_images` VALUES ('77', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/38492c9f-b0e0-4cba-87a9-77cb6189ea73_73ab4d2e818d2211.jpg', null, null);
  1941.  
    INSERT INTO `pms_spu_images` VALUES ('78', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/7aa1019e-4e01-49dd-8ac4-7d2794d0b1a8_335b2c690e43a8f8.jpg', null, null);
  1942.  
    INSERT INTO `pms_spu_images` VALUES ('79', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/d12516dd-43cf-4ace-8dc9-14618d2d75e4_919c850652e98031.jpg', null, null);
  1943.  
    INSERT INTO `pms_spu_images` VALUES ('80', '11', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/60e65a44-f943-4ed5-87c8-8cf90f403018_d511faab82abb34b.jpg', null, null);
  1944.  
    INSERT INTO `pms_spu_images` VALUES ('88', '13', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/1756fa6d-1934-4d5c-8faf-84b3d882fe53_5b5e74d0978360a1.jpg', null, null);
  1945.  
    INSERT INTO `pms_spu_images` VALUES ('89', '13', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/299481e9-4704-4824-8b18-60c7d268353c_7ae0120ec27dc3a7.jpg', null, null);
  1946.  
    INSERT INTO `pms_spu_images` VALUES ('90', '13', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/462ef293-2b8b-4c53-85f2-1726e14dc976_23cd65077f12f7f5.jpg', null, null);
  1947.  
    INSERT INTO `pms_spu_images` VALUES ('91', '13', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/bc4825d6-2a6c-43f8-8d75-5f35b77b9514_a2c208410ae84d1f.jpg', null, null);
  1948.  
    INSERT INTO `pms_spu_images` VALUES ('92', '13', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/f968b6ac-2fca-4440-842f-8db8b76478f0_b8494bf281991f94.jpg', null, null);
  1949.  
    INSERT INTO `pms_spu_images` VALUES ('93', '13', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/e21777b3-18ac-4580-819e-497c3aa25e4f_6a1b2703a9ed8737.jpg', null, null);
  1950.  
    INSERT INTO `pms_spu_images` VALUES ('94', '13', null, 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/2419c5cf-a641-4ec1-8f94-64981dc207f6_63e862164165f483.jpg', null, null);
  1951.  
     
  1952.  
    -- ----------------------------
  1953.  
    -- Table structure for pms_spu_info
  1954.  
    -- ----------------------------
  1955.  
    DROP TABLE IF EXISTS `pms_spu_info`;
  1956.  
    CREATE TABLE `pms_spu_info` (
  1957.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '商品id',
  1958.  
    `spu_name` varchar(200) DEFAULT NULL COMMENT '商品名称',
  1959.  
    `spu_description` varchar(1000) DEFAULT NULL COMMENT '商品描述',
  1960.  
    `catalog_id` bigint(20) DEFAULT NULL COMMENT '所属分类id',
  1961.  
    `brand_id` bigint(20) DEFAULT NULL COMMENT '品牌id',
  1962.  
    `weight` decimal(18,4) DEFAULT NULL,
  1963.  
    `publish_status` tinyint(4) DEFAULT NULL COMMENT '上架状态[0 - 下架,1 - 上架]',
  1964.  
    `create_time` datetime DEFAULT NULL,
  1965.  
    `update_time` datetime DEFAULT NULL,
  1966.  
    PRIMARY KEY (`id`)
  1967.  
    ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COMMENT='spu信息';
  1968.  
     
  1969.  
    -- ----------------------------
  1970.  
    -- Records of pms_spu_info
  1971.  
    -- ----------------------------
  1972.  
    INSERT INTO `pms_spu_info` VALUES ('11', '华为 HUAWEI Mate 30 Pro', '华为 HUAWEI Mate 30 Pro', '225', '9', '0.1980', '1', '2019-11-26 10:10:57', '2019-12-15 23:04:16');
  1973.  
    INSERT INTO `pms_spu_info` VALUES ('13', ' Apple iPhone 11 (A2223) ', ' Apple iPhone 11 (A2223) ', '225', '12', '0.1940', '1', '2019-11-27 05:37:30', '2019-12-15 23:25:19');
  1974.  
     
  1975.  
    -- ----------------------------
  1976.  
    -- Table structure for pms_spu_info_desc
  1977.  
    -- ----------------------------
  1978.  
    DROP TABLE IF EXISTS `pms_spu_info_desc`;
  1979.  
    CREATE TABLE `pms_spu_info_desc` (
  1980.  
    `spu_id` bigint(20) NOT NULL COMMENT '商品id',
  1981.  
    `decript` longtext COMMENT '商品介绍',
  1982.  
    PRIMARY KEY (`spu_id`)
  1983.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='spu信息介绍';
  1984.  
     
  1985.  
    -- ----------------------------
  1986.  
    -- Records of pms_spu_info_desc
  1987.  
    -- ----------------------------
  1988.  
    INSERT INTO `pms_spu_info_desc` VALUES ('11', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/702b76e6-ce3e-4268-8216-a12db5607347_73366cc235d68202.jpg,https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-26/38956d81-5dff-4abd-8ce8-144908e869d8_528211b97272d88a.jpg');
  1989.  
    INSERT INTO `pms_spu_info_desc` VALUES ('13', 'https://gulimall-hello.oss-cn-beijing.aliyuncs.com/2019-11-27/ffc5a377-b037-4f26-84a0-df5b1c7cf42d_f205d9c99a2b4b01.jpg');
  1990.  
     
  1991.  
    -- ----------------------------
  1992.  
    -- Table structure for undo_log
  1993.  
    -- ----------------------------
  1994.  
    DROP TABLE IF EXISTS `undo_log`;
  1995.  
    CREATE TABLE `undo_log` (
  1996.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT,
  1997.  
    `branch_id` bigint(20) NOT NULL,
  1998.  
    `xid` varchar(100) NOT NULL,
  1999.  
    `context` varchar(128) NOT NULL,
  2000.  
    `rollback_info` longblob NOT NULL,
  2001.  
    `log_status` int(11) NOT NULL,
  2002.  
    `log_created` datetime NOT NULL,
  2003.  
    `log_modified` datetime NOT NULL,
  2004.  
    `ext` varchar(100) DEFAULT NULL,
  2005.  
    PRIMARY KEY (`id`),
  2006.  
    UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`)
  2007.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  2008.  
     
  2009.  
    -- ----------------------------
  2010.  
    -- Records of undo_log
  2011.  
    -- ----------------------------
学新通

gulimall_ums.sql语句:

  1.  
    /*
  2.  
    Navicat MySQL Data Transfer
  3.  
     
  4.  
    Source Server : 192.168.56.10_3306
  5.  
    Source Server Version : 50727
  6.  
    Source Host : 192.168.56.10:3306
  7.  
    Source Database : gulimall_ums
  8.  
     
  9.  
    Target Server Type : MYSQL
  10.  
    Target Server Version : 50727
  11.  
    File Encoding : 65001
  12.  
     
  13.  
    Date: 2020-03-11 17:37:18
  14.  
    */
  15.  
     
  16.  
    SET FOREIGN_KEY_CHECKS=0;
  17.  
     
  18.  
    -- ----------------------------
  19.  
    -- Table structure for ums_growth_change_history
  20.  
    -- ----------------------------
  21.  
    DROP TABLE IF EXISTS `ums_growth_change_history`;
  22.  
    CREATE TABLE `ums_growth_change_history` (
  23.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  24.  
    `member_id` bigint(20) DEFAULT NULL COMMENT 'member_id',
  25.  
    `create_time` datetime DEFAULT NULL COMMENT 'create_time',
  26.  
    `change_count` int(11) DEFAULT NULL COMMENT '改变的值(正负计数)',
  27.  
    `note` varchar(0) DEFAULT NULL COMMENT '备注',
  28.  
    `source_type` tinyint(4) DEFAULT NULL COMMENT '积分来源[0-购物,1-管理员修改]',
  29.  
    PRIMARY KEY (`id`)
  30.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='成长值变化历史记录';
  31.  
     
  32.  
    -- ----------------------------
  33.  
    -- Records of ums_growth_change_history
  34.  
    -- ----------------------------
  35.  
     
  36.  
    -- ----------------------------
  37.  
    -- Table structure for ums_integration_change_history
  38.  
    -- ----------------------------
  39.  
    DROP TABLE IF EXISTS `ums_integration_change_history`;
  40.  
    CREATE TABLE `ums_integration_change_history` (
  41.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  42.  
    `member_id` bigint(20) DEFAULT NULL COMMENT 'member_id',
  43.  
    `create_time` datetime DEFAULT NULL COMMENT 'create_time',
  44.  
    `change_count` int(11) DEFAULT NULL COMMENT '变化的值',
  45.  
    `note` varchar(255) DEFAULT NULL COMMENT '备注',
  46.  
    `source_tyoe` tinyint(4) DEFAULT NULL COMMENT '来源[0->购物;1->管理员修改;2->活动]',
  47.  
    PRIMARY KEY (`id`)
  48.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='积分变化历史记录';
  49.  
     
  50.  
    -- ----------------------------
  51.  
    -- Records of ums_integration_change_history
  52.  
    -- ----------------------------
  53.  
     
  54.  
    -- ----------------------------
  55.  
    -- Table structure for ums_member
  56.  
    -- ----------------------------
  57.  
    DROP TABLE IF EXISTS `ums_member`;
  58.  
    CREATE TABLE `ums_member` (
  59.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  60.  
    `level_id` bigint(20) DEFAULT NULL COMMENT '会员等级id',
  61.  
    `username` char(64) DEFAULT NULL COMMENT '用户名',
  62.  
    `password` varchar(64) DEFAULT NULL COMMENT '密码',
  63.  
    `nickname` varchar(64) DEFAULT NULL COMMENT '昵称',
  64.  
    `mobile` varchar(20) DEFAULT NULL COMMENT '手机号码',
  65.  
    `email` varchar(64) DEFAULT NULL COMMENT '邮箱',
  66.  
    `header` varchar(500) DEFAULT NULL COMMENT '头像',
  67.  
    `gender` tinyint(4) DEFAULT NULL COMMENT '性别',
  68.  
    `birth` date DEFAULT NULL COMMENT '生日',
  69.  
    `city` varchar(500) DEFAULT NULL COMMENT '所在城市',
  70.  
    `job` varchar(255) DEFAULT NULL COMMENT '职业',
  71.  
    `sign` varchar(255) DEFAULT NULL COMMENT '个性签名',
  72.  
    `source_type` tinyint(4) DEFAULT NULL COMMENT '用户来源',
  73.  
    `integration` int(11) DEFAULT NULL COMMENT '积分',
  74.  
    `growth` int(11) DEFAULT NULL COMMENT '成长值',
  75.  
    `status` tinyint(4) DEFAULT NULL COMMENT '启用状态',
  76.  
    `create_time` datetime DEFAULT NULL COMMENT '注册时间',
  77.  
    `social_uid` varchar(255) DEFAULT NULL COMMENT '社交用户的唯一id',
  78.  
    `access_token` varchar(255) DEFAULT NULL COMMENT '访问令牌',
  79.  
    `expires_in` varchar(255) DEFAULT NULL COMMENT '访问令牌的时间',
  80.  
    PRIMARY KEY (`id`)
  81.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员';
  82.  
     
  83.  
    -- ----------------------------
  84.  
    -- Records of ums_member
  85.  
    -- ----------------------------
  86.  
     
  87.  
    -- ----------------------------
  88.  
    -- Table structure for ums_member_collect_spu
  89.  
    -- ----------------------------
  90.  
    DROP TABLE IF EXISTS `ums_member_collect_spu`;
  91.  
    CREATE TABLE `ums_member_collect_spu` (
  92.  
    `id` bigint(20) NOT NULL COMMENT 'id',
  93.  
    `member_id` bigint(20) DEFAULT NULL COMMENT '会员id',
  94.  
    `spu_id` bigint(20) DEFAULT NULL COMMENT 'spu_id',
  95.  
    `spu_name` varchar(500) DEFAULT NULL COMMENT 'spu_name',
  96.  
    `spu_img` varchar(500) DEFAULT NULL COMMENT 'spu_img',
  97.  
    `create_time` datetime DEFAULT NULL COMMENT 'create_time',
  98.  
    PRIMARY KEY (`id`)
  99.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员收藏的商品';
  100.  
     
  101.  
    -- ----------------------------
  102.  
    -- Records of ums_member_collect_spu
  103.  
    -- ----------------------------
  104.  
     
  105.  
    -- ----------------------------
  106.  
    -- Table structure for ums_member_collect_subject
  107.  
    -- ----------------------------
  108.  
    DROP TABLE IF EXISTS `ums_member_collect_subject`;
  109.  
    CREATE TABLE `ums_member_collect_subject` (
  110.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  111.  
    `subject_id` bigint(20) DEFAULT NULL COMMENT 'subject_id',
  112.  
    `subject_name` varchar(255) DEFAULT NULL COMMENT 'subject_name',
  113.  
    `subject_img` varchar(500) DEFAULT NULL COMMENT 'subject_img',
  114.  
    `subject_urll` varchar(500) DEFAULT NULL COMMENT '活动url',
  115.  
    PRIMARY KEY (`id`)
  116.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员收藏的专题活动';
  117.  
     
  118.  
    -- ----------------------------
  119.  
    -- Records of ums_member_collect_subject
  120.  
    -- ----------------------------
  121.  
     
  122.  
    -- ----------------------------
  123.  
    -- Table structure for ums_member_level
  124.  
    -- ----------------------------
  125.  
    DROP TABLE IF EXISTS `ums_member_level`;
  126.  
    CREATE TABLE `ums_member_level` (
  127.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  128.  
    `name` varchar(100) DEFAULT NULL COMMENT '等级名称',
  129.  
    `growth_point` int(11) DEFAULT NULL COMMENT '等级需要的成长值',
  130.  
    `default_status` tinyint(4) DEFAULT NULL COMMENT '是否为默认等级[0->不是;1->是]',
  131.  
    `free_freight_point` decimal(18,4) DEFAULT NULL COMMENT '免运费标准',
  132.  
    `comment_growth_point` int(11) DEFAULT NULL COMMENT '每次评价获取的成长值',
  133.  
    `priviledge_free_freight` tinyint(4) DEFAULT NULL COMMENT '是否有免邮特权',
  134.  
    `priviledge_member_price` tinyint(4) DEFAULT NULL COMMENT '是否有会员价格特权',
  135.  
    `priviledge_birthday` tinyint(4) DEFAULT NULL COMMENT '是否有生日特权',
  136.  
    `note` varchar(255) DEFAULT NULL COMMENT '备注',
  137.  
    PRIMARY KEY (`id`)
  138.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员等级';
  139.  
     
  140.  
    -- ----------------------------
  141.  
    -- Records of ums_member_level
  142.  
    -- ----------------------------
  143.  
     
  144.  
    -- ----------------------------
  145.  
    -- Table structure for ums_member_login_log
  146.  
    -- ----------------------------
  147.  
    DROP TABLE IF EXISTS `ums_member_login_log`;
  148.  
    CREATE TABLE `ums_member_login_log` (
  149.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  150.  
    `member_id` bigint(20) DEFAULT NULL COMMENT 'member_id',
  151.  
    `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  152.  
    `ip` varchar(64) DEFAULT NULL COMMENT 'ip',
  153.  
    `city` varchar(64) DEFAULT NULL COMMENT 'city',
  154.  
    `login_type` tinyint(1) DEFAULT NULL COMMENT '登录类型[1-web,2-app]',
  155.  
    PRIMARY KEY (`id`)
  156.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员登录记录';
  157.  
     
  158.  
    -- ----------------------------
  159.  
    -- Records of ums_member_login_log
  160.  
    -- ----------------------------
  161.  
     
  162.  
    -- ----------------------------
  163.  
    -- Table structure for ums_member_receive_address
  164.  
    -- ----------------------------
  165.  
    DROP TABLE IF EXISTS `ums_member_receive_address`;
  166.  
    CREATE TABLE `ums_member_receive_address` (
  167.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  168.  
    `member_id` bigint(20) DEFAULT NULL COMMENT 'member_id',
  169.  
    `name` varchar(255) DEFAULT NULL COMMENT '收货人姓名',
  170.  
    `phone` varchar(64) DEFAULT NULL COMMENT '电话',
  171.  
    `post_code` varchar(64) DEFAULT NULL COMMENT '邮政编码',
  172.  
    `province` varchar(100) DEFAULT NULL COMMENT '省份/直辖市',
  173.  
    `city` varchar(100) DEFAULT NULL COMMENT '城市',
  174.  
    `region` varchar(100) DEFAULT NULL COMMENT '区',
  175.  
    `detail_address` varchar(255) DEFAULT NULL COMMENT '详细地址(街道)',
  176.  
    `areacode` varchar(15) DEFAULT NULL COMMENT '省市区代码',
  177.  
    `default_status` tinyint(1) DEFAULT NULL COMMENT '是否默认',
  178.  
    PRIMARY KEY (`id`)
  179.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员收货地址';
  180.  
     
  181.  
    -- ----------------------------
  182.  
    -- Records of ums_member_receive_address
  183.  
    -- ----------------------------
  184.  
     
  185.  
    -- ----------------------------
  186.  
    -- Table structure for ums_member_statistics_info
  187.  
    -- ----------------------------
  188.  
    DROP TABLE IF EXISTS `ums_member_statistics_info`;
  189.  
    CREATE TABLE `ums_member_statistics_info` (
  190.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  191.  
    `member_id` bigint(20) DEFAULT NULL COMMENT '会员id',
  192.  
    `consume_amount` decimal(18,4) DEFAULT NULL COMMENT '累计消费金额',
  193.  
    `coupon_amount` decimal(18,4) DEFAULT NULL COMMENT '累计优惠金额',
  194.  
    `order_count` int(11) DEFAULT NULL COMMENT '订单数量',
  195.  
    `coupon_count` int(11) DEFAULT NULL COMMENT '优惠券数量',
  196.  
    `comment_count` int(11) DEFAULT NULL COMMENT '评价数',
  197.  
    `return_order_count` int(11) DEFAULT NULL COMMENT '退货数量',
  198.  
    `login_count` int(11) DEFAULT NULL COMMENT '登录次数',
  199.  
    `attend_count` int(11) DEFAULT NULL COMMENT '关注数量',
  200.  
    `fans_count` int(11) DEFAULT NULL COMMENT '粉丝数量',
  201.  
    `collect_product_count` int(11) DEFAULT NULL COMMENT '收藏的商品数量',
  202.  
    `collect_subject_count` int(11) DEFAULT NULL COMMENT '收藏的专题活动数量',
  203.  
    `collect_comment_count` int(11) DEFAULT NULL COMMENT '收藏的评论数量',
  204.  
    `invite_friend_count` int(11) DEFAULT NULL COMMENT '邀请的朋友数量',
  205.  
    PRIMARY KEY (`id`)
  206.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='会员统计信息';
  207.  
     
  208.  
    -- ----------------------------
  209.  
    -- Records of ums_member_statistics_info
  210.  
    -- ----------------------------
  211.  
     
  212.  
    -- ----------------------------
  213.  
    -- Table structure for undo_log
  214.  
    -- ----------------------------
  215.  
    DROP TABLE IF EXISTS `undo_log`;
  216.  
    CREATE TABLE `undo_log` (
  217.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT,
  218.  
    `branch_id` bigint(20) NOT NULL,
  219.  
    `xid` varchar(100) NOT NULL,
  220.  
    `context` varchar(128) NOT NULL,
  221.  
    `rollback_info` longblob NOT NULL,
  222.  
    `log_status` int(11) NOT NULL,
  223.  
    `log_created` datetime NOT NULL,
  224.  
    `log_modified` datetime NOT NULL,
  225.  
    `ext` varchar(100) DEFAULT NULL,
  226.  
    PRIMARY KEY (`id`),
  227.  
    UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`) USING BTREE
  228.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  229.  
     
  230.  
    -- ----------------------------
  231.  
    -- Records of undo_log
  232.  
    -- ----------------------------
学新通

gulimalll_wms.sql语句:

  1.  
    /*
  2.  
    Navicat MySQL Data Transfer
  3.  
     
  4.  
    Source Server : 192.168.56.10_3306
  5.  
    Source Server Version : 50727
  6.  
    Source Host : 192.168.56.10:3306
  7.  
    Source Database : gulimall_wms
  8.  
     
  9.  
    Target Server Type : MYSQL
  10.  
    Target Server Version : 50727
  11.  
    File Encoding : 65001
  12.  
     
  13.  
    Date: 2020-03-11 17:37:28
  14.  
    */
  15.  
     
  16.  
    SET FOREIGN_KEY_CHECKS=0;
  17.  
     
  18.  
    -- ----------------------------
  19.  
    -- Table structure for undo_log
  20.  
    -- ----------------------------
  21.  
    DROP TABLE IF EXISTS `undo_log`;
  22.  
    CREATE TABLE `undo_log` (
  23.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT,
  24.  
    `branch_id` bigint(20) NOT NULL,
  25.  
    `xid` varchar(100) NOT NULL,
  26.  
    `context` varchar(128) NOT NULL,
  27.  
    `rollback_info` longblob NOT NULL,
  28.  
    `log_status` int(11) NOT NULL,
  29.  
    `log_created` datetime NOT NULL,
  30.  
    `log_modified` datetime NOT NULL,
  31.  
    `ext` varchar(100) DEFAULT NULL,
  32.  
    PRIMARY KEY (`id`),
  33.  
    UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`) USING BTREE
  34.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  35.  
     
  36.  
    -- ----------------------------
  37.  
    -- Records of undo_log
  38.  
    -- ----------------------------
  39.  
     
  40.  
    -- ----------------------------
  41.  
    -- Table structure for wms_purchase
  42.  
    -- ----------------------------
  43.  
    DROP TABLE IF EXISTS `wms_purchase`;
  44.  
    CREATE TABLE `wms_purchase` (
  45.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT,
  46.  
    `assignee_id` bigint(20) DEFAULT NULL,
  47.  
    `assignee_name` varchar(255) DEFAULT NULL,
  48.  
    `phone` char(13) DEFAULT NULL,
  49.  
    `priority` int(4) DEFAULT NULL,
  50.  
    `status` int(4) DEFAULT NULL,
  51.  
    `ware_id` bigint(20) DEFAULT NULL,
  52.  
    `amount` decimal(18,4) DEFAULT NULL,
  53.  
    `create_time` datetime DEFAULT NULL,
  54.  
    `update_time` datetime DEFAULT NULL,
  55.  
    PRIMARY KEY (`id`)
  56.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='采购信息';
  57.  
     
  58.  
    -- ----------------------------
  59.  
    -- Records of wms_purchase
  60.  
    -- ----------------------------
  61.  
     
  62.  
    -- ----------------------------
  63.  
    -- Table structure for wms_purchase_detail
  64.  
    -- ----------------------------
  65.  
    DROP TABLE IF EXISTS `wms_purchase_detail`;
  66.  
    CREATE TABLE `wms_purchase_detail` (
  67.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT,
  68.  
    `purchase_id` bigint(20) DEFAULT NULL COMMENT '采购单id',
  69.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT '采购商品id',
  70.  
    `sku_num` int(11) DEFAULT NULL COMMENT '采购数量',
  71.  
    `sku_price` decimal(18,4) DEFAULT NULL COMMENT '采购金额',
  72.  
    `ware_id` bigint(20) DEFAULT NULL COMMENT '仓库id',
  73.  
    `status` int(11) DEFAULT NULL COMMENT '状态[0新建,1已分配,2正在采购,3已完成,4采购失败]',
  74.  
    PRIMARY KEY (`id`)
  75.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  76.  
     
  77.  
    -- ----------------------------
  78.  
    -- Records of wms_purchase_detail
  79.  
    -- ----------------------------
  80.  
     
  81.  
    -- ----------------------------
  82.  
    -- Table structure for wms_ware_info
  83.  
    -- ----------------------------
  84.  
    DROP TABLE IF EXISTS `wms_ware_info`;
  85.  
    CREATE TABLE `wms_ware_info` (
  86.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  87.  
    `name` varchar(255) DEFAULT NULL COMMENT '仓库名',
  88.  
    `address` varchar(255) DEFAULT NULL COMMENT '仓库地址',
  89.  
    `areacode` varchar(20) DEFAULT NULL COMMENT '区域编码',
  90.  
    PRIMARY KEY (`id`)
  91.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='仓库信息';
  92.  
     
  93.  
    -- ----------------------------
  94.  
    -- Records of wms_ware_info
  95.  
    -- ----------------------------
  96.  
     
  97.  
    -- ----------------------------
  98.  
    -- Table structure for wms_ware_order_task
  99.  
    -- ----------------------------
  100.  
    DROP TABLE IF EXISTS `wms_ware_order_task`;
  101.  
    CREATE TABLE `wms_ware_order_task` (
  102.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  103.  
    `order_id` bigint(20) DEFAULT NULL COMMENT 'order_id',
  104.  
    `order_sn` varchar(255) DEFAULT NULL COMMENT 'order_sn',
  105.  
    `consignee` varchar(100) DEFAULT NULL COMMENT '收货人',
  106.  
    `consignee_tel` char(15) DEFAULT NULL COMMENT '收货人电话',
  107.  
    `delivery_address` varchar(500) DEFAULT NULL COMMENT '配送地址',
  108.  
    `order_comment` varchar(200) DEFAULT NULL COMMENT '订单备注',
  109.  
    `payment_way` tinyint(1) DEFAULT NULL COMMENT '付款方式【 1:在线付款 2:货到付款】',
  110.  
    `task_status` tinyint(2) DEFAULT NULL COMMENT '任务状态',
  111.  
    `order_body` varchar(255) DEFAULT NULL COMMENT '订单描述',
  112.  
    `tracking_no` char(30) DEFAULT NULL COMMENT '物流单号',
  113.  
    `create_time` datetime DEFAULT NULL COMMENT 'create_time',
  114.  
    `ware_id` bigint(20) DEFAULT NULL COMMENT '仓库id',
  115.  
    `task_comment` varchar(500) DEFAULT NULL COMMENT '工作单备注',
  116.  
    PRIMARY KEY (`id`)
  117.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='库存工作单';
  118.  
     
  119.  
    -- ----------------------------
  120.  
    -- Records of wms_ware_order_task
  121.  
    -- ----------------------------
  122.  
     
  123.  
    -- ----------------------------
  124.  
    -- Table structure for wms_ware_order_task_detail
  125.  
    -- ----------------------------
  126.  
    DROP TABLE IF EXISTS `wms_ware_order_task_detail`;
  127.  
    CREATE TABLE `wms_ware_order_task_detail` (
  128.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  129.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  130.  
    `sku_name` varchar(255) DEFAULT NULL COMMENT 'sku_name',
  131.  
    `sku_num` int(11) DEFAULT NULL COMMENT '购买个数',
  132.  
    `task_id` bigint(20) DEFAULT NULL COMMENT '工作单id',
  133.  
    `ware_id` bigint(20) DEFAULT NULL COMMENT '仓库id',
  134.  
    `lock_status` int(1) DEFAULT NULL COMMENT '1-已锁定 2-已解锁 3-扣减',
  135.  
    PRIMARY KEY (`id`)
  136.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='库存工作单';
  137.  
     
  138.  
    -- ----------------------------
  139.  
    -- Records of wms_ware_order_task_detail
  140.  
    -- ----------------------------
  141.  
     
  142.  
    -- ----------------------------
  143.  
    -- Table structure for wms_ware_sku
  144.  
    -- ----------------------------
  145.  
    DROP TABLE IF EXISTS `wms_ware_sku`;
  146.  
    CREATE TABLE `wms_ware_sku` (
  147.  
    `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  148.  
    `sku_id` bigint(20) DEFAULT NULL COMMENT 'sku_id',
  149.  
    `ware_id` bigint(20) DEFAULT NULL COMMENT '仓库id',
  150.  
    `stock` int(11) DEFAULT NULL COMMENT '库存数',
  151.  
    `sku_name` varchar(200) DEFAULT NULL COMMENT 'sku_name',
  152.  
    `stock_locked` int(11) DEFAULT '0' COMMENT '锁定库存',
  153.  
    PRIMARY KEY (`id`),
  154.  
    KEY `sku_id` (`sku_id`) USING BTREE,
  155.  
    KEY `ware_id` (`ware_id`) USING BTREE
  156.  
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='商品库存';
  157.  
     
  158.  
    -- ----------------------------
  159.  
    -- Records of wms_ware_sku
  160.  
    -- ----------------------------
学新通

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhgaccif
系列文章
更多 icon
同类精品
更多 icon
继续加载