From d7c2e327173c99b1016929684ea1ae3627b648c9 Mon Sep 17 00:00:00 2001 From: devil_gong Date: Fri, 22 Mar 2019 18:19:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=94=E7=94=A8=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Pluginsadmin.php | 21 ++++++ .../view/default/pluginsadmin/index.html | 1 + application/plugins/answers/install.sql | 23 +++++++ application/plugins/answers/uninstall.sql | 5 ++ application/service/PluginsAdminService.php | 37 +++++++++++ config/shopxo.sql | 64 ++++++++----------- 6 files changed, 112 insertions(+), 39 deletions(-) create mode 100644 application/plugins/answers/install.sql create mode 100644 application/plugins/answers/uninstall.sql diff --git a/application/admin/controller/Pluginsadmin.php b/application/admin/controller/Pluginsadmin.php index d8d18b2fb..790e1e06d 100755 --- a/application/admin/controller/Pluginsadmin.php +++ b/application/admin/controller/Pluginsadmin.php @@ -216,5 +216,26 @@ class Pluginsadmin extends Common // 开始处理 return PluginsAdminService::PluginsUpload(input()); } + + /** + * 应用打包 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2019-03-22 + * @desc description + */ + public function Download() + { + // 开始处理 + $ret = PluginsAdminService::PluginsDownload(input()); + if(isset($ret['code']) && $ret['code'] != 0) + { + $this->assign('msg', $ret['msg']); + return $this->fetch('public/error'); + } else { + return $ret; + } + } } ?> \ No newline at end of file diff --git a/application/admin/view/default/pluginsadmin/index.html b/application/admin/view/default/pluginsadmin/index.html index 7162a23ca..1cf958ed3 100755 --- a/application/admin/view/default/pluginsadmin/index.html +++ b/application/admin/view/default/pluginsadmin/index.html @@ -31,6 +31,7 @@
{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true}} + {{/if}} diff --git a/application/plugins/answers/install.sql b/application/plugins/answers/install.sql new file mode 100644 index 000000000..0e6a86093 --- /dev/null +++ b/application/plugins/answers/install.sql @@ -0,0 +1,23 @@ +# 问答系统商品 - 应用 +CREATE TABLE `s_plugins_answers_goods` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增id', + `goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品id', + `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', + PRIMARY KEY (`id`), + KEY `goods_id` (`goods_id`) +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='问答系统商品 - 应用'; + +# 问答系统轮播图 - 应用 +CREATE TABLE `s_plugins_answers_slide` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增id', + `name` char(60) NOT NULL DEFAULT '' COMMENT '别名', + `images_url` char(255) NOT NULL DEFAULT '' COMMENT '图片地址', + `url` char(255) NOT NULL DEFAULT '' COMMENT 'url地址', + `is_enable` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否启用(0否,1是)', + `sort` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序', + `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', + `upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', + PRIMARY KEY (`id`), + KEY `is_enable` (`is_enable`), + KEY `sort` (`sort`) +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='问答系统轮播图 - 应用'; \ No newline at end of file diff --git a/application/plugins/answers/uninstall.sql b/application/plugins/answers/uninstall.sql new file mode 100644 index 000000000..f2e5e4671 --- /dev/null +++ b/application/plugins/answers/uninstall.sql @@ -0,0 +1,5 @@ +# 问答系统商品 - 应用 +DROP TABLE `s_plugins_answers_goods`; + +# 问答系统轮播图 - 应用 +DROP TABLE `s_plugins_answers_slide`; \ No newline at end of file diff --git a/application/service/PluginsAdminService.php b/application/service/PluginsAdminService.php index 05fc85b14..500288e30 100755 --- a/application/service/PluginsAdminService.php +++ b/application/service/PluginsAdminService.php @@ -984,5 +984,42 @@ php; return DataReturn('安装成功'); } + + /** + * 应用打包 + * @author Devil + * @blog http://gong.gg/ + * @version 1.0.0 + * @date 2019-03-22 + * @desc description + * @param [array] $params [输入参数] + */ + public static function PluginsDownload($params = []) + { + // 请求参数 + $p = [ + [ + 'checked_type' => 'empty', + 'key_name' => 'id', + 'error_msg' => '操作id有误', + ], + ]; + $ret = ParamsChecked($params, $p); + if($ret !== true) + { + return DataReturn($ret, -1); + } + + // 获取应用标记 + $where = ['id'=>intval($params['id'])]; + $plugins = Db::name('Plugins')->where($where)->value('plugins'); + if(empty($plugins)) + { + return DataReturn('应用不存在', -10); + } + + // 开始打包 + return DataReturn('开发中', -10); + } } ?> \ No newline at end of file diff --git a/config/shopxo.sql b/config/shopxo.sql index 4756bf7da..c72a08931 100644 --- a/config/shopxo.sql +++ b/config/shopxo.sql @@ -11,7 +11,7 @@ Target Server Version : 50722 File Encoding : utf-8 - Date: 03/21/2019 17:39:39 PM + Date: 03/22/2019 18:18:53 PM */ SET NAMES utf8mb4; @@ -231,7 +231,14 @@ CREATE TABLE `s_cart` ( KEY `goods_id` (`goods_id`), KEY `title` (`title`), KEY `stock` (`stock`) -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='购物车'; +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='购物车'; + +-- ---------------------------- +-- Records of `s_cart` +-- ---------------------------- +BEGIN; +INSERT INTO `s_cart` VALUES ('2', '99', '4', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '2300.00', '1999.00', '1', '', '1553225477', '0'); +COMMIT; -- ---------------------------- -- Table structure for `s_config` @@ -358,7 +365,7 @@ CREATE TABLE `s_goods` ( -- Records of `s_goods` -- ---------------------------- BEGIN; -INSERT INTO `s_goods` VALUES ('1', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '0', '125', '步', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '3200.00', '3200.00', '2100.00', '2100.00', '2100.00', '10', '1', '0', '1', '1', '1', '


', '2', '0', '22', '', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '0', '1547450921', '1549959519'), ('2', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', 'iPhone 6 Plus', '0', '1710', '步', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6000.00-7600.00', '6000.00', '7600.00', '4500.00-6800.00', '4500.00', '6800.00', '30', '1', '0', '1', '1', '1', '


', '2', '0', '38', '/static/upload/video/goods/2019/01/14/1547458876723311.mp4', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '0', '1547451624', '1547458880'), ('3', '2', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', '', '0', '235', '步', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '6866.00', '6866.00', '6866.00', '3888.00', '3888.00', '3888.00', '20', '1', '0', '1', '1', '1', '


', '2', '0', '4', '', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '0', '1547452007', '1547452007'), ('4', '1', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', '', '0', '537', '步', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '2300.00', '2300.00', '2300.00', '1999.00', '1999.00', '1999.00', '19', '1', '0', '1', '1', '1', '


', '2', '0', '59', '', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '0', '1547452553', '1547452553'), ('5', '2', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', '', '0', '435', '步', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '3200.00', '3200.00', '3200.00', '2499.00', '2499.00', '2499.00', '56', '1', '0', '1', '1', '1', '


', '2', '1', '179', '', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '0', '1547452798', '1547452798'), ('6', '1', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '', '0', '319', '步', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '3200.00', '3200.00', '2998.90', '2998.90', '2998.90', '65', '1', '0', '1', '1', '1', '

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



', '2', '0', '61', '', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '0', '1547453135', '1547453157'), ('7', '1', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '0', '320', '件', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '760.00', '760.00', '760.00', '168.00', '168.00', '168.00', '11', '1', '0', '1', '1', '1', '


', '2', '0', '5', '', '/static/upload/images/goods/2019/01/15/1547540603500383.jpg', '0', '1547453967', '1547540607'), ('8', '1', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '0', '35', '件', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '672.00', '672.00', '672.00', '356.00', '356.00', '356.00', '8', '1', '0', '1', '1', '1', '


', '2', '0', '8', '', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0', '1547454269', '1547454269'), ('9', '2', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '0', '596', '件', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00-216.00', '160.00', '216.00', '120.00-158.00', '120.00', '158.00', '2', '1', '0', '1', '1', '1', '


', '3', '0', '73', '', '/static/upload/images/goods/2019/01/14/1547454567172116.jpg', '0', '1547454786', '1553156060'), ('10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '0', '36', '件', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '568.00', '568.00', '228.00', '228.00', '228.00', '28', '1', '0', '1', '1', '1', '

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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


', '2', '0', '16', '', '/static/upload/images/goods/2019/01/14/1547455222990904.jpg', '0', '1547455375', '1547455375'), ('11', '0', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '0', '367', '件', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '268.00', '268.00', '268.00', '258.00', '258.00', '258.00', '1', '1', '0', '1', '1', '1', '

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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

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



', '4', '0', '9', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', '0', '1547455700', '1547455700'), ('12', '2', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', 'xxxxhhhhhh商品型号', '0', '246', '件', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '150.00-188.00', '150.00', '188.00', '0.01-128.00', '0.01', '128.00', '3', '1', '0', '1', '1', '1', '

\"d-1.jpg\"/

\"d-2.jpg\"/

', '3', '0', '19', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '0', '1547456230', '1552467444'); +INSERT INTO `s_goods` VALUES ('1', '1', 'MIUI/小米 小米手机4 小米4代 MI4智能4G手机包邮 黑色 D-LTE(4G)/TD-SCD', '', '', '0', '125', '步', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '3200.00', '3200.00', '3200.00', '2100.00', '2100.00', '2100.00', '10', '1', '0', '1', '1', '1', '


', '2', '0', '22', '', '/static/upload/images/goods/2019/01/14/1547450781101144.jpg', '0', '1547450921', '1549959519'), ('2', '2', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '', 'iPhone 6 Plus', '0', '1710', '步', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6000.00-7600.00', '6000.00', '7600.00', '4500.00-6800.00', '4500.00', '6800.00', '30', '1', '0', '1', '1', '1', '


', '2', '0', '38', '/static/upload/video/goods/2019/01/14/1547458876723311.mp4', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '0', '1547451624', '1547458880'), ('3', '2', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '', '', '0', '235', '步', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '6866.00', '6866.00', '6866.00', '3888.00', '3888.00', '3888.00', '20', '1', '0', '1', '1', '1', '


', '2', '0', '4', '', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '0', '1547452007', '1547452007'), ('4', '1', 'Huawei/华为 H60-L01 荣耀6 移动4G版智能手机 安卓', '', '', '0', '537', '步', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '2300.00', '2300.00', '2300.00', '1999.00', '1999.00', '1999.00', '19', '1', '0', '1', '1', '1', '


', '2', '0', '60', '', '/static/upload/images/goods/2019/01/14/1547452474332334.jpg', '0', '1547452553', '1547452553'), ('5', '2', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '', '', '0', '435', '步', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '3200.00', '3200.00', '3200.00', '2499.00', '2499.00', '2499.00', '56', '1', '0', '1', '1', '1', '


', '2', '1', '179', '', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '0', '1547452798', '1547452798'), ('6', '1', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '', '', '0', '319', '步', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '3200.00', '3200.00', '2998.90', '2998.90', '2998.90', '65', '1', '0', '1', '1', '1', '

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



', '2', '0', '61', '', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '0', '1547453135', '1547453157'), ('7', '1', '纽芝兰包包女士2018新款潮百搭韩版时尚单肩斜挎包少女小挎包链条', '', '', '0', '320', '件', '/static/upload/images/goods/2019/01/14/1547453895416529.jpg', '760.00', '760.00', '760.00', '168.00', '168.00', '168.00', '11', '1', '0', '1', '1', '1', '


', '2', '0', '5', '', '/static/upload/images/goods/2019/01/15/1547540603500383.jpg', '0', '1547453967', '1547540607'), ('8', '1', 'MARNI Trunk 女士 中号拼色十字纹小牛皮 斜挎风琴包', '', '', '0', '35', '件', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '672.00', '672.00', '672.00', '356.00', '356.00', '356.00', '8', '1', '0', '1', '1', '1', '


', '2', '0', '8', '', '/static/upload/images/goods/2019/01/14/1547454145355962.jpg', '0', '1547454269', '1547454269'), ('9', '2', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '', '', '0', '596', '件', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00-216.00', '160.00', '216.00', '120.00-158.00', '120.00', '158.00', '2', '1', '0', '1', '1', '1', '


', '3', '0', '76', '', '/static/upload/images/goods/2019/01/14/1547454567172116.jpg', '0', '1547454786', '1553156060'), ('10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '', '', '0', '36', '件', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '568.00', '568.00', '228.00', '228.00', '228.00', '28', '1', '0', '1', '1', '1', '

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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


', '2', '0', '17', '', '/static/upload/images/goods/2019/01/14/1547455222990904.jpg', '0', '1547455375', '1547455375'), ('11', '0', '夏季复古ins风格网红SP同款 短袖大圆领香槟色蕾丝绣花钉珠连衣裙', '', '', '0', '367', '件', '/static/upload/images/goods/2019/01/14/1547455601314107.jpg', '268.00', '268.00', '268.00', '258.00', '258.00', '258.00', '1', '1', '0', '1', '1', '1', '

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

【吊牌】xueyuanfeng 猫咪良品

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

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

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

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


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


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

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

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


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

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

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

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



', '4', '0', '9', '', '/static/upload/images/goods/2019/01/14/1547455566118614.jpg', '0', '1547455700', '1547455700'), ('12', '2', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '', 'xxxxhhhhhh商品型号', '0', '246', '件', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '150.00-188.00', '150.00', '188.00', '0.01-128.00', '0.01', '128.00', '3', '1', '0', '1', '1', '1', '

\"d-1.jpg\"/

\"d-2.jpg\"/

', '3', '0', '19', '', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '0', '1547456230', '1552467444'); COMMIT; -- ---------------------------- @@ -372,13 +379,13 @@ CREATE TABLE `s_goods_browse` ( `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', `upd_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品浏览'; +) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商品浏览'; -- ---------------------------- -- Records of `s_goods_browse` -- ---------------------------- BEGIN; -INSERT INTO `s_goods_browse` VALUES ('1', '5', '77', '1551233739', '1552549400'), ('2', '6', '92', '1551234590', '1551239151'), ('3', '9', '92', '1551239156', '1551239429'), ('4', '5', '92', '1551239374', '1551239374'), ('5', '10', '77', '1552287523', '1552461784'), ('6', '2', '77', '1552380261', '1552532934'), ('7', '12', '77', '1552467447', '1552615868'), ('8', '6', '77', '1552529609', '1552531565'), ('9', '3', '77', '1552532930', '1552532930'), ('10', '4', '77', '1552628919', '1552629076'), ('11', '5', '0', '1552659057', '1552659073'), ('12', '5', '1', '1552659083', '1552659243'), ('13', '11', '1', '1552659292', '1552660274'), ('14', '5', '97', '1552660995', '1552660995'), ('15', '6', '97', '1552711349', '1552711351'), ('16', '9', '99', '1552888092', '1553157046'), ('17', '5', '99', '1552889094', '1553160597'), ('18', '2', '99', '1553050536', '1553148524'), ('19', '10', '99', '1553139963', '1553139963'), ('20', '3', '90', '1553148422', '1553148422'), ('21', '2', '90', '1553148429', '1553157631'), ('22', '9', '90', '1553157643', '1553157643'); +INSERT INTO `s_goods_browse` VALUES ('1', '5', '77', '1551233739', '1552549400'), ('2', '6', '92', '1551234590', '1551239151'), ('3', '9', '92', '1551239156', '1551239429'), ('4', '5', '92', '1551239374', '1551239374'), ('5', '10', '77', '1552287523', '1552461784'), ('6', '2', '77', '1552380261', '1552532934'), ('7', '12', '77', '1552467447', '1552615868'), ('8', '6', '77', '1552529609', '1552531565'), ('9', '3', '77', '1552532930', '1552532930'), ('10', '4', '77', '1552628919', '1552629076'), ('11', '5', '0', '1552659057', '1552659073'), ('12', '5', '1', '1552659083', '1552659243'), ('13', '11', '1', '1552659292', '1552660274'), ('14', '5', '97', '1552660995', '1552660995'), ('15', '6', '97', '1552711349', '1552711351'), ('16', '9', '99', '1552888092', '1553222215'), ('17', '5', '99', '1552889094', '1553160597'), ('18', '2', '99', '1553050536', '1553148524'), ('19', '10', '99', '1553139963', '1553221742'), ('20', '3', '90', '1553148422', '1553148422'), ('21', '2', '90', '1553148429', '1553157631'), ('22', '9', '90', '1553157643', '1553157643'), ('23', '4', '99', '1553225475', '1553225475'); COMMIT; -- ---------------------------- @@ -699,13 +706,13 @@ CREATE TABLE `s_order` ( KEY `shop_id` (`shop_id`), KEY `status` (`status`), KEY `pay_status` (`pay_status`) -) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单'; +) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单'; -- ---------------------------- -- Records of `s_order` -- ---------------------------- BEGIN; -INSERT INTO `s_order` VALUES ('1', '20190227115022051094', '92', '0', '1', '2323', '17602128368', '1', '37', '567', '23', '', '0', '', '1', '2', '1', null, '0.00', '0.00', '3270.90', '3270.90', '3270.90', '1551239424', '1551239422', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1551239422', '1551239424'), ('2', '20190312114031822173', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '4', '73107853468716', '2', '4', '1', null, '0.00', '0.00', '2499.00', '2499.00', '2499.00', '1552362074', '1552362031', '1552362108', '0', '1552386780', '0', '0', '0', '0', '0', '0', '1552362031', '1552386780'), ('3', '20190312164430579995', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '4', '767', '2', '3', '1', null, '0.00', '0.00', '4500.00', '4500.00', '4500.00', '1552380271', '1552380270', '1552380288', '0', '0', '0', '0', '0', '0', '0', '0', '1552380270', '1552380288'), ('4', '20190313165746433360', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '3', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552467466', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552467466', '0'), ('5', '20190314164830100836', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '7', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552553310', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552553310', '0'), ('6', '20190315101124514911', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '8', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552615884', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552615884', '0'), ('7', '20190315101403128249', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '8', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552616043', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552616043', '0'), ('8', '20190315101650867423', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '8', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552616210', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552616210', '0'), ('9', '20190316124326778146', '97', '0', '3', 'sky', '13222333333', '1', '38', '578', '33', '', '0', '', '9', '2', '1', null, '0.00', '0.00', '2998.90', '2998.90', '2998.90', '1552711407', '1552711406', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552711406', '1552711407'), ('10', '20190320105602870919', '99', '0', '4', '管理员', '13222333333', '1', '37', '568', '22', '', '0', '', '9', '1', '0', null, '0.00', '0.00', '6050.00', '6050.00', '0.00', '0', '1553050562', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553050562', '0'), ('12', '20190320170551868775', '99', '0', '5', '绿色校园', '13222335555', '5', '98', '1440', '666', '', '0', '', '9', '1', '0', null, '0.00', '0.00', '2499.00', '2499.00', '0.00', '0', '1553072751', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553072751', '0'), ('13', '20190321114609031778', '99', '0', '5', '绿色校园', '13222335555', '5', '98', '1440', '666', '', '0', '', '9', '1', '0', '[{\"name\":\"\\u611f\\u6069\\u82829\\u6298\",\"price\":23,\"type\":0,\"tips\":\"-\\uffe523\\u5143\"},{\"name\":\"\\u8fd0\\u8d39\",\"price\":10,\"type\":1,\"tips\":\"+\\uffe510\\u5143\"}]', '0.00', '0.00', '228.00', '228.00', '0.00', '0', '1553139969', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553139969', '0'), ('14', '20190321161638889601', '99', '0', '5', '绿色校园', '13222335555', '5', '98', '1440', '666', '', '0', '', '9', '1', '0', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":17,\"type\":0,\"tips\":\"+\\uffe517\\u5143\"}]', '17.00', '0.00', '544.00', '561.00', '0.00', '0', '1553156198', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553156198', '0'), ('15', '20190321163244807543', '90', '0', '10', '11', '13222222222', '2', '55', '883', '33', '', '0', '', '9', '5', '0', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":9,\"type\":0,\"tips\":\"+\\uffe59\\u5143\"}]', '9.00', '0.00', '9938.00', '9947.00', '0.00', '0', '1553157164', '0', '1553157613', '0', '0', '0', '0', '0', '0', '0', '1553157164', '1553157613'), ('16', '20190321164146174232', '90', '0', '10', '11', '13222222222', '2', '55', '883', '33', '', '0', '', '9', '1', '0', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":12,\"type\":0,\"tips\":\"+\\uffe512\\u5143\"}]', '12.00', '0.00', '6290.00', '6302.00', '0.00', '0', '1553157706', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553157706', '0'); +INSERT INTO `s_order` VALUES ('1', '20190227115022051094', '92', '0', '1', '2323', '17602128368', '1', '37', '567', '23', '', '0', '', '1', '2', '1', null, '0.00', '0.00', '3270.90', '3270.90', '3270.90', '1551239424', '1551239422', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1551239422', '1551239424'), ('2', '20190312114031822173', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '4', '73107853468716', '2', '4', '1', null, '0.00', '0.00', '2499.00', '2499.00', '2499.00', '1552362074', '1552362031', '1552362108', '0', '1552386780', '0', '0', '0', '0', '0', '0', '1552362031', '1552386780'), ('3', '20190312164430579995', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '4', '767', '2', '3', '1', null, '0.00', '0.00', '4500.00', '4500.00', '4500.00', '1552380271', '1552380270', '1552380288', '0', '0', '0', '0', '0', '0', '0', '0', '1552380270', '1552380288'), ('4', '20190313165746433360', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '3', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552467466', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552467466', '0'), ('5', '20190314164830100836', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '7', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552553310', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552553310', '0'), ('6', '20190315101124514911', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '8', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552615884', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552615884', '0'), ('7', '20190315101403128249', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '8', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552616043', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552616043', '0'), ('8', '20190315101650867423', '77', '0', '2', '绿色校园', '13222333333', '1', '38', '577', '333', '', '0', '', '8', '1', '0', null, '0.00', '0.00', '0.01', '0.01', '0.00', '0', '1552616210', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552616210', '0'), ('9', '20190316124326778146', '97', '0', '3', 'sky', '13222333333', '1', '38', '578', '33', '', '0', '', '9', '2', '1', null, '0.00', '0.00', '2998.90', '2998.90', '2998.90', '1552711407', '1552711406', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1552711406', '1552711407'), ('10', '20190320105602870919', '99', '0', '4', '管理员', '13222333333', '1', '37', '568', '22', '', '0', '', '9', '1', '0', null, '0.00', '0.00', '6050.00', '6050.00', '0.00', '0', '1553050562', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553050562', '0'), ('12', '20190320170551868775', '99', '0', '5', '绿色校园', '13222335555', '5', '98', '1440', '666', '', '0', '', '9', '1', '0', null, '0.00', '0.00', '2499.00', '2499.00', '0.00', '0', '1553072751', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553072751', '0'), ('13', '20190321114609031778', '99', '0', '5', '绿色校园', '13222335555', '5', '98', '1440', '666', '', '0', '', '9', '1', '0', '[{\"name\":\"\\u611f\\u6069\\u82829\\u6298\",\"price\":23,\"type\":0,\"tips\":\"-\\uffe523\\u5143\"},{\"name\":\"\\u8fd0\\u8d39\",\"price\":10,\"type\":1,\"tips\":\"+\\uffe510\\u5143\"}]', '0.00', '0.00', '228.00', '228.00', '0.00', '0', '1553139969', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553139969', '0'), ('14', '20190321161638889601', '99', '0', '5', '绿色校园', '13222335555', '5', '98', '1440', '666', '', '0', '', '9', '1', '0', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":17,\"type\":0,\"tips\":\"+\\uffe517\\u5143\"}]', '17.00', '0.00', '544.00', '561.00', '0.00', '0', '1553156198', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553156198', '0'), ('15', '20190321163244807543', '90', '0', '10', '11', '13222222222', '2', '55', '883', '33', '', '0', '', '9', '5', '0', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":9,\"type\":0,\"tips\":\"+\\uffe59\\u5143\"}]', '9.00', '0.00', '9938.00', '9947.00', '0.00', '0', '1553157164', '0', '1553157613', '0', '0', '0', '0', '0', '0', '0', '1553157164', '1553157613'), ('16', '20190321164146174232', '90', '0', '10', '11', '13222222222', '2', '55', '883', '33', '', '0', '', '9', '1', '0', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":12,\"type\":0,\"tips\":\"+\\uffe512\\u5143\"}]', '12.00', '0.00', '6290.00', '6302.00', '0.00', '0', '1553157706', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553157706', '0'), ('17', '20190322104419550802', '99', '0', '4', '管理员', '13222333333', '1', '37', '568', '22', '', '0', '', '11', '1', '0', '[{\"name\":\"\\u8fd0\\u8d39\",\"price\":\"10\",\"type\":0,\"tips\":\"+\\uffe510\\u5143\"}]', '10.00', '0.00', '120.00', '130.00', '0.00', '0', '1553222659', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1553222659', '0'); COMMIT; -- ---------------------------- @@ -754,13 +761,13 @@ CREATE TABLE `s_order_detail` ( KEY `order_id` (`order_id`), KEY `goods_id` (`goods_id`), KEY `shop_id` (`shop_id`) -) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单详情'; +) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单详情'; -- ---------------------------- -- Records of `s_order_detail` -- ---------------------------- BEGIN; -INSERT INTO `s_order_detail` VALUES ('1', '92', '1', '6', '0', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '2998.90', '', '1', '0', '', '', '1551239422', '0'), ('2', '92', '1', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '188.00', '136.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"L\"}]', '2', '0', '', '', '1551239422', '0'), ('3', '77', '2', '5', '0', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '3200.00', '2499.00', '', '1', '0', '', '', '1552362031', '0'), ('4', '77', '3', '2', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6800.00', '4500.00', '[{\"type\":\"\\u5957\\u9910\",\"value\":\"\\u5957\\u9910\\u4e8c\"},{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u91d1\\u8272\"},{\"type\":\"\\u5bb9\\u91cf\",\"value\":\"32G\"}]', '1', '0', '', '', '1552380270', '0'), ('5', '77', '4', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552467466', '0'), ('6', '77', '5', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552553310', '0'), ('7', '77', '6', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552615884', '0'), ('8', '77', '7', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552616043', '0'), ('9', '77', '8', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552616210', '0'), ('10', '97', '9', '6', '0', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '2998.90', '', '1', '0', '', '', '1552711406', '0'), ('11', '99', '10', '2', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6800.00', '6050.00', '[{\"type\":\"\\u5957\\u9910\",\"value\":\"\\u5957\\u9910\\u4e00\"},{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u91d1\\u8272\"},{\"type\":\"\\u5bb9\\u91cf\",\"value\":\"32G\"}]', '1', '0', '', '', '1553050562', '0'), ('12', '99', '12', '5', '0', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '3200.00', '2499.00', '', '1', '0', '', '', '1553072751', '0'), ('13', '99', '13', '10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '228.00', '', '1', '0', '', '', '1553139969', '0'), ('14', '99', '14', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '188.00', '136.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '0', '', '', '1553156198', '0'), ('15', '99', '14', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '188.00', '136.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"L\"}]', '3', '0', '', '', '1553156198', '0'), ('16', '90', '15', '3', '0', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '6866.00', '3888.00', '', '1', '0', '', '', '1553157164', '0'), ('17', '90', '15', '2', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6800.00', '6050.00', '', '1', '0', '', '', '1553157164', '0'), ('18', '90', '16', '2', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6800.00', '6050.00', '', '1', '0', '', '', '1553157706', '0'), ('19', '90', '16', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00', '120.00', '', '2', '0', '', '', '1553157706', '0'); +INSERT INTO `s_order_detail` VALUES ('1', '92', '1', '6', '0', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '2998.90', '', '1', '0', '', '', '1551239422', '0'), ('2', '92', '1', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '188.00', '136.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"L\"}]', '2', '0', '', '', '1551239422', '0'), ('3', '77', '2', '5', '0', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '3200.00', '2499.00', '', '1', '0', '', '', '1552362031', '0'), ('4', '77', '3', '2', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6800.00', '4500.00', '[{\"type\":\"\\u5957\\u9910\",\"value\":\"\\u5957\\u9910\\u4e8c\"},{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u91d1\\u8272\"},{\"type\":\"\\u5bb9\\u91cf\",\"value\":\"32G\"}]', '1', '0', '', '', '1552380270', '0'), ('5', '77', '4', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552467466', '0'), ('6', '77', '5', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552553310', '0'), ('7', '77', '6', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552615884', '0'), ('8', '77', '7', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552616043', '0'), ('9', '77', '8', '12', '0', 'ZK星星绣花雪纺连衣裙中长款sukol裙少女心温柔超仙女chic裙子夏', '/static/upload/images/goods/2019/01/14/1547455890402147.jpg', '188.00', '0.01', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '1', 'gg11', 'txm11', '1552616210', '0'), ('10', '97', '9', '6', '0', 'vivo X5MAX L 移动4G 八核超薄大屏5.5吋双卡手机vivoX5max', '/static/upload/images/goods/2019/01/14/1547453000703308.jpg', '3200.00', '2998.90', '', '1', '0', '', '', '1552711406', '0'), ('11', '99', '10', '2', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6800.00', '6050.00', '[{\"type\":\"\\u5957\\u9910\",\"value\":\"\\u5957\\u9910\\u4e00\"},{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u91d1\\u8272\"},{\"type\":\"\\u5bb9\\u91cf\",\"value\":\"32G\"}]', '1', '0', '', '', '1553050562', '0'), ('12', '99', '12', '5', '0', 'Meizu/魅族 MX4 Pro移动版 八核大屏智能手机 黑色 16G', '/static/upload/images/goods/2019/01/14/1547452714324599.jpg', '3200.00', '2499.00', '', '1', '0', '', '', '1553072751', '0'), ('13', '99', '13', '10', '0', '夏装女装古力娜扎明星同款一字领露肩蓝色蕾丝修身显瘦连衣裙礼服', '/static/upload/images/goods/2019/01/14/1547455240794230.jpg', '568.00', '228.00', '', '1', '0', '', '', '1553139969', '0'), ('14', '99', '14', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '188.00', '136.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '0', '', '', '1553156198', '0'), ('15', '99', '14', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '188.00', '136.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u7c89\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"L\"}]', '3', '0', '', '', '1553156198', '0'), ('16', '90', '15', '3', '0', 'Samsung/三星 SM-G8508S GALAXY Alpha四核智能手机 新品 闪耀白', '/static/upload/images/goods/2019/01/14/1547451909951171.jpg', '6866.00', '3888.00', '', '1', '0', '', '', '1553157164', '0'), ('17', '90', '15', '2', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6800.00', '6050.00', '', '1', '0', '', '', '1553157164', '0'), ('18', '90', '16', '2', '0', '苹果(Apple)iPhone 6 Plus (A1524)移动联通电信4G手机 金色 16G', '/static/upload/images/goods/2019/01/14/1547451274847894.jpg', '6800.00', '6050.00', '', '1', '0', '', '', '1553157706', '0'), ('19', '90', '16', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00', '120.00', '', '2', '0', '', '', '1553157706', '0'), ('20', '99', '17', '9', '0', '睡衣女长袖春秋季纯棉韩版女士大码薄款春夏季全棉家居服两件套装', '/static/upload/images/goods/2019/01/14/1547454702543219.jpg', '160.00', '120.00', '[{\"type\":\"\\u989c\\u8272\",\"value\":\"\\u767d\\u8272\"},{\"type\":\"\\u5c3a\\u7801\",\"value\":\"M\"}]', '1', '0', '', '', '1553222659', '0'); COMMIT; -- ---------------------------- @@ -870,13 +877,13 @@ CREATE TABLE `s_payment` ( PRIMARY KEY (`id`), UNIQUE KEY `payment` (`payment`), KEY `is_enable` (`is_enable`) -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='支付方式'; +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='支付方式'; -- ---------------------------- -- Records of `s_payment` -- ---------------------------- BEGIN; -INSERT INTO `s_payment` VALUES ('9', '现金支付', 'CashPayment', '', '0.0.1', '不限', '现金方式支付货款', 'Devil', 'http://shopxo.net/', '', '', '[\"pc\",\"h5\",\"app\",\"alipay\",\"weixin\",\"baidu\"]', '1', '1', '0', '1552711390', '1552711396'); +INSERT INTO `s_payment` VALUES ('9', '现金支付', 'CashPayment', '', '0.0.1', '不限', '现金方式支付货款', 'Devil', 'http://shopxo.net/', '', '', '[\"pc\",\"h5\",\"app\",\"alipay\",\"weixin\",\"baidu\"]', '1', '1', '0', '1552711390', '1552711396'), ('10', '货到付款', 'DeliveryPayment', '', '0.0.1', '不限', '送货上门后收取货款', 'Devil', 'http://shopxo.net/', '', '', '[\"pc\",\"h5\",\"app\",\"alipay\",\"weixin\",\"baidu\"]', '1', '1', '0', '1553219928', '1553219932'), ('11', '支付宝', 'Alipay', '', '0.0.2', '不限', '***新版本接口*** 适用PC+H5,即时到帐支付方式,买家的交易资金直接打入卖家支付宝账户,快速回笼交易资金。 立即申请', 'Devil', 'http://shopxo.net/', '[{\"element\":\"input\",\"type\":\"text\",\"default\":\"\",\"name\":\"appid\",\"placeholder\":\"\\u5e94\\u7528ID\",\"title\":\"\\u5e94\\u7528ID\",\"is_required\":0,\"message\":\"\\u8bf7\\u586b\\u5199\\u5e94\\u7528ID\"},{\"element\":\"textarea\",\"name\":\"rsa_public\",\"placeholder\":\"\\u5e94\\u7528\\u516c\\u94a5\",\"title\":\"\\u5e94\\u7528\\u516c\\u94a5\",\"is_required\":0,\"rows\":6,\"message\":\"\\u8bf7\\u586b\\u5199\\u5e94\\u7528\\u516c\\u94a5\"},{\"element\":\"textarea\",\"name\":\"rsa_private\",\"placeholder\":\"\\u5e94\\u7528\\u79c1\\u94a5\",\"title\":\"\\u5e94\\u7528\\u79c1\\u94a5\",\"is_required\":0,\"rows\":6,\"message\":\"\\u8bf7\\u586b\\u5199\\u5e94\\u7528\\u79c1\\u94a5\"},{\"element\":\"textarea\",\"name\":\"out_rsa_public\",\"placeholder\":\"\\u652f\\u4ed8\\u5b9d\\u516c\\u94a5\",\"title\":\"\\u652f\\u4ed8\\u5b9d\\u516c\\u94a5\",\"is_required\":0,\"rows\":6,\"message\":\"\\u8bf7\\u586b\\u5199\\u652f\\u4ed8\\u5b9d\\u516c\\u94a5\"}]', '', '[\"pc\",\"h5\"]', '1', '1', '0', '1553219938', '1553219941'); COMMIT; -- ---------------------------- @@ -893,13 +900,13 @@ CREATE TABLE `s_plugins` ( PRIMARY KEY (`id`), UNIQUE KEY `plugins` (`plugins`), KEY `is_enable` (`is_enable`) -) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用'; +) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='应用'; -- ---------------------------- -- Records of `s_plugins` -- ---------------------------- BEGIN; -INSERT INTO `s_plugins` VALUES ('1', 'commontopmaxpicture', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commontopmaxpicture\\/2019\\/02\\/09\\/1549671733978860.jpg\",\"bg_color\":\"#ce0000\",\"url\":\"https:\\/\\/shopxo.net\\/\",\"is_new_window_open\":\"1\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopmaxpicture\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550145321', '1551345727'), ('2', 'commontopnotice', '{\"content\":\"\\u6b22\\u8fce\\u6765\\u5230ShopXO\\u4f01\\u4e1a\\u7ea7B2C\\u5f00\\u6e90\\u7535\\u5546\\u7cfb\\u7edf\\u3001\\u6f14\\u793a\\u7ad9\\u70b9\\u8bf7\\u52ff\\u53d1\\u8d77\\u652f\\u4ed8\\u3001\\u4ee5\\u514d\\u7ed9\\u60a8\\u5e26\\u6765\\u4e0d\\u5fc5\\u8981\\u7684\\u8d22\\u4ea7\\u635f\\u5931\\u3002\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550156571', '1551345882'), ('3', 'usercentertopnotice', '{\"content\":\"\\u7528\\u6237\\u4e2d\\u5fc3\\u516c\\u544a\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"usercentertopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550157860', '1551191932'), ('14', 'userloginrewardintegral', '{\"give_integral\":\"5\",\"is_day_once\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"userloginrewardintegral\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550151175', '1551191930'), ('15', 'commongobacktop', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commongobacktop\\/2019\\/02\\/15\\/1550210425433304.png\",\"is_overall\":\"1\",\"pluginsname\":\"commongobacktop\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1550200998', '1551191928'), ('16', 'commonrightnavigation', '{\"weixin_mini_qrcode_images\":\"\\/static\\/upload\\/images\\/plugins_commonrightnavigation\\/2019\\/02\\/17\\/1550375588899802.jpeg\",\"is_new_window_open\":\"0\",\"is_overall\":\"1\",\"is_goods_page_show_cart\":\"1\",\"pluginsname\":\"commonrightnavigation\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550222925', '1551191927'), ('17', 'commononlineservice', '{\"title\":\"ShopXO\\u5728\\u7ebf\\u5ba2\\u670d\",\"online_service\":\"\\u552e\\u524d|386392432\\n\\u552e\\u540e|386392432\",\"tel\":\"021-88888888\",\"is_overall\":\"1\",\"bg_color\":\"\",\"distance_top\":\"3\",\"pluginsname\":\"commononlineservice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550393304', '1552888774'), ('20', 'usernotloginhidegoodsprice', '{\"original_price_placeholder\":\"\",\"price_placeholder\":\"\\u767b\\u5f55\\u53ef\\u89c1\",\"pluginsname\":\"usernotloginhidegoodsprice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1551184852', '1552463476'), ('21', 'answers', '{\"application_name\":\"\\u95ee\\u7b54\",\"images\":\"\\/static\\/upload\\/images\\/plugins_answers\\/2019\\/03\\/07\\/1551942704326624.jpg\",\"url\":\"http:\\/\\/shopxo.net\\/\",\"is_new_window_open\":\"1\",\"images_bottom\":\"\\/static\\/upload\\/images\\/plugins_answers\\/2019\\/03\\/13\\/1552463137211834.png\",\"url_bottom\":\"https:\\/\\/test.shopxo.net\",\"is_new_window_open_bottom\":\"1\",\"right_top_rec_name\":\"\",\"middle_new_name\":\"\",\"right_top_goods_name\":\"\",\"middle_new_page_number\":\"15\",\"search_page_number\":\"28\",\"home_new_goods_number\":\"12\",\"category_ids\":\"12,7,6,4,3,2,1\",\"pluginsname\":\"answers\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"basesave\"}', '1', '1551853705', '1552724209'), ('23', 'expressforkdn', '{\"ebid\":\"\",\"appkey\":\"\",\"express_ids\":{\"1\":\"\",\"2\":\"\",\"3\":\"\",\"4\":\"ZTO\",\"5\":\"\",\"6\":\"\",\"7\":\"\",\"8\":\"\",\"9\":\"\",\"10\":\"\",\"11\":\"\",\"12\":\"\",\"13\":\"\",\"14\":\"\"},\"pluginsname\":\"expressforkdn\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552358826', '1553161103'), ('25', 'touristbuy', '{\"application_name\":\"\\u8ba2\\u5355\\u67e5\\u8be2\",\"login_name\":\"\\u6e38\\u5ba2\\u767b\\u5f55\",\"nickname\":\"\\u6e38\\u5ba2\",\"query_tips\":\"\\u8bf7\\u8f93\\u5165\\u8ba2\\u5355\\u53f7\\uff0c\\u6536\\u4ef6\\u4eba\\u59d3\\u540d\\uff0c\\u6536\\u4ef6\\u4eba\\u7535\\u8bdd\\u5373\\u53ef\\u67e5\\u770b\\u8ba2\\u5355\\u8be6\\u60c5\",\"is_default_tourist\":\"0\",\"pluginsname\":\"touristbuy\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552656743', '1553161135'), ('26', 'freightfee', '{\"show_name\":\"\\u8fd0\\u8d39\",\"valuation\":\"0\",\"data\":{\"0\":{\"region\":\"default\",\"region_show\":\"default\",\"first\":\"1\",\"first_price\":\"10\",\"continue\":\"1\",\"continue_price\":\"5\"},\"403611\":{\"region\":\"55-56-57-58-59-60-61-62-63-64-65-66-67-68-69-70-71-72\",\"region_show\":\"2\",\"first\":\"1\",\"first_price\":\"6\",\"continue\":\"1\",\"continue_price\":\"3\"}},\"pluginsname\":\"freightfee\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552894438', '1553161136'); +INSERT INTO `s_plugins` VALUES ('1', 'commontopmaxpicture', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commontopmaxpicture\\/2019\\/02\\/09\\/1549671733978860.jpg\",\"bg_color\":\"#ce0000\",\"url\":\"https:\\/\\/shopxo.net\\/\",\"is_new_window_open\":\"1\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopmaxpicture\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550145321', '1551345727'), ('2', 'commontopnotice', '{\"content\":\"\\u6b22\\u8fce\\u6765\\u5230ShopXO\\u4f01\\u4e1a\\u7ea7B2C\\u5f00\\u6e90\\u7535\\u5546\\u7cfb\\u7edf\\u3001\\u6f14\\u793a\\u7ad9\\u70b9\\u8bf7\\u52ff\\u53d1\\u8d77\\u652f\\u4ed8\\u3001\\u4ee5\\u514d\\u7ed9\\u60a8\\u5e26\\u6765\\u4e0d\\u5fc5\\u8981\\u7684\\u8d22\\u4ea7\\u635f\\u5931\\u3002\",\"is_overall\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"commontopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550156571', '1551345882'), ('3', 'usercentertopnotice', '{\"content\":\"\\u7528\\u6237\\u4e2d\\u5fc3\\u516c\\u544a\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"usercentertopnotice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550157860', '1551191932'), ('14', 'userloginrewardintegral', '{\"give_integral\":\"5\",\"is_day_once\":\"1\",\"time_start\":\"\",\"time_end\":\"\",\"pluginsname\":\"userloginrewardintegral\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550151175', '1551191930'), ('15', 'commongobacktop', '{\"images\":\"\\/static\\/upload\\/images\\/plugins_commongobacktop\\/2019\\/02\\/15\\/1550210425433304.png\",\"is_overall\":\"1\",\"pluginsname\":\"commongobacktop\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '0', '1550200998', '1551191928'), ('16', 'commonrightnavigation', '{\"weixin_mini_qrcode_images\":\"\\/static\\/upload\\/images\\/plugins_commonrightnavigation\\/2019\\/02\\/17\\/1550375588899802.jpeg\",\"is_new_window_open\":\"0\",\"is_overall\":\"1\",\"is_goods_page_show_cart\":\"1\",\"pluginsname\":\"commonrightnavigation\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550222925', '1551191927'), ('17', 'commononlineservice', '{\"title\":\"ShopXO\\u5728\\u7ebf\\u5ba2\\u670d\",\"online_service\":\"\\u552e\\u524d|386392432\\n\\u552e\\u540e|386392432\",\"tel\":\"021-88888888\",\"is_overall\":\"1\",\"bg_color\":\"\",\"distance_top\":\"3\",\"pluginsname\":\"commononlineservice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1550393304', '1552888774'), ('20', 'usernotloginhidegoodsprice', '{\"original_price_placeholder\":\"\",\"price_placeholder\":\"\\u767b\\u5f55\\u53ef\\u89c1\",\"pluginsname\":\"usernotloginhidegoodsprice\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1551184852', '1552463476'), ('21', 'answers', '{\"application_name\":\"\\u95ee\\u7b54\",\"images\":\"\\/static\\/upload\\/images\\/plugins_answers\\/2019\\/03\\/07\\/1551942704326624.jpg\",\"url\":\"http:\\/\\/shopxo.net\\/\",\"is_new_window_open\":\"1\",\"images_bottom\":\"\\/static\\/upload\\/images\\/plugins_answers\\/2019\\/03\\/13\\/1552463137211834.png\",\"url_bottom\":\"https:\\/\\/test.shopxo.net\",\"is_new_window_open_bottom\":\"1\",\"right_top_rec_name\":\"\",\"middle_new_name\":\"\",\"right_top_goods_name\":\"\",\"middle_new_page_number\":\"15\",\"search_page_number\":\"28\",\"home_new_goods_number\":\"12\",\"category_ids\":\"12,7,6,4,3,2,1\",\"pluginsname\":\"answers\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"basesave\"}', '1', '1551853705', '1552724209'), ('23', 'expressforkdn', '{\"ebid\":\"\",\"appkey\":\"\",\"express_ids\":{\"1\":\"\",\"2\":\"\",\"3\":\"\",\"4\":\"ZTO\",\"5\":\"\",\"6\":\"\",\"7\":\"\",\"8\":\"\",\"9\":\"\",\"10\":\"\",\"11\":\"\",\"12\":\"\",\"13\":\"\",\"14\":\"\"},\"pluginsname\":\"expressforkdn\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552358826', '1553161103'), ('25', 'touristbuy', '{\"application_name\":\"\\u8ba2\\u5355\\u67e5\\u8be2\",\"login_name\":\"\\u6e38\\u5ba2\\u767b\\u5f55\",\"nickname\":\"\\u6e38\\u5ba2\",\"query_tips\":\"\\u8bf7\\u8f93\\u5165\\u8ba2\\u5355\\u53f7\\uff0c\\u6536\\u4ef6\\u4eba\\u59d3\\u540d\\uff0c\\u6536\\u4ef6\\u4eba\\u7535\\u8bdd\\u5373\\u53ef\\u67e5\\u770b\\u8ba2\\u5355\\u8be6\\u60c5\",\"is_default_tourist\":\"0\",\"pluginsname\":\"touristbuy\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552656743', '1553161135'), ('26', 'freightfee', '{\"show_name\":\"\\u8fd0\\u8d39\",\"valuation\":\"0\",\"data\":{\"0\":{\"region\":\"default\",\"region_show\":\"default\",\"first\":\"1\",\"first_price\":\"10\",\"continue\":\"1\",\"continue_price\":\"5\"},\"403611\":{\"region\":\"55-56-57-58-59-60-61-62-63-64-65-66-67-68-69-70-71-72\",\"region_show\":\"2\",\"first\":\"1\",\"first_price\":\"6\",\"continue\":\"1\",\"continue_price\":\"3\"}},\"pluginsname\":\"freightfee\",\"pluginscontrol\":\"admin\",\"pluginsaction\":\"save\"}', '1', '1552894438', '1553225909'); COMMIT; -- ---------------------------- @@ -946,27 +953,6 @@ BEGIN; INSERT INTO `s_plugins_answers_slide` VALUES ('1', '品牌盛宴', '/static/upload/images/plugins_answers/2019/03/07/1551940388704924.jpg', 'https://ask.shopxo.net/', '1', '1', '1551865738', '1551940516'), ('2', '你想要的', '/static/upload/images/plugins_answers/2019/03/07/1551940388179648.jpg', 'https://ask.shopxo.net/article/6', '1', '3', '1551866754', '1551940526'), ('3', '爱上潮流名店', '/static/upload/images/plugins_answers/2019/03/07/1551940310193935.jpg', 'https://shopxo.net/', '1', '0', '1551940433', '1551940506'); COMMIT; --- ---------------------------- --- Table structure for `s_plugins_shopoauth_oauth` --- ---------------------------- -DROP TABLE IF EXISTS `s_plugins_shopoauth_oauth`; -CREATE TABLE `s_plugins_shopoauth_oauth` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', - `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID', - `platform` varchar(30) NOT NULL DEFAULT '' COMMENT '第三方应用', - `openid` varchar(50) NOT NULL DEFAULT '' COMMENT '第三方唯一ID', - `openname` varchar(50) NOT NULL DEFAULT '' COMMENT '第三方会员昵称', - `access_token` varchar(255) NOT NULL DEFAULT '' COMMENT 'AccessToken', - `refresh_token` varchar(255) NOT NULL DEFAULT 'RefreshToken', - `expires_in` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '有效期', - `createtime` int(10) unsigned DEFAULT NULL COMMENT '创建时间', - `updatetime` int(10) unsigned DEFAULT NULL COMMENT '更新时间', - `logintime` int(10) unsigned DEFAULT NULL COMMENT '登录时间', - PRIMARY KEY (`id`), - UNIQUE KEY `platform` (`platform`,`openid`), - KEY `user_id` (`user_id`,`platform`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='第三方登录表'; - -- ---------------------------- -- Table structure for `s_power` -- ---------------------------- @@ -982,13 +968,13 @@ CREATE TABLE `s_power` ( `icon` char(60) NOT NULL DEFAULT '' COMMENT '图标class', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='权限'; +) ENGINE=InnoDB AUTO_INCREMENT=352 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='权限'; -- ---------------------------- -- Records of `s_power` -- ---------------------------- BEGIN; -INSERT INTO `s_power` VALUES ('1', '0', '权限控制', 'Power', 'Index', '2', '1', 'icon-quanxian', '1481612301'), ('4', '1', '角色管理', 'Power', 'Role', '11', '1', '', '1481639037'), ('13', '1', '权限分配', 'Power', 'Index', '21', '1', '', '1482156143'), ('15', '1', '权限添加/编辑', 'Power', 'PowerSave', '22', '0', '', '1482243750'), ('16', '1', '权限删除', 'Power', 'PowerDelete', '23', '0', '', '1482243797'), ('17', '1', '角色组添加/编辑页面', 'Power', 'RoleSaveInfo', '12', '0', '', '1482243855'), ('18', '1', '角色组添加/编辑', 'Power', 'RoleSave', '13', '0', '', '1482243888'), ('19', '1', '管理员添加/编辑页面', 'Admin', 'SaveInfo', '2', '0', '', '1482244637'), ('20', '1', '管理员添加/编辑', 'Admin', 'Save', '3', '0', '', '1482244666'), ('21', '1', '管理员删除', 'Admin', 'Delete', '4', '0', '', '1482244688'), ('22', '1', '管理员列表', 'Admin', 'Index', '1', '1', '', '1482568868'), ('23', '1', '角色删除', 'Power', 'RoleDelete', '14', '0', '', '1482569155'), ('38', '0', '商品管理', 'Goods', 'Index', '3', '1', 'icon-shangpin', '1483283430'), ('39', '38', '商品管理', 'Goods', 'Index', '1', '1', '', '1483283546'), ('41', '0', '系统设置', 'Config', 'Index', '1', '1', 'icon-peizhi', '1483362358'), ('42', '41', '配置保存', 'Config', 'Save', '1', '0', '', '1483432335'), ('57', '38', '商品添加/编辑页面', 'Goods', 'SaveInfo', '2', '0', '', '1483616439'), ('58', '38', '商品添加/编辑', 'Goods', 'Save', '3', '0', '', '1483616492'), ('59', '38', '商品删除', 'Goods', 'Delete', '4', '0', '', '1483616569'), ('81', '0', '站点配置', 'Site', 'Index', '1', '1', 'icon-zhandianpeizhi', '1486182943'), ('103', '81', '站点设置', 'Site', 'Index', '0', '1', '', '1486561470'), ('104', '81', '短信设置', 'Sms', 'Index', '10', '1', '', '1486561615'), ('105', '81', '站点设置编辑', 'Site', 'Save', '1', '0', '', '1486561780'), ('107', '81', '短信设置编辑', 'Sms', 'Save', '11', '0', '', '1486562011'), ('118', '0', '工具', 'Tool', 'Index', '30', '1', 'icon-tools', '1488108044'), ('119', '118', '缓存管理', 'Cache', 'Index', '1', '1', '', '1488108107'), ('120', '118', '站点缓存更新', 'Cache', 'StatusUpdate', '2', '0', '', '1488108235'), ('121', '118', '模板缓存更新', 'Cache', 'TemplateUpdate', '2', '0', '', '1488108390'), ('122', '118', '模块缓存更新', 'Cache', 'ModuleUpdate', '3', '0', '', '1488108436'), ('126', '0', '用户管理', 'User', 'Index', '2', '1', 'icon-yonghuguanli', '1490794162'), ('127', '126', '用户列表', 'User', 'Index', '0', '1', '', '1490794316'), ('128', '126', '用户编辑/添加页面', 'User', 'SaveInfo', '1', '0', '', '1490794458'), ('129', '126', '用户添加/编辑', 'User', 'Save', '2', '0', '', '1490794510'), ('130', '126', '用户删除', 'User', 'Delete', '3', '0', '', '1490794585'), ('146', '126', 'Excel导出', 'User', 'ExcelExport', '6', '0', '', '1522223773'), ('153', '222', '地区管理', 'Region', 'Index', '60', '1', '', '1526304473'), ('154', '222', '地区添加/编辑', 'Region', 'Save', '61', '0', '', '1526304503'), ('155', '222', '地区删除', 'Region', 'Delete', '62', '0', '', '1526304531'), ('156', '222', '快递管理', 'Express', 'Index', '70', '1', '', '1526304473'), ('157', '222', '快递添加/编辑', 'Express', 'Save', '71', '0', '', '1526304473'), ('158', '222', '快递删除', 'Express', 'Delete', '72', '0', '', '1526304473'), ('172', '222', '首页轮播', 'Slide', 'Index', '40', '1', '', '1527149117'), ('173', '222', '轮播添加/编辑页面', 'Slide', 'SaveInfo', '41', '0', '', '1527149152'), ('174', '222', '轮播添加/编辑', 'Slide', 'Save', '42', '0', '', '1527149186'), ('175', '222', '轮播状态更新', 'Slide', 'StatusUpdate', '43', '0', '', '1527156980'), ('176', '222', '轮播删除', 'Slide', 'Delete', '44', '0', '', '1527157260'), ('177', '0', '订单管理', 'Order', 'Index', '5', '1', 'icon-dingdan', '1522229870'), ('178', '177', '订单管理', 'Order', 'Index', '1', '1', '', '1522317898'), ('179', '177', '订单删除', 'Order', 'Delete', '2', '0', '', '1522317917'), ('180', '177', '订单取消', 'Order', 'Cancel', '3', '0', '', '1527497803'), ('181', '38', '商品上下架', 'Goods', 'StatusShelves', '5', '0', '', '1528080200'), ('182', '0', '数据管理', 'Data', 'Index', '13', '1', 'icon-shuju', '1528096661'), ('183', '182', '消息管理', 'Message', 'Index', '0', '1', '', '1528080200'), ('184', '182', '消息删除', 'Message', 'Delete', '1', '0', '', '1528080200'), ('185', '182', '支付日志', 'PayLog', 'Index', '10', '1', '', '1528080200'), ('186', '182', '积分日志', 'IntegralLog', 'Index', '20', '1', '', '1528103067'), ('193', '222', '筛选价格', 'ScreeningPrice', 'Index', '50', '1', '', '1528708578'), ('194', '222', '筛选价格添加/编辑', 'ScreeningPrice', 'Save', '51', '0', '', '1528708609'), ('199', '81', 'SEO设置', 'Seo', 'Index', '30', '1', '', '1528771081'), ('200', '81', 'SEO设置编辑', 'Seo', 'Save', '31', '0', '', '1528771105'), ('201', '38', '商品分类', 'GoodsCategory', 'Index', '10', '1', '', '1529041901'), ('202', '38', '商品分类添加/编辑', 'GoodsCategory', 'Save', '11', '0', '', '1529041928'), ('203', '38', '商品分类删除', 'GoodsCategory', 'Delete', '12', '0', '', '1529041949'), ('204', '0', '文章管理', 'Article', 'Index', '12', '1', 'icon-wenzhang', '1530360560'), ('205', '204', '文章管理', 'Article', 'Index', '0', '1', '', '1530360593'), ('206', '204', '文章添加/编辑页面', 'Article', 'SaveInfo', '1', '0', '', '1530360625'), ('207', '204', '文章添加/编辑', 'Article', 'Save', '2', '0', '', '1530360663'), ('208', '204', '文章删除', 'Article', 'Delete', '3', '0', '', '1530360692'), ('209', '204', '文章状态更新', 'Article', 'StatusUpdate', '4', '0', '', '1530360730'), ('210', '204', '文章分类', 'ArticleCategory', 'Index', '10', '1', '', '1530361071'), ('211', '204', '文章分类编辑/添加', 'ArticleCategory', 'Save', '11', '0', '', '1530361101'), ('212', '204', '文章分类删除', 'ArticleCategory', 'Delete', '12', '0', '', '1530361126'), ('213', '0', '问答留言', 'Answer', 'Index', '6', '1', 'icon-wenda', '1533112421'), ('214', '213', '问答留言', 'Answer', 'Index', '0', '1', '', '1533112443'), ('215', '213', '问答留言回复', 'Answer', 'Reply', '1', '0', '', '1533119660'), ('216', '213', '问答留言删除', 'Answer', 'Delete', '2', '0', '', '1533119680'), ('217', '213', '问答留言状态更新', 'Answer', 'StatusUpdate', '3', '0', '', '1533119704'), ('218', '38', '商品首页推荐', 'Goods', 'StatusHomeRecommended', '6', '0', '', '1533564476'), ('219', '81', '邮箱设置', 'Email', 'Index', '20', '1', '', '1533636067'), ('220', '81', '邮箱添加/编辑', 'Email', 'Save', '21', '0', '', '1533636109'), ('221', '81', '邮件发送测试', 'Email', 'EmailTest', '22', '0', '', '1533636157'), ('222', '0', '网站管理', 'Navigation', 'Index', '7', '1', 'icon-wangzhanguanli', '1533692051'), ('223', '222', '导航管理', 'Navigation', 'Index', '0', '1', '', '1486183114'), ('226', '222', '导航添加/编辑', 'Navigation', 'Save', '2', '0', '', '1486183367'), ('227', '222', '导航删除', 'Navigation', 'Delete', '3', '0', '', '1486183410'), ('228', '222', '导航状态更新', 'Navigation', 'StatusUpdate', '4', '0', '', '1486183462'), ('234', '222', '自定义页面', 'CustomView', 'Index', '11', '1', '', '1486193400'), ('235', '222', '自定义页面添加/编辑页面', 'CustomView', 'SaveInfo', '12', '0', '', '1486193449'), ('236', '222', '自定义页面添加/编辑', 'CustomView', 'Save', '13', '0', '', '1486193473'), ('237', '222', '自定义页面删除', 'CustomView', 'Delete', '14', '0', '', '1486193516'), ('238', '222', '自定义页面状态更新', 'CustomView', 'StatusUpdate', '15', '0', '', '1486193582'), ('239', '222', '友情链接', 'Link', 'Index', '21', '1', '', '1486194358'), ('240', '222', '友情链接添加/编辑页面', 'Link', 'SaveInfo', '22', '0', '', '1486194392'), ('241', '222', '友情链接添加/编辑', 'Link', 'Save', '23', '0', '', '1486194413'), ('242', '222', '友情链接删除', 'Link', 'Delete', '24', '0', '', '1486194435'), ('243', '222', '友情链接状态更新', 'Link', 'StatusUpdate', '25', '0', '', '1486194479'), ('244', '222', '主题管理', 'Theme', 'Index', '30', '1', '', '1494381693'), ('245', '222', '主题管理添加/编辑', 'Theme', 'Save', '31', '0', '', '1494398194'), ('246', '222', '主题上传安装', 'Theme', 'Upload', '32', '0', '', '1494405096'), ('247', '222', '主题删除', 'Theme', 'Delete', '33', '0', '', '1494410655'), ('248', '204', '商品首页推荐', 'Article', 'StatusHomeRecommended', '5', '0', '', '1534156400'), ('249', '252', '品牌管理', 'Brand', 'Index', '0', '1', '', '1535683271'), ('250', '252', '品牌添加/编辑', 'Brand', 'Save', '2', '0', '', '1535683310'), ('251', '252', '品牌删除', 'Brand', 'Delete', '4', '0', '', '1535683351'), ('252', '0', '品牌管理', 'Brand', 'Index', '8', '1', 'icon-ico-pinpaiguanli', '1535684308'), ('253', '252', '品牌分类', 'BrandCategory', 'Index', '10', '1', '', '1535684401'), ('254', '252', '品牌分类添加/编辑', 'BrandCategory', 'Save', '11', '0', '', '1535684424'), ('255', '252', '品牌分类删除', 'BrandCategory', 'Delete', '12', '0', '', '1535684444'), ('256', '252', '品牌添加/编辑页面', 'Brand', 'SaveInfo', '1', '0', '', '1535694837'), ('257', '252', '品牌状态更新', 'Brand', 'StatusUpdate', '3', '0', '', '1535694880'), ('258', '222', '筛选价格删除', 'ScreeningPrice', 'Delete', '52', '0', '', '1536227071'), ('259', '222', '支付方式', 'Payment', 'Index', '80', '1', '', '1537156351'), ('260', '222', '支付方式安装/编辑页面', 'Payment', 'SaveInfo', '81', '0', '', '1537156423'), ('261', '222', '支付方式安装/编辑', 'Payment', 'Save', '82', '0', '', '1537156463'), ('262', '222', '支付方式删除', 'Payment', 'Delete', '83', '0', '', '1537156502'), ('263', '222', '支付方式安装', 'Payment', 'Install', '84', '0', '', '1537166090'), ('264', '222', '支付方式状态更新', 'Payment', 'StatusUpdate', '85', '0', '', '1537166149'), ('265', '222', '支付方式卸载', 'Payment', 'Uninstall', '86', '0', '', '1537167814'), ('266', '222', '支付方式上传', 'Payment', 'Upload', '87', '0', '', '1537173653'), ('267', '177', '订单发货', 'Order', 'Delivery', '4', '0', '', '1538413499'), ('268', '177', '订单收货', 'Order', 'Collect', '5', '0', '', '1538414034'), ('269', '177', '订单支付', 'Order', 'Pay', '6', '0', '', '1538757043'), ('310', '177', '订单确认', 'Order', 'Confirm', '7', '0', '', '1542011799'), ('311', '1', '角色状态更新', 'Power', 'RoleStatusUpdate', '15', '0', '', '1542102071'), ('312', '0', '支付宝小程序', 'AppMiniAlipay', 'Index', '10', '1', 'icon-xiaochengxu-alipay', '1542558274'), ('313', '312', '基础配置', 'AppMiniAlipayConfig', 'Index', '0', '1', '', '1542558297'), ('314', '319', '首页导航', 'AppHomeNav', 'Index', '10', '1', '', '1542558318'), ('315', '319', '首页导航添加/编辑页面', 'AppHomeNav', 'SaveInfo', '11', '0', '', '1542558686'), ('316', '319', '首页导航添加/编辑', 'AppHomeNav', 'Save', '12', '0', '', '1542558706'), ('317', '319', '首页导航状态更新', 'AppHomeNav', 'StatusUpdate', '13', '0', '', '1542558747'), ('318', '319', '首页导航删除', 'AppHomeNav', 'Delete', '14', '0', '', '1542558767'), ('319', '0', '手机端管理', 'App', 'Index', '9', '1', 'icon-shouji', '0'), ('325', '312', '基础配置保存', 'AppMiniAlipayConfig', 'Save', '1', '0', '', '1542596647'), ('326', '319', '基础配置', 'AppConfig', 'Index', '0', '1', '', '1543206359'), ('327', '319', '基础配置保存', 'AppConfig', 'Save', '1', '0', '', '1543206402'), ('328', '312', '小程序', 'AppMiniAlipayList', 'Index', '10', '1', '', '1543304094'), ('329', '312', '小程序生成', 'AppMiniAlipayList', 'Created', '11', '0', '', '1543305528'), ('330', '312', '小程序删除', 'AppMiniAlipayList', 'Delete', '12', '0', '', '1543305609'), ('331', '118', '日志删除', 'Cache', 'LogDelete', '4', '0', '', '1545642163'), ('332', '0', '微信小程序', 'AppMiniWeixin', 'Index', '11', '1', 'icon-xiaochengxu-wechat', '1546935020'), ('333', '332', '基础配置', 'AppMiniWeixinConfig', 'Index', '0', '1', '', '1546935090'), ('334', '332', '基础配置保存', 'AppMiniWeixinConfig', 'Save', '1', '0', '', '1546935118'), ('335', '332', '小程序', 'AppMiniWeixinList', 'Index', '10', '1', '', '1546935153'), ('336', '332', '小程序生成', 'AppMiniWeixinList', 'Created', '11', '0', '', '1546935187'), ('337', '332', '小程序删除', 'AppMiniWeixinList', 'Delete', '12', '0', '', '1546935212'), ('338', '177', 'Excel导出', 'Order', 'ExcelExport', '8', '0', '', '1548054782'), ('339', '41', '后台配置', 'Config', 'Index', '0', '1', '', '1549419752'), ('340', '0', '应用中心', 'Store', 'Index', '29', '1', 'icon-application', '1549496703'), ('341', '340', '应用管理', 'Pluginsadmin', 'Index', '1', '1', '', '1549497306'), ('342', '340', '应用状态更新', 'Pluginsadmin', 'StatusUpdate', '3', '0', '', '1549694138'), ('343', '340', '应用调用管理', 'Plugins', 'Index', '0', '0', '', '1549958187'), ('345', '340', '应用添加/编辑页面', 'Pluginsadmin', 'SaveInfo', '1', '0', '', '1549977925'), ('346', '340', '应用添加/编辑', 'Pluginsadmin', 'Save', '2', '0', '', '1549977958'), ('347', '340', '应用删除', 'Pluginsadmin', 'Delete', '4', '0', '', '1549977993'), ('348', '340', '应用上传/安装', 'Pluginsadmin', 'Upload', '5', '0', '', '1550110821'), ('349', '118', 'SQL控制台', 'Sqlconsole', 'Index', '10', '1', '', '1550476002'), ('350', '118', 'SQL执行', 'Sqlconsole', 'Implement', '11', '0', '', '1550476023'); +INSERT INTO `s_power` VALUES ('1', '0', '权限控制', 'Power', 'Index', '2', '1', 'icon-quanxian', '1481612301'), ('4', '1', '角色管理', 'Power', 'Role', '11', '1', '', '1481639037'), ('13', '1', '权限分配', 'Power', 'Index', '21', '1', '', '1482156143'), ('15', '1', '权限添加/编辑', 'Power', 'PowerSave', '22', '0', '', '1482243750'), ('16', '1', '权限删除', 'Power', 'PowerDelete', '23', '0', '', '1482243797'), ('17', '1', '角色组添加/编辑页面', 'Power', 'RoleSaveInfo', '12', '0', '', '1482243855'), ('18', '1', '角色组添加/编辑', 'Power', 'RoleSave', '13', '0', '', '1482243888'), ('19', '1', '管理员添加/编辑页面', 'Admin', 'SaveInfo', '2', '0', '', '1482244637'), ('20', '1', '管理员添加/编辑', 'Admin', 'Save', '3', '0', '', '1482244666'), ('21', '1', '管理员删除', 'Admin', 'Delete', '4', '0', '', '1482244688'), ('22', '1', '管理员列表', 'Admin', 'Index', '1', '1', '', '1482568868'), ('23', '1', '角色删除', 'Power', 'RoleDelete', '14', '0', '', '1482569155'), ('38', '0', '商品管理', 'Goods', 'Index', '3', '1', 'icon-shangpin', '1483283430'), ('39', '38', '商品管理', 'Goods', 'Index', '1', '1', '', '1483283546'), ('41', '0', '系统设置', 'Config', 'Index', '1', '1', 'icon-peizhi', '1483362358'), ('42', '41', '配置保存', 'Config', 'Save', '1', '0', '', '1483432335'), ('57', '38', '商品添加/编辑页面', 'Goods', 'SaveInfo', '2', '0', '', '1483616439'), ('58', '38', '商品添加/编辑', 'Goods', 'Save', '3', '0', '', '1483616492'), ('59', '38', '商品删除', 'Goods', 'Delete', '4', '0', '', '1483616569'), ('81', '0', '站点配置', 'Site', 'Index', '1', '1', 'icon-zhandianpeizhi', '1486182943'), ('103', '81', '站点设置', 'Site', 'Index', '0', '1', '', '1486561470'), ('104', '81', '短信设置', 'Sms', 'Index', '10', '1', '', '1486561615'), ('105', '81', '站点设置编辑', 'Site', 'Save', '1', '0', '', '1486561780'), ('107', '81', '短信设置编辑', 'Sms', 'Save', '11', '0', '', '1486562011'), ('118', '0', '工具', 'Tool', 'Index', '30', '1', 'icon-tools', '1488108044'), ('119', '118', '缓存管理', 'Cache', 'Index', '1', '1', '', '1488108107'), ('120', '118', '站点缓存更新', 'Cache', 'StatusUpdate', '2', '0', '', '1488108235'), ('121', '118', '模板缓存更新', 'Cache', 'TemplateUpdate', '2', '0', '', '1488108390'), ('122', '118', '模块缓存更新', 'Cache', 'ModuleUpdate', '3', '0', '', '1488108436'), ('126', '0', '用户管理', 'User', 'Index', '2', '1', 'icon-yonghuguanli', '1490794162'), ('127', '126', '用户列表', 'User', 'Index', '0', '1', '', '1490794316'), ('128', '126', '用户编辑/添加页面', 'User', 'SaveInfo', '1', '0', '', '1490794458'), ('129', '126', '用户添加/编辑', 'User', 'Save', '2', '0', '', '1490794510'), ('130', '126', '用户删除', 'User', 'Delete', '3', '0', '', '1490794585'), ('146', '126', 'Excel导出', 'User', 'ExcelExport', '6', '0', '', '1522223773'), ('153', '222', '地区管理', 'Region', 'Index', '60', '1', '', '1526304473'), ('154', '222', '地区添加/编辑', 'Region', 'Save', '61', '0', '', '1526304503'), ('155', '222', '地区删除', 'Region', 'Delete', '62', '0', '', '1526304531'), ('156', '222', '快递管理', 'Express', 'Index', '70', '1', '', '1526304473'), ('157', '222', '快递添加/编辑', 'Express', 'Save', '71', '0', '', '1526304473'), ('158', '222', '快递删除', 'Express', 'Delete', '72', '0', '', '1526304473'), ('172', '222', '首页轮播', 'Slide', 'Index', '40', '1', '', '1527149117'), ('173', '222', '轮播添加/编辑页面', 'Slide', 'SaveInfo', '41', '0', '', '1527149152'), ('174', '222', '轮播添加/编辑', 'Slide', 'Save', '42', '0', '', '1527149186'), ('175', '222', '轮播状态更新', 'Slide', 'StatusUpdate', '43', '0', '', '1527156980'), ('176', '222', '轮播删除', 'Slide', 'Delete', '44', '0', '', '1527157260'), ('177', '0', '订单管理', 'Order', 'Index', '5', '1', 'icon-dingdan', '1522229870'), ('178', '177', '订单管理', 'Order', 'Index', '1', '1', '', '1522317898'), ('179', '177', '订单删除', 'Order', 'Delete', '2', '0', '', '1522317917'), ('180', '177', '订单取消', 'Order', 'Cancel', '3', '0', '', '1527497803'), ('181', '38', '商品上下架', 'Goods', 'StatusShelves', '5', '0', '', '1528080200'), ('182', '0', '数据管理', 'Data', 'Index', '13', '1', 'icon-shuju', '1528096661'), ('183', '182', '消息管理', 'Message', 'Index', '0', '1', '', '1528080200'), ('184', '182', '消息删除', 'Message', 'Delete', '1', '0', '', '1528080200'), ('185', '182', '支付日志', 'PayLog', 'Index', '10', '1', '', '1528080200'), ('186', '182', '积分日志', 'IntegralLog', 'Index', '20', '1', '', '1528103067'), ('193', '222', '筛选价格', 'ScreeningPrice', 'Index', '50', '1', '', '1528708578'), ('194', '222', '筛选价格添加/编辑', 'ScreeningPrice', 'Save', '51', '0', '', '1528708609'), ('199', '81', 'SEO设置', 'Seo', 'Index', '30', '1', '', '1528771081'), ('200', '81', 'SEO设置编辑', 'Seo', 'Save', '31', '0', '', '1528771105'), ('201', '38', '商品分类', 'GoodsCategory', 'Index', '10', '1', '', '1529041901'), ('202', '38', '商品分类添加/编辑', 'GoodsCategory', 'Save', '11', '0', '', '1529041928'), ('203', '38', '商品分类删除', 'GoodsCategory', 'Delete', '12', '0', '', '1529041949'), ('204', '0', '文章管理', 'Article', 'Index', '12', '1', 'icon-wenzhang', '1530360560'), ('205', '204', '文章管理', 'Article', 'Index', '0', '1', '', '1530360593'), ('206', '204', '文章添加/编辑页面', 'Article', 'SaveInfo', '1', '0', '', '1530360625'), ('207', '204', '文章添加/编辑', 'Article', 'Save', '2', '0', '', '1530360663'), ('208', '204', '文章删除', 'Article', 'Delete', '3', '0', '', '1530360692'), ('209', '204', '文章状态更新', 'Article', 'StatusUpdate', '4', '0', '', '1530360730'), ('210', '204', '文章分类', 'ArticleCategory', 'Index', '10', '1', '', '1530361071'), ('211', '204', '文章分类编辑/添加', 'ArticleCategory', 'Save', '11', '0', '', '1530361101'), ('212', '204', '文章分类删除', 'ArticleCategory', 'Delete', '12', '0', '', '1530361126'), ('213', '0', '问答留言', 'Answer', 'Index', '6', '1', 'icon-wenda', '1533112421'), ('214', '213', '问答留言', 'Answer', 'Index', '0', '1', '', '1533112443'), ('215', '213', '问答留言回复', 'Answer', 'Reply', '1', '0', '', '1533119660'), ('216', '213', '问答留言删除', 'Answer', 'Delete', '2', '0', '', '1533119680'), ('217', '213', '问答留言状态更新', 'Answer', 'StatusUpdate', '3', '0', '', '1533119704'), ('218', '38', '商品首页推荐', 'Goods', 'StatusHomeRecommended', '6', '0', '', '1533564476'), ('219', '81', '邮箱设置', 'Email', 'Index', '20', '1', '', '1533636067'), ('220', '81', '邮箱添加/编辑', 'Email', 'Save', '21', '0', '', '1533636109'), ('221', '81', '邮件发送测试', 'Email', 'EmailTest', '22', '0', '', '1533636157'), ('222', '0', '网站管理', 'Navigation', 'Index', '7', '1', 'icon-wangzhanguanli', '1533692051'), ('223', '222', '导航管理', 'Navigation', 'Index', '0', '1', '', '1486183114'), ('226', '222', '导航添加/编辑', 'Navigation', 'Save', '2', '0', '', '1486183367'), ('227', '222', '导航删除', 'Navigation', 'Delete', '3', '0', '', '1486183410'), ('228', '222', '导航状态更新', 'Navigation', 'StatusUpdate', '4', '0', '', '1486183462'), ('234', '222', '自定义页面', 'CustomView', 'Index', '11', '1', '', '1486193400'), ('235', '222', '自定义页面添加/编辑页面', 'CustomView', 'SaveInfo', '12', '0', '', '1486193449'), ('236', '222', '自定义页面添加/编辑', 'CustomView', 'Save', '13', '0', '', '1486193473'), ('237', '222', '自定义页面删除', 'CustomView', 'Delete', '14', '0', '', '1486193516'), ('238', '222', '自定义页面状态更新', 'CustomView', 'StatusUpdate', '15', '0', '', '1486193582'), ('239', '222', '友情链接', 'Link', 'Index', '21', '1', '', '1486194358'), ('240', '222', '友情链接添加/编辑页面', 'Link', 'SaveInfo', '22', '0', '', '1486194392'), ('241', '222', '友情链接添加/编辑', 'Link', 'Save', '23', '0', '', '1486194413'), ('242', '222', '友情链接删除', 'Link', 'Delete', '24', '0', '', '1486194435'), ('243', '222', '友情链接状态更新', 'Link', 'StatusUpdate', '25', '0', '', '1486194479'), ('244', '222', '主题管理', 'Theme', 'Index', '30', '1', '', '1494381693'), ('245', '222', '主题管理添加/编辑', 'Theme', 'Save', '31', '0', '', '1494398194'), ('246', '222', '主题上传安装', 'Theme', 'Upload', '32', '0', '', '1494405096'), ('247', '222', '主题删除', 'Theme', 'Delete', '33', '0', '', '1494410655'), ('248', '204', '商品首页推荐', 'Article', 'StatusHomeRecommended', '5', '0', '', '1534156400'), ('249', '252', '品牌管理', 'Brand', 'Index', '0', '1', '', '1535683271'), ('250', '252', '品牌添加/编辑', 'Brand', 'Save', '2', '0', '', '1535683310'), ('251', '252', '品牌删除', 'Brand', 'Delete', '4', '0', '', '1535683351'), ('252', '0', '品牌管理', 'Brand', 'Index', '8', '1', 'icon-ico-pinpaiguanli', '1535684308'), ('253', '252', '品牌分类', 'BrandCategory', 'Index', '10', '1', '', '1535684401'), ('254', '252', '品牌分类添加/编辑', 'BrandCategory', 'Save', '11', '0', '', '1535684424'), ('255', '252', '品牌分类删除', 'BrandCategory', 'Delete', '12', '0', '', '1535684444'), ('256', '252', '品牌添加/编辑页面', 'Brand', 'SaveInfo', '1', '0', '', '1535694837'), ('257', '252', '品牌状态更新', 'Brand', 'StatusUpdate', '3', '0', '', '1535694880'), ('258', '222', '筛选价格删除', 'ScreeningPrice', 'Delete', '52', '0', '', '1536227071'), ('259', '222', '支付方式', 'Payment', 'Index', '80', '1', '', '1537156351'), ('260', '222', '支付方式安装/编辑页面', 'Payment', 'SaveInfo', '81', '0', '', '1537156423'), ('261', '222', '支付方式安装/编辑', 'Payment', 'Save', '82', '0', '', '1537156463'), ('262', '222', '支付方式删除', 'Payment', 'Delete', '83', '0', '', '1537156502'), ('263', '222', '支付方式安装', 'Payment', 'Install', '84', '0', '', '1537166090'), ('264', '222', '支付方式状态更新', 'Payment', 'StatusUpdate', '85', '0', '', '1537166149'), ('265', '222', '支付方式卸载', 'Payment', 'Uninstall', '86', '0', '', '1537167814'), ('266', '222', '支付方式上传', 'Payment', 'Upload', '87', '0', '', '1537173653'), ('267', '177', '订单发货', 'Order', 'Delivery', '4', '0', '', '1538413499'), ('268', '177', '订单收货', 'Order', 'Collect', '5', '0', '', '1538414034'), ('269', '177', '订单支付', 'Order', 'Pay', '6', '0', '', '1538757043'), ('310', '177', '订单确认', 'Order', 'Confirm', '7', '0', '', '1542011799'), ('311', '1', '角色状态更新', 'Power', 'RoleStatusUpdate', '15', '0', '', '1542102071'), ('312', '0', '支付宝小程序', 'AppMiniAlipay', 'Index', '10', '1', 'icon-xiaochengxu-alipay', '1542558274'), ('313', '312', '基础配置', 'AppMiniAlipayConfig', 'Index', '0', '1', '', '1542558297'), ('314', '319', '首页导航', 'AppHomeNav', 'Index', '10', '1', '', '1542558318'), ('315', '319', '首页导航添加/编辑页面', 'AppHomeNav', 'SaveInfo', '11', '0', '', '1542558686'), ('316', '319', '首页导航添加/编辑', 'AppHomeNav', 'Save', '12', '0', '', '1542558706'), ('317', '319', '首页导航状态更新', 'AppHomeNav', 'StatusUpdate', '13', '0', '', '1542558747'), ('318', '319', '首页导航删除', 'AppHomeNav', 'Delete', '14', '0', '', '1542558767'), ('319', '0', '手机端管理', 'App', 'Index', '9', '1', 'icon-shouji', '0'), ('325', '312', '基础配置保存', 'AppMiniAlipayConfig', 'Save', '1', '0', '', '1542596647'), ('326', '319', '基础配置', 'AppConfig', 'Index', '0', '1', '', '1543206359'), ('327', '319', '基础配置保存', 'AppConfig', 'Save', '1', '0', '', '1543206402'), ('328', '312', '小程序', 'AppMiniAlipayList', 'Index', '10', '1', '', '1543304094'), ('329', '312', '小程序生成', 'AppMiniAlipayList', 'Created', '11', '0', '', '1543305528'), ('330', '312', '小程序删除', 'AppMiniAlipayList', 'Delete', '12', '0', '', '1543305609'), ('331', '118', '日志删除', 'Cache', 'LogDelete', '4', '0', '', '1545642163'), ('332', '0', '微信小程序', 'AppMiniWeixin', 'Index', '11', '1', 'icon-xiaochengxu-wechat', '1546935020'), ('333', '332', '基础配置', 'AppMiniWeixinConfig', 'Index', '0', '1', '', '1546935090'), ('334', '332', '基础配置保存', 'AppMiniWeixinConfig', 'Save', '1', '0', '', '1546935118'), ('335', '332', '小程序', 'AppMiniWeixinList', 'Index', '10', '1', '', '1546935153'), ('336', '332', '小程序生成', 'AppMiniWeixinList', 'Created', '11', '0', '', '1546935187'), ('337', '332', '小程序删除', 'AppMiniWeixinList', 'Delete', '12', '0', '', '1546935212'), ('338', '177', 'Excel导出', 'Order', 'ExcelExport', '8', '0', '', '1548054782'), ('339', '41', '后台配置', 'Config', 'Index', '0', '1', '', '1549419752'), ('340', '0', '应用中心', 'Store', 'Index', '29', '1', 'icon-application', '1549496703'), ('341', '340', '应用管理', 'Pluginsadmin', 'Index', '1', '1', '', '1549497306'), ('342', '340', '应用状态更新', 'Pluginsadmin', 'StatusUpdate', '3', '0', '', '1549694138'), ('343', '340', '应用调用管理', 'Plugins', 'Index', '0', '0', '', '1549958187'), ('345', '340', '应用添加/编辑页面', 'Pluginsadmin', 'SaveInfo', '1', '0', '', '1549977925'), ('346', '340', '应用添加/编辑', 'Pluginsadmin', 'Save', '2', '0', '', '1549977958'), ('347', '340', '应用删除', 'Pluginsadmin', 'Delete', '4', '0', '', '1549977993'), ('348', '340', '应用上传/安装', 'Pluginsadmin', 'Upload', '5', '0', '', '1550110821'), ('349', '118', 'SQL控制台', 'Sqlconsole', 'Index', '10', '1', '', '1550476002'), ('350', '118', 'SQL执行', 'Sqlconsole', 'Implement', '11', '0', '', '1550476023'), ('351', '340', '应用打包', 'Pluginsadmin', 'Download', '6', '0', '', '1553248727'); COMMIT; -- ---------------------------- @@ -1138,13 +1124,13 @@ CREATE TABLE `s_search_history` ( `ymd` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '日期 ymd', `add_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; +) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='搜索日志'; -- ---------------------------- -- Records of `s_search_history` -- ---------------------------- BEGIN; -INSERT INTO `s_search_history` VALUES ('1', '77', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551233729'), ('2', '77', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551233736'), ('3', '0', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551233824'), ('4', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260421'), ('5', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260423'), ('6', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260432'), ('7', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260448'), ('8', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260575'), ('9', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260885'), ('10', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260887'), ('11', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551261001'), ('12', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551261934'), ('13', '0', '0', '0', '', '0-0', 'default', 'asc', '20190228', '1551343490'), ('14', '0', '0', '0', '', '0-0', 'default', 'asc', '20190228', '1551343927'), ('15', '77', '0', '0', '', '0-0', 'default', 'asc', '20190306', '1551858508'), ('16', '0', '0', '0', '', '0-0', 'default', 'asc', '20190307', '1551952616'), ('17', '0', '0', '0', '', '0-0', 'default', 'asc', '20190308', '1552037213'), ('18', '0', '0', '0', '', '0-0', 'default', 'asc', '20190308', '1552037324'), ('19', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552282877'), ('20', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552282891'), ('21', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552284595'), ('22', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552284988'), ('23', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552287518'), ('24', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552287529'), ('25', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552292501'), ('26', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552292564'), ('27', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552292570'), ('28', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552292573'), ('29', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552292801'), ('30', '0', '0', '53', '', '0-0', 'default', 'asc', '20190311', '1552292806'), ('31', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293119'), ('32', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293150'), ('33', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293153'), ('34', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293210'), ('35', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293238'), ('36', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293258'), ('37', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552295698'), ('38', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552295701'), ('39', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552296970'), ('40', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552296971'), ('41', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552446286'), ('42', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552446830'), ('43', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552461592'), ('44', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552461878'), ('45', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552464847'), ('46', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552467418'), ('47', '77', '0', '0', '', '0-0', 'min_price', 'desc', '20190313', '1552467421'), ('48', '77', '0', '0', '', '0-0', 'min_price', 'asc', '20190313', '1552467423'), ('49', '0', '0', '1', '', '0-0', 'default', 'asc', '20190314', '1552529646'), ('50', '77', '0', '1', '', '0-0', 'default', 'asc', '20190314', '1552529650'), ('51', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552531528'), ('52', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532412'), ('53', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532430'), ('54', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532687'), ('55', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532711'), ('56', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532714'), ('57', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532836'), ('58', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532873'), ('59', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532888'), ('60', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532895'), ('61', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532913'), ('62', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532919'), ('63', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552533239'), ('64', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552549550'), ('65', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552553299'), ('66', '77', '0', '0', '', '0-0', 'min_price', 'desc', '20190314', '1552553300'), ('67', '77', '0', '0', '', '0-0', 'min_price', 'asc', '20190314', '1552553302'), ('68', '77', '0', '1', '', '0-0', 'default', 'asc', '20190315', '1552639821'), ('69', '97', '0', '0', '', '0-0', 'default', 'asc', '20190315', '1552661032'), ('70', '0', '0', '0', '', '0-0', 'default', 'asc', '20190316', '1552724523'), ('71', '0', '0', '0', '', '0-0', 'default', 'asc', '20190316', '1552724538'), ('72', '0', '0', '0', '', '0-0', 'default', 'asc', '20190316', '1552724539'), ('73', '0', '0', '0', '', '0-0', 'default', 'asc', '20190316', '1552724540'), ('74', '0', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887206'), ('75', '0', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887332'), ('76', '0', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887333'), ('77', '0', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887521'), ('78', '98', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887907'), ('79', '98', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887909'), ('80', '99', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887951'), ('81', '99', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552888090'), ('82', '99', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552888249'), ('83', '99', '0', '57', '', '0-0', 'default', 'asc', '20190320', '1553062066'); +INSERT INTO `s_search_history` VALUES ('1', '77', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551233729'), ('2', '77', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551233736'), ('3', '0', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551233824'), ('4', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260421'), ('5', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260423'), ('6', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260432'), ('7', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260448'), ('8', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260575'), ('9', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260885'), ('10', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551260887'), ('11', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551261001'), ('12', '92', '0', '0', '', '0-0', 'default', 'asc', '20190227', '1551261934'), ('13', '0', '0', '0', '', '0-0', 'default', 'asc', '20190228', '1551343490'), ('14', '0', '0', '0', '', '0-0', 'default', 'asc', '20190228', '1551343927'), ('15', '77', '0', '0', '', '0-0', 'default', 'asc', '20190306', '1551858508'), ('16', '0', '0', '0', '', '0-0', 'default', 'asc', '20190307', '1551952616'), ('17', '0', '0', '0', '', '0-0', 'default', 'asc', '20190308', '1552037213'), ('18', '0', '0', '0', '', '0-0', 'default', 'asc', '20190308', '1552037324'), ('19', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552282877'), ('20', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552282891'), ('21', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552284595'), ('22', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552284988'), ('23', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552287518'), ('24', '77', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552287529'), ('25', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552292501'), ('26', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552292564'), ('27', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552292570'), ('28', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552292573'), ('29', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552292801'), ('30', '0', '0', '53', '', '0-0', 'default', 'asc', '20190311', '1552292806'), ('31', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293119'), ('32', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293150'), ('33', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293153'), ('34', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293210'), ('35', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293238'), ('36', '0', '0', '0', '', '0-0', 'default', 'asc', '20190311', '1552293258'), ('37', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552295698'), ('38', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552295701'), ('39', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552296970'), ('40', '0', '0', '1', '', '0-0', 'default', 'asc', '20190311', '1552296971'), ('41', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552446286'), ('42', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552446830'), ('43', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552461592'), ('44', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552461878'), ('45', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552464847'), ('46', '77', '0', '0', '', '0-0', 'default', 'asc', '20190313', '1552467418'), ('47', '77', '0', '0', '', '0-0', 'min_price', 'desc', '20190313', '1552467421'), ('48', '77', '0', '0', '', '0-0', 'min_price', 'asc', '20190313', '1552467423'), ('49', '0', '0', '1', '', '0-0', 'default', 'asc', '20190314', '1552529646'), ('50', '77', '0', '1', '', '0-0', 'default', 'asc', '20190314', '1552529650'), ('51', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552531528'), ('52', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532412'), ('53', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532430'), ('54', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532687'), ('55', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532711'), ('56', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532714'), ('57', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532836'), ('58', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532873'), ('59', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532888'), ('60', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532895'), ('61', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532913'), ('62', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552532919'), ('63', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552533239'), ('64', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552549550'), ('65', '77', '0', '0', '', '0-0', 'default', 'asc', '20190314', '1552553299'), ('66', '77', '0', '0', '', '0-0', 'min_price', 'desc', '20190314', '1552553300'), ('67', '77', '0', '0', '', '0-0', 'min_price', 'asc', '20190314', '1552553302'), ('68', '77', '0', '1', '', '0-0', 'default', 'asc', '20190315', '1552639821'), ('69', '97', '0', '0', '', '0-0', 'default', 'asc', '20190315', '1552661032'), ('70', '0', '0', '0', '', '0-0', 'default', 'asc', '20190316', '1552724523'), ('71', '0', '0', '0', '', '0-0', 'default', 'asc', '20190316', '1552724538'), ('72', '0', '0', '0', '', '0-0', 'default', 'asc', '20190316', '1552724539'), ('73', '0', '0', '0', '', '0-0', 'default', 'asc', '20190316', '1552724540'), ('74', '0', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887206'), ('75', '0', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887332'), ('76', '0', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887333'), ('77', '0', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887521'), ('78', '98', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887907'), ('79', '98', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887909'), ('80', '99', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552887951'), ('81', '99', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552888090'), ('82', '99', '0', '0', '', '0-0', 'default', 'asc', '20190318', '1552888249'), ('83', '99', '0', '57', '', '0-0', 'default', 'asc', '20190320', '1553062066'), ('84', '99', '0', '0', '', '0-0', 'default', 'asc', '20190322', '1553221737'); COMMIT; -- ---------------------------- @@ -1247,7 +1233,7 @@ CREATE TABLE `s_user_address` ( -- Records of `s_user_address` -- ---------------------------- BEGIN; -INSERT INTO `s_user_address` VALUES ('1', '92', '', '2323', '17602128368', '1', '37', '567', '23', '116.4113820000', '39.9184710000', '0', '0', '1551238222', '0'), ('2', '77', '', '绿色校园', '13222333333', '1', '38', '577', '333', '116.3911060000', '39.9422140000', '1', '0', '1552362027', '0'), ('3', '97', '', 'sky', '13222333333', '1', '38', '578', '33', '116.3513820000', '39.9401890000', '0', '0', '1552711371', '0'), ('4', '99', '', '管理员', '13222333333', '1', '37', '568', '22', '116.4324530000', '39.9351630000', '1', '0', '1553050555', '0'), ('5', '99', '', '绿色校园', '13222335555', '5', '98', '1440', '666', '118.6670560000', '41.9083510000', '0', '0', '1553050586', '0'), ('6', '99', '', 'tyty', '13222335555', '4', '86', '1321', '6767', '113.3609670000', '38.2293860000', '0', '1553072014', '1553070928', '0'), ('7', '99', '', '89', '17602128368', '6', '109', '1544', '787', '123.3460690000', '40.4031810000', '0', '1553071924', '1553071426', '1553071585'), ('8', '99', '', '9090', '13222333333', '6', '107', '1522', '88', '123.4989270000', '41.8352790000', '0', '1553071961', '1553071475', '1553071579'), ('9', '99', '', '67', '13222335555', '6', '113', '1570', '65', '121.2855750000', '41.1525660000', '0', '1553071909', '1553071561', '0'), ('10', '90', '', '11', '13222222222', '2', '55', '883', '33', '0.0000000000', '0.0000000000', '0', '0', '1553157134', '0'); +INSERT INTO `s_user_address` VALUES ('1', '92', '', '2323', '17602128368', '1', '37', '567', '23', '116.4113820000', '39.9184710000', '0', '0', '1551238222', '0'), ('2', '77', '', '绿色校园', '13222333333', '1', '38', '577', '333', '116.3911060000', '39.9422140000', '1', '0', '1552362027', '0'), ('3', '97', '', 'sky', '13222333333', '1', '38', '578', '33', '116.3513820000', '39.9401890000', '0', '0', '1552711371', '0'), ('4', '99', '', '管理员', '13222333333', '1', '37', '568', '22', '116.4324530000', '39.9351630000', '1', '0', '1553050555', '0'), ('5', '99', '', '绿色校园', '13222335555', '5', '98', '1440', '666', '118.6670560000', '41.9083510000', '0', '0', '1553050586', '1553219762'), ('6', '99', '', 'tyty', '13222335555', '4', '86', '1321', '6767', '113.3609670000', '38.2293860000', '0', '1553072014', '1553070928', '0'), ('7', '99', '', '89', '17602128368', '6', '109', '1544', '787', '123.3460690000', '40.4031810000', '0', '1553071924', '1553071426', '1553071585'), ('8', '99', '', '9090', '13222333333', '6', '107', '1522', '88', '123.4989270000', '41.8352790000', '0', '1553071961', '1553071475', '1553071579'), ('9', '99', '', '67', '13222335555', '6', '113', '1570', '65', '121.2855750000', '41.1525660000', '0', '1553071909', '1553071561', '0'), ('10', '90', '', '11', '13222222222', '2', '55', '883', '33', '0.0000000000', '0.0000000000', '0', '0', '1553157134', '0'); COMMIT; -- ----------------------------