/* Navicat MySQL Data Transfer Source Server : 本地 Source Server Version : 80012 Source Host : localhost:3306 Source Database : course-server Target Server Type : MYSQL Target Server Version : 80012 File Encoding : 65001 Date: 2020-04-02 17:34:00 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for admin_menu -- ---------------------------- DROP TABLE IF EXISTS `admin_menu`; CREATE TABLE `admin_menu` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL DEFAULT '0', `order` int(11) NOT NULL DEFAULT '0', `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `blank` int(11) NOT NULL DEFAULT '0', `uri` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_menu -- ---------------------------- INSERT INTO `admin_menu` VALUES ('1', '0', '5', '系统管理', 'fa-tasks', '0', '/', null, '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('2', '1', '6', 'Index', 'fa-bar-chart', '0', '/', null, '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('3', '1', '7', 'Admin', 'fa-tasks', '0', '', null, '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('4', '3', '8', 'Users', 'fa-users', '0', 'auth/users', null, '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('5', '3', '9', 'Roles', 'fa-user', '0', 'auth/roles', null, '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('6', '3', '10', 'Permission', 'fa-ban', '0', 'auth/permissions', null, '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('7', '3', '11', 'Menu', 'fa-bars', '0', 'auth/menu', null, '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('8', '3', '12', 'Operation log', 'fa-history', '0', 'auth/logs', null, '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('9', '1', '13', 'Helpers', 'fa-gears', '0', '', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('10', '9', '14', 'Scaffold', 'fa-keyboard-o', '0', 'helpers/scaffold', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('11', '9', '15', 'Database terminal', 'fa-database', '0', 'helpers/terminal/database', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('12', '9', '16', 'Laravel artisan', 'fa-terminal', '0', 'helpers/terminal/artisan', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('13', '9', '17', 'Routes', 'fa-list-alt', '0', 'helpers/routes', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('14', '1', '18', 'Redis manager', 'fa-database', '0', 'redis', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('15', '1', '19', 'Backup', 'fa-copy', '0', 'backup', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('16', '1', '20', 'Log viewer', 'fa-database', '0', 'logs', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('17', '1', '21', 'Scheduling', 'fa-clock-o', '0', 'scheduling', '2020-03-23 21:50:43', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('18', '0', '22', '会员管理', 'iconfont icon-huiyuanguanli-', '1', 'member/users', '2020-03-23 21:50:44', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('19', '18', '23', '会员管理', 'iconfont icon-huiyuanguanli--', '1', 'member/users', '2020-03-23 21:50:44', '2020-03-31 09:34:09'); INSERT INTO `admin_menu` VALUES ('20', '18', '24', '会员积分记录', 'iconfont icon-huiyuanjifenjilu', '1', 'member/points', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('21', '18', '25', '会员余额记录', 'iconfont icon-huiyuanjifenjilu', '1', 'member/balances', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('22', '18', '26', '储值管理', 'iconfont icon-zhifushezhi', '1', 'member/recharge', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('23', '0', '27', '商城管理', 'iconfont icon-shangchengguanli-', '1', 'store/dashboard', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('24', '23', '28', '商城设置', 'iconfont icon-shangchengshezhi-', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('25', '24', '29', '全局设置', '', '1', 'store/setting/shopSetting', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('26', '24', '30', '积分设置', '', '1', 'store/setting/point', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('27', '24', '31', '售后设置', '', '1', 'store/setting/refund-reason', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('28', '24', '32', '客服设置', '', '1', 'store/setting/onlineService', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('29', '24', '33', '微页面', '', '1', 'store/setting/micro/page', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('30', '24', '34', '模块管理', '', '1', 'store/setting/micro/page/compoent', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('31', '23', '36', '商品管理', 'iconfont icon-shangpinshezhi-', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('32', '31', '37', '模型管理', '', '1', 'store/models', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('33', '31', '38', '规格管理', '', '1', 'store/specs', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('34', '31', '39', '参数管理', '', '1', 'store/attribute', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('35', '31', '40', '品牌管理', '', '1', 'store/brand', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('36', '31', '41', '分类管理', '', '1', 'store/category', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('37', '31', '42', '商品列表', '', '1', 'store/goods', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('38', '23', '44', '促销管理', 'iconfont icon-cuxiaoguanli', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('39', '38', '45', '促销活动管理', '', '1', 'store/promotion/discount', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('40', '38', '46', '优惠券管理', '', '1', 'store/promotion/coupon', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('41', '38', '47', '多人拼团管理', '', '1', 'store/promotion/multiGroupon', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('42', '38', '48', '砍价管理', '', '1', 'store/promotion/reduce', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('43', '38', '49', '生日礼', '', '1', 'store/promotion/gift/birthday', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('44', '38', '50', '新人进店礼', '', '1', 'store/promotion/gift/new_user', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('45', '23', '52', '订单管理', 'iconfont icon-dingdanguanli', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('46', '45', '53', '订单列表', '', '1', 'store/order?status=all', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('47', '45', '54', '售后管理', '', '1', 'store/refund', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('48', '45', '55', '评论管理', '', '1', 'store/comments?status=show', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('49', '23', '56', '物流管理', 'iconfont icon-wuliuguanli', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('50', '49', '57', '物流列表', '', '1', 'store/shippingmethod/company', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('51', '23', '58', '图片管理', 'iconfont icon-tupianguanli', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('52', '51', '59', '图片列表', '', '1', 'store/image/file?category_id=1', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('53', '51', '60', '图片分类管理', '', '1', 'store/image/category', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('54', '23', '61', '文章管理', 'fa-bar-chart', '1', 'store/article', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('55', '23', '62', '用户协议', 'fa-instagram', '1', 'store/setting/user/agreement', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('56', '31', '43', '商品限购', '', '1', 'store/goods/limit?status=ACTIVITY', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('57', '23', '63', '积分商城', 'fa-shopping-cart', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('58', '57', '64', '积分商品管理', '', '1', 'store/point-mall/goods', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('59', '57', '65', '积分订单管理', '', '1', 'store/point-mall/orders?status=all', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('60', '38', '51', '秒杀管理', '', '1', 'store/promotion/seckill', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('61', '24', '35', '发票设置', '', '1', 'store/setting/invoice', '2020-03-23 21:50:44', '2020-03-31 09:34:10'); INSERT INTO `admin_menu` VALUES ('62', '0', '66', '分销管理', 'iconfont icon-fenxiaoguanli', '1', 'distribution', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('63', '62', '67', '分销设置', 'iconfont icon-fenxiaoshezhi', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('64', '63', '68', '系统设置', '', '1', 'distribution/setting/sys_setting', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('65', '63', '69', '商品设置', '', '1', 'distribution/setting/goods?status=ACTIVITY', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('66', '62', '70', '分销员管理', 'iconfont icon-fenxiaoyuanguanli', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('67', '66', '71', '分销员列表', '', '1', 'distribution/agent?status=STATUS_AUDITED', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('68', '66', '72', '佣金提现管理', '', '1', 'distribution/cash?status=STATUS_AUDIT', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('69', '62', '73', '分销订单管理', 'iconfont icon-fenxiaodingdan', '1', '', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('70', '69', '74', '订单列表', '', '1', 'distribution/orders?status=ALL', '2020-03-23 21:50:44', '2020-03-31 09:34:11'); INSERT INTO `admin_menu` VALUES ('71', '0', '1', '课程管理', 'fa-500px', '1', null, '2020-03-31 09:29:53', '2020-03-31 09:37:30'); INSERT INTO `admin_menu` VALUES ('72', '71', '2', '课程列表', 'fa-align-left', '0', 'course/course/index', '2020-03-31 09:30:36', '2020-03-31 09:35:54'); INSERT INTO `admin_menu` VALUES ('73', '71', '3', '课程分类', 'fa-angellist', '0', 'course/category/index', '2020-03-31 09:32:06', '2020-03-31 09:36:31'); INSERT INTO `admin_menu` VALUES ('74', '71', '4', '教师管理', 'fa-book', '0', 'course/teacher/index', '2020-03-31 09:33:04', '2020-03-31 09:36:59'); -- ---------------------------- -- Table structure for admin_operation_log -- ---------------------------- DROP TABLE IF EXISTS `admin_operation_log`; CREATE TABLE `admin_operation_log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `method` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `input` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `admin_operation_log_user_id_index` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2074 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_operation_log -- ---------------------------- INSERT INTO `admin_operation_log` VALUES ('1', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-23 22:08:23', '2020-03-23 22:08:23'); INSERT INTO `admin_operation_log` VALUES ('2', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-03-23 22:08:27', '2020-03-23 22:08:27'); INSERT INTO `admin_operation_log` VALUES ('3', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-03-23 22:08:29', '2020-03-23 22:08:29'); INSERT INTO `admin_operation_log` VALUES ('4', '1', 'admin/store/getMonthData', 'GET', '192.168.10.1', '[]', '2020-03-23 22:08:33', '2020-03-23 22:08:33'); INSERT INTO `admin_operation_log` VALUES ('5', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-25 19:51:25', '2020-03-25 19:51:25'); INSERT INTO `admin_operation_log` VALUES ('6', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-25 19:52:00', '2020-03-25 19:52:00'); INSERT INTO `admin_operation_log` VALUES ('7', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-25 19:55:13', '2020-03-25 19:55:13'); INSERT INTO `admin_operation_log` VALUES ('8', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-25 19:55:56', '2020-03-25 19:55:56'); INSERT INTO `admin_operation_log` VALUES ('9', '1', 'admin/logout', 'POST', '192.168.10.1', '{\"_token\":\"yVCoXniQV6svOy9Mnoot37Wa42ES35MqvMN77e3L\"}', '2020-03-25 19:56:00', '2020-03-25 19:56:00'); INSERT INTO `admin_operation_log` VALUES ('10', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-25 19:58:56', '2020-03-25 19:58:56'); INSERT INTO `admin_operation_log` VALUES ('11', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-03-25 20:01:24', '2020-03-25 20:01:24'); INSERT INTO `admin_operation_log` VALUES ('12', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-03-25 20:01:28', '2020-03-25 20:01:28'); INSERT INTO `admin_operation_log` VALUES ('13', '1', 'admin/store/getMonthData', 'GET', '192.168.10.1', '[]', '2020-03-25 20:01:32', '2020-03-25 20:01:32'); INSERT INTO `admin_operation_log` VALUES ('14', '1', 'admin/distribution', 'GET', '192.168.10.1', '[]', '2020-03-25 20:01:32', '2020-03-25 20:01:32'); INSERT INTO `admin_operation_log` VALUES ('15', '1', 'admin/distribution/getDashBoardData', 'GET', '192.168.10.1', '[]', '2020-03-25 20:01:34', '2020-03-25 20:01:34'); INSERT INTO `admin_operation_log` VALUES ('16', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-30 15:17:04', '2020-03-30 15:17:04'); INSERT INTO `admin_operation_log` VALUES ('17', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-30 15:17:57', '2020-03-30 15:17:57'); INSERT INTO `admin_operation_log` VALUES ('18', '1', 'admin/logout', 'POST', '192.168.10.1', '{\"_token\":\"Wska1wn6LIHxWRy6ly689Z7yGFkD5XDat1Lx03pe\"}', '2020-03-30 15:18:07', '2020-03-30 15:18:07'); INSERT INTO `admin_operation_log` VALUES ('19', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-30 15:19:12', '2020-03-30 15:19:12'); INSERT INTO `admin_operation_log` VALUES ('20', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-30 15:19:27', '2020-03-30 15:19:27'); INSERT INTO `admin_operation_log` VALUES ('21', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-30 15:24:17', '2020-03-30 15:24:17'); INSERT INTO `admin_operation_log` VALUES ('22', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-03-30 15:25:57', '2020-03-30 15:25:57'); INSERT INTO `admin_operation_log` VALUES ('23', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-03-30 15:26:51', '2020-03-30 15:26:51'); INSERT INTO `admin_operation_log` VALUES ('24', '1', 'admin/store/getMonthData', 'GET', '192.168.10.1', '[]', '2020-03-30 15:27:04', '2020-03-30 15:27:04'); INSERT INTO `admin_operation_log` VALUES ('25', '1', 'admin/store/setting/shopSetting', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:16', '2020-03-30 15:31:16'); INSERT INTO `admin_operation_log` VALUES ('26', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:20', '2020-03-30 15:31:20'); INSERT INTO `admin_operation_log` VALUES ('27', '1', 'admin/store/setting/shopSetting', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:20', '2020-03-30 15:31:20'); INSERT INTO `admin_operation_log` VALUES ('28', '1', 'admin/store/setting/point', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:21', '2020-03-30 15:31:21'); INSERT INTO `admin_operation_log` VALUES ('29', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:22', '2020-03-30 15:31:22'); INSERT INTO `admin_operation_log` VALUES ('30', '1', 'admin/store/setting/onlineService', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:26', '2020-03-30 15:31:26'); INSERT INTO `admin_operation_log` VALUES ('31', '1', 'admin/store/setting/micro/page', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:29', '2020-03-30 15:31:29'); INSERT INTO `admin_operation_log` VALUES ('32', '1', 'admin/store/setting/micro/page/compoent', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:30', '2020-03-30 15:31:30'); INSERT INTO `admin_operation_log` VALUES ('33', '1', 'admin/store/setting/invoice', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:31', '2020-03-30 15:31:31'); INSERT INTO `admin_operation_log` VALUES ('34', '1', 'admin/store/models', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:31', '2020-03-30 15:31:31'); INSERT INTO `admin_operation_log` VALUES ('35', '1', 'admin/store/specs', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:35', '2020-03-30 15:31:35'); INSERT INTO `admin_operation_log` VALUES ('36', '1', 'admin/store/attribute', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:38', '2020-03-30 15:31:38'); INSERT INTO `admin_operation_log` VALUES ('37', '1', 'admin/distribution', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:40', '2020-03-30 15:31:40'); INSERT INTO `admin_operation_log` VALUES ('38', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:41', '2020-03-30 15:31:41'); INSERT INTO `admin_operation_log` VALUES ('39', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:43', '2020-03-30 15:31:43'); INSERT INTO `admin_operation_log` VALUES ('40', '1', 'admin/distribution/getDashBoardData', 'GET', '192.168.10.1', '[]', '2020-03-30 15:31:47', '2020-03-30 15:31:47'); INSERT INTO `admin_operation_log` VALUES ('41', '1', 'admin/store/models', 'GET', '192.168.10.1', '[]', '2020-03-30 15:32:49', '2020-03-30 15:32:49'); INSERT INTO `admin_operation_log` VALUES ('42', '1', 'admin/store/models', 'GET', '192.168.10.1', '[]', '2020-03-30 15:32:52', '2020-03-30 15:32:52'); INSERT INTO `admin_operation_log` VALUES ('43', '1', 'admin/store/specs', 'GET', '192.168.10.1', '[]', '2020-03-30 15:32:52', '2020-03-30 15:32:52'); INSERT INTO `admin_operation_log` VALUES ('44', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-03-30 15:33:05', '2020-03-30 15:33:05'); INSERT INTO `admin_operation_log` VALUES ('45', '1', 'admin/store/point-mall/goods', 'GET', '192.168.10.1', '[]', '2020-03-30 15:33:15', '2020-03-30 15:33:15'); INSERT INTO `admin_operation_log` VALUES ('46', '1', 'admin/store/point-mall/goods', 'GET', '192.168.10.1', '{\"view\":\"2\"}', '2020-03-30 15:33:30', '2020-03-30 15:33:30'); INSERT INTO `admin_operation_log` VALUES ('47', '1', 'admin/store/point-mall/goods', 'GET', '192.168.10.1', '{\"view\":\"2\"}', '2020-03-30 15:33:31', '2020-03-30 15:33:31'); INSERT INTO `admin_operation_log` VALUES ('48', '1', 'admin/store/article', 'GET', '192.168.10.1', '[]', '2020-03-30 15:33:34', '2020-03-30 15:33:34'); INSERT INTO `admin_operation_log` VALUES ('49', '1', 'admin/store/article', 'GET', '192.168.10.1', '[]', '2020-03-30 15:33:54', '2020-03-30 15:33:54'); INSERT INTO `admin_operation_log` VALUES ('50', '1', 'admin/logout', 'POST', '192.168.10.1', '{\"_token\":\"WVa3KrkV0dWDNoEHwFO9BfjTXnEhz1EnuDPidZ8O\"}', '2020-03-30 15:36:14', '2020-03-30 15:36:14'); INSERT INTO `admin_operation_log` VALUES ('51', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-30 15:38:27', '2020-03-30 15:38:27'); INSERT INTO `admin_operation_log` VALUES ('52', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-30 15:41:40', '2020-03-30 15:41:40'); INSERT INTO `admin_operation_log` VALUES ('53', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-30 15:43:48', '2020-03-30 15:43:48'); INSERT INTO `admin_operation_log` VALUES ('54', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-30 15:44:54', '2020-03-30 15:44:54'); INSERT INTO `admin_operation_log` VALUES ('55', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-30 15:45:01', '2020-03-30 15:45:01'); INSERT INTO `admin_operation_log` VALUES ('56', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-30 15:45:16', '2020-03-30 15:45:16'); INSERT INTO `admin_operation_log` VALUES ('57', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-30 15:46:31', '2020-03-30 15:46:31'); INSERT INTO `admin_operation_log` VALUES ('58', '1', 'admin', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:46:43', '2020-03-30 15:46:43'); INSERT INTO `admin_operation_log` VALUES ('59', '1', 'admin/auth/users', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:46:47', '2020-03-30 15:46:47'); INSERT INTO `admin_operation_log` VALUES ('60', '1', 'admin/auth/users', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:46:48', '2020-03-30 15:46:48'); INSERT INTO `admin_operation_log` VALUES ('61', '1', 'admin/auth/users', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:46:51', '2020-03-30 15:46:51'); INSERT INTO `admin_operation_log` VALUES ('62', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-30 15:48:09', '2020-03-30 15:48:09'); INSERT INTO `admin_operation_log` VALUES ('63', '1', 'admin', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:48:17', '2020-03-30 15:48:17'); INSERT INTO `admin_operation_log` VALUES ('64', '1', 'admin/auth/users', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:48:21', '2020-03-30 15:48:21'); INSERT INTO `admin_operation_log` VALUES ('65', '1', 'admin/auth/users', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:48:24', '2020-03-30 15:48:24'); INSERT INTO `admin_operation_log` VALUES ('66', '1', 'admin/auth/roles', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:48:30', '2020-03-30 15:48:30'); INSERT INTO `admin_operation_log` VALUES ('67', '1', 'admin/auth/permissions', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-30 15:48:35', '2020-03-30 15:48:35'); INSERT INTO `admin_operation_log` VALUES ('68', '1', 'admin/auth/permissions', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\",\"_export_\":\"page:1\"}', '2020-03-30 15:49:11', '2020-03-30 15:49:11'); INSERT INTO `admin_operation_log` VALUES ('69', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-31 09:13:38', '2020-03-31 09:13:38'); INSERT INTO `admin_operation_log` VALUES ('70', '1', 'admin/auth/login', 'POST', '192.168.10.1', '{\"username\":\"admin\",\"password\":\"admin\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 09:13:40', '2020-03-31 09:13:40'); INSERT INTO `admin_operation_log` VALUES ('71', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 09:13:43', '2020-03-31 09:13:43'); INSERT INTO `admin_operation_log` VALUES ('72', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 09:26:50', '2020-03-31 09:26:50'); INSERT INTO `admin_operation_log` VALUES ('73', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:27:02', '2020-03-31 09:27:02'); INSERT INTO `admin_operation_log` VALUES ('74', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:27:04', '2020-03-31 09:27:04'); INSERT INTO `admin_operation_log` VALUES ('75', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-31 09:27:53', '2020-03-31 09:27:53'); INSERT INTO `admin_operation_log` VALUES ('76', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"parent_id\":\"0\",\"title\":\"\\u8bfe\\u7a0b\\u7ba1\\u7406\",\"icon\":\"fa-500px\",\"uri\":\"course\\/index\",\"roles\":[\"1\",null],\"blank\":\"0\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 09:29:52', '2020-03-31 09:29:52'); INSERT INTO `admin_operation_log` VALUES ('77', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:29:56', '2020-03-31 09:29:56'); INSERT INTO `admin_operation_log` VALUES ('78', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"parent_id\":\"0\",\"title\":\"\\u8bfe\\u7a0b\\u5217\\u8868\",\"icon\":\"fa-align-left\",\"uri\":\"course\\/index\",\"roles\":[\"1\",null],\"blank\":\"0\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 09:30:36', '2020-03-31 09:30:36'); INSERT INTO `admin_operation_log` VALUES ('79', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:30:38', '2020-03-31 09:30:38'); INSERT INTO `admin_operation_log` VALUES ('80', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:30:45', '2020-03-31 09:30:45'); INSERT INTO `admin_operation_log` VALUES ('81', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_order\":\"[{\\\"id\\\":1,\\\"children\\\":[{\\\"id\\\":2},{\\\"id\\\":3,\\\"children\\\":[{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7},{\\\"id\\\":8}]},{\\\"id\\\":9,\\\"children\\\":[{\\\"id\\\":10},{\\\"id\\\":11},{\\\"id\\\":12},{\\\"id\\\":13}]},{\\\"id\\\":14},{\\\"id\\\":15},{\\\"id\\\":16},{\\\"id\\\":17}]},{\\\"id\\\":18,\\\"children\\\":[{\\\"id\\\":19},{\\\"id\\\":20},{\\\"id\\\":21},{\\\"id\\\":22}]},{\\\"id\\\":23,\\\"children\\\":[{\\\"id\\\":24,\\\"children\\\":[{\\\"id\\\":25},{\\\"id\\\":26},{\\\"id\\\":27},{\\\"id\\\":28},{\\\"id\\\":29},{\\\"id\\\":30},{\\\"id\\\":61}]},{\\\"id\\\":31,\\\"children\\\":[{\\\"id\\\":32},{\\\"id\\\":33},{\\\"id\\\":34},{\\\"id\\\":35},{\\\"id\\\":36},{\\\"id\\\":37},{\\\"id\\\":56}]},{\\\"id\\\":38,\\\"children\\\":[{\\\"id\\\":39},{\\\"id\\\":40},{\\\"id\\\":41},{\\\"id\\\":42},{\\\"id\\\":43},{\\\"id\\\":44},{\\\"id\\\":60}]},{\\\"id\\\":45,\\\"children\\\":[{\\\"id\\\":46},{\\\"id\\\":47},{\\\"id\\\":48}]},{\\\"id\\\":49,\\\"children\\\":[{\\\"id\\\":50}]},{\\\"id\\\":51,\\\"children\\\":[{\\\"id\\\":52},{\\\"id\\\":53}]},{\\\"id\\\":54},{\\\"id\\\":55},{\\\"id\\\":57,\\\"children\\\":[{\\\"id\\\":58},{\\\"id\\\":59}]}]},{\\\"id\\\":62,\\\"children\\\":[{\\\"id\\\":63,\\\"children\\\":[{\\\"id\\\":64},{\\\"id\\\":65}]},{\\\"id\\\":66,\\\"children\\\":[{\\\"id\\\":67},{\\\"id\\\":68}]},{\\\"id\\\":69,\\\"children\\\":[{\\\"id\\\":70}]}]},{\\\"id\\\":71,\\\"children\\\":[{\\\"id\\\":72}]}]\"}', '2020-03-31 09:31:01', '2020-03-31 09:31:01'); INSERT INTO `admin_operation_log` VALUES ('82', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_order\":\"[{\\\"id\\\":1,\\\"children\\\":[{\\\"id\\\":2},{\\\"id\\\":3,\\\"children\\\":[{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7},{\\\"id\\\":8}]},{\\\"id\\\":9,\\\"children\\\":[{\\\"id\\\":10},{\\\"id\\\":11},{\\\"id\\\":12},{\\\"id\\\":13}]},{\\\"id\\\":14},{\\\"id\\\":15},{\\\"id\\\":16},{\\\"id\\\":17}]},{\\\"id\\\":18,\\\"children\\\":[{\\\"id\\\":19},{\\\"id\\\":20},{\\\"id\\\":21},{\\\"id\\\":22}]},{\\\"id\\\":23,\\\"children\\\":[{\\\"id\\\":24,\\\"children\\\":[{\\\"id\\\":25},{\\\"id\\\":26},{\\\"id\\\":27},{\\\"id\\\":28},{\\\"id\\\":29},{\\\"id\\\":30},{\\\"id\\\":61}]},{\\\"id\\\":31,\\\"children\\\":[{\\\"id\\\":32},{\\\"id\\\":33},{\\\"id\\\":34},{\\\"id\\\":35},{\\\"id\\\":36},{\\\"id\\\":37},{\\\"id\\\":56}]},{\\\"id\\\":38,\\\"children\\\":[{\\\"id\\\":39},{\\\"id\\\":40},{\\\"id\\\":41},{\\\"id\\\":42},{\\\"id\\\":43},{\\\"id\\\":44},{\\\"id\\\":60}]},{\\\"id\\\":45,\\\"children\\\":[{\\\"id\\\":46},{\\\"id\\\":47},{\\\"id\\\":48}]},{\\\"id\\\":49,\\\"children\\\":[{\\\"id\\\":50}]},{\\\"id\\\":51,\\\"children\\\":[{\\\"id\\\":52},{\\\"id\\\":53}]},{\\\"id\\\":54},{\\\"id\\\":55},{\\\"id\\\":57,\\\"children\\\":[{\\\"id\\\":58},{\\\"id\\\":59}]}]},{\\\"id\\\":62,\\\"children\\\":[{\\\"id\\\":63,\\\"children\\\":[{\\\"id\\\":64},{\\\"id\\\":65}]},{\\\"id\\\":66,\\\"children\\\":[{\\\"id\\\":67},{\\\"id\\\":68}]},{\\\"id\\\":69,\\\"children\\\":[{\\\"id\\\":70}]}]},{\\\"id\\\":71,\\\"children\\\":[{\\\"id\\\":72}]}]\"}', '2020-03-31 09:31:05', '2020-03-31 09:31:05'); INSERT INTO `admin_operation_log` VALUES ('83', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:31:06', '2020-03-31 09:31:06'); INSERT INTO `admin_operation_log` VALUES ('84', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:31:11', '2020-03-31 09:31:11'); INSERT INTO `admin_operation_log` VALUES ('85', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"parent_id\":\"71\",\"title\":\"\\u8bfe\\u7a0b\\u5206\\u7c7b\",\"icon\":\"fa-angellist\",\"uri\":\"category\",\"roles\":[\"1\",null],\"blank\":\"0\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 09:32:05', '2020-03-31 09:32:05'); INSERT INTO `admin_operation_log` VALUES ('86', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:32:09', '2020-03-31 09:32:09'); INSERT INTO `admin_operation_log` VALUES ('87', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"parent_id\":\"71\",\"title\":\"\\u6559\\u5e08\\u7ba1\\u7406\",\"icon\":\"fa-book\",\"uri\":\"teacher\\/index\",\"roles\":[\"1\",null],\"blank\":\"0\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 09:33:03', '2020-03-31 09:33:03'); INSERT INTO `admin_operation_log` VALUES ('88', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:33:06', '2020-03-31 09:33:06'); INSERT INTO `admin_operation_log` VALUES ('89', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_order\":\"[{\\\"id\\\":71,\\\"children\\\":[{\\\"id\\\":72},{\\\"id\\\":73},{\\\"id\\\":74}]},{\\\"id\\\":1,\\\"children\\\":[{\\\"id\\\":2},{\\\"id\\\":3,\\\"children\\\":[{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7},{\\\"id\\\":8}]},{\\\"id\\\":9,\\\"children\\\":[{\\\"id\\\":10},{\\\"id\\\":11},{\\\"id\\\":12},{\\\"id\\\":13}]},{\\\"id\\\":14},{\\\"id\\\":15},{\\\"id\\\":16},{\\\"id\\\":17}]},{\\\"id\\\":18,\\\"children\\\":[{\\\"id\\\":19},{\\\"id\\\":20},{\\\"id\\\":21},{\\\"id\\\":22}]},{\\\"id\\\":23,\\\"children\\\":[{\\\"id\\\":24,\\\"children\\\":[{\\\"id\\\":25},{\\\"id\\\":26},{\\\"id\\\":27},{\\\"id\\\":28},{\\\"id\\\":29},{\\\"id\\\":30},{\\\"id\\\":61}]},{\\\"id\\\":31,\\\"children\\\":[{\\\"id\\\":32},{\\\"id\\\":33},{\\\"id\\\":34},{\\\"id\\\":35},{\\\"id\\\":36},{\\\"id\\\":37},{\\\"id\\\":56}]},{\\\"id\\\":38,\\\"children\\\":[{\\\"id\\\":39},{\\\"id\\\":40},{\\\"id\\\":41},{\\\"id\\\":42},{\\\"id\\\":43},{\\\"id\\\":44},{\\\"id\\\":60}]},{\\\"id\\\":45,\\\"children\\\":[{\\\"id\\\":46},{\\\"id\\\":47},{\\\"id\\\":48}]},{\\\"id\\\":49,\\\"children\\\":[{\\\"id\\\":50}]},{\\\"id\\\":51,\\\"children\\\":[{\\\"id\\\":52},{\\\"id\\\":53}]},{\\\"id\\\":54},{\\\"id\\\":55},{\\\"id\\\":57,\\\"children\\\":[{\\\"id\\\":58},{\\\"id\\\":59}]}]},{\\\"id\\\":62,\\\"children\\\":[{\\\"id\\\":63,\\\"children\\\":[{\\\"id\\\":64},{\\\"id\\\":65}]},{\\\"id\\\":66,\\\"children\\\":[{\\\"id\\\":67},{\\\"id\\\":68}]},{\\\"id\\\":69,\\\"children\\\":[{\\\"id\\\":70}]}]}]\"}', '2020-03-31 09:34:09', '2020-03-31 09:34:09'); INSERT INTO `admin_operation_log` VALUES ('90', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_order\":\"[{\\\"id\\\":71,\\\"children\\\":[{\\\"id\\\":72},{\\\"id\\\":73},{\\\"id\\\":74}]},{\\\"id\\\":1,\\\"children\\\":[{\\\"id\\\":2},{\\\"id\\\":3,\\\"children\\\":[{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7},{\\\"id\\\":8}]},{\\\"id\\\":9,\\\"children\\\":[{\\\"id\\\":10},{\\\"id\\\":11},{\\\"id\\\":12},{\\\"id\\\":13}]},{\\\"id\\\":14},{\\\"id\\\":15},{\\\"id\\\":16},{\\\"id\\\":17}]},{\\\"id\\\":18,\\\"children\\\":[{\\\"id\\\":19},{\\\"id\\\":20},{\\\"id\\\":21},{\\\"id\\\":22}]},{\\\"id\\\":23,\\\"children\\\":[{\\\"id\\\":24,\\\"children\\\":[{\\\"id\\\":25},{\\\"id\\\":26},{\\\"id\\\":27},{\\\"id\\\":28},{\\\"id\\\":29},{\\\"id\\\":30},{\\\"id\\\":61}]},{\\\"id\\\":31,\\\"children\\\":[{\\\"id\\\":32},{\\\"id\\\":33},{\\\"id\\\":34},{\\\"id\\\":35},{\\\"id\\\":36},{\\\"id\\\":37},{\\\"id\\\":56}]},{\\\"id\\\":38,\\\"children\\\":[{\\\"id\\\":39},{\\\"id\\\":40},{\\\"id\\\":41},{\\\"id\\\":42},{\\\"id\\\":43},{\\\"id\\\":44},{\\\"id\\\":60}]},{\\\"id\\\":45,\\\"children\\\":[{\\\"id\\\":46},{\\\"id\\\":47},{\\\"id\\\":48}]},{\\\"id\\\":49,\\\"children\\\":[{\\\"id\\\":50}]},{\\\"id\\\":51,\\\"children\\\":[{\\\"id\\\":52},{\\\"id\\\":53}]},{\\\"id\\\":54},{\\\"id\\\":55},{\\\"id\\\":57,\\\"children\\\":[{\\\"id\\\":58},{\\\"id\\\":59}]}]},{\\\"id\\\":62,\\\"children\\\":[{\\\"id\\\":63,\\\"children\\\":[{\\\"id\\\":64},{\\\"id\\\":65}]},{\\\"id\\\":66,\\\"children\\\":[{\\\"id\\\":67},{\\\"id\\\":68}]},{\\\"id\\\":69,\\\"children\\\":[{\\\"id\\\":70}]}]}]\"}', '2020-03-31 09:34:16', '2020-03-31 09:34:16'); INSERT INTO `admin_operation_log` VALUES ('91', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_order\":\"[{\\\"id\\\":71,\\\"children\\\":[{\\\"id\\\":72},{\\\"id\\\":73},{\\\"id\\\":74}]},{\\\"id\\\":1,\\\"children\\\":[{\\\"id\\\":2},{\\\"id\\\":3,\\\"children\\\":[{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7},{\\\"id\\\":8}]},{\\\"id\\\":9,\\\"children\\\":[{\\\"id\\\":10},{\\\"id\\\":11},{\\\"id\\\":12},{\\\"id\\\":13}]},{\\\"id\\\":14},{\\\"id\\\":15},{\\\"id\\\":16},{\\\"id\\\":17}]},{\\\"id\\\":18,\\\"children\\\":[{\\\"id\\\":19},{\\\"id\\\":20},{\\\"id\\\":21},{\\\"id\\\":22}]},{\\\"id\\\":23,\\\"children\\\":[{\\\"id\\\":24,\\\"children\\\":[{\\\"id\\\":25},{\\\"id\\\":26},{\\\"id\\\":27},{\\\"id\\\":28},{\\\"id\\\":29},{\\\"id\\\":30},{\\\"id\\\":61}]},{\\\"id\\\":31,\\\"children\\\":[{\\\"id\\\":32},{\\\"id\\\":33},{\\\"id\\\":34},{\\\"id\\\":35},{\\\"id\\\":36},{\\\"id\\\":37},{\\\"id\\\":56}]},{\\\"id\\\":38,\\\"children\\\":[{\\\"id\\\":39},{\\\"id\\\":40},{\\\"id\\\":41},{\\\"id\\\":42},{\\\"id\\\":43},{\\\"id\\\":44},{\\\"id\\\":60}]},{\\\"id\\\":45,\\\"children\\\":[{\\\"id\\\":46},{\\\"id\\\":47},{\\\"id\\\":48}]},{\\\"id\\\":49,\\\"children\\\":[{\\\"id\\\":50}]},{\\\"id\\\":51,\\\"children\\\":[{\\\"id\\\":52},{\\\"id\\\":53}]},{\\\"id\\\":54},{\\\"id\\\":55},{\\\"id\\\":57,\\\"children\\\":[{\\\"id\\\":58},{\\\"id\\\":59}]}]},{\\\"id\\\":62,\\\"children\\\":[{\\\"id\\\":63,\\\"children\\\":[{\\\"id\\\":64},{\\\"id\\\":65}]},{\\\"id\\\":66,\\\"children\\\":[{\\\"id\\\":67},{\\\"id\\\":68}]},{\\\"id\\\":69,\\\"children\\\":[{\\\"id\\\":70}]}]}]\"}', '2020-03-31 09:34:16', '2020-03-31 09:34:16'); INSERT INTO `admin_operation_log` VALUES ('92', '1', 'admin/auth/menu', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_order\":\"[{\\\"id\\\":71,\\\"children\\\":[{\\\"id\\\":72},{\\\"id\\\":73},{\\\"id\\\":74}]},{\\\"id\\\":1,\\\"children\\\":[{\\\"id\\\":2},{\\\"id\\\":3,\\\"children\\\":[{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7},{\\\"id\\\":8}]},{\\\"id\\\":9,\\\"children\\\":[{\\\"id\\\":10},{\\\"id\\\":11},{\\\"id\\\":12},{\\\"id\\\":13}]},{\\\"id\\\":14},{\\\"id\\\":15},{\\\"id\\\":16},{\\\"id\\\":17}]},{\\\"id\\\":18,\\\"children\\\":[{\\\"id\\\":19},{\\\"id\\\":20},{\\\"id\\\":21},{\\\"id\\\":22}]},{\\\"id\\\":23,\\\"children\\\":[{\\\"id\\\":24,\\\"children\\\":[{\\\"id\\\":25},{\\\"id\\\":26},{\\\"id\\\":27},{\\\"id\\\":28},{\\\"id\\\":29},{\\\"id\\\":30},{\\\"id\\\":61}]},{\\\"id\\\":31,\\\"children\\\":[{\\\"id\\\":32},{\\\"id\\\":33},{\\\"id\\\":34},{\\\"id\\\":35},{\\\"id\\\":36},{\\\"id\\\":37},{\\\"id\\\":56}]},{\\\"id\\\":38,\\\"children\\\":[{\\\"id\\\":39},{\\\"id\\\":40},{\\\"id\\\":41},{\\\"id\\\":42},{\\\"id\\\":43},{\\\"id\\\":44},{\\\"id\\\":60}]},{\\\"id\\\":45,\\\"children\\\":[{\\\"id\\\":46},{\\\"id\\\":47},{\\\"id\\\":48}]},{\\\"id\\\":49,\\\"children\\\":[{\\\"id\\\":50}]},{\\\"id\\\":51,\\\"children\\\":[{\\\"id\\\":52},{\\\"id\\\":53}]},{\\\"id\\\":54},{\\\"id\\\":55},{\\\"id\\\":57,\\\"children\\\":[{\\\"id\\\":58},{\\\"id\\\":59}]}]},{\\\"id\\\":62,\\\"children\\\":[{\\\"id\\\":63,\\\"children\\\":[{\\\"id\\\":64},{\\\"id\\\":65}]},{\\\"id\\\":66,\\\"children\\\":[{\\\"id\\\":67},{\\\"id\\\":68}]},{\\\"id\\\":69,\\\"children\\\":[{\\\"id\\\":70}]}]}]\"}', '2020-03-31 09:34:17', '2020-03-31 09:34:17'); INSERT INTO `admin_operation_log` VALUES ('93', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:34:18', '2020-03-31 09:34:18'); INSERT INTO `admin_operation_log` VALUES ('94', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:34:19', '2020-03-31 09:34:19'); INSERT INTO `admin_operation_log` VALUES ('95', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:34:25', '2020-03-31 09:34:25'); INSERT INTO `admin_operation_log` VALUES ('96', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:34:27', '2020-03-31 09:34:27'); INSERT INTO `admin_operation_log` VALUES ('97', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:34:28', '2020-03-31 09:34:28'); INSERT INTO `admin_operation_log` VALUES ('98', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:34:29', '2020-03-31 09:34:29'); INSERT INTO `admin_operation_log` VALUES ('99', '1', 'admin/auth/menu/71/edit', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:34:52', '2020-03-31 09:34:52'); INSERT INTO `admin_operation_log` VALUES ('100', '1', 'admin/auth/menu/71', 'PUT', '192.168.10.1', '{\"parent_id\":\"0\",\"title\":\"\\u8bfe\\u7a0b\\u7ba1\\u7406\",\"icon\":\"fa-500px\",\"uri\":\"course\\/course\\/index\",\"roles\":[\"1\",null],\"blank\":\"1\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/www.homestead.test\\/admin\\/auth\\/menu\"}', '2020-03-31 09:35:14', '2020-03-31 09:35:14'); INSERT INTO `admin_operation_log` VALUES ('101', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:35:16', '2020-03-31 09:35:16'); INSERT INTO `admin_operation_log` VALUES ('102', '1', 'admin/auth/menu/72/edit', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:35:37', '2020-03-31 09:35:37'); INSERT INTO `admin_operation_log` VALUES ('103', '1', 'admin/auth/menu/72', 'PUT', '192.168.10.1', '{\"parent_id\":\"71\",\"title\":\"\\u8bfe\\u7a0b\\u5217\\u8868\",\"icon\":\"fa-align-left\",\"uri\":\"course\\/course\\/index\",\"roles\":[\"1\",null],\"blank\":\"0\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/www.homestead.test\\/admin\\/auth\\/menu\"}', '2020-03-31 09:35:53', '2020-03-31 09:35:53'); INSERT INTO `admin_operation_log` VALUES ('104', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:35:56', '2020-03-31 09:35:56'); INSERT INTO `admin_operation_log` VALUES ('105', '1', 'admin/auth/menu/73/edit', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:36:10', '2020-03-31 09:36:10'); INSERT INTO `admin_operation_log` VALUES ('106', '1', 'admin/auth/menu/73', 'PUT', '192.168.10.1', '{\"parent_id\":\"71\",\"title\":\"\\u8bfe\\u7a0b\\u5206\\u7c7b\",\"icon\":\"fa-angellist\",\"uri\":\"course\\/category\\/index\",\"roles\":[\"1\",null],\"blank\":\"0\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/www.homestead.test\\/admin\\/auth\\/menu\"}', '2020-03-31 09:36:30', '2020-03-31 09:36:30'); INSERT INTO `admin_operation_log` VALUES ('107', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:36:34', '2020-03-31 09:36:34'); INSERT INTO `admin_operation_log` VALUES ('108', '1', 'admin/auth/menu/74/edit', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:36:46', '2020-03-31 09:36:46'); INSERT INTO `admin_operation_log` VALUES ('109', '1', 'admin/auth/menu/74', 'PUT', '192.168.10.1', '{\"parent_id\":\"71\",\"title\":\"\\u6559\\u5e08\\u7ba1\\u7406\",\"icon\":\"fa-book\",\"uri\":\"course\\/teacher\\/index\",\"roles\":[\"1\",null],\"blank\":\"0\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/www.homestead.test\\/admin\\/auth\\/menu\"}', '2020-03-31 09:36:58', '2020-03-31 09:36:58'); INSERT INTO `admin_operation_log` VALUES ('110', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:37:01', '2020-03-31 09:37:01'); INSERT INTO `admin_operation_log` VALUES ('111', '1', 'admin/auth/menu/71/edit', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:37:16', '2020-03-31 09:37:16'); INSERT INTO `admin_operation_log` VALUES ('112', '1', 'admin/auth/menu/71', 'PUT', '192.168.10.1', '{\"parent_id\":\"0\",\"title\":\"\\u8bfe\\u7a0b\\u7ba1\\u7406\",\"icon\":\"fa-500px\",\"uri\":null,\"roles\":[\"1\",null],\"blank\":\"1\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/www.homestead.test\\/admin\\/auth\\/menu\"}', '2020-03-31 09:37:30', '2020-03-31 09:37:30'); INSERT INTO `admin_operation_log` VALUES ('113', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 09:37:32', '2020-03-31 09:37:32'); INSERT INTO `admin_operation_log` VALUES ('114', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-03-31 09:37:53', '2020-03-31 09:37:53'); INSERT INTO `admin_operation_log` VALUES ('115', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 09:39:42', '2020-03-31 09:39:42'); INSERT INTO `admin_operation_log` VALUES ('116', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:39:54', '2020-03-31 09:39:54'); INSERT INTO `admin_operation_log` VALUES ('117', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 09:40:02', '2020-03-31 09:40:02'); INSERT INTO `admin_operation_log` VALUES ('118', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-03-31 09:40:12', '2020-03-31 09:40:12'); INSERT INTO `admin_operation_log` VALUES ('119', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:40:16', '2020-03-31 09:40:16'); INSERT INTO `admin_operation_log` VALUES ('120', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:40:26', '2020-03-31 09:40:26'); INSERT INTO `admin_operation_log` VALUES ('121', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:41:35', '2020-03-31 09:41:35'); INSERT INTO `admin_operation_log` VALUES ('122', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:41:49', '2020-03-31 09:41:49'); INSERT INTO `admin_operation_log` VALUES ('123', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:12', '2020-03-31 09:48:12'); INSERT INTO `admin_operation_log` VALUES ('124', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:15', '2020-03-31 09:48:15'); INSERT INTO `admin_operation_log` VALUES ('125', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:16', '2020-03-31 09:48:16'); INSERT INTO `admin_operation_log` VALUES ('126', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:16', '2020-03-31 09:48:16'); INSERT INTO `admin_operation_log` VALUES ('127', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:17', '2020-03-31 09:48:17'); INSERT INTO `admin_operation_log` VALUES ('128', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:19', '2020-03-31 09:48:19'); INSERT INTO `admin_operation_log` VALUES ('129', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:21', '2020-03-31 09:48:21'); INSERT INTO `admin_operation_log` VALUES ('130', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:22', '2020-03-31 09:48:22'); INSERT INTO `admin_operation_log` VALUES ('131', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:23', '2020-03-31 09:48:23'); INSERT INTO `admin_operation_log` VALUES ('132', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:24', '2020-03-31 09:48:24'); INSERT INTO `admin_operation_log` VALUES ('133', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:24', '2020-03-31 09:48:24'); INSERT INTO `admin_operation_log` VALUES ('134', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:48:25', '2020-03-31 09:48:25'); INSERT INTO `admin_operation_log` VALUES ('135', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 09:48:29', '2020-03-31 09:48:29'); INSERT INTO `admin_operation_log` VALUES ('136', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 09:49:19', '2020-03-31 09:49:19'); INSERT INTO `admin_operation_log` VALUES ('137', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-03-31 09:49:33', '2020-03-31 09:49:33'); INSERT INTO `admin_operation_log` VALUES ('138', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 09:49:37', '2020-03-31 09:49:37'); INSERT INTO `admin_operation_log` VALUES ('139', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:49:44', '2020-03-31 09:49:44'); INSERT INTO `admin_operation_log` VALUES ('140', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 09:50:19', '2020-03-31 09:50:19'); INSERT INTO `admin_operation_log` VALUES ('141', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-03-31 09:50:32', '2020-03-31 09:50:32'); INSERT INTO `admin_operation_log` VALUES ('142', '1', 'admin/store/getMonthData', 'GET', '192.168.10.1', '[]', '2020-03-31 09:50:38', '2020-03-31 09:50:38'); INSERT INTO `admin_operation_log` VALUES ('143', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-03-31 09:50:56', '2020-03-31 09:50:56'); INSERT INTO `admin_operation_log` VALUES ('144', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 09:51:10', '2020-03-31 09:51:10'); INSERT INTO `admin_operation_log` VALUES ('145', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:51:21', '2020-03-31 09:51:21'); INSERT INTO `admin_operation_log` VALUES ('146', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 09:51:28', '2020-03-31 09:51:28'); INSERT INTO `admin_operation_log` VALUES ('147', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:51:48', '2020-03-31 09:51:48'); INSERT INTO `admin_operation_log` VALUES ('148', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 09:57:47', '2020-03-31 09:57:47'); INSERT INTO `admin_operation_log` VALUES ('149', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-31 09:59:19', '2020-03-31 09:59:19'); INSERT INTO `admin_operation_log` VALUES ('150', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-31 10:05:33', '2020-03-31 10:05:33'); INSERT INTO `admin_operation_log` VALUES ('151', '1', 'admin/auth/menu', 'GET', '192.168.10.1', '[]', '2020-03-31 10:06:21', '2020-03-31 10:06:21'); INSERT INTO `admin_operation_log` VALUES ('152', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 10:06:28', '2020-03-31 10:06:28'); INSERT INTO `admin_operation_log` VALUES ('153', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 10:06:44', '2020-03-31 10:06:44'); INSERT INTO `admin_operation_log` VALUES ('154', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:06:48', '2020-03-31 10:06:48'); INSERT INTO `admin_operation_log` VALUES ('155', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 10:07:18', '2020-03-31 10:07:18'); INSERT INTO `admin_operation_log` VALUES ('156', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u4e66\\u6cd5\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 10:07:33', '2020-03-31 10:07:33'); INSERT INTO `admin_operation_log` VALUES ('157', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:07:38', '2020-03-31 10:07:38'); INSERT INTO `admin_operation_log` VALUES ('158', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 10:23:12', '2020-03-31 10:23:12'); INSERT INTO `admin_operation_log` VALUES ('159', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:23:28', '2020-03-31 10:23:28'); INSERT INTO `admin_operation_log` VALUES ('160', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:24:22', '2020-03-31 10:24:22'); INSERT INTO `admin_operation_log` VALUES ('161', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:25:35', '2020-03-31 10:25:35'); INSERT INTO `admin_operation_log` VALUES ('162', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:25:58', '2020-03-31 10:25:58'); INSERT INTO `admin_operation_log` VALUES ('163', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:27:23', '2020-03-31 10:27:23'); INSERT INTO `admin_operation_log` VALUES ('164', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:27:46', '2020-03-31 10:27:46'); INSERT INTO `admin_operation_log` VALUES ('165', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:27:55', '2020-03-31 10:27:55'); INSERT INTO `admin_operation_log` VALUES ('166', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 10:28:24', '2020-03-31 10:28:24'); INSERT INTO `admin_operation_log` VALUES ('167', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:28:39', '2020-03-31 10:28:39'); INSERT INTO `admin_operation_log` VALUES ('168', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:29:10', '2020-03-31 10:29:10'); INSERT INTO `admin_operation_log` VALUES ('169', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:29:50', '2020-03-31 10:29:50'); INSERT INTO `admin_operation_log` VALUES ('170', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:31:03', '2020-03-31 10:31:03'); INSERT INTO `admin_operation_log` VALUES ('171', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:33:05', '2020-03-31 10:33:05'); INSERT INTO `admin_operation_log` VALUES ('172', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:37:26', '2020-03-31 10:37:26'); INSERT INTO `admin_operation_log` VALUES ('173', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:37:32', '2020-03-31 10:37:32'); INSERT INTO `admin_operation_log` VALUES ('174', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:39:46', '2020-03-31 10:39:46'); INSERT INTO `admin_operation_log` VALUES ('175', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 10:39:52', '2020-03-31 10:39:52'); INSERT INTO `admin_operation_log` VALUES ('176', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 10:39:58', '2020-03-31 10:39:58'); INSERT INTO `admin_operation_log` VALUES ('177', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u8721\\u7b14\\u753b\",\"parent_id\":\"2\",\"sort\":\"2\"}', '2020-03-31 10:40:11', '2020-03-31 10:40:11'); INSERT INTO `admin_operation_log` VALUES ('178', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:40:15', '2020-03-31 10:40:15'); INSERT INTO `admin_operation_log` VALUES ('179', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:42:42', '2020-03-31 10:42:42'); INSERT INTO `admin_operation_log` VALUES ('180', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:43:18', '2020-03-31 10:43:18'); INSERT INTO `admin_operation_log` VALUES ('181', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:43:59', '2020-03-31 10:43:59'); INSERT INTO `admin_operation_log` VALUES ('182', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:44:11', '2020-03-31 10:44:11'); INSERT INTO `admin_operation_log` VALUES ('183', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:56:42', '2020-03-31 10:56:42'); INSERT INTO `admin_operation_log` VALUES ('184', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 10:56:49', '2020-03-31 10:56:49'); INSERT INTO `admin_operation_log` VALUES ('185', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 10:57:01', '2020-03-31 10:57:01'); INSERT INTO `admin_operation_log` VALUES ('186', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:57:05', '2020-03-31 10:57:05'); INSERT INTO `admin_operation_log` VALUES ('187', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 10:57:11', '2020-03-31 10:57:11'); INSERT INTO `admin_operation_log` VALUES ('188', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u4e66\\u6cd5\",\"parent_id\":\"0\",\"sort\":\"1\"}', '2020-03-31 10:57:21', '2020-03-31 10:57:21'); INSERT INTO `admin_operation_log` VALUES ('189', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:57:25', '2020-03-31 10:57:25'); INSERT INTO `admin_operation_log` VALUES ('190', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 10:57:31', '2020-03-31 10:57:31'); INSERT INTO `admin_operation_log` VALUES ('191', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"0\",\"sort\":\"2\"}', '2020-03-31 10:57:50', '2020-03-31 10:57:50'); INSERT INTO `admin_operation_log` VALUES ('192', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:57:54', '2020-03-31 10:57:54'); INSERT INTO `admin_operation_log` VALUES ('193', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 10:57:59', '2020-03-31 10:57:59'); INSERT INTO `admin_operation_log` VALUES ('194', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 10:58:04', '2020-03-31 10:58:04'); INSERT INTO `admin_operation_log` VALUES ('195', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"0\",\"sort\":\"2\"}', '2020-03-31 10:58:15', '2020-03-31 10:58:15'); INSERT INTO `admin_operation_log` VALUES ('196', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:58:19', '2020-03-31 10:58:19'); INSERT INTO `admin_operation_log` VALUES ('197', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 10:58:33', '2020-03-31 10:58:33'); INSERT INTO `admin_operation_log` VALUES ('198', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5c71\\u6c34\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\"}', '2020-03-31 10:58:52', '2020-03-31 10:58:52'); INSERT INTO `admin_operation_log` VALUES ('199', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:58:56', '2020-03-31 10:58:56'); INSERT INTO `admin_operation_log` VALUES ('200', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:59:08', '2020-03-31 10:59:08'); INSERT INTO `admin_operation_log` VALUES ('201', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 10:59:42', '2020-03-31 10:59:42'); INSERT INTO `admin_operation_log` VALUES ('202', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:06:50', '2020-03-31 11:06:50'); INSERT INTO `admin_operation_log` VALUES ('203', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:07:23', '2020-03-31 11:07:23'); INSERT INTO `admin_operation_log` VALUES ('204', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 11:07:28', '2020-03-31 11:07:28'); INSERT INTO `admin_operation_log` VALUES ('205', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u8721\\u7b14\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\"}', '2020-03-31 11:07:55', '2020-03-31 11:07:55'); INSERT INTO `admin_operation_log` VALUES ('206', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u8721\\u7b14\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\"}', '2020-03-31 11:09:16', '2020-03-31 11:09:16'); INSERT INTO `admin_operation_log` VALUES ('207', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:09:22', '2020-03-31 11:09:22'); INSERT INTO `admin_operation_log` VALUES ('208', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:10:07', '2020-03-31 11:10:07'); INSERT INTO `admin_operation_log` VALUES ('209', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 11:11:17', '2020-03-31 11:11:17'); INSERT INTO `admin_operation_log` VALUES ('210', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7532\\u9aa8\\u6587\",\"parent_id\":\"8\",\"sort\":\"2\"}', '2020-03-31 11:11:40', '2020-03-31 11:11:40'); INSERT INTO `admin_operation_log` VALUES ('211', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:11:44', '2020-03-31 11:11:44'); INSERT INTO `admin_operation_log` VALUES ('212', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:13:48', '2020-03-31 11:13:48'); INSERT INTO `admin_operation_log` VALUES ('213', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:14:06', '2020-03-31 11:14:06'); INSERT INTO `admin_operation_log` VALUES ('214', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:15:51', '2020-03-31 11:15:51'); INSERT INTO `admin_operation_log` VALUES ('215', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:30:03', '2020-03-31 11:30:03'); INSERT INTO `admin_operation_log` VALUES ('216', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:30:41', '2020-03-31 11:30:41'); INSERT INTO `admin_operation_log` VALUES ('217', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:31:05', '2020-03-31 11:31:05'); INSERT INTO `admin_operation_log` VALUES ('218', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 11:34:32', '2020-03-31 11:34:32'); INSERT INTO `admin_operation_log` VALUES ('219', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 11:34:41', '2020-03-31 11:34:41'); INSERT INTO `admin_operation_log` VALUES ('220', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 11:34:47', '2020-03-31 11:34:47'); INSERT INTO `admin_operation_log` VALUES ('221', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:34:49', '2020-03-31 11:34:49'); INSERT INTO `admin_operation_log` VALUES ('222', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:35:09', '2020-03-31 11:35:09'); INSERT INTO `admin_operation_log` VALUES ('223', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:37:23', '2020-03-31 11:37:23'); INSERT INTO `admin_operation_log` VALUES ('224', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:38:56', '2020-03-31 11:38:56'); INSERT INTO `admin_operation_log` VALUES ('225', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:39:33', '2020-03-31 11:39:33'); INSERT INTO `admin_operation_log` VALUES ('226', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:40:35', '2020-03-31 11:40:35'); INSERT INTO `admin_operation_log` VALUES ('227', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:40:51', '2020-03-31 11:40:51'); INSERT INTO `admin_operation_log` VALUES ('228', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:43:28', '2020-03-31 11:43:28'); INSERT INTO `admin_operation_log` VALUES ('229', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:43:53', '2020-03-31 11:43:53'); INSERT INTO `admin_operation_log` VALUES ('230', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:46:25', '2020-03-31 11:46:25'); INSERT INTO `admin_operation_log` VALUES ('231', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 11:46:53', '2020-03-31 11:46:53'); INSERT INTO `admin_operation_log` VALUES ('232', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5c0f\\u7bc6\",\"parent_id\":\"8\",\"sort\":\"2\"}', '2020-03-31 11:47:22', '2020-03-31 11:47:22'); INSERT INTO `admin_operation_log` VALUES ('233', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:47:25', '2020-03-31 11:47:25'); INSERT INTO `admin_operation_log` VALUES ('234', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:49:17', '2020-03-31 11:49:17'); INSERT INTO `admin_operation_log` VALUES ('235', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 11:49:27', '2020-03-31 11:49:27'); INSERT INTO `admin_operation_log` VALUES ('236', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u8349\\u4e66\",\"parent_id\":\"8\",\"sort\":\"2\"}', '2020-03-31 11:49:45', '2020-03-31 11:49:45'); INSERT INTO `admin_operation_log` VALUES ('237', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:49:49', '2020-03-31 11:49:49'); INSERT INTO `admin_operation_log` VALUES ('238', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:50:10', '2020-03-31 11:50:10'); INSERT INTO `admin_operation_log` VALUES ('239', '1', 'admin/store/category/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 11:50:34', '2020-03-31 11:50:34'); INSERT INTO `admin_operation_log` VALUES ('240', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:52:51', '2020-03-31 11:52:51'); INSERT INTO `admin_operation_log` VALUES ('241', '1', 'admin/course/category/edit', 'GET', '192.168.10.1', '{\"id\":\"7\",\"_pjax\":\"#pjax-container\"}', '2020-03-31 11:52:58', '2020-03-31 11:52:58'); INSERT INTO `admin_operation_log` VALUES ('242', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:53:02', '2020-03-31 11:53:02'); INSERT INTO `admin_operation_log` VALUES ('243', '1', 'admin/course/category/edit', 'GET', '192.168.10.1', '{\"id\":\"7\",\"_pjax\":\"#pjax-container\"}', '2020-03-31 11:53:42', '2020-03-31 11:53:42'); INSERT INTO `admin_operation_log` VALUES ('244', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:53:46', '2020-03-31 11:53:46'); INSERT INTO `admin_operation_log` VALUES ('245', '1', 'admin/course/category/edit', 'GET', '192.168.10.1', '{\"id\":\"7\",\"_pjax\":\"#pjax-container\"}', '2020-03-31 11:54:06', '2020-03-31 11:54:06'); INSERT INTO `admin_operation_log` VALUES ('246', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:54:10', '2020-03-31 11:54:10'); INSERT INTO `admin_operation_log` VALUES ('247', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 11:56:59', '2020-03-31 11:56:59'); INSERT INTO `admin_operation_log` VALUES ('248', '1', 'admin/course/category/7/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 11:57:11', '2020-03-31 11:57:11'); INSERT INTO `admin_operation_log` VALUES ('249', '1', 'admin/course/category/7/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 11:57:27', '2020-03-31 11:57:27'); INSERT INTO `admin_operation_log` VALUES ('250', '1', 'admin/course/category/7/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 11:58:53', '2020-03-31 11:58:53'); INSERT INTO `admin_operation_log` VALUES ('251', '1', 'admin/course/category/7/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 12:01:23', '2020-03-31 12:01:23'); INSERT INTO `admin_operation_log` VALUES ('252', '1', 'admin/course/category/7/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 12:01:53', '2020-03-31 12:01:53'); INSERT INTO `admin_operation_log` VALUES ('253', '1', 'admin/store/category/update/7', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u7ed8\\u753b\",\"parent_id\":\"0\",\"sort\":\"3\"}', '2020-03-31 12:03:38', '2020-03-31 12:03:38'); INSERT INTO `admin_operation_log` VALUES ('254', '1', 'admin/store/category', 'GET', '192.168.10.1', '[]', '2020-03-31 12:03:42', '2020-03-31 12:03:42'); INSERT INTO `admin_operation_log` VALUES ('255', '1', 'admin/course/category/9/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 12:04:06', '2020-03-31 12:04:06'); INSERT INTO `admin_operation_log` VALUES ('256', '1', 'admin/course/category/update', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\",\"9\":null}', '2020-03-31 12:04:19', '2020-03-31 12:04:19'); INSERT INTO `admin_operation_log` VALUES ('257', '1', 'admin/course/category/update', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\",\"9\":null}', '2020-03-31 12:04:24', '2020-03-31 12:04:24'); INSERT INTO `admin_operation_log` VALUES ('258', '1', 'admin/course/category/update', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\",\"9\":null}', '2020-03-31 12:04:30', '2020-03-31 12:04:30'); INSERT INTO `admin_operation_log` VALUES ('259', '1', 'admin/course/category/9/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 12:04:50', '2020-03-31 12:04:50'); INSERT INTO `admin_operation_log` VALUES ('260', '1', 'admin/course/category/update', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"0\",\"sort\":\"4\",\"9\":null}', '2020-03-31 12:05:16', '2020-03-31 12:05:16'); INSERT INTO `admin_operation_log` VALUES ('261', '1', 'admin/course/category/9/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 12:05:27', '2020-03-31 12:05:27'); INSERT INTO `admin_operation_log` VALUES ('262', '1', 'admin/course/category/update', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"0\",\"sort\":\"0\",\"9\":null}', '2020-03-31 12:05:35', '2020-03-31 12:05:35'); INSERT INTO `admin_operation_log` VALUES ('263', '1', 'admin/course/category/10/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 12:05:48', '2020-03-31 12:05:48'); INSERT INTO `admin_operation_log` VALUES ('264', '1', 'admin/course/category/update', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"0\",\"sort\":\"0\",\"10\":null}', '2020-03-31 12:05:56', '2020-03-31 12:05:56'); INSERT INTO `admin_operation_log` VALUES ('265', '1', 'admin/course/category/update', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\",\"10\":null}', '2020-03-31 12:06:05', '2020-03-31 12:06:05'); INSERT INTO `admin_operation_log` VALUES ('266', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":null,\"parent_id\":\"0\",\"sort\":\"0\"}', '2020-03-31 12:07:31', '2020-03-31 12:07:31'); INSERT INTO `admin_operation_log` VALUES ('267', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:07:46', '2020-03-31 12:07:46'); INSERT INTO `admin_operation_log` VALUES ('268', '1', 'admin/course/category/9/edit', 'GET', '192.168.10.1', '[]', '2020-03-31 12:08:11', '2020-03-31 12:08:11'); INSERT INTO `admin_operation_log` VALUES ('269', '1', 'admin/course/category/update', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"0\",\"sort\":\"0\",\"9\":null}', '2020-03-31 12:08:20', '2020-03-31 12:08:20'); INSERT INTO `admin_operation_log` VALUES ('270', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:12:06', '2020-03-31 12:12:06'); INSERT INTO `admin_operation_log` VALUES ('271', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:12:31', '2020-03-31 12:12:31'); INSERT INTO `admin_operation_log` VALUES ('272', '1', 'admin/course/category/edit/9', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 12:12:38', '2020-03-31 12:12:38'); INSERT INTO `admin_operation_log` VALUES ('273', '1', 'admin/course/category/update/9', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u5361\\u901a\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\"}', '2020-03-31 12:12:50', '2020-03-31 12:12:50'); INSERT INTO `admin_operation_log` VALUES ('274', '1', 'admin/store/category', 'GET', '192.168.10.1', '[]', '2020-03-31 12:12:54', '2020-03-31 12:12:54'); INSERT INTO `admin_operation_log` VALUES ('275', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 12:13:07', '2020-03-31 12:13:07'); INSERT INTO `admin_operation_log` VALUES ('276', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 12:13:13', '2020-03-31 12:13:13'); INSERT INTO `admin_operation_log` VALUES ('277', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 12:13:14', '2020-03-31 12:13:14'); INSERT INTO `admin_operation_log` VALUES ('278', '1', 'admin/course/category/edit/10', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 12:13:23', '2020-03-31 12:13:23'); INSERT INTO `admin_operation_log` VALUES ('279', '1', 'admin/course/category/update/10', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6c34\\u5f69\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\"}', '2020-03-31 12:13:33', '2020-03-31 12:13:33'); INSERT INTO `admin_operation_log` VALUES ('280', '1', 'admin/store/category', 'GET', '192.168.10.1', '[]', '2020-03-31 12:13:40', '2020-03-31 12:13:40'); INSERT INTO `admin_operation_log` VALUES ('281', '1', 'admin/store/category', 'GET', '192.168.10.1', '[]', '2020-03-31 12:15:48', '2020-03-31 12:15:48'); INSERT INTO `admin_operation_log` VALUES ('282', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:16:23', '2020-03-31 12:16:23'); INSERT INTO `admin_operation_log` VALUES ('283', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:17:05', '2020-03-31 12:17:05'); INSERT INTO `admin_operation_log` VALUES ('284', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u6977\\u4e66\",\"parent_id\":\"8\",\"sort\":\"2\"}', '2020-03-31 12:17:25', '2020-03-31 12:17:25'); INSERT INTO `admin_operation_log` VALUES ('285', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:17:29', '2020-03-31 12:17:29'); INSERT INTO `admin_operation_log` VALUES ('286', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:17:46', '2020-03-31 12:17:46'); INSERT INTO `admin_operation_log` VALUES ('287', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u884c\\u4e66\",\"parent_id\":\"8\",\"sort\":\"2\"}', '2020-03-31 12:18:02', '2020-03-31 12:18:02'); INSERT INTO `admin_operation_log` VALUES ('288', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:18:07', '2020-03-31 12:18:07'); INSERT INTO `admin_operation_log` VALUES ('289', '1', 'admin/course/category/check', 'GET', '192.168.10.1', '{\"id\":\"18\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 12:19:16', '2020-03-31 12:19:16'); INSERT INTO `admin_operation_log` VALUES ('290', '1', 'admin/course/category/delete', 'POST', '192.168.10.1', '{\"id\":\"18\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 12:19:19', '2020-03-31 12:19:19'); INSERT INTO `admin_operation_log` VALUES ('291', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:19:23', '2020-03-31 12:19:23'); INSERT INTO `admin_operation_log` VALUES ('292', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"12\",\"sort\":\"2\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 12:19:41', '2020-03-31 12:19:41'); INSERT INTO `admin_operation_log` VALUES ('293', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"7\",\"sort\":\"3\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 12:19:44', '2020-03-31 12:19:44'); INSERT INTO `admin_operation_log` VALUES ('294', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:19:48', '2020-03-31 12:19:48'); INSERT INTO `admin_operation_log` VALUES ('295', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"7\",\"sort\":\"3\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 12:19:48', '2020-03-31 12:19:48'); INSERT INTO `admin_operation_log` VALUES ('296', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:19:51', '2020-03-31 12:19:51'); INSERT INTO `admin_operation_log` VALUES ('297', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"7\",\"sort\":\"3\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 12:19:54', '2020-03-31 12:19:54'); INSERT INTO `admin_operation_log` VALUES ('298', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:19:55', '2020-03-31 12:19:55'); INSERT INTO `admin_operation_log` VALUES ('299', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-03-31 12:20:18', '2020-03-31 12:20:18'); INSERT INTO `admin_operation_log` VALUES ('300', '1', 'admin/store/article', 'GET', '192.168.10.1', '[]', '2020-03-31 12:25:58', '2020-03-31 12:25:58'); INSERT INTO `admin_operation_log` VALUES ('301', '1', 'admin/store/article/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:26:07', '2020-03-31 12:26:07'); INSERT INTO `admin_operation_log` VALUES ('302', '1', 'admin/store/goods', 'GET', '192.168.10.1', '[]', '2020-03-31 12:26:19', '2020-03-31 12:26:19'); INSERT INTO `admin_operation_log` VALUES ('303', '1', 'admin/store/goods/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:26:25', '2020-03-31 12:26:25'); INSERT INTO `admin_operation_log` VALUES ('304', '1', 'admin/store/goods/createBefore', 'GET', '192.168.10.1', '[]', '2020-03-31 12:26:27', '2020-03-31 12:26:27'); INSERT INTO `admin_operation_log` VALUES ('305', '1', 'admin/store/models/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:26:50', '2020-03-31 12:26:50'); INSERT INTO `admin_operation_log` VALUES ('306', '1', 'admin/store/models/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:26:53', '2020-03-31 12:26:53'); INSERT INTO `admin_operation_log` VALUES ('307', '1', 'admin/store/models/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:26:55', '2020-03-31 12:26:55'); INSERT INTO `admin_operation_log` VALUES ('308', '1', 'admin/store/models/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:26:56', '2020-03-31 12:26:56'); INSERT INTO `admin_operation_log` VALUES ('309', '1', 'admin/store/brand', 'GET', '192.168.10.1', '[]', '2020-03-31 12:27:00', '2020-03-31 12:27:00'); INSERT INTO `admin_operation_log` VALUES ('310', '1', 'admin/store/models/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:27:00', '2020-03-31 12:27:00'); INSERT INTO `admin_operation_log` VALUES ('311', '1', 'admin/store/brand/create', 'GET', '192.168.10.1', '[]', '2020-03-31 12:27:06', '2020-03-31 12:27:06'); INSERT INTO `admin_operation_log` VALUES ('312', '1', 'admin/store/brand', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u8010\\u514b\",\"url\":\"www.naike.com\",\"logo\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/fdb6b84ba00c81ddec77c904fb7ee2a8.jpg\",\"file\":null,\"description\":\"sd\",\"sort\":\"1\",\"is_show\":\"1\"}', '2020-03-31 12:33:21', '2020-03-31 12:33:21'); INSERT INTO `admin_operation_log` VALUES ('313', '1', 'admin/store/brand', 'GET', '192.168.10.1', '[]', '2020-03-31 12:33:25', '2020-03-31 12:33:25'); INSERT INTO `admin_operation_log` VALUES ('314', '1', 'admin/store/brand', 'GET', '192.168.10.1', '[]', '2020-03-31 12:53:28', '2020-03-31 12:53:28'); INSERT INTO `admin_operation_log` VALUES ('315', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 13:00:59', '2020-03-31 13:00:59'); INSERT INTO `admin_operation_log` VALUES ('316', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-03-31 13:01:07', '2020-03-31 13:01:07'); INSERT INTO `admin_operation_log` VALUES ('317', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 13:01:20', '2020-03-31 13:01:20'); INSERT INTO `admin_operation_log` VALUES ('318', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-31 13:01:44', '2020-03-31 13:01:44'); INSERT INTO `admin_operation_log` VALUES ('319', '1', 'admin/course/t', 'GET', '192.168.10.1', '[]', '2020-03-31 13:01:47', '2020-03-31 13:01:47'); INSERT INTO `admin_operation_log` VALUES ('320', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 13:02:20', '2020-03-31 13:02:20'); INSERT INTO `admin_operation_log` VALUES ('321', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-03-31 13:02:28', '2020-03-31 13:02:28'); INSERT INTO `admin_operation_log` VALUES ('322', '1', 'admin/store/getMonthData', 'GET', '192.168.10.1', '[]', '2020-03-31 13:02:34', '2020-03-31 13:02:34'); INSERT INTO `admin_operation_log` VALUES ('323', '1', 'admin/distribution', 'GET', '192.168.10.1', '[]', '2020-03-31 13:02:34', '2020-03-31 13:02:34'); INSERT INTO `admin_operation_log` VALUES ('324', '1', 'admin/distribution/getDashBoardData', 'GET', '192.168.10.1', '[]', '2020-03-31 13:02:38', '2020-03-31 13:02:38'); INSERT INTO `admin_operation_log` VALUES ('325', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 13:02:41', '2020-03-31 13:02:41'); INSERT INTO `admin_operation_log` VALUES ('326', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:06:34', '2020-03-31 13:06:34'); INSERT INTO `admin_operation_log` VALUES ('327', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:07:43', '2020-03-31 13:07:43'); INSERT INTO `admin_operation_log` VALUES ('328', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:08:19', '2020-03-31 13:08:19'); INSERT INTO `admin_operation_log` VALUES ('329', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:09:14', '2020-03-31 13:09:14'); INSERT INTO `admin_operation_log` VALUES ('330', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:40:23', '2020-03-31 13:40:23'); INSERT INTO `admin_operation_log` VALUES ('331', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:41:14', '2020-03-31 13:41:14'); INSERT INTO `admin_operation_log` VALUES ('332', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:43:20', '2020-03-31 13:43:20'); INSERT INTO `admin_operation_log` VALUES ('333', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:47:45', '2020-03-31 13:47:45'); INSERT INTO `admin_operation_log` VALUES ('334', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:48:34', '2020-03-31 13:48:34'); INSERT INTO `admin_operation_log` VALUES ('335', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:49:05', '2020-03-31 13:49:05'); INSERT INTO `admin_operation_log` VALUES ('336', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:49:16', '2020-03-31 13:49:16'); INSERT INTO `admin_operation_log` VALUES ('337', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:49:23', '2020-03-31 13:49:23'); INSERT INTO `admin_operation_log` VALUES ('338', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:49:53', '2020-03-31 13:49:53'); INSERT INTO `admin_operation_log` VALUES ('339', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:50:01', '2020-03-31 13:50:01'); INSERT INTO `admin_operation_log` VALUES ('340', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:50:12', '2020-03-31 13:50:12'); INSERT INTO `admin_operation_log` VALUES ('341', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:50:25', '2020-03-31 13:50:25'); INSERT INTO `admin_operation_log` VALUES ('342', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:52:56', '2020-03-31 13:52:56'); INSERT INTO `admin_operation_log` VALUES ('343', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:52:57', '2020-03-31 13:52:57'); INSERT INTO `admin_operation_log` VALUES ('344', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:53:08', '2020-03-31 13:53:08'); INSERT INTO `admin_operation_log` VALUES ('345', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:53:30', '2020-03-31 13:53:30'); INSERT INTO `admin_operation_log` VALUES ('346', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:53:38', '2020-03-31 13:53:38'); INSERT INTO `admin_operation_log` VALUES ('347', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:54:04', '2020-03-31 13:54:04'); INSERT INTO `admin_operation_log` VALUES ('348', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:54:14', '2020-03-31 13:54:14'); INSERT INTO `admin_operation_log` VALUES ('349', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:54:51', '2020-03-31 13:54:51'); INSERT INTO `admin_operation_log` VALUES ('350', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:55:27', '2020-03-31 13:55:27'); INSERT INTO `admin_operation_log` VALUES ('351', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:55:37', '2020-03-31 13:55:37'); INSERT INTO `admin_operation_log` VALUES ('352', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:55:48', '2020-03-31 13:55:48'); INSERT INTO `admin_operation_log` VALUES ('353', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:56:53', '2020-03-31 13:56:53'); INSERT INTO `admin_operation_log` VALUES ('354', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 13:56:54', '2020-03-31 13:56:54'); INSERT INTO `admin_operation_log` VALUES ('355', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 13:57:04', '2020-03-31 13:57:04'); INSERT INTO `admin_operation_log` VALUES ('356', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:01:25', '2020-03-31 14:01:25'); INSERT INTO `admin_operation_log` VALUES ('357', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:02:05', '2020-03-31 14:02:05'); INSERT INTO `admin_operation_log` VALUES ('358', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:08:12', '2020-03-31 14:08:12'); INSERT INTO `admin_operation_log` VALUES ('359', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:08:35', '2020-03-31 14:08:35'); INSERT INTO `admin_operation_log` VALUES ('360', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:23:05', '2020-03-31 14:23:05'); INSERT INTO `admin_operation_log` VALUES ('361', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:23:39', '2020-03-31 14:23:39'); INSERT INTO `admin_operation_log` VALUES ('362', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:23:45', '2020-03-31 14:23:45'); INSERT INTO `admin_operation_log` VALUES ('363', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:24:32', '2020-03-31 14:24:32'); INSERT INTO `admin_operation_log` VALUES ('364', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:26:36', '2020-03-31 14:26:36'); INSERT INTO `admin_operation_log` VALUES ('365', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:27:16', '2020-03-31 14:27:16'); INSERT INTO `admin_operation_log` VALUES ('366', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:27:25', '2020-03-31 14:27:25'); INSERT INTO `admin_operation_log` VALUES ('367', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:27:46', '2020-03-31 14:27:46'); INSERT INTO `admin_operation_log` VALUES ('368', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u5f20\\u4e00\\u65b9\",\"headimg\":null,\"file\":null,\"description\":\"\\u963f\\u4e09\\u53d1\\u5c04\\u70b9\\u53d1\\u5c04\\u70b9\\u53d1\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u9876\\u9876\\u9876\",\"status\":\"1\"}', '2020-03-31 14:30:47', '2020-03-31 14:30:47'); INSERT INTO `admin_operation_log` VALUES ('369', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u5f20\\u4e00\\u65b9\",\"headimg\":null,\"file\":null,\"description\":\"\\u963f\\u4e09\\u53d1\\u5c04\\u70b9\\u53d1\\u5c04\\u70b9\\u53d1\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u9876\\u9876\\u9876\",\"status\":\"1\"}', '2020-03-31 14:31:22', '2020-03-31 14:31:22'); INSERT INTO `admin_operation_log` VALUES ('370', '1', 'admin/store/brand', 'GET', '192.168.10.1', '[]', '2020-03-31 14:31:26', '2020-03-31 14:31:26'); INSERT INTO `admin_operation_log` VALUES ('371', '1', 'admin/store/brand', 'GET', '192.168.10.1', '[]', '2020-03-31 14:32:03', '2020-03-31 14:32:03'); INSERT INTO `admin_operation_log` VALUES ('372', '1', 'admin/store/brand/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:33:54', '2020-03-31 14:33:54'); INSERT INTO `admin_operation_log` VALUES ('373', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:34:14', '2020-03-31 14:34:14'); INSERT INTO `admin_operation_log` VALUES ('374', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:35:41', '2020-03-31 14:35:41'); INSERT INTO `admin_operation_log` VALUES ('375', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u67f3\\u4e00\\u6c34\",\"headimg\":null,\"file\":null,\"description\":\"\\u53ef\\u601c\\u89c1\\u53ef\\u601c\\u89c1\\u9760\\u9760\\u9760\\u8270\\u82e6\\u594b\\u6597\\u914d\\u4eba\\u4f53\\u5065\\u5eb7\\u7684\",\"body\":\"\\u963f\\u65af\\u8482\\u82ac\",\"status\":\"1\"}', '2020-03-31 14:36:30', '2020-03-31 14:36:30'); INSERT INTO `admin_operation_log` VALUES ('376', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:36:46', '2020-03-31 14:36:46'); INSERT INTO `admin_operation_log` VALUES ('377', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:37:47', '2020-03-31 14:37:47'); INSERT INTO `admin_operation_log` VALUES ('378', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u5218\\u4e00\\u6c34\",\"headimg\":null,\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"status\":\"1\"}', '2020-03-31 14:38:12', '2020-03-31 14:38:12'); INSERT INTO `admin_operation_log` VALUES ('379', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u5218\\u4e00\\u6c34\",\"headimg\":null,\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"status\":\"1\"}', '2020-03-31 14:38:35', '2020-03-31 14:38:35'); INSERT INTO `admin_operation_log` VALUES ('380', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:41:01', '2020-03-31 14:41:01'); INSERT INTO `admin_operation_log` VALUES ('381', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u738b\\u4e00\\u6dfb\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/667871be526b9ffc0cfe199b1aaba2a7.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"status\":\"1\"}', '2020-03-31 14:41:48', '2020-03-31 14:41:48'); INSERT INTO `admin_operation_log` VALUES ('382', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:41:52', '2020-03-31 14:41:52'); INSERT INTO `admin_operation_log` VALUES ('383', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 14:42:27', '2020-03-31 14:42:27'); INSERT INTO `admin_operation_log` VALUES ('384', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u67f3\\u968f\\u98ce\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/6d8c31fb18a04b754fa286247a3b7b39.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"status\":\"0\"}', '2020-03-31 14:42:49', '2020-03-31 14:42:49'); INSERT INTO `admin_operation_log` VALUES ('385', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u67f3\\u968f\\u98ce\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/6d8c31fb18a04b754fa286247a3b7b39.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"status\":\"0\"}', '2020-03-31 14:44:41', '2020-03-31 14:44:41'); INSERT INTO `admin_operation_log` VALUES ('386', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:44:47', '2020-03-31 14:44:47'); INSERT INTO `admin_operation_log` VALUES ('387', '1', 'admin/course/teacher/edit', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-03-31 14:45:02', '2020-03-31 14:45:02'); INSERT INTO `admin_operation_log` VALUES ('388', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:55:16', '2020-03-31 14:55:16'); INSERT INTO `admin_operation_log` VALUES ('389', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:55:26', '2020-03-31 14:55:26'); INSERT INTO `admin_operation_log` VALUES ('390', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:56:16', '2020-03-31 14:56:16'); INSERT INTO `admin_operation_log` VALUES ('391', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:57:17', '2020-03-31 14:57:17'); INSERT INTO `admin_operation_log` VALUES ('392', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:57:18', '2020-03-31 14:57:18'); INSERT INTO `admin_operation_log` VALUES ('393', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:59:15', '2020-03-31 14:59:15'); INSERT INTO `admin_operation_log` VALUES ('394', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 14:59:44', '2020-03-31 14:59:44'); INSERT INTO `admin_operation_log` VALUES ('395', '1', 'admin/course/teacher/destroy', 'GET', '192.168.10.1', '{\"id\":\"3\"}', '2020-03-31 14:59:57', '2020-03-31 14:59:57'); INSERT INTO `admin_operation_log` VALUES ('396', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:00:51', '2020-03-31 15:00:51'); INSERT INTO `admin_operation_log` VALUES ('397', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:01:08', '2020-03-31 15:01:08'); INSERT INTO `admin_operation_log` VALUES ('398', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:01:20', '2020-03-31 15:01:20'); INSERT INTO `admin_operation_log` VALUES ('399', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:02:01', '2020-03-31 15:02:01'); INSERT INTO `admin_operation_log` VALUES ('400', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:03:16', '2020-03-31 15:03:16'); INSERT INTO `admin_operation_log` VALUES ('401', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:04:05', '2020-03-31 15:04:05'); INSERT INTO `admin_operation_log` VALUES ('402', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:04:41', '2020-03-31 15:04:41'); INSERT INTO `admin_operation_log` VALUES ('403', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:05:06', '2020-03-31 15:05:06'); INSERT INTO `admin_operation_log` VALUES ('404', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:05:53', '2020-03-31 15:05:53'); INSERT INTO `admin_operation_log` VALUES ('405', '1', 'admin/store/brand', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"1\",\"name\":\"\\u5f20\\u4e00\\u65b9123\",\"headimg\":null,\"file\":null,\"description\":\"\\u963f\\u4e09\\u53d1\\u5c04\\u70b9\\u53d1\\u5c04\\u70b9\\u53d1123\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u9876\\u9876\\u9876123\",\"status\":\"2\"}', '2020-03-31 15:06:17', '2020-03-31 15:06:17'); INSERT INTO `admin_operation_log` VALUES ('406', '1', 'admin/store/brand', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"1\",\"name\":\"\\u5f20\\u4e00\\u65b9123\",\"headimg\":null,\"file\":null,\"description\":\"\\u963f\\u4e09\\u53d1\\u5c04\\u70b9\\u53d1\\u5c04\\u70b9\\u53d1123\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u9876\\u9876\\u9876123\",\"status\":\"2\"}', '2020-03-31 15:06:55', '2020-03-31 15:06:55'); INSERT INTO `admin_operation_log` VALUES ('407', '1', 'admin/store/brand', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"1\",\"name\":\"\\u5f20\\u4e00\\u65b9123\",\"headimg\":null,\"file\":null,\"description\":\"\\u963f\\u4e09\\u53d1\\u5c04\\u70b9\\u53d1\\u5c04\\u70b9\\u53d1123\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u9876\\u9876\\u9876123\",\"status\":\"2\"}', '2020-03-31 15:08:20', '2020-03-31 15:08:20'); INSERT INTO `admin_operation_log` VALUES ('408', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:08:41', '2020-03-31 15:08:41'); INSERT INTO `admin_operation_log` VALUES ('409', '1', 'admin/course/teacher/edit/3', 'GET', '192.168.10.1', '[]', '2020-03-31 15:08:48', '2020-03-31 15:08:48'); INSERT INTO `admin_operation_log` VALUES ('410', '1', 'admin/course/teacher/edit/3', 'GET', '192.168.10.1', '[]', '2020-03-31 15:09:49', '2020-03-31 15:09:49'); INSERT INTO `admin_operation_log` VALUES ('411', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"3\",\"name\":\"\\u738b\\u4e00\\u6dfb123\",\"headimg\":null,\"file\":null,\"description\":\"\\u963f\\u677e\\u5927123\",\"body\":\"\\u963f\\u677e\\u5927123\",\"status\":\"2\"}', '2020-03-31 15:10:07', '2020-03-31 15:10:07'); INSERT INTO `admin_operation_log` VALUES ('412', '1', 'admin/course/teacher/edit/3', 'GET', '192.168.10.1', '[]', '2020-03-31 15:10:53', '2020-03-31 15:10:53'); INSERT INTO `admin_operation_log` VALUES ('413', '1', 'admin/course/teacher/edit/3', 'GET', '192.168.10.1', '[]', '2020-03-31 15:11:14', '2020-03-31 15:11:14'); INSERT INTO `admin_operation_log` VALUES ('414', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"3\",\"name\":\"\\u738b\\u4e00\\u6dfb123\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/80874c33c7911c28db3b0d54ca98bb34.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927123\",\"body\":\"\\u963f\\u677e\\u5927123\",\"status\":\"2\"}', '2020-03-31 15:11:30', '2020-03-31 15:11:30'); INSERT INTO `admin_operation_log` VALUES ('415', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"3\",\"name\":\"\\u738b\\u4e00\\u6dfb123\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/80874c33c7911c28db3b0d54ca98bb34.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927123\",\"body\":\"\\u963f\\u677e\\u5927123\",\"status\":\"2\"}', '2020-03-31 15:11:46', '2020-03-31 15:11:46'); INSERT INTO `admin_operation_log` VALUES ('416', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:11:50', '2020-03-31 15:11:50'); INSERT INTO `admin_operation_log` VALUES ('417', '1', 'admin/course/teacher/edit/3', 'GET', '192.168.10.1', '[]', '2020-03-31 15:11:59', '2020-03-31 15:11:59'); INSERT INTO `admin_operation_log` VALUES ('418', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"3\",\"name\":\"\\u738b\\u4e00\\u6dfb123\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/80874c33c7911c28db3b0d54ca98bb34.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927123\",\"body\":\"\\u963f\\u677e\\u5927123\",\"status\":\"2\"}', '2020-03-31 15:12:08', '2020-03-31 15:12:08'); INSERT INTO `admin_operation_log` VALUES ('419', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:12:12', '2020-03-31 15:12:12'); INSERT INTO `admin_operation_log` VALUES ('420', '1', 'admin/course/teacher/destroy/2', 'GET', '192.168.10.1', '[]', '2020-03-31 15:12:22', '2020-03-31 15:12:22'); INSERT INTO `admin_operation_log` VALUES ('421', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:12:25', '2020-03-31 15:12:25'); INSERT INTO `admin_operation_log` VALUES ('422', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:12:42', '2020-03-31 15:12:42'); INSERT INTO `admin_operation_log` VALUES ('423', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u90dd\\u53c8\\u591a\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/60f9a670bed38ed752cf97e9e918c846.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"status\":\"0\"}', '2020-03-31 15:13:08', '2020-03-31 15:13:08'); INSERT INTO `admin_operation_log` VALUES ('424', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:13:22', '2020-03-31 15:13:22'); INSERT INTO `admin_operation_log` VALUES ('425', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:13:29', '2020-03-31 15:13:29'); INSERT INTO `admin_operation_log` VALUES ('426', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:14:34', '2020-03-31 15:14:34'); INSERT INTO `admin_operation_log` VALUES ('427', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:14:50', '2020-03-31 15:14:50'); INSERT INTO `admin_operation_log` VALUES ('428', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:14:58', '2020-03-31 15:14:58'); INSERT INTO `admin_operation_log` VALUES ('429', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:15:07', '2020-03-31 15:15:07'); INSERT INTO `admin_operation_log` VALUES ('430', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 15:15:51', '2020-03-31 15:15:51'); INSERT INTO `admin_operation_log` VALUES ('431', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:16:03', '2020-03-31 15:16:03'); INSERT INTO `admin_operation_log` VALUES ('432', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:16:15', '2020-03-31 15:16:15'); INSERT INTO `admin_operation_log` VALUES ('433', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:16:21', '2020-03-31 15:16:21'); INSERT INTO `admin_operation_log` VALUES ('434', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-03-31 15:16:32', '2020-03-31 15:16:32'); INSERT INTO `admin_operation_log` VALUES ('435', '1', 'admin/store/getMonthData', 'GET', '192.168.10.1', '[]', '2020-03-31 15:16:38', '2020-03-31 15:16:38'); INSERT INTO `admin_operation_log` VALUES ('436', '1', 'admin/store/setting/onlineService', 'GET', '192.168.10.1', '[]', '2020-03-31 15:16:42', '2020-03-31 15:16:42'); INSERT INTO `admin_operation_log` VALUES ('437', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-03-31 15:17:14', '2020-03-31 15:17:14'); INSERT INTO `admin_operation_log` VALUES ('438', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-03-31 15:17:57', '2020-03-31 15:17:57'); INSERT INTO `admin_operation_log` VALUES ('439', '1', 'admin/store/setting/point', 'GET', '192.168.10.1', '[]', '2020-03-31 15:27:13', '2020-03-31 15:27:13'); INSERT INTO `admin_operation_log` VALUES ('440', '1', 'admin/store/setting/shopSetting', 'GET', '192.168.10.1', '[]', '2020-03-31 15:27:32', '2020-03-31 15:27:32'); INSERT INTO `admin_operation_log` VALUES ('441', '1', 'admin/store/setting/onlineService', 'GET', '192.168.10.1', '[]', '2020-03-31 15:28:29', '2020-03-31 15:28:29'); INSERT INTO `admin_operation_log` VALUES ('442', '1', 'admin/store/setting/micro/page', 'GET', '192.168.10.1', '[]', '2020-03-31 15:28:36', '2020-03-31 15:28:36'); INSERT INTO `admin_operation_log` VALUES ('443', '1', 'admin/store/setting/micro/page/store', 'GET', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"name\":\"\\u963f\\u677e\\u5927\"}', '2020-03-31 15:28:50', '2020-03-31 15:28:50'); INSERT INTO `admin_operation_log` VALUES ('444', '1', 'admin/store/setting/micro/page', 'GET', '192.168.10.1', '[]', '2020-03-31 15:28:54', '2020-03-31 15:28:54'); INSERT INTO `admin_operation_log` VALUES ('445', '1', 'admin/store/setting/micro/page/compoent', 'GET', '192.168.10.1', '[]', '2020-03-31 15:29:17', '2020-03-31 15:29:17'); INSERT INTO `admin_operation_log` VALUES ('446', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_coupon', 'GET', '192.168.10.1', '[]', '2020-03-31 15:29:27', '2020-03-31 15:29:27'); INSERT INTO `admin_operation_log` VALUES ('447', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_coupon', 'GET', '192.168.10.1', '[]', '2020-03-31 15:29:29', '2020-03-31 15:29:29'); INSERT INTO `admin_operation_log` VALUES ('448', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_coupon/create', 'GET', '192.168.10.1', '{\"header\":\"\\u4f18\\u60e0\\u5238\"}', '2020-03-31 15:29:36', '2020-03-31 15:29:36'); INSERT INTO `admin_operation_log` VALUES ('449', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_slide', 'GET', '192.168.10.1', '[]', '2020-03-31 15:29:47', '2020-03-31 15:29:47'); INSERT INTO `admin_operation_log` VALUES ('450', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_slide/create', 'GET', '192.168.10.1', '{\"header\":\"\\u5e7b\\u706f\\u7247\"}', '2020-03-31 15:29:52', '2020-03-31 15:29:52'); INSERT INTO `admin_operation_log` VALUES ('451', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_nav', 'GET', '192.168.10.1', '[]', '2020-03-31 15:30:10', '2020-03-31 15:30:10'); INSERT INTO `admin_operation_log` VALUES ('452', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_nav/create', 'GET', '192.168.10.1', '{\"header\":\"\\u5feb\\u6377\\u5bfc\\u822a\"}', '2020-03-31 15:30:16', '2020-03-31 15:30:16'); INSERT INTO `admin_operation_log` VALUES ('453', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_cube', 'GET', '192.168.10.1', '[]', '2020-03-31 15:30:38', '2020-03-31 15:30:38'); INSERT INTO `admin_operation_log` VALUES ('454', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_cube/create', 'GET', '192.168.10.1', '{\"header\":\"\\u9b54\\u65b9\"}', '2020-03-31 15:30:43', '2020-03-31 15:30:43'); INSERT INTO `admin_operation_log` VALUES ('455', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_seckill', 'GET', '192.168.10.1', '[]', '2020-03-31 15:31:43', '2020-03-31 15:31:43'); INSERT INTO `admin_operation_log` VALUES ('456', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_seckill/create', 'GET', '192.168.10.1', '{\"header\":\"\\u79d2\\u6740\"}', '2020-03-31 15:31:51', '2020-03-31 15:31:51'); INSERT INTO `admin_operation_log` VALUES ('457', '1', 'admin/store/setting/micro/page/model/seckills', 'GET', '192.168.10.1', '[]', '2020-03-31 15:32:00', '2020-03-31 15:32:00'); INSERT INTO `admin_operation_log` VALUES ('458', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_groupon', 'GET', '192.168.10.1', '[]', '2020-03-31 15:32:05', '2020-03-31 15:32:05'); INSERT INTO `admin_operation_log` VALUES ('459', '1', 'admin/store/setting/micro/page/compoent/getSeckillsData', 'GET', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 15:32:05', '2020-03-31 15:32:05'); INSERT INTO `admin_operation_log` VALUES ('460', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_groupon/create', 'GET', '192.168.10.1', '{\"header\":\"\\u62fc\\u56e2\"}', '2020-03-31 15:32:10', '2020-03-31 15:32:10'); INSERT INTO `admin_operation_log` VALUES ('461', '1', 'admin/store/setting/micro/page/model/groupons', 'GET', '192.168.10.1', '[]', '2020-03-31 15:32:16', '2020-03-31 15:32:16'); INSERT INTO `admin_operation_log` VALUES ('462', '1', 'admin/store/setting/micro/page/compoent/getGrouponsData', 'GET', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 15:32:21', '2020-03-31 15:32:21'); INSERT INTO `admin_operation_log` VALUES ('463', '1', 'admin/store/setting/micro/page/compoent/getGrouponsData', 'GET', '192.168.10.1', '{\"title\":\"User\"}', '2020-03-31 15:32:30', '2020-03-31 15:32:30'); INSERT INTO `admin_operation_log` VALUES ('464', '1', 'admin/store/setting/micro/page/model/groupons', 'GET', '192.168.10.1', '[]', '2020-03-31 15:32:40', '2020-03-31 15:32:40'); INSERT INTO `admin_operation_log` VALUES ('465', '1', 'admin/store/setting/micro/page/compoent/getGrouponsData', 'GET', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 15:32:45', '2020-03-31 15:32:45'); INSERT INTO `admin_operation_log` VALUES ('466', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_category', 'GET', '192.168.10.1', '[]', '2020-03-31 15:32:55', '2020-03-31 15:32:55'); INSERT INTO `admin_operation_log` VALUES ('467', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_category/create', 'GET', '192.168.10.1', '{\"header\":\"\\u5206\\u7c7b\\u5546\\u54c1\"}', '2020-03-31 15:33:02', '2020-03-31 15:33:02'); INSERT INTO `admin_operation_log` VALUES ('468', '1', 'admin/store/setting/micro/page/model/categorys', 'GET', '192.168.10.1', '{\"type\":\"micro_page_componet_category\"}', '2020-03-31 15:33:10', '2020-03-31 15:33:10'); INSERT INTO `admin_operation_log` VALUES ('469', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_goods_group', 'GET', '192.168.10.1', '[]', '2020-03-31 15:33:31', '2020-03-31 15:33:31'); INSERT INTO `admin_operation_log` VALUES ('470', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_goods_group/create', 'GET', '192.168.10.1', '{\"header\":\"\\u5546\\u54c1\\u5206\\u7ec4\"}', '2020-03-31 15:33:37', '2020-03-31 15:33:37'); INSERT INTO `admin_operation_log` VALUES ('471', '1', 'admin/store/setting/micro/page/model/goods', 'GET', '192.168.10.1', '{\"type\":\"micro_page_componet_goods_group\",\"amp;index\":\"0\"}', '2020-03-31 15:33:47', '2020-03-31 15:33:47'); INSERT INTO `admin_operation_log` VALUES ('472', '1', 'admin/store/setting/micro/page/compoent/getGoodsData', 'GET', '192.168.10.1', '{\"limit\":\"5\",\"type\":\"micro_page_componet_goods_group\",\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 15:33:52', '2020-03-31 15:33:52'); INSERT INTO `admin_operation_log` VALUES ('473', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_article', 'GET', '192.168.10.1', '[]', '2020-03-31 15:34:01', '2020-03-31 15:34:01'); INSERT INTO `admin_operation_log` VALUES ('474', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_article/create', 'GET', '192.168.10.1', '{\"header\":\"\\u6587\\u7ae0\"}', '2020-03-31 15:34:08', '2020-03-31 15:34:08'); INSERT INTO `admin_operation_log` VALUES ('475', '1', 'admin/store/setting/micro/page/model/articles', 'GET', '192.168.10.1', '[]', '2020-03-31 15:34:16', '2020-03-31 15:34:16'); INSERT INTO `admin_operation_log` VALUES ('476', '1', 'admin/store/setting/micro/page/compoent/getArticlesData', 'GET', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 15:34:22', '2020-03-31 15:34:22'); INSERT INTO `admin_operation_log` VALUES ('477', '1', 'admin/store/setting/micro/page/compoent/getArticlesData', 'GET', '192.168.10.1', '{\"title\":\"User\"}', '2020-03-31 15:34:26', '2020-03-31 15:34:26'); INSERT INTO `admin_operation_log` VALUES ('478', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_guess_like', 'GET', '192.168.10.1', '[]', '2020-03-31 15:34:30', '2020-03-31 15:34:30'); INSERT INTO `admin_operation_log` VALUES ('479', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_guess_like/create', 'GET', '192.168.10.1', '{\"header\":\"\\u731c\\u4f60\\u559c\\u6b22\"}', '2020-03-31 15:34:40', '2020-03-31 15:34:40'); INSERT INTO `admin_operation_log` VALUES ('480', '1', 'admin/store/setting/invoice', 'GET', '192.168.10.1', '[]', '2020-03-31 15:35:02', '2020-03-31 15:35:02'); INSERT INTO `admin_operation_log` VALUES ('481', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:37:44', '2020-03-31 15:37:44'); INSERT INTO `admin_operation_log` VALUES ('482', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:39:27', '2020-03-31 15:39:27'); INSERT INTO `admin_operation_log` VALUES ('483', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:41:09', '2020-03-31 15:41:09'); INSERT INTO `admin_operation_log` VALUES ('484', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:41:39', '2020-03-31 15:41:39'); INSERT INTO `admin_operation_log` VALUES ('485', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:41:58', '2020-03-31 15:41:58'); INSERT INTO `admin_operation_log` VALUES ('486', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:42:14', '2020-03-31 15:42:14'); INSERT INTO `admin_operation_log` VALUES ('487', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:42:31', '2020-03-31 15:42:31'); INSERT INTO `admin_operation_log` VALUES ('488', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:42:56', '2020-03-31 15:42:56'); INSERT INTO `admin_operation_log` VALUES ('489', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:44:34', '2020-03-31 15:44:34'); INSERT INTO `admin_operation_log` VALUES ('490', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:45:02', '2020-03-31 15:45:02'); INSERT INTO `admin_operation_log` VALUES ('491', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:45:22', '2020-03-31 15:45:22'); INSERT INTO `admin_operation_log` VALUES ('492', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:45:52', '2020-03-31 15:45:52'); INSERT INTO `admin_operation_log` VALUES ('493', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 15:48:51', '2020-03-31 15:48:51'); INSERT INTO `admin_operation_log` VALUES ('494', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u4fde\\u5f97\\u6c341\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/58f6bbf209b082bdd8a9b208a66309b9.jpg\",\"file\":null,\"description\":\"\\u554a\\u5b9e\\u6253\\u5b9e\\u76841\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u98761\",\"tags\":{\"0\":\"\\u53bb1\",\"1\":\"\\u53bb2\",\"2\":\"\\u53bb3\",\"4\":\"\\u53bb5\"},\"status\":\"0\"}', '2020-03-31 15:50:34', '2020-03-31 15:50:34'); INSERT INTO `admin_operation_log` VALUES ('495', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u4fde\\u5f97\\u6c341\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/58f6bbf209b082bdd8a9b208a66309b9.jpg\",\"file\":null,\"description\":\"\\u554a\\u5b9e\\u6253\\u5b9e\\u76841\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u98761\",\"tags\":{\"0\":\"\\u53bb1\",\"1\":\"\\u53bb2\",\"2\":\"\\u53bb3\",\"4\":\"\\u53bb5\"},\"status\":\"0\"}', '2020-03-31 15:50:46', '2020-03-31 15:50:46'); INSERT INTO `admin_operation_log` VALUES ('496', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u4fde\\u5f97\\u6c341\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/58f6bbf209b082bdd8a9b208a66309b9.jpg\",\"file\":null,\"description\":\"\\u554a\\u5b9e\\u6253\\u5b9e\\u76841\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u98761\",\"tags\":{\"0\":\"\\u53bb1\",\"1\":\"\\u53bb2\",\"2\":\"\\u53bb3\",\"4\":\"\\u53bb5\"},\"status\":\"0\"}', '2020-03-31 15:57:33', '2020-03-31 15:57:33'); INSERT INTO `admin_operation_log` VALUES ('497', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u4fde\\u5f97\\u6c341\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/58f6bbf209b082bdd8a9b208a66309b9.jpg\",\"file\":null,\"description\":\"\\u554a\\u5b9e\\u6253\\u5b9e\\u76841\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u98761\",\"tags\":{\"0\":\"\\u53bb1\",\"1\":\"\\u53bb2\",\"2\":\"\\u53bb3\",\"4\":\"\\u53bb5\"},\"status\":\"0\"}', '2020-03-31 15:58:13', '2020-03-31 15:58:13'); INSERT INTO `admin_operation_log` VALUES ('498', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u4fde\\u5f97\\u6c341\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/58f6bbf209b082bdd8a9b208a66309b9.jpg\",\"file\":null,\"description\":\"\\u554a\\u5b9e\\u6253\\u5b9e\\u76841\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u98761\",\"tags\":[\"\\u53bb1\",\"\\u53bb2\",\"\\u53bb3\",\"\\u53bb\"],\"status\":\"0\"}', '2020-03-31 15:58:42', '2020-03-31 15:58:42'); INSERT INTO `admin_operation_log` VALUES ('499', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u4fde\\u5f97\\u6c341\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/58f6bbf209b082bdd8a9b208a66309b9.jpg\",\"file\":null,\"description\":\"\\u554a\\u5b9e\\u6253\\u5b9e\\u76841\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u98761\",\"tags\":[\"\\u53bb1\",\"\\u53bb2\",\"\\u53bb3\",\"\\u53bb\"],\"status\":\"0\"}', '2020-03-31 15:58:58', '2020-03-31 15:58:58'); INSERT INTO `admin_operation_log` VALUES ('500', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 15:59:03', '2020-03-31 15:59:03'); INSERT INTO `admin_operation_log` VALUES ('501', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:00:40', '2020-03-31 16:00:40'); INSERT INTO `admin_operation_log` VALUES ('502', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u62113\",\"\\u62114\"],\"status\":\"0\"}', '2020-03-31 16:01:40', '2020-03-31 16:01:40'); INSERT INTO `admin_operation_log` VALUES ('503', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u62113\",\"\\u62114\"],\"status\":\"0\"}', '2020-03-31 16:02:02', '2020-03-31 16:02:02'); INSERT INTO `admin_operation_log` VALUES ('504', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u62113\",\"\\u62114\",\"\\u6211\"],\"status\":\"0\"}', '2020-03-31 16:02:13', '2020-03-31 16:02:13'); INSERT INTO `admin_operation_log` VALUES ('505', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u62113\",\"\\u62114\",\"\\u6211\"],\"status\":\"0\"}', '2020-03-31 16:02:32', '2020-03-31 16:02:32'); INSERT INTO `admin_operation_log` VALUES ('506', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:02:36', '2020-03-31 16:02:36'); INSERT INTO `admin_operation_log` VALUES ('507', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:03:15', '2020-03-31 16:03:15'); INSERT INTO `admin_operation_log` VALUES ('508', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:08:24', '2020-03-31 16:08:24'); INSERT INTO `admin_operation_log` VALUES ('509', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:09:45', '2020-03-31 16:09:45'); INSERT INTO `admin_operation_log` VALUES ('510', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:11:09', '2020-03-31 16:11:09'); INSERT INTO `admin_operation_log` VALUES ('511', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:11:26', '2020-03-31 16:11:26'); INSERT INTO `admin_operation_log` VALUES ('512', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:12:33', '2020-03-31 16:12:33'); INSERT INTO `admin_operation_log` VALUES ('513', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:13:00', '2020-03-31 16:13:00'); INSERT INTO `admin_operation_log` VALUES ('514', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:13:38', '2020-03-31 16:13:38'); INSERT INTO `admin_operation_log` VALUES ('515', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:14:09', '2020-03-31 16:14:09'); INSERT INTO `admin_operation_log` VALUES ('516', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:14:35', '2020-03-31 16:14:35'); INSERT INTO `admin_operation_log` VALUES ('517', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:15:20', '2020-03-31 16:15:20'); INSERT INTO `admin_operation_log` VALUES ('518', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:15:34', '2020-03-31 16:15:34'); INSERT INTO `admin_operation_log` VALUES ('519', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:15:59', '2020-03-31 16:15:59'); INSERT INTO `admin_operation_log` VALUES ('520', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"7\",\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u62113\",\"\\u62114\",\"\\u6211\",\"\\u62115\",\"\\u62116\"],\"status\":\"2\"}', '2020-03-31 16:17:47', '2020-03-31 16:17:47'); INSERT INTO `admin_operation_log` VALUES ('521', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:17:52', '2020-03-31 16:17:52'); INSERT INTO `admin_operation_log` VALUES ('522', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:17:59', '2020-03-31 16:17:59'); INSERT INTO `admin_operation_log` VALUES ('523', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"7\",\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":{\"0\":\"\\u62111\",\"1\":\"\\u62112\",\"4\":\"\\u6211\",\"5\":\"666\",\"6\":\"888\"},\"status\":\"2\"}', '2020-03-31 16:18:22', '2020-03-31 16:18:22'); INSERT INTO `admin_operation_log` VALUES ('524', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:18:26', '2020-03-31 16:18:26'); INSERT INTO `admin_operation_log` VALUES ('525', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:18:34', '2020-03-31 16:18:34'); INSERT INTO `admin_operation_log` VALUES ('526', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"7\",\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u6211\",\"666\",\"888\",\"111\"],\"status\":\"2\"}', '2020-03-31 16:18:58', '2020-03-31 16:18:58'); INSERT INTO `admin_operation_log` VALUES ('527', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:19:02', '2020-03-31 16:19:02'); INSERT INTO `admin_operation_log` VALUES ('528', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:19:09', '2020-03-31 16:19:09'); INSERT INTO `admin_operation_log` VALUES ('529', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"7\",\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u6211\",\"666\",\"888\",\"111\",\"\\u62116\",\"\\u62118\",\"\\u62119\"],\"status\":\"2\"}', '2020-03-31 16:19:49', '2020-03-31 16:19:49'); INSERT INTO `admin_operation_log` VALUES ('530', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:19:52', '2020-03-31 16:19:52'); INSERT INTO `admin_operation_log` VALUES ('531', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:19:58', '2020-03-31 16:19:58'); INSERT INTO `admin_operation_log` VALUES ('532', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"7\",\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u6211\",\"666\",\"888\",\"111\",\"\\u62116\",\"\\u62118\",\"\\u62119\"],\"status\":\"2\"}', '2020-03-31 16:20:17', '2020-03-31 16:20:17'); INSERT INTO `admin_operation_log` VALUES ('533', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:20:21', '2020-03-31 16:20:21'); INSERT INTO `admin_operation_log` VALUES ('534', '1', 'admin/course/teacher/edit/7', 'GET', '192.168.10.1', '[]', '2020-03-31 16:20:27', '2020-03-31 16:20:27'); INSERT INTO `admin_operation_log` VALUES ('535', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"7\",\"name\":\"\\u674e\\u4e00\\u51e1\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/563bb0fdc346883f7556211564fb9a8a.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\\u963f\\u65af\\u8482\\u82ac\\u6492\\u5730\\u65b9\",\"tags\":[\"\\u62111\",\"\\u62112\",\"\\u6211\",\"666\",\"888\",\"111\",\"\\u62116\",\"\\u62118\",\"\\u62119\"],\"status\":\"2\"}', '2020-03-31 16:20:55', '2020-03-31 16:20:55'); INSERT INTO `admin_operation_log` VALUES ('536', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:20:59', '2020-03-31 16:20:59'); INSERT INTO `admin_operation_log` VALUES ('537', '1', 'admin/store/setting/point', 'GET', '192.168.10.1', '[]', '2020-03-31 16:21:50', '2020-03-31 16:21:50'); INSERT INTO `admin_operation_log` VALUES ('538', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-03-31 16:22:01', '2020-03-31 16:22:01'); INSERT INTO `admin_operation_log` VALUES ('539', '1', 'admin/store/setting/onlineService', 'GET', '192.168.10.1', '[]', '2020-03-31 16:22:12', '2020-03-31 16:22:12'); INSERT INTO `admin_operation_log` VALUES ('540', '1', 'admin/store/shippingmethod/company', 'GET', '192.168.10.1', '[]', '2020-03-31 16:22:21', '2020-03-31 16:22:21'); INSERT INTO `admin_operation_log` VALUES ('541', '1', 'admin/store/shippingmethod/Create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:22:28', '2020-03-31 16:22:28'); INSERT INTO `admin_operation_log` VALUES ('542', '1', 'admin/store/article', 'GET', '192.168.10.1', '[]', '2020-03-31 16:22:42', '2020-03-31 16:22:42'); INSERT INTO `admin_operation_log` VALUES ('543', '1', 'admin/store/article/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:22:47', '2020-03-31 16:22:47'); INSERT INTO `admin_operation_log` VALUES ('544', '1', 'admin/store/point-mall/goods', 'GET', '192.168.10.1', '[]', '2020-03-31 16:23:08', '2020-03-31 16:23:08'); INSERT INTO `admin_operation_log` VALUES ('545', '1', 'admin/store/point-mall/goods/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:23:18', '2020-03-31 16:23:18'); INSERT INTO `admin_operation_log` VALUES ('546', '1', 'admin/store/goods/get_category', 'GET', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\"}', '2020-03-31 16:23:33', '2020-03-31 16:23:33'); INSERT INTO `admin_operation_log` VALUES ('547', '1', 'admin/store/goods/get_category', 'GET', '192.168.10.1', '{\"parentId\":\"8\",\"type-click-category-button\":\"true\"}', '2020-03-31 16:24:23', '2020-03-31 16:24:23'); INSERT INTO `admin_operation_log` VALUES ('548', '1', 'admin/store/goods/get_category', 'GET', '192.168.10.1', '{\"parentId\":\"9\",\"type-click-category-button\":\"true\"}', '2020-03-31 16:24:25', '2020-03-31 16:24:25'); INSERT INTO `admin_operation_log` VALUES ('549', '1', 'admin/store/goods/get_category', 'GET', '192.168.10.1', '{\"parentId\":\"10\",\"type-click-category-button\":\"true\"}', '2020-03-31 16:24:27', '2020-03-31 16:24:27'); INSERT INTO `admin_operation_log` VALUES ('550', '1', 'admin/store/goods/get_category', 'GET', '192.168.10.1', '{\"parentId\":\"7\",\"type-click-category-button\":\"true\"}', '2020-03-31 16:24:29', '2020-03-31 16:24:29'); INSERT INTO `admin_operation_log` VALUES ('551', '1', 'admin/store/goods/get_category', 'GET', '192.168.10.1', '{\"parentId\":\"13\",\"type-click-category-button\":\"true\"}', '2020-03-31 16:24:30', '2020-03-31 16:24:30'); INSERT INTO `admin_operation_log` VALUES ('552', '1', 'admin/store/goods/get_category', 'GET', '192.168.10.1', '{\"parentId\":\"11\",\"type-click-category-button\":\"true\"}', '2020-03-31 16:24:33', '2020-03-31 16:24:33'); INSERT INTO `admin_operation_log` VALUES ('553', '1', 'admin/store/goods/get_category', 'GET', '192.168.10.1', '{\"parentId\":\"12\",\"type-click-category-button\":\"true\"}', '2020-03-31 16:24:34', '2020-03-31 16:24:34'); INSERT INTO `admin_operation_log` VALUES ('554', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:27:51', '2020-03-31 16:27:51'); INSERT INTO `admin_operation_log` VALUES ('555', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:28:04', '2020-03-31 16:28:04'); INSERT INTO `admin_operation_log` VALUES ('556', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:28:22', '2020-03-31 16:28:22'); INSERT INTO `admin_operation_log` VALUES ('557', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:29:27', '2020-03-31 16:29:27'); INSERT INTO `admin_operation_log` VALUES ('558', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:29:30', '2020-03-31 16:29:30'); INSERT INTO `admin_operation_log` VALUES ('559', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-03-31 16:29:39', '2020-03-31 16:29:39'); INSERT INTO `admin_operation_log` VALUES ('560', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"1\",\"name\":\"\\u5f20\\u4e00\\u65b9\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/a71a130795ff13d4c16ab4bebc8b710f.jpg\",\"file\":null,\"course_num\":\"10\",\"good_num\":\"121\",\"description\":\"\\u963f\\u4e09\\u53d1\\u5c04\\u70b9\\u53d1\\u5c04\\u70b9\\u53d1121\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u9876\\u9876\\u9876121\",\"tags\":[\"121\",\"123\",\"122\",\"124\"],\"status\":\"2\"}', '2020-03-31 16:30:28', '2020-03-31 16:30:28'); INSERT INTO `admin_operation_log` VALUES ('561', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:30:32', '2020-03-31 16:30:32'); INSERT INTO `admin_operation_log` VALUES ('562', '1', 'admin/course/teacher/edit/5', 'GET', '192.168.10.1', '[]', '2020-03-31 16:30:41', '2020-03-31 16:30:41'); INSERT INTO `admin_operation_log` VALUES ('563', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":\"5\",\"name\":\"\\u90dd\\u53c8\\u591a\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/60f9a670bed38ed752cf97e9e918c846.jpg\",\"file\":null,\"course_num\":\"12\",\"good_num\":\"1820\",\"description\":\"\\u963f\\u677e\\u592712\",\"body\":\"\\u963f\\u677e\\u592712\",\"tags\":[\"121\",\"123\"],\"status\":\"1\"}', '2020-03-31 16:31:15', '2020-03-31 16:31:15'); INSERT INTO `admin_operation_log` VALUES ('564', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:31:18', '2020-03-31 16:31:18'); INSERT INTO `admin_operation_log` VALUES ('565', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:31:37', '2020-03-31 16:31:37'); INSERT INTO `admin_operation_log` VALUES ('566', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:31:51', '2020-03-31 16:31:51'); INSERT INTO `admin_operation_log` VALUES ('567', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"id\":null,\"name\":\"\\u6c88\\u4e3a\\u5176\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/97441842ccb846cdb2f3c92254c7689d.jpg\",\"file\":null,\"course_num\":\"11\",\"good_num\":\"12368\",\"description\":\"\\u963f\\u677e\\u5927\",\"body\":\"\\u963f\\u677e\\u5927\",\"tags\":[\"\\u963f\\u677e\\u59271\",\"\\u963f\\u677e\\u59272\"],\"status\":\"0\"}', '2020-03-31 16:32:39', '2020-03-31 16:32:39'); INSERT INTO `admin_operation_log` VALUES ('568', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:32:43', '2020-03-31 16:32:43'); INSERT INTO `admin_operation_log` VALUES ('569', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-03-31 16:32:52', '2020-03-31 16:32:52'); INSERT INTO `admin_operation_log` VALUES ('570', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 16:32:57', '2020-03-31 16:32:57'); INSERT INTO `admin_operation_log` VALUES ('571', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:33:06', '2020-03-31 16:33:06'); INSERT INTO `admin_operation_log` VALUES ('572', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 16:48:37', '2020-03-31 16:48:37'); INSERT INTO `admin_operation_log` VALUES ('573', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:50:01', '2020-03-31 16:50:01'); INSERT INTO `admin_operation_log` VALUES ('574', '1', 'admin/store/article', 'GET', '192.168.10.1', '[]', '2020-03-31 16:50:53', '2020-03-31 16:50:53'); INSERT INTO `admin_operation_log` VALUES ('575', '1', 'admin/store/article/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:51:02', '2020-03-31 16:51:02'); INSERT INTO `admin_operation_log` VALUES ('576', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-03-31 16:52:29', '2020-03-31 16:52:29'); INSERT INTO `admin_operation_log` VALUES ('577', '1', 'admin/store/setting/onlineService', 'GET', '192.168.10.1', '[]', '2020-03-31 16:52:37', '2020-03-31 16:52:37'); INSERT INTO `admin_operation_log` VALUES ('578', '1', 'admin/store/setting/point', 'GET', '192.168.10.1', '[]', '2020-03-31 16:52:45', '2020-03-31 16:52:45'); INSERT INTO `admin_operation_log` VALUES ('579', '1', 'admin/store/setting/invoice', 'GET', '192.168.10.1', '[]', '2020-03-31 16:52:55', '2020-03-31 16:52:55'); INSERT INTO `admin_operation_log` VALUES ('580', '1', 'admin/store/promotion/discount', 'GET', '192.168.10.1', '[]', '2020-03-31 16:53:05', '2020-03-31 16:53:05'); INSERT INTO `admin_operation_log` VALUES ('581', '1', 'admin/store/promotion/discount/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:53:15', '2020-03-31 16:53:15'); INSERT INTO `admin_operation_log` VALUES ('582', '1', 'admin/store/promotion/seckill', 'GET', '192.168.10.1', '[]', '2020-03-31 16:53:44', '2020-03-31 16:53:44'); INSERT INTO `admin_operation_log` VALUES ('583', '1', 'admin/store/order', 'GET', '192.168.10.1', '{\"status\":\"all\"}', '2020-03-31 16:53:57', '2020-03-31 16:53:57'); INSERT INTO `admin_operation_log` VALUES ('584', '1', 'admin/store/setting/user/agreement', 'GET', '192.168.10.1', '[]', '2020-03-31 16:54:06', '2020-03-31 16:54:06'); INSERT INTO `admin_operation_log` VALUES ('585', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 16:57:25', '2020-03-31 16:57:25'); INSERT INTO `admin_operation_log` VALUES ('586', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 16:57:33', '2020-03-31 16:57:33'); INSERT INTO `admin_operation_log` VALUES ('587', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 16:57:38', '2020-03-31 16:57:38'); INSERT INTO `admin_operation_log` VALUES ('588', '1', 'admin/store/setting/user/agreement', 'GET', '192.168.10.1', '[]', '2020-03-31 16:58:21', '2020-03-31 16:58:21'); INSERT INTO `admin_operation_log` VALUES ('589', '1', 'admin/store/setting/user/agreement', 'GET', '192.168.10.1', '[]', '2020-03-31 17:07:12', '2020-03-31 17:07:12'); INSERT INTO `admin_operation_log` VALUES ('590', '1', 'admin/store/setting/user/agreement', 'GET', '192.168.10.1', '[]', '2020-03-31 17:09:12', '2020-03-31 17:09:12'); INSERT INTO `admin_operation_log` VALUES ('591', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:10:09', '2020-03-31 17:10:09'); INSERT INTO `admin_operation_log` VALUES ('592', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:14:55', '2020-03-31 17:14:55'); INSERT INTO `admin_operation_log` VALUES ('593', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:15:19', '2020-03-31 17:15:19'); INSERT INTO `admin_operation_log` VALUES ('594', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:17:53', '2020-03-31 17:17:53'); INSERT INTO `admin_operation_log` VALUES ('595', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:18:50', '2020-03-31 17:18:50'); INSERT INTO `admin_operation_log` VALUES ('596', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:19:42', '2020-03-31 17:19:42'); INSERT INTO `admin_operation_log` VALUES ('597', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:20:31', '2020-03-31 17:20:31'); INSERT INTO `admin_operation_log` VALUES ('598', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:20:47', '2020-03-31 17:20:47'); INSERT INTO `admin_operation_log` VALUES ('599', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:21:32', '2020-03-31 17:21:32'); INSERT INTO `admin_operation_log` VALUES ('600', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:23:42', '2020-03-31 17:23:42'); INSERT INTO `admin_operation_log` VALUES ('601', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 17:47:28', '2020-03-31 17:47:28'); INSERT INTO `admin_operation_log` VALUES ('602', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 17:47:51', '2020-03-31 17:47:51'); INSERT INTO `admin_operation_log` VALUES ('603', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 17:47:57', '2020-03-31 17:47:57'); INSERT INTO `admin_operation_log` VALUES ('604', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-03-31 17:48:00', '2020-03-31 17:48:00'); INSERT INTO `admin_operation_log` VALUES ('605', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-03-31 17:57:00', '2020-03-31 17:57:00'); INSERT INTO `admin_operation_log` VALUES ('606', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-03-31 18:11:44', '2020-03-31 18:11:44'); INSERT INTO `admin_operation_log` VALUES ('607', '1', 'admin/member/recharge', 'GET', '192.168.10.1', '[]', '2020-03-31 18:12:09', '2020-03-31 18:12:09'); INSERT INTO `admin_operation_log` VALUES ('608', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 18:12:35', '2020-03-31 18:12:35'); INSERT INTO `admin_operation_log` VALUES ('609', '1', 'admin/member/recharge/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:12:42', '2020-03-31 18:12:42'); INSERT INTO `admin_operation_log` VALUES ('610', '1', 'admin/member/recharge/api/coupon', 'GET', '192.168.10.1', '{\"status\":\"ing\"}', '2020-03-31 18:12:45', '2020-03-31 18:12:45'); INSERT INTO `admin_operation_log` VALUES ('611', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 18:13:05', '2020-03-31 18:13:05'); INSERT INTO `admin_operation_log` VALUES ('612', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 18:13:12', '2020-03-31 18:13:12'); INSERT INTO `admin_operation_log` VALUES ('613', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-03-31 18:13:16', '2020-03-31 18:13:16'); INSERT INTO `admin_operation_log` VALUES ('614', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-03-31 18:13:28', '2020-03-31 18:13:28'); INSERT INTO `admin_operation_log` VALUES ('615', '1', 'admin/store/setting/invoice', 'GET', '192.168.10.1', '[]', '2020-03-31 18:13:35', '2020-03-31 18:13:35'); INSERT INTO `admin_operation_log` VALUES ('616', '1', 'admin/store/goods/limit', 'GET', '192.168.10.1', '{\"status\":\"ACTIVITY\"}', '2020-03-31 18:13:48', '2020-03-31 18:13:48'); INSERT INTO `admin_operation_log` VALUES ('617', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-03-31 18:15:37', '2020-03-31 18:15:37'); INSERT INTO `admin_operation_log` VALUES ('618', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:15:45', '2020-03-31 18:15:45'); INSERT INTO `admin_operation_log` VALUES ('619', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:16:19', '2020-03-31 18:16:19'); INSERT INTO `admin_operation_log` VALUES ('620', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:16:40', '2020-03-31 18:16:40'); INSERT INTO `admin_operation_log` VALUES ('621', '1', 'admin/store/promotion/coupon', 'GET', '192.168.10.1', '[]', '2020-03-31 18:20:14', '2020-03-31 18:20:14'); INSERT INTO `admin_operation_log` VALUES ('622', '1', 'admin/store/promotion/coupon/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:20:22', '2020-03-31 18:20:22'); INSERT INTO `admin_operation_log` VALUES ('623', '1', 'admin/store/promotion/seckill', 'GET', '192.168.10.1', '[]', '2020-03-31 18:21:45', '2020-03-31 18:21:45'); INSERT INTO `admin_operation_log` VALUES ('624', '1', 'admin/store/promotion/seckill/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:21:52', '2020-03-31 18:21:52'); INSERT INTO `admin_operation_log` VALUES ('625', '1', 'admin/store/promotion/seckill/getSpu', 'GET', '192.168.10.1', '[]', '2020-03-31 18:22:10', '2020-03-31 18:22:10'); INSERT INTO `admin_operation_log` VALUES ('626', '1', 'admin/store/promotion/seckill/getSpuData', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"ids\":null,\"price\":\"sell_price\",\"price_begin\":null,\"price_end\":null,\"store_begin\":null,\"store_end\":null,\"field\":\"name\",\"value\":null,\"page\":\"1\"}', '2020-03-31 18:22:12', '2020-03-31 18:22:12'); INSERT INTO `admin_operation_log` VALUES ('627', '1', 'admin/store/promotion/seckill/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:27:21', '2020-03-31 18:27:21'); INSERT INTO `admin_operation_log` VALUES ('628', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:29:26', '2020-03-31 18:29:26'); INSERT INTO `admin_operation_log` VALUES ('629', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:30:19', '2020-03-31 18:30:19'); INSERT INTO `admin_operation_log` VALUES ('630', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:30:25', '2020-03-31 18:30:25'); INSERT INTO `admin_operation_log` VALUES ('631', '1', 'admin/store/promotion/gift/new_user', 'GET', '192.168.10.1', '[]', '2020-03-31 18:31:00', '2020-03-31 18:31:00'); INSERT INTO `admin_operation_log` VALUES ('632', '1', 'admin/store/promotion/gift/new_user/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:31:06', '2020-03-31 18:31:06'); INSERT INTO `admin_operation_log` VALUES ('633', '1', 'admin/store/promotion/gift/new_user/api/coupon', 'GET', '192.168.10.1', '{\"status\":\"ing\"}', '2020-03-31 18:31:12', '2020-03-31 18:31:12'); INSERT INTO `admin_operation_log` VALUES ('634', '1', 'admin/store/promotion/gift/birthday', 'GET', '192.168.10.1', '[]', '2020-03-31 18:31:17', '2020-03-31 18:31:17'); INSERT INTO `admin_operation_log` VALUES ('635', '1', 'admin/store/promotion/gift/birthday/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:31:23', '2020-03-31 18:31:23'); INSERT INTO `admin_operation_log` VALUES ('636', '1', 'admin/store/promotion/gift/birthday/api/coupon', 'GET', '192.168.10.1', '{\"status\":\"ing\"}', '2020-03-31 18:31:29', '2020-03-31 18:31:29'); INSERT INTO `admin_operation_log` VALUES ('637', '1', 'admin/store/promotion/multiGroupon', 'GET', '192.168.10.1', '[]', '2020-03-31 18:31:33', '2020-03-31 18:31:33'); INSERT INTO `admin_operation_log` VALUES ('638', '1', 'admin/store/promotion/multiGroupon/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:31:41', '2020-03-31 18:31:41'); INSERT INTO `admin_operation_log` VALUES ('639', '1', 'admin/store/promotion/multiGroupon/getSpuModal', 'GET', '192.168.10.1', '[]', '2020-03-31 18:31:52', '2020-03-31 18:31:52'); INSERT INTO `admin_operation_log` VALUES ('640', '1', 'admin/store/promotion/multiGroupon/getSpuData', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"field\":\"name\",\"value\":null,\"page\":\"1\"}', '2020-03-31 18:31:55', '2020-03-31 18:31:55'); INSERT INTO `admin_operation_log` VALUES ('641', '1', 'admin/store/promotion/discount', 'GET', '192.168.10.1', '[]', '2020-03-31 18:31:59', '2020-03-31 18:31:59'); INSERT INTO `admin_operation_log` VALUES ('642', '1', 'admin/store/promotion/discount/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:32:06', '2020-03-31 18:32:06'); INSERT INTO `admin_operation_log` VALUES ('643', '1', 'admin/store/promotion/discount/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:36:41', '2020-03-31 18:36:41'); INSERT INTO `admin_operation_log` VALUES ('644', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:36:51', '2020-03-31 18:36:51'); INSERT INTO `admin_operation_log` VALUES ('645', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:36:53', '2020-03-31 18:36:53'); INSERT INTO `admin_operation_log` VALUES ('646', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:36:54', '2020-03-31 18:36:54'); INSERT INTO `admin_operation_log` VALUES ('647', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:36:55', '2020-03-31 18:36:55'); INSERT INTO `admin_operation_log` VALUES ('648', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:36:58', '2020-03-31 18:36:58'); INSERT INTO `admin_operation_log` VALUES ('649', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:36:59', '2020-03-31 18:36:59'); INSERT INTO `admin_operation_log` VALUES ('650', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:37:00', '2020-03-31 18:37:00'); INSERT INTO `admin_operation_log` VALUES ('651', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:37:01', '2020-03-31 18:37:01'); INSERT INTO `admin_operation_log` VALUES ('652', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:37:01', '2020-03-31 18:37:01'); INSERT INTO `admin_operation_log` VALUES ('653', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"asdas\"},\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:37:02', '2020-03-31 18:37:02'); INSERT INTO `admin_operation_log` VALUES ('654', '1', 'admin/store/promotion/discount/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:37:03', '2020-03-31 18:37:03'); INSERT INTO `admin_operation_log` VALUES ('655', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:38:59', '2020-03-31 18:38:59'); INSERT INTO `admin_operation_log` VALUES ('656', '1', 'admin/store/promotion/discount/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:39:58', '2020-03-31 18:39:58'); INSERT INTO `admin_operation_log` VALUES ('657', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"\\u9177\\u9177\\u9177\"},\"hour\":\"18\",\"minute\":\"39\",\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:40:07', '2020-03-31 18:40:07'); INSERT INTO `admin_operation_log` VALUES ('658', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"\\u9177\\u9177\\u9177\"},\"hour\":\"18\",\"minute\":\"39\",\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:40:10', '2020-03-31 18:40:10'); INSERT INTO `admin_operation_log` VALUES ('659', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"\\u9177\\u9177\\u9177\"},\"hour\":\"18\",\"minute\":\"39\",\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:40:11', '2020-03-31 18:40:11'); INSERT INTO `admin_operation_log` VALUES ('660', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"\\u9177\\u9177\\u9177\"},\"hour\":\"18\",\"minute\":\"39\",\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:40:14', '2020-03-31 18:40:14'); INSERT INTO `admin_operation_log` VALUES ('661', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"\\u9177\\u9177\\u9177\"},\"hour\":\"18\",\"minute\":\"39\",\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:40:14', '2020-03-31 18:40:14'); INSERT INTO `admin_operation_log` VALUES ('662', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"\\u9177\\u9177\\u9177\"},\"hour\":\"18\",\"minute\":\"39\",\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:40:15', '2020-03-31 18:40:15'); INSERT INTO `admin_operation_log` VALUES ('663', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"\\u9177\\u9177\\u9177\"},\"hour\":\"18\",\"minute\":\"39\",\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:40:15', '2020-03-31 18:40:15'); INSERT INTO `admin_operation_log` VALUES ('664', '1', 'admin/store/promotion/discount/store', 'POST', '192.168.10.1', '{\"_token\":\"4ckQ7e8biaOLK5JlnOeq7FfpIiGloNCqtiGl9rI2\",\"base\":{\"title\":null,\"exclusive\":\"0\",\"label\":null,\"intro\":null,\"usage_limit\":null,\"starts_at\":null,\"ends_at\":null,\"status\":\"1\",\"tags\":\"\\u4e0d\\u5f3a\"},\"hour\":\"18\",\"minute\":\"39\",\"rules\":{\"1\":{\"value\":null},\"2\":{\"value\":null},\"3\":{\"value\":{\"sku\":null,\"spu\":null}},\"4\":{\"value\":{\"exclude_spu\":null}}},\"action\":{\"type\":\"order_fixed_discount\",\"configuration\":\"0\"}}', '2020-03-31 18:40:22', '2020-03-31 18:40:22'); INSERT INTO `admin_operation_log` VALUES ('665', '1', 'admin/store/promotion/discount/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:40:33', '2020-03-31 18:40:33'); INSERT INTO `admin_operation_log` VALUES ('666', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:41:46', '2020-03-31 18:41:46'); INSERT INTO `admin_operation_log` VALUES ('667', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:41:57', '2020-03-31 18:41:57'); INSERT INTO `admin_operation_log` VALUES ('668', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:42:02', '2020-03-31 18:42:02'); INSERT INTO `admin_operation_log` VALUES ('669', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-03-31 18:43:16', '2020-03-31 18:43:16'); INSERT INTO `admin_operation_log` VALUES ('670', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 09:11:53', '2020-04-01 09:11:53'); INSERT INTO `admin_operation_log` VALUES ('671', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-04-01 09:12:11', '2020-04-01 09:12:11'); INSERT INTO `admin_operation_log` VALUES ('672', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 09:12:20', '2020-04-01 09:12:20'); INSERT INTO `admin_operation_log` VALUES ('673', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:12:25', '2020-04-01 09:12:25'); INSERT INTO `admin_operation_log` VALUES ('674', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:26:31', '2020-04-01 09:26:31'); INSERT INTO `admin_operation_log` VALUES ('675', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:31:58', '2020-04-01 09:31:58'); INSERT INTO `admin_operation_log` VALUES ('676', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:32:52', '2020-04-01 09:32:52'); INSERT INTO `admin_operation_log` VALUES ('677', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:33:30', '2020-04-01 09:33:30'); INSERT INTO `admin_operation_log` VALUES ('678', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:34:13', '2020-04-01 09:34:13'); INSERT INTO `admin_operation_log` VALUES ('679', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:35:49', '2020-04-01 09:35:49'); INSERT INTO `admin_operation_log` VALUES ('680', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:36:43', '2020-04-01 09:36:43'); INSERT INTO `admin_operation_log` VALUES ('681', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:37:12', '2020-04-01 09:37:12'); INSERT INTO `admin_operation_log` VALUES ('682', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:38:45', '2020-04-01 09:38:45'); INSERT INTO `admin_operation_log` VALUES ('683', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:41:06', '2020-04-01 09:41:06'); INSERT INTO `admin_operation_log` VALUES ('684', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:41:32', '2020-04-01 09:41:32'); INSERT INTO `admin_operation_log` VALUES ('685', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:42:16', '2020-04-01 09:42:16'); INSERT INTO `admin_operation_log` VALUES ('686', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:42:36', '2020-04-01 09:42:36'); INSERT INTO `admin_operation_log` VALUES ('687', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:43:30', '2020-04-01 09:43:30'); INSERT INTO `admin_operation_log` VALUES ('688', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:44:23', '2020-04-01 09:44:23'); INSERT INTO `admin_operation_log` VALUES ('689', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:44:36', '2020-04-01 09:44:36'); INSERT INTO `admin_operation_log` VALUES ('690', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:45:18', '2020-04-01 09:45:18'); INSERT INTO `admin_operation_log` VALUES ('691', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:45:51', '2020-04-01 09:45:51'); INSERT INTO `admin_operation_log` VALUES ('692', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:51:01', '2020-04-01 09:51:01'); INSERT INTO `admin_operation_log` VALUES ('693', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:51:02', '2020-04-01 09:51:02'); INSERT INTO `admin_operation_log` VALUES ('694', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:51:35', '2020-04-01 09:51:35'); INSERT INTO `admin_operation_log` VALUES ('695', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:53:30', '2020-04-01 09:53:30'); INSERT INTO `admin_operation_log` VALUES ('696', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:55:15', '2020-04-01 09:55:15'); INSERT INTO `admin_operation_log` VALUES ('697', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 09:57:07', '2020-04-01 09:57:07'); INSERT INTO `admin_operation_log` VALUES ('698', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:00:56', '2020-04-01 10:00:56'); INSERT INTO `admin_operation_log` VALUES ('699', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:01:05', '2020-04-01 10:01:05'); INSERT INTO `admin_operation_log` VALUES ('700', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:01:10', '2020-04-01 10:01:10'); INSERT INTO `admin_operation_log` VALUES ('701', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:01:10', '2020-04-01 10:01:10'); INSERT INTO `admin_operation_log` VALUES ('702', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:01:10', '2020-04-01 10:01:10'); INSERT INTO `admin_operation_log` VALUES ('703', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:04:27', '2020-04-01 10:04:27'); INSERT INTO `admin_operation_log` VALUES ('704', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:04:32', '2020-04-01 10:04:32'); INSERT INTO `admin_operation_log` VALUES ('705', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:04:32', '2020-04-01 10:04:32'); INSERT INTO `admin_operation_log` VALUES ('706', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:04:33', '2020-04-01 10:04:33'); INSERT INTO `admin_operation_log` VALUES ('707', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:04:33', '2020-04-01 10:04:33'); INSERT INTO `admin_operation_log` VALUES ('708', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:04:34', '2020-04-01 10:04:34'); INSERT INTO `admin_operation_log` VALUES ('709', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"php\\u5927\\u8bb2\\u5802cto\\u8fdb\\u9636\\u4e4b\\u8def\",\"category\":\"5\",\"description\":\"\\u8bfe\\u7a0b\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"cover\":null,\"file\":null,\"watch_num\":\"7\",\"good_num\":\"6\",\"collection_num\":\"27\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"PHP,cto,nginx,linux,mysql\"}}', '2020-04-01 10:04:36', '2020-04-01 10:04:36'); INSERT INTO `admin_operation_log` VALUES ('710', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:04:38', '2020-04-01 10:04:38'); INSERT INTO `admin_operation_log` VALUES ('711', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:04:39', '2020-04-01 10:04:39'); INSERT INTO `admin_operation_log` VALUES ('712', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"User\",\"category\":\"5\",\"description\":\"asdasd\",\"cover\":null,\"file\":null,\"watch_num\":\"2\",\"good_num\":\"2\",\"collection_num\":\"2\",\"original_price\":\"2\",\"price\":\"2\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"\\u6807\\u7b7e\\u63d0\\u793a2\"}}', '2020-04-01 10:05:04', '2020-04-01 10:05:04'); INSERT INTO `admin_operation_log` VALUES ('713', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:05:34', '2020-04-01 10:05:34'); INSERT INTO `admin_operation_log` VALUES ('714', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:05:35', '2020-04-01 10:05:35'); INSERT INTO `admin_operation_log` VALUES ('715', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"User\",\"category\":\"5\",\"description\":\"qwe\",\"cover\":null,\"file\":null,\"watch_num\":\"2\",\"good_num\":\"2\",\"collection_num\":\"2\",\"original_price\":\"2\",\"price\":\"2\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"1\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"\\u6807\\u7b7e\\u63d0\\u793a2\"}}', '2020-04-01 10:06:08', '2020-04-01 10:06:08'); INSERT INTO `admin_operation_log` VALUES ('716', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-04-01 10:06:19', '2020-04-01 10:06:19'); INSERT INTO `admin_operation_log` VALUES ('717', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 10:06:24', '2020-04-01 10:06:24'); INSERT INTO `admin_operation_log` VALUES ('718', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 10:06:27', '2020-04-01 10:06:27'); INSERT INTO `admin_operation_log` VALUES ('719', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:06:32', '2020-04-01 10:06:32'); INSERT INTO `admin_operation_log` VALUES ('720', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 10:06:33', '2020-04-01 10:06:33'); INSERT INTO `admin_operation_log` VALUES ('721', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 10:06:38', '2020-04-01 10:06:38'); INSERT INTO `admin_operation_log` VALUES ('722', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 10:06:43', '2020-04-01 10:06:43'); INSERT INTO `admin_operation_log` VALUES ('723', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 10:06:51', '2020-04-01 10:06:51'); INSERT INTO `admin_operation_log` VALUES ('724', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u5c71\\u6c34\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\"}', '2020-04-01 10:07:12', '2020-04-01 10:07:12'); INSERT INTO `admin_operation_log` VALUES ('725', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:07:17', '2020-04-01 10:07:17'); INSERT INTO `admin_operation_log` VALUES ('726', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:10:45', '2020-04-01 10:10:45'); INSERT INTO `admin_operation_log` VALUES ('727', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:11:06', '2020-04-01 10:11:06'); INSERT INTO `admin_operation_log` VALUES ('728', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"User\",\"category\":\"5\",\"description\":\"\\u554a\\u5b9e\\u6253\\u5b9e\",\"cover\":null,\"watch_num\":\"1\",\"good_num\":\"1\",\"collection_num\":\"1\",\"original_price\":\"180\",\"price\":\"1\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"sort\":\"99\",\"base\":{\"tags\":\"111\"}}', '2020-04-01 10:11:37', '2020-04-01 10:11:37'); INSERT INTO `admin_operation_log` VALUES ('729', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:12:39', '2020-04-01 10:12:39'); INSERT INTO `admin_operation_log` VALUES ('730', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:13:14', '2020-04-01 10:13:14'); INSERT INTO `admin_operation_log` VALUES ('731', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:13:47', '2020-04-01 10:13:47'); INSERT INTO `admin_operation_log` VALUES ('732', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:14:53', '2020-04-01 10:14:53'); INSERT INTO `admin_operation_log` VALUES ('733', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:16:11', '2020-04-01 10:16:11'); INSERT INTO `admin_operation_log` VALUES ('734', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:16:57', '2020-04-01 10:16:57'); INSERT INTO `admin_operation_log` VALUES ('735', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:18:05', '2020-04-01 10:18:05'); INSERT INTO `admin_operation_log` VALUES ('736', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:18:32', '2020-04-01 10:18:32'); INSERT INTO `admin_operation_log` VALUES ('737', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:20:37', '2020-04-01 10:20:37'); INSERT INTO `admin_operation_log` VALUES ('738', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":null,\"category\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"base\":{\"tags\":\"sixth\"}}', '2020-04-01 10:21:02', '2020-04-01 10:21:02'); INSERT INTO `admin_operation_log` VALUES ('739', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":null,\"category\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"base\":{\"tags\":\"sixth\"}}', '2020-04-01 10:22:40', '2020-04-01 10:22:40'); INSERT INTO `admin_operation_log` VALUES ('740', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:22:41', '2020-04-01 10:22:41'); INSERT INTO `admin_operation_log` VALUES ('741', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":null,\"category\":\"0\",\"description\":null,\"cover\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"base\":{\"tags\":null}}', '2020-04-01 10:23:19', '2020-04-01 10:23:19'); INSERT INTO `admin_operation_log` VALUES ('742', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"\\u5b9e\\u8df5\\u5b66\\u4e60\",\"category\":\"5\",\"description\":\"\\u963f\\u963f\\u65af\\u987f\",\"cover\":null,\"watch_num\":\"\\u7231\\u662f\",\"good_num\":\"\\u963f\\u65af\\u987f\",\"collection_num\":\"\\u963f\\u65af\\u987f\",\"original_price\":\"\\u963f\\u65af\\u987f\",\"price\":\"\\u963f\\u65af\\u987f\",\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"1\",\"base\":{\"tags\":\"\\u963f\\u65af\\u987f,\\u9a6c\\u864e\"}}', '2020-04-01 10:28:53', '2020-04-01 10:28:53'); INSERT INTO `admin_operation_log` VALUES ('743', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"title\":\"\\u5b9e\\u8df5\\u5b66\\u4e60\",\"category\":\"5\",\"description\":\"\\u963f\\u963f\\u65af\\u987f\",\"cover\":null,\"watch_num\":\"\\u7231\\u662f\",\"good_num\":\"\\u963f\\u65af\\u987f\",\"collection_num\":\"\\u963f\\u65af\\u987f\",\"original_price\":\"\\u963f\\u65af\\u987f\",\"price\":\"\\u963f\\u65af\\u987f\",\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"1\",\"base\":{\"tags\":\"\\u963f\\u65af\\u987f,\\u9a6c\\u864e\"}}', '2020-04-01 10:32:47', '2020-04-01 10:32:47'); INSERT INTO `admin_operation_log` VALUES ('744', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:32:59', '2020-04-01 10:32:59'); INSERT INTO `admin_operation_log` VALUES ('745', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"\\u6211\\u95ee\\u95ee\",\"cover\":null,\"file\":null,\"watch_num\":\"12\",\"good_num\":\"2\",\"collection_num\":\"3\",\"original_price\":\"4\",\"price\":\"5\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"111,222,333\"}', '2020-04-01 10:33:33', '2020-04-01 10:33:33'); INSERT INTO `admin_operation_log` VALUES ('746', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"\\u6211\\u95ee\\u95ee\",\"cover\":null,\"file\":null,\"watch_num\":\"12\",\"good_num\":\"2\",\"collection_num\":\"3\",\"original_price\":\"4\",\"price\":\"5\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"111,222,333\"}', '2020-04-01 10:34:09', '2020-04-01 10:34:09'); INSERT INTO `admin_operation_log` VALUES ('747', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"\\u6211\\u95ee\\u95ee\",\"cover\":null,\"file\":null,\"watch_num\":\"12\",\"good_num\":\"2\",\"collection_num\":\"3\",\"original_price\":\"4\",\"price\":\"5\",\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"111,222,333\"}', '2020-04-01 10:34:16', '2020-04-01 10:34:16'); INSERT INTO `admin_operation_log` VALUES ('748', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:34:23', '2020-04-01 10:34:23'); INSERT INTO `admin_operation_log` VALUES ('749', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 10:34:32', '2020-04-01 10:34:32'); INSERT INTO `admin_operation_log` VALUES ('750', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:34:48', '2020-04-01 10:34:48'); INSERT INTO `admin_operation_log` VALUES ('751', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:34:56', '2020-04-01 10:34:56'); INSERT INTO `admin_operation_log` VALUES ('752', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 10:34:58', '2020-04-01 10:34:58'); INSERT INTO `admin_operation_log` VALUES ('753', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"\\u963f\\u65af\\u987f\",\"cover\":null,\"file\":null,\"watch_num\":\"1\",\"good_num\":\"1\",\"collection_num\":\"1\",\"original_price\":\"180\",\"price\":\"1\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"111 ,222,333,555\"}', '2020-04-01 10:35:28', '2020-04-01 10:35:28'); INSERT INTO `admin_operation_log` VALUES ('754', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:38:22', '2020-04-01 10:38:22'); INSERT INTO `admin_operation_log` VALUES ('755', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:40:54', '2020-04-01 10:40:54'); INSERT INTO `admin_operation_log` VALUES ('756', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:53:16', '2020-04-01 10:53:16'); INSERT INTO `admin_operation_log` VALUES ('757', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:53:35', '2020-04-01 10:53:35'); INSERT INTO `admin_operation_log` VALUES ('758', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:54:34', '2020-04-01 10:54:34'); INSERT INTO `admin_operation_log` VALUES ('759', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:54:55', '2020-04-01 10:54:55'); INSERT INTO `admin_operation_log` VALUES ('760', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:55:33', '2020-04-01 10:55:33'); INSERT INTO `admin_operation_log` VALUES ('761', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:57:48', '2020-04-01 10:57:48'); INSERT INTO `admin_operation_log` VALUES ('762', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 10:58:18', '2020-04-01 10:58:18'); INSERT INTO `admin_operation_log` VALUES ('763', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 11:05:16', '2020-04-01 11:05:16'); INSERT INTO `admin_operation_log` VALUES ('764', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 11:06:47', '2020-04-01 11:06:47'); INSERT INTO `admin_operation_log` VALUES ('765', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 11:06:48', '2020-04-01 11:06:48'); INSERT INTO `admin_operation_log` VALUES ('766', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 11:07:57', '2020-04-01 11:07:57'); INSERT INTO `admin_operation_log` VALUES ('767', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 11:08:51', '2020-04-01 11:08:51'); INSERT INTO `admin_operation_log` VALUES ('768', '1', 'admin/course/course/edit', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 11:09:54', '2020-04-01 11:09:54'); INSERT INTO `admin_operation_log` VALUES ('769', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 11:17:54', '2020-04-01 11:17:54'); INSERT INTO `admin_operation_log` VALUES ('770', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:18:12', '2020-04-01 11:18:12'); INSERT INTO `admin_operation_log` VALUES ('771', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 11:18:31', '2020-04-01 11:18:31'); INSERT INTO `admin_operation_log` VALUES ('772', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 11:18:33', '2020-04-01 11:18:33'); INSERT INTO `admin_operation_log` VALUES ('773', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:18:37', '2020-04-01 11:18:37'); INSERT INTO `admin_operation_log` VALUES ('774', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:18:52', '2020-04-01 11:18:52'); INSERT INTO `admin_operation_log` VALUES ('775', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:19:07', '2020-04-01 11:19:07'); INSERT INTO `admin_operation_log` VALUES ('776', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"title\":null,\"sub_title\":null,\"author\":null,\"author_title\":null,\"author_avatar\":null,\"img\":null,\"goods\":\"0\",\"is_recommend\":\"0\",\"status\":\"0\"}', '2020-04-01 11:19:26', '2020-04-01 11:19:26'); INSERT INTO `admin_operation_log` VALUES ('777', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:21:13', '2020-04-01 11:21:13'); INSERT INTO `admin_operation_log` VALUES ('778', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:22:07', '2020-04-01 11:22:07'); INSERT INTO `admin_operation_log` VALUES ('779', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 11:22:24', '2020-04-01 11:22:24'); INSERT INTO `admin_operation_log` VALUES ('780', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:23:31', '2020-04-01 11:23:31'); INSERT INTO `admin_operation_log` VALUES ('781', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:25:34', '2020-04-01 11:25:34'); INSERT INTO `admin_operation_log` VALUES ('782', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:27:35', '2020-04-01 11:27:35'); INSERT INTO `admin_operation_log` VALUES ('783', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:31:34', '2020-04-01 11:31:34'); INSERT INTO `admin_operation_log` VALUES ('784', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"\\u7231\\u662f\"}', '2020-04-01 11:31:48', '2020-04-01 11:31:48'); INSERT INTO `admin_operation_log` VALUES ('785', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"\\u7231\\u662f\"}', '2020-04-01 11:31:49', '2020-04-01 11:31:49'); INSERT INTO `admin_operation_log` VALUES ('786', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:32:40', '2020-04-01 11:32:40'); INSERT INTO `admin_operation_log` VALUES ('787', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:33:51', '2020-04-01 11:33:51'); INSERT INTO `admin_operation_log` VALUES ('788', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:34:43', '2020-04-01 11:34:43'); INSERT INTO `admin_operation_log` VALUES ('789', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:35:08', '2020-04-01 11:35:08'); INSERT INTO `admin_operation_log` VALUES ('790', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:36:54', '2020-04-01 11:36:54'); INSERT INTO `admin_operation_log` VALUES ('791', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:37:58', '2020-04-01 11:37:58'); INSERT INTO `admin_operation_log` VALUES ('792', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:39:00', '2020-04-01 11:39:00'); INSERT INTO `admin_operation_log` VALUES ('793', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:44:55', '2020-04-01 11:44:55'); INSERT INTO `admin_operation_log` VALUES ('794', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac\",\"cover\":null,\"watch_num\":\"33\",\"good_num\":\"33\",\"collection_num\":\"33\",\"original_price\":\"333.00\",\"price\":\"233.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"\\u7231\\u662f\"}', '2020-04-01 11:45:22', '2020-04-01 11:45:22'); INSERT INTO `admin_operation_log` VALUES ('795', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac\",\"cover\":null,\"watch_num\":\"33\",\"good_num\":\"33\",\"collection_num\":\"33\",\"original_price\":\"333.00\",\"price\":\"233.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"\\u7231\\u662f\"}', '2020-04-01 11:45:23', '2020-04-01 11:45:23'); INSERT INTO `admin_operation_log` VALUES ('796', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac\",\"cover\":null,\"watch_num\":\"33\",\"good_num\":\"33\",\"collection_num\":\"33\",\"original_price\":\"333.00\",\"price\":\"233.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"\\u7231\\u662f\"}', '2020-04-01 11:46:41', '2020-04-01 11:46:41'); INSERT INTO `admin_operation_log` VALUES ('797', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:46:48', '2020-04-01 11:46:48'); INSERT INTO `admin_operation_log` VALUES ('798', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:47:29', '2020-04-01 11:47:29'); INSERT INTO `admin_operation_log` VALUES ('799', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:49:28', '2020-04-01 11:49:28'); INSERT INTO `admin_operation_log` VALUES ('800', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:51:09', '2020-04-01 11:51:09'); INSERT INTO `admin_operation_log` VALUES ('801', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-04-01 11:51:55', '2020-04-01 11:51:55'); INSERT INTO `admin_operation_log` VALUES ('802', '1', 'admin/store/getMonthData', 'GET', '192.168.10.1', '[]', '2020-04-01 11:52:06', '2020-04-01 11:52:06'); INSERT INTO `admin_operation_log` VALUES ('803', '1', 'admin/store/promotion/seckill', 'GET', '192.168.10.1', '[]', '2020-04-01 11:52:08', '2020-04-01 11:52:08'); INSERT INTO `admin_operation_log` VALUES ('804', '1', 'admin/store/promotion/seckill/create', 'GET', '192.168.10.1', '[]', '2020-04-01 11:52:20', '2020-04-01 11:52:20'); INSERT INTO `admin_operation_log` VALUES ('805', '1', 'admin/store/promotion/seckill/getSpu', 'GET', '192.168.10.1', '[]', '2020-04-01 11:52:45', '2020-04-01 11:52:45'); INSERT INTO `admin_operation_log` VALUES ('806', '1', 'admin/store/promotion/seckill/getSpuData', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"ids\":null,\"price\":\"sell_price\",\"price_begin\":null,\"price_end\":null,\"store_begin\":null,\"store_end\":null,\"field\":\"name\",\"value\":null,\"page\":\"1\"}', '2020-04-01 11:52:49', '2020-04-01 11:52:49'); INSERT INTO `admin_operation_log` VALUES ('807', '1', 'admin/store/promotion/seckill/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"base\":{\"title\":\"\\u7b2c\\u4e09\\u70b9\",\"starts_at\":\"2020-04-01 11:52\",\"ends_at\":\"2020-04-15 11:52\",\"status\":\"1\",\"auto_close\":\"33\",\"tags\":null},\"hour\":\"11\",\"minute\":\"52\"}', '2020-04-01 11:52:54', '2020-04-01 11:52:54'); INSERT INTO `admin_operation_log` VALUES ('808', '1', 'admin/store/promotion/seckill/create', 'GET', '192.168.10.1', '[]', '2020-04-01 11:56:02', '2020-04-01 11:56:02'); INSERT INTO `admin_operation_log` VALUES ('809', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:56:06', '2020-04-01 11:56:06'); INSERT INTO `admin_operation_log` VALUES ('810', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:56:48', '2020-04-01 11:56:48'); INSERT INTO `admin_operation_log` VALUES ('811', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:58:21', '2020-04-01 11:58:21'); INSERT INTO `admin_operation_log` VALUES ('812', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 11:59:32', '2020-04-01 11:59:32'); INSERT INTO `admin_operation_log` VALUES ('813', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe112\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac112\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/a71a130795ff13d4c16ab4bebc8b710f.jpg\",\"file\":null,\"watch_num\":\"33112\",\"good_num\":\"33112\",\"collection_num\":\"33112\",\"original_price\":\"333112.00\",\"price\":\"233112.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"123,12433,234,112\"}', '2020-04-01 12:01:04', '2020-04-01 12:01:04'); INSERT INTO `admin_operation_log` VALUES ('814', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 12:02:07', '2020-04-01 12:02:07'); INSERT INTO `admin_operation_log` VALUES ('815', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/a71a130795ff13d4c16ab4bebc8b710f.jpg\",\"file\":null,\"watch_num\":\"33\",\"good_num\":\"33\",\"collection_num\":\"33\",\"original_price\":\"333.00\",\"price\":\"233.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\"}', '2020-04-01 12:02:22', '2020-04-01 12:02:22'); INSERT INTO `admin_operation_log` VALUES ('816', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 12:03:48', '2020-04-01 12:03:48'); INSERT INTO `admin_operation_log` VALUES ('817', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 12:04:02', '2020-04-01 12:04:02'); INSERT INTO `admin_operation_log` VALUES ('818', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 12:04:09', '2020-04-01 12:04:09'); INSERT INTO `admin_operation_log` VALUES ('819', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 12:04:13', '2020-04-01 12:04:13'); INSERT INTO `admin_operation_log` VALUES ('820', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 12:04:13', '2020-04-01 12:04:13'); INSERT INTO `admin_operation_log` VALUES ('821', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 12:04:16', '2020-04-01 12:04:16'); INSERT INTO `admin_operation_log` VALUES ('822', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 12:04:17', '2020-04-01 12:04:17'); INSERT INTO `admin_operation_log` VALUES ('823', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 12:04:18', '2020-04-01 12:04:18'); INSERT INTO `admin_operation_log` VALUES ('824', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":null,\"category\":\"0\",\"teacher_id\":\"0\",\"description\":null,\"cover\":null,\"file\":null,\"watch_num\":null,\"good_num\":null,\"collection_num\":null,\"original_price\":null,\"price\":null,\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":null}', '2020-04-01 12:04:20', '2020-04-01 12:04:20'); INSERT INTO `admin_operation_log` VALUES ('825', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 12:04:28', '2020-04-01 12:04:28'); INSERT INTO `admin_operation_log` VALUES ('826', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\"}', '2020-04-01 12:04:39', '2020-04-01 12:04:39'); INSERT INTO `admin_operation_log` VALUES ('827', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 12:05:44', '2020-04-01 12:05:44'); INSERT INTO `admin_operation_log` VALUES ('828', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:06:08', '2020-04-01 12:06:08'); INSERT INTO `admin_operation_log` VALUES ('829', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 12:06:17', '2020-04-01 12:06:17'); INSERT INTO `admin_operation_log` VALUES ('830', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:06:19', '2020-04-01 12:06:19'); INSERT INTO `admin_operation_log` VALUES ('831', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-04-01 12:06:33', '2020-04-01 12:06:33'); INSERT INTO `admin_operation_log` VALUES ('832', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7d20\\u63cf\",\"parent_id\":\"7\",\"sort\":\"2\"}', '2020-04-01 12:06:59', '2020-04-01 12:06:59'); INSERT INTO `admin_operation_log` VALUES ('833', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:07:04', '2020-04-01 12:07:04'); INSERT INTO `admin_operation_log` VALUES ('834', '1', 'admin/course/category/edit/18', 'GET', '192.168.10.1', '[]', '2020-04-01 12:07:15', '2020-04-01 12:07:15'); INSERT INTO `admin_operation_log` VALUES ('835', '1', 'admin/course/category/update/18', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u4eba\\u50cf\\u753b\",\"parent_id\":\"7\",\"sort\":\"2\"}', '2020-04-01 12:08:03', '2020-04-01 12:08:03'); INSERT INTO `admin_operation_log` VALUES ('836', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:08:08', '2020-04-01 12:08:08'); INSERT INTO `admin_operation_log` VALUES ('837', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 12:08:15', '2020-04-01 12:08:15'); INSERT INTO `admin_operation_log` VALUES ('838', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:08:21', '2020-04-01 12:08:21'); INSERT INTO `admin_operation_log` VALUES ('839', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 12:08:23', '2020-04-01 12:08:23'); INSERT INTO `admin_operation_log` VALUES ('840', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"asdsad\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/41207898bac2564c7d2e3eb0940e505c.jpg\",\"file\":null,\"watch_num\":\"ss\",\"good_num\":\"sdf\",\"collection_num\":\"sdf\",\"original_price\":\"sadf\",\"price\":\"22\",\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"222,223,44\"}', '2020-04-01 12:08:57', '2020-04-01 12:08:57'); INSERT INTO `admin_operation_log` VALUES ('841', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"asdsad\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/41207898bac2564c7d2e3eb0940e505c.jpg\",\"file\":null,\"watch_num\":\"ss\",\"good_num\":\"sdf\",\"collection_num\":\"sdf\",\"original_price\":\"sadf\",\"price\":\"22\",\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"222,223,44\"}', '2020-04-01 12:09:58', '2020-04-01 12:09:58'); INSERT INTO `admin_operation_log` VALUES ('842', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"asdsad\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/41207898bac2564c7d2e3eb0940e505c.jpg\",\"file\":null,\"watch_num\":\"ss\",\"good_num\":\"sdf\",\"collection_num\":\"sdf\",\"original_price\":\"sadf\",\"price\":\"22\",\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"222,223,44\"}', '2020-04-01 12:11:02', '2020-04-01 12:11:02'); INSERT INTO `admin_operation_log` VALUES ('843', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"asdsad\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/41207898bac2564c7d2e3eb0940e505c.jpg\",\"file\":null,\"watch_num\":\"12\",\"good_num\":\"13\",\"collection_num\":\"14\",\"original_price\":\"155\",\"price\":\"122\",\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"222,223,44\"}', '2020-04-01 12:11:41', '2020-04-01 12:11:41'); INSERT INTO `admin_operation_log` VALUES ('844', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"category\":\"13\",\"teacher_id\":\"5\",\"description\":\"asdsad\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/41207898bac2564c7d2e3eb0940e505c.jpg\",\"file\":null,\"watch_num\":\"12\",\"good_num\":\"13\",\"collection_num\":\"14\",\"original_price\":\"155\",\"price\":\"122\",\"is_shelves\":\"1\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"222,223,44\"}', '2020-04-01 12:12:04', '2020-04-01 12:12:04'); INSERT INTO `admin_operation_log` VALUES ('845', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:12:12', '2020-04-01 12:12:12'); INSERT INTO `admin_operation_log` VALUES ('846', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:14:53', '2020-04-01 12:14:53'); INSERT INTO `admin_operation_log` VALUES ('847', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:15:18', '2020-04-01 12:15:18'); INSERT INTO `admin_operation_log` VALUES ('848', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:16:21', '2020-04-01 12:16:21'); INSERT INTO `admin_operation_log` VALUES ('849', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:16:38', '2020-04-01 12:16:38'); INSERT INTO `admin_operation_log` VALUES ('850', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:16:56', '2020-04-01 12:16:56'); INSERT INTO `admin_operation_log` VALUES ('851', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 12:17:12', '2020-04-01 12:17:12'); INSERT INTO `admin_operation_log` VALUES ('852', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/a71a130795ff13d4c16ab4bebc8b710f.jpg\",\"file\":null,\"watch_num\":\"33\",\"good_num\":\"33\",\"collection_num\":\"33\",\"original_price\":\"333.00\",\"price\":\"233.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"123,12433,234\"}', '2020-04-01 12:17:33', '2020-04-01 12:17:33'); INSERT INTO `admin_operation_log` VALUES ('853', '1', 'admin/store/article/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/a71a130795ff13d4c16ab4bebc8b710f.jpg\",\"file\":null,\"watch_num\":\"33\",\"good_num\":\"33\",\"collection_num\":\"33\",\"original_price\":\"333.00\",\"price\":\"233.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"123,12433,234\"}', '2020-04-01 12:18:21', '2020-04-01 12:18:21'); INSERT INTO `admin_operation_log` VALUES ('854', '1', 'admin/course/course/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 12:19:56', '2020-04-01 12:19:56'); INSERT INTO `admin_operation_log` VALUES ('855', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/a71a130795ff13d4c16ab4bebc8b710f.jpg\",\"file\":null,\"watch_num\":\"33\",\"good_num\":\"33\",\"collection_num\":\"33\",\"original_price\":\"333.00\",\"price\":\"233.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"123,12433,234\"}', '2020-04-01 12:20:11', '2020-04-01 12:20:11'); INSERT INTO `admin_operation_log` VALUES ('856', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"kvBEN2QUMHcDpySumpZXgeGP9GiQUx21lEEksI37\",\"id\":\"1\",\"name\":\"\\u963f\\u65af\\u8fbe\",\"category\":\"16\",\"teacher_id\":\"3\",\"description\":\"\\u963f\\u65af\\u8482\\u82ac\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/a71a130795ff13d4c16ab4bebc8b710f.jpg\",\"file\":null,\"watch_num\":\"33\",\"good_num\":\"33\",\"collection_num\":\"33\",\"original_price\":\"333.00\",\"price\":\"233.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"123,12433,234\"}', '2020-04-01 12:20:25', '2020-04-01 12:20:25'); INSERT INTO `admin_operation_log` VALUES ('857', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:20:33', '2020-04-01 12:20:33'); INSERT INTO `admin_operation_log` VALUES ('858', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:39:20', '2020-04-01 12:39:20'); INSERT INTO `admin_operation_log` VALUES ('859', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:44:38', '2020-04-01 12:44:38'); INSERT INTO `admin_operation_log` VALUES ('860', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:46:05', '2020-04-01 12:46:05'); INSERT INTO `admin_operation_log` VALUES ('861', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:46:36', '2020-04-01 12:46:36'); INSERT INTO `admin_operation_log` VALUES ('862', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 12:46:59', '2020-04-01 12:46:59'); INSERT INTO `admin_operation_log` VALUES ('863', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 12:51:02', '2020-04-01 12:51:02'); INSERT INTO `admin_operation_log` VALUES ('864', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 12:51:59', '2020-04-01 12:51:59'); INSERT INTO `admin_operation_log` VALUES ('865', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 12:52:34', '2020-04-01 12:52:34'); INSERT INTO `admin_operation_log` VALUES ('866', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 12:55:27', '2020-04-01 12:55:27'); INSERT INTO `admin_operation_log` VALUES ('867', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 12:56:34', '2020-04-01 12:56:34'); INSERT INTO `admin_operation_log` VALUES ('868', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 12:57:27', '2020-04-01 12:57:27'); INSERT INTO `admin_operation_log` VALUES ('869', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 12:58:49', '2020-04-01 12:58:49'); INSERT INTO `admin_operation_log` VALUES ('870', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 12:59:39', '2020-04-01 12:59:39'); INSERT INTO `admin_operation_log` VALUES ('871', '1', 'admin/course/coursevideo/create', 'GET', '192.168.10.1', '[]', '2020-04-01 12:59:51', '2020-04-01 12:59:51'); INSERT INTO `admin_operation_log` VALUES ('872', '1', 'admin/course/coursevideo/create', 'GET', '192.168.10.1', '[]', '2020-04-01 13:00:33', '2020-04-01 13:00:33'); INSERT INTO `admin_operation_log` VALUES ('873', '1', 'admin/course/coursevideo/create', 'GET', '192.168.10.1', '[]', '2020-04-01 13:02:52', '2020-04-01 13:02:52'); INSERT INTO `admin_operation_log` VALUES ('874', '1', 'admin/course/coursevideo/create', 'GET', '192.168.10.1', '[]', '2020-04-01 13:03:20', '2020-04-01 13:03:20'); INSERT INTO `admin_operation_log` VALUES ('875', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 13:07:58', '2020-04-01 13:07:58'); INSERT INTO `admin_operation_log` VALUES ('876', '1', 'admin/course/coursevideo/index', 'GET', '192.168.10.1', '{\"id\":\"2\"}', '2020-04-01 13:08:20', '2020-04-01 13:08:20'); INSERT INTO `admin_operation_log` VALUES ('877', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:08:52', '2020-04-01 13:08:52'); INSERT INTO `admin_operation_log` VALUES ('878', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:15:40', '2020-04-01 13:15:40'); INSERT INTO `admin_operation_log` VALUES ('879', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:15:41', '2020-04-01 13:15:41'); INSERT INTO `admin_operation_log` VALUES ('880', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:15:42', '2020-04-01 13:15:42'); INSERT INTO `admin_operation_log` VALUES ('881', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:15:43', '2020-04-01 13:15:43'); INSERT INTO `admin_operation_log` VALUES ('882', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:15:44', '2020-04-01 13:15:44'); INSERT INTO `admin_operation_log` VALUES ('883', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:16:08', '2020-04-01 13:16:08'); INSERT INTO `admin_operation_log` VALUES ('884', '1', 'admin/course/coursevideos/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 13:16:29', '2020-04-01 13:16:29'); INSERT INTO `admin_operation_log` VALUES ('885', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:17:09', '2020-04-01 13:17:09'); INSERT INTO `admin_operation_log` VALUES ('886', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:17:11', '2020-04-01 13:17:11'); INSERT INTO `admin_operation_log` VALUES ('887', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:17:12', '2020-04-01 13:17:12'); INSERT INTO `admin_operation_log` VALUES ('888', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:17:13', '2020-04-01 13:17:13'); INSERT INTO `admin_operation_log` VALUES ('889', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 13:17:14', '2020-04-01 13:17:14'); INSERT INTO `admin_operation_log` VALUES ('890', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:17:39', '2020-04-01 13:17:39'); INSERT INTO `admin_operation_log` VALUES ('891', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:17:54', '2020-04-01 13:17:54'); INSERT INTO `admin_operation_log` VALUES ('892', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:18:12', '2020-04-01 13:18:12'); INSERT INTO `admin_operation_log` VALUES ('893', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:20:31', '2020-04-01 13:20:31'); INSERT INTO `admin_operation_log` VALUES ('894', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:02', '2020-04-01 13:21:02'); INSERT INTO `admin_operation_log` VALUES ('895', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:02', '2020-04-01 13:21:02'); INSERT INTO `admin_operation_log` VALUES ('896', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:05', '2020-04-01 13:21:05'); INSERT INTO `admin_operation_log` VALUES ('897', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:05', '2020-04-01 13:21:05'); INSERT INTO `admin_operation_log` VALUES ('898', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:07', '2020-04-01 13:21:07'); INSERT INTO `admin_operation_log` VALUES ('899', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:13', '2020-04-01 13:21:13'); INSERT INTO `admin_operation_log` VALUES ('900', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:15', '2020-04-01 13:21:15'); INSERT INTO `admin_operation_log` VALUES ('901', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:16', '2020-04-01 13:21:16'); INSERT INTO `admin_operation_log` VALUES ('902', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:18', '2020-04-01 13:21:18'); INSERT INTO `admin_operation_log` VALUES ('903', '1', 'admin/course/coursevideo/index/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:19', '2020-04-01 13:21:19'); INSERT INTO `admin_operation_log` VALUES ('904', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:23', '2020-04-01 13:21:23'); INSERT INTO `admin_operation_log` VALUES ('905', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:21:58', '2020-04-01 13:21:58'); INSERT INTO `admin_operation_log` VALUES ('906', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:22:56', '2020-04-01 13:22:56'); INSERT INTO `admin_operation_log` VALUES ('907', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:24:10', '2020-04-01 13:24:10'); INSERT INTO `admin_operation_log` VALUES ('908', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:24:44', '2020-04-01 13:24:44'); INSERT INTO `admin_operation_log` VALUES ('909', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:25:17', '2020-04-01 13:25:17'); INSERT INTO `admin_operation_log` VALUES ('910', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:25:30', '2020-04-01 13:25:30'); INSERT INTO `admin_operation_log` VALUES ('911', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:26:28', '2020-04-01 13:26:28'); INSERT INTO `admin_operation_log` VALUES ('912', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:27:13', '2020-04-01 13:27:13'); INSERT INTO `admin_operation_log` VALUES ('913', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:27:54', '2020-04-01 13:27:54'); INSERT INTO `admin_operation_log` VALUES ('914', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:32:33', '2020-04-01 13:32:33'); INSERT INTO `admin_operation_log` VALUES ('915', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:33:04', '2020-04-01 13:33:04'); INSERT INTO `admin_operation_log` VALUES ('916', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:33:41', '2020-04-01 13:33:41'); INSERT INTO `admin_operation_log` VALUES ('917', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:33:50', '2020-04-01 13:33:50'); INSERT INTO `admin_operation_log` VALUES ('918', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:34:13', '2020-04-01 13:34:13'); INSERT INTO `admin_operation_log` VALUES ('919', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:34:40', '2020-04-01 13:34:40'); INSERT INTO `admin_operation_log` VALUES ('920', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:35:07', '2020-04-01 13:35:07'); INSERT INTO `admin_operation_log` VALUES ('921', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:38:09', '2020-04-01 13:38:09'); INSERT INTO `admin_operation_log` VALUES ('922', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:38:37', '2020-04-01 13:38:37'); INSERT INTO `admin_operation_log` VALUES ('923', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:38:58', '2020-04-01 13:38:58'); INSERT INTO `admin_operation_log` VALUES ('924', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:39:31', '2020-04-01 13:39:31'); INSERT INTO `admin_operation_log` VALUES ('925', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:43:09', '2020-04-01 13:43:09'); INSERT INTO `admin_operation_log` VALUES ('926', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:43:50', '2020-04-01 13:43:50'); INSERT INTO `admin_operation_log` VALUES ('927', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:44:14', '2020-04-01 13:44:14'); INSERT INTO `admin_operation_log` VALUES ('928', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:44:22', '2020-04-01 13:44:22'); INSERT INTO `admin_operation_log` VALUES ('929', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:44:59', '2020-04-01 13:44:59'); INSERT INTO `admin_operation_log` VALUES ('930', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:46:39', '2020-04-01 13:46:39'); INSERT INTO `admin_operation_log` VALUES ('931', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:49:41', '2020-04-01 13:49:41'); INSERT INTO `admin_operation_log` VALUES ('932', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:51:16', '2020-04-01 13:51:16'); INSERT INTO `admin_operation_log` VALUES ('933', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:52:10', '2020-04-01 13:52:10'); INSERT INTO `admin_operation_log` VALUES ('934', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:53:56', '2020-04-01 13:53:56'); INSERT INTO `admin_operation_log` VALUES ('935', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:54:13', '2020-04-01 13:54:13'); INSERT INTO `admin_operation_log` VALUES ('936', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:56:39', '2020-04-01 13:56:39'); INSERT INTO `admin_operation_log` VALUES ('937', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:57:11', '2020-04-01 13:57:11'); INSERT INTO `admin_operation_log` VALUES ('938', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:57:13', '2020-04-01 13:57:13'); INSERT INTO `admin_operation_log` VALUES ('939', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:57:43', '2020-04-01 13:57:43'); INSERT INTO `admin_operation_log` VALUES ('940', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:58:25', '2020-04-01 13:58:25'); INSERT INTO `admin_operation_log` VALUES ('941', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:59:23', '2020-04-01 13:59:23'); INSERT INTO `admin_operation_log` VALUES ('942', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 13:59:59', '2020-04-01 13:59:59'); INSERT INTO `admin_operation_log` VALUES ('943', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 14:00:29', '2020-04-01 14:00:29'); INSERT INTO `admin_operation_log` VALUES ('944', '1', 'admin/course/coursevideo/create/1', 'GET', '192.168.10.1', '[]', '2020-04-01 14:01:11', '2020-04-01 14:01:11'); INSERT INTO `admin_operation_log` VALUES ('945', '1', 'admin/course/category/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e00\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/9c4ea75aefea1a14a2bc0e35a0d83263.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"2\"}', '2020-04-01 14:03:00', '2020-04-01 14:03:00'); INSERT INTO `admin_operation_log` VALUES ('946', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:03:06', '2020-04-01 14:03:06'); INSERT INTO `admin_operation_log` VALUES ('947', '1', 'admin/course/category/check', 'GET', '192.168.10.1', '{\"id\":\"20\",\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\"}', '2020-04-01 14:05:18', '2020-04-01 14:05:18'); INSERT INTO `admin_operation_log` VALUES ('948', '1', 'admin/course/category/delete', 'POST', '192.168.10.1', '{\"id\":\"20\",\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\"}', '2020-04-01 14:05:23', '2020-04-01 14:05:23'); INSERT INTO `admin_operation_log` VALUES ('949', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:05:25', '2020-04-01 14:05:25'); INSERT INTO `admin_operation_log` VALUES ('950', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:05:27', '2020-04-01 14:05:27'); INSERT INTO `admin_operation_log` VALUES ('951', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:05:33', '2020-04-01 14:05:33'); INSERT INTO `admin_operation_log` VALUES ('952', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:05:42', '2020-04-01 14:05:42'); INSERT INTO `admin_operation_log` VALUES ('953', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:06:10', '2020-04-01 14:06:10'); INSERT INTO `admin_operation_log` VALUES ('954', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:06:47', '2020-04-01 14:06:47'); INSERT INTO `admin_operation_log` VALUES ('955', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:07:21', '2020-04-01 14:07:21'); INSERT INTO `admin_operation_log` VALUES ('956', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:08:41', '2020-04-01 14:08:41'); INSERT INTO `admin_operation_log` VALUES ('957', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:08:52', '2020-04-01 14:08:52'); INSERT INTO `admin_operation_log` VALUES ('958', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:09:05', '2020-04-01 14:09:05'); INSERT INTO `admin_operation_log` VALUES ('959', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e00\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"99\"}', '2020-04-01 14:09:58', '2020-04-01 14:09:58'); INSERT INTO `admin_operation_log` VALUES ('960', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e00\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"99\"}', '2020-04-01 14:10:12', '2020-04-01 14:10:12'); INSERT INTO `admin_operation_log` VALUES ('961', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e00\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"99\"}', '2020-04-01 14:11:09', '2020-04-01 14:11:09'); INSERT INTO `admin_operation_log` VALUES ('962', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e00\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"99\"}', '2020-04-01 14:12:14', '2020-04-01 14:12:14'); INSERT INTO `admin_operation_log` VALUES ('963', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e00\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"99\"}', '2020-04-01 14:14:24', '2020-04-01 14:14:24'); INSERT INTO `admin_operation_log` VALUES ('964', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:14:31', '2020-04-01 14:14:31'); INSERT INTO `admin_operation_log` VALUES ('965', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:14:40', '2020-04-01 14:14:40'); INSERT INTO `admin_operation_log` VALUES ('966', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:16:17', '2020-04-01 14:16:17'); INSERT INTO `admin_operation_log` VALUES ('967', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:16:24', '2020-04-01 14:16:24'); INSERT INTO `admin_operation_log` VALUES ('968', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:17:09', '2020-04-01 14:17:09'); INSERT INTO `admin_operation_log` VALUES ('969', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:19:24', '2020-04-01 14:19:24'); INSERT INTO `admin_operation_log` VALUES ('970', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:20:00', '2020-04-01 14:20:00'); INSERT INTO `admin_operation_log` VALUES ('971', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:21:10', '2020-04-01 14:21:10'); INSERT INTO `admin_operation_log` VALUES ('972', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:22:16', '2020-04-01 14:22:16'); INSERT INTO `admin_operation_log` VALUES ('973', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:27:40', '2020-04-01 14:27:40'); INSERT INTO `admin_operation_log` VALUES ('974', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:27:54', '2020-04-01 14:27:54'); INSERT INTO `admin_operation_log` VALUES ('975', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:28:35', '2020-04-01 14:28:35'); INSERT INTO `admin_operation_log` VALUES ('976', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:28:56', '2020-04-01 14:28:56'); INSERT INTO `admin_operation_log` VALUES ('977', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:29:20', '2020-04-01 14:29:20'); INSERT INTO `admin_operation_log` VALUES ('978', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:30:41', '2020-04-01 14:30:41'); INSERT INTO `admin_operation_log` VALUES ('979', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:31:23', '2020-04-01 14:31:23'); INSERT INTO `admin_operation_log` VALUES ('980', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:31:24', '2020-04-01 14:31:24'); INSERT INTO `admin_operation_log` VALUES ('981', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:31:34', '2020-04-01 14:31:34'); INSERT INTO `admin_operation_log` VALUES ('982', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:32:46', '2020-04-01 14:32:46'); INSERT INTO `admin_operation_log` VALUES ('983', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:33:51', '2020-04-01 14:33:51'); INSERT INTO `admin_operation_log` VALUES ('984', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:34:56', '2020-04-01 14:34:56'); INSERT INTO `admin_operation_log` VALUES ('985', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:35:23', '2020-04-01 14:35:23'); INSERT INTO `admin_operation_log` VALUES ('986', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:35:34', '2020-04-01 14:35:34'); INSERT INTO `admin_operation_log` VALUES ('987', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:36:12', '2020-04-01 14:36:12'); INSERT INTO `admin_operation_log` VALUES ('988', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e8c\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u53d1\\u5c55\",\"parent_id\":\"0\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/7934d1b8536027d22ef1162f9099d9c4.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u4ecb\\u7ecdPHP\\u7684\\u53d1\\u5c55\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"3\"}', '2020-04-01 14:37:35', '2020-04-01 14:37:35'); INSERT INTO `admin_operation_log` VALUES ('989', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:37:48', '2020-04-01 14:37:48'); INSERT INTO `admin_operation_log` VALUES ('990', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 14:37:53', '2020-04-01 14:37:53'); INSERT INTO `admin_operation_log` VALUES ('991', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 14:40:52', '2020-04-01 14:40:52'); INSERT INTO `admin_operation_log` VALUES ('992', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:40:59', '2020-04-01 14:40:59'); INSERT INTO `admin_operation_log` VALUES ('993', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:42:28', '2020-04-01 14:42:28'); INSERT INTO `admin_operation_log` VALUES ('994', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:42:36', '2020-04-01 14:42:36'); INSERT INTO `admin_operation_log` VALUES ('995', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e8c\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u5f00\\u62d3\",\"parent_id\":\"0\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/2fd5ebb8e01d81adad9d624d665ab3cc.jpg\",\"file\":null,\"description\":null,\"sort\":\"8\"}', '2020-04-01 14:43:10', '2020-04-01 14:43:10'); INSERT INTO `admin_operation_log` VALUES ('996', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 14:43:18', '2020-04-01 14:43:18'); INSERT INTO `admin_operation_log` VALUES ('997', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:43:25', '2020-04-01 14:43:25'); INSERT INTO `admin_operation_log` VALUES ('998', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"4\",\"sort\":\"111\",\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\"}', '2020-04-01 14:43:43', '2020-04-01 14:43:43'); INSERT INTO `admin_operation_log` VALUES ('999', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:43:50', '2020-04-01 14:43:50'); INSERT INTO `admin_operation_log` VALUES ('1000', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:44:58', '2020-04-01 14:44:58'); INSERT INTO `admin_operation_log` VALUES ('1001', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u56db\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u521b\\u65b0\",\"parent_id\":\"0\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/7ec749977b57c5422b3ea26f60705afd.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u8bb2\",\"sort\":\"111\"}', '2020-04-01 14:45:47', '2020-04-01 14:45:47'); INSERT INTO `admin_operation_log` VALUES ('1002', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u56db\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u521b\\u65b0\",\"parent_id\":\"0\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/7ec749977b57c5422b3ea26f60705afd.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u8bb2\",\"sort\":\"111\"}', '2020-04-01 14:50:22', '2020-04-01 14:50:22'); INSERT INTO `admin_operation_log` VALUES ('1003', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:52:03', '2020-04-01 14:52:03'); INSERT INTO `admin_operation_log` VALUES ('1004', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:52:17', '2020-04-01 14:52:17'); INSERT INTO `admin_operation_log` VALUES ('1005', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:52:33', '2020-04-01 14:52:33'); INSERT INTO `admin_operation_log` VALUES ('1006', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:55:02', '2020-04-01 14:55:02'); INSERT INTO `admin_operation_log` VALUES ('1007', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-04-01 14:55:35', '2020-04-01 14:55:35'); INSERT INTO `admin_operation_log` VALUES ('1008', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:55:59', '2020-04-01 14:55:59'); INSERT INTO `admin_operation_log` VALUES ('1009', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:56:32', '2020-04-01 14:56:32'); INSERT INTO `admin_operation_log` VALUES ('1010', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 14:56:38', '2020-04-01 14:56:38'); INSERT INTO `admin_operation_log` VALUES ('1011', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 14:56:43', '2020-04-01 14:56:43'); INSERT INTO `admin_operation_log` VALUES ('1012', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7b2c\\u4e94\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/0b3874069b744ceb9049cb4aff8dda90.jpg\",\"file\":null,\"description\":\"\\u54c7\\u54c7\\u54c7\\u54c7\",\"sort\":\"8\"}', '2020-04-01 14:57:11', '2020-04-01 14:57:11'); INSERT INTO `admin_operation_log` VALUES ('1013', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:06:06', '2020-04-01 15:06:06'); INSERT INTO `admin_operation_log` VALUES ('1014', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":null,\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":null,\"file\":null,\"description\":\"\\u6492\\u65e6\",\"sort\":\"0\"}', '2020-04-01 15:06:38', '2020-04-01 15:06:38'); INSERT INTO `admin_operation_log` VALUES ('1015', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":null,\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/1ebf0f99266a29135b036b462eb0dc34.jpg\",\"file\":null,\"description\":\"\\u6492\\u65e6\",\"sort\":\"123\"}', '2020-04-01 15:06:58', '2020-04-01 15:06:58'); INSERT INTO `admin_operation_log` VALUES ('1016', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"parent_id\":\"0\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/1ebf0f99266a29135b036b462eb0dc34.jpg\",\"file\":null,\"description\":\"\\u6492\\u65e6\",\"sort\":\"123\"}', '2020-04-01 15:07:58', '2020-04-01 15:07:58'); INSERT INTO `admin_operation_log` VALUES ('1017', '1', 'admin/course/coursevideo/index/result.data.course_id', 'GET', '192.168.10.1', '[]', '2020-04-01 15:09:14', '2020-04-01 15:09:14'); INSERT INTO `admin_operation_log` VALUES ('1018', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"parent_id\":\"0\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/1ebf0f99266a29135b036b462eb0dc34.jpg\",\"file\":null,\"description\":\"\\u6492\\u65e6\",\"sort\":\"123\"}', '2020-04-01 15:09:25', '2020-04-01 15:09:25'); INSERT INTO `admin_operation_log` VALUES ('1019', '1', 'admin/course/coursevideo/index/result.data.course_id', 'GET', '192.168.10.1', '[]', '2020-04-01 15:10:37', '2020-04-01 15:10:37'); INSERT INTO `admin_operation_log` VALUES ('1020', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:10:40', '2020-04-01 15:10:40'); INSERT INTO `admin_operation_log` VALUES ('1021', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:10:49', '2020-04-01 15:10:49'); INSERT INTO `admin_operation_log` VALUES ('1022', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:10:54', '2020-04-01 15:10:54'); INSERT INTO `admin_operation_log` VALUES ('1023', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:11:50', '2020-04-01 15:11:50'); INSERT INTO `admin_operation_log` VALUES ('1024', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:11:57', '2020-04-01 15:11:57'); INSERT INTO `admin_operation_log` VALUES ('1025', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:12:02', '2020-04-01 15:12:02'); INSERT INTO `admin_operation_log` VALUES ('1026', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:12:05', '2020-04-01 15:12:05'); INSERT INTO `admin_operation_log` VALUES ('1027', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:12:47', '2020-04-01 15:12:47'); INSERT INTO `admin_operation_log` VALUES ('1028', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":null,\"file\":null,\"description\":\"s\'z\'d\'f\",\"sort\":\"3\"}', '2020-04-01 15:13:11', '2020-04-01 15:13:11'); INSERT INTO `admin_operation_log` VALUES ('1029', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":null,\"file\":null,\"description\":\"s\'z\'d\'f\",\"sort\":\"3\"}', '2020-04-01 15:13:51', '2020-04-01 15:13:51'); INSERT INTO `admin_operation_log` VALUES ('1030', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:14:00', '2020-04-01 15:14:00'); INSERT INTO `admin_operation_log` VALUES ('1031', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:15:54', '2020-04-01 15:15:54'); INSERT INTO `admin_operation_log` VALUES ('1032', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:15:58', '2020-04-01 15:15:58'); INSERT INTO `admin_operation_log` VALUES ('1033', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"Eb1YBADsLFGwXbwb0RA459DmhWqfFDtiPOS1cVwK\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":null,\"file\":null,\"description\":\"\\u554a\\u5b9e\\u6253\\u5b9e\\u7684\",\"sort\":\"8\"}', '2020-04-01 15:16:18', '2020-04-01 15:16:18'); INSERT INTO `admin_operation_log` VALUES ('1034', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:16:24', '2020-04-01 15:16:24'); INSERT INTO `admin_operation_log` VALUES ('1035', '1', 'admin/course/coursevideo/edit/5', 'GET', '192.168.10.1', '[]', '2020-04-01 15:16:53', '2020-04-01 15:16:53'); INSERT INTO `admin_operation_log` VALUES ('1036', '1', 'admin/course/coursevideo/edit/5', 'GET', '192.168.10.1', '[]', '2020-04-01 15:21:36', '2020-04-01 15:21:36'); INSERT INTO `admin_operation_log` VALUES ('1037', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:23:09', '2020-04-01 15:23:09'); INSERT INTO `admin_operation_log` VALUES ('1038', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '[]', '2020-04-01 15:23:21', '2020-04-01 15:23:21'); INSERT INTO `admin_operation_log` VALUES ('1039', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:24:35', '2020-04-01 15:24:35'); INSERT INTO `admin_operation_log` VALUES ('1040', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '[]', '2020-04-01 15:24:46', '2020-04-01 15:24:46'); INSERT INTO `admin_operation_log` VALUES ('1041', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:25:10', '2020-04-01 15:25:10'); INSERT INTO `admin_operation_log` VALUES ('1042', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '[]', '2020-04-01 15:25:15', '2020-04-01 15:25:15'); INSERT INTO `admin_operation_log` VALUES ('1043', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '[]', '2020-04-01 15:25:54', '2020-04-01 15:25:54'); INSERT INTO `admin_operation_log` VALUES ('1044', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '[]', '2020-04-01 15:26:40', '2020-04-01 15:26:40'); INSERT INTO `admin_operation_log` VALUES ('1045', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '[]', '2020-04-01 15:27:10', '2020-04-01 15:27:10'); INSERT INTO `admin_operation_log` VALUES ('1046', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '[]', '2020-04-01 15:27:26', '2020-04-01 15:27:26'); INSERT INTO `admin_operation_log` VALUES ('1047', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '[]', '2020-04-01 15:30:22', '2020-04-01 15:30:22'); INSERT INTO `admin_operation_log` VALUES ('1048', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '[]', '2020-04-01 15:30:52', '2020-04-01 15:30:52'); INSERT INTO `admin_operation_log` VALUES ('1049', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:31:04', '2020-04-01 15:31:04'); INSERT INTO `admin_operation_log` VALUES ('1050', '1', 'admin/auth/login', 'GET', '192.168.10.1', '[]', '2020-04-01 15:31:05', '2020-04-01 15:31:05'); INSERT INTO `admin_operation_log` VALUES ('1051', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:31:08', '2020-04-01 15:31:08'); INSERT INTO `admin_operation_log` VALUES ('1052', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 15:31:09', '2020-04-01 15:31:09'); INSERT INTO `admin_operation_log` VALUES ('1053', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 15:31:12', '2020-04-01 15:31:12'); INSERT INTO `admin_operation_log` VALUES ('1054', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:31:17', '2020-04-01 15:31:17'); INSERT INTO `admin_operation_log` VALUES ('1055', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:31:20', '2020-04-01 15:31:20'); INSERT INTO `admin_operation_log` VALUES ('1056', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\",\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:31:31', '2020-04-01 15:31:31'); INSERT INTO `admin_operation_log` VALUES ('1057', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:31:35', '2020-04-01 15:31:35'); INSERT INTO `admin_operation_log` VALUES ('1058', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:32:26', '2020-04-01 15:32:26'); INSERT INTO `admin_operation_log` VALUES ('1059', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:32:38', '2020-04-01 15:32:38'); INSERT INTO `admin_operation_log` VALUES ('1060', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:34:46', '2020-04-01 15:34:46'); INSERT INTO `admin_operation_log` VALUES ('1061', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:34:57', '2020-04-01 15:34:57'); INSERT INTO `admin_operation_log` VALUES ('1062', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:34:59', '2020-04-01 15:34:59'); INSERT INTO `admin_operation_log` VALUES ('1063', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:36:12', '2020-04-01 15:36:12'); INSERT INTO `admin_operation_log` VALUES ('1064', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:36:27', '2020-04-01 15:36:27'); INSERT INTO `admin_operation_log` VALUES ('1065', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:36:50', '2020-04-01 15:36:50'); INSERT INTO `admin_operation_log` VALUES ('1066', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 15:37:19', '2020-04-01 15:37:19'); INSERT INTO `admin_operation_log` VALUES ('1067', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:37:25', '2020-04-01 15:37:25'); INSERT INTO `admin_operation_log` VALUES ('1068', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 15:37:31', '2020-04-01 15:37:31'); INSERT INTO `admin_operation_log` VALUES ('1069', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:37:31', '2020-04-01 15:37:31'); INSERT INTO `admin_operation_log` VALUES ('1070', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:37:58', '2020-04-01 15:37:58'); INSERT INTO `admin_operation_log` VALUES ('1071', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:38:07', '2020-04-01 15:38:07'); INSERT INTO `admin_operation_log` VALUES ('1072', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:38:56', '2020-04-01 15:38:56'); INSERT INTO `admin_operation_log` VALUES ('1073', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:39:15', '2020-04-01 15:39:15'); INSERT INTO `admin_operation_log` VALUES ('1074', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:39:59', '2020-04-01 15:39:59'); INSERT INTO `admin_operation_log` VALUES ('1075', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:41:02', '2020-04-01 15:41:02'); INSERT INTO `admin_operation_log` VALUES ('1076', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:41:28', '2020-04-01 15:41:28'); INSERT INTO `admin_operation_log` VALUES ('1077', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:42:50', '2020-04-01 15:42:50'); INSERT INTO `admin_operation_log` VALUES ('1078', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:44:11', '2020-04-01 15:44:11'); INSERT INTO `admin_operation_log` VALUES ('1079', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:46:22', '2020-04-01 15:46:22'); INSERT INTO `admin_operation_log` VALUES ('1080', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/b10ca8f1d39a79975a5900e64058fba0.jpg\",\"file\":null,\"description\":\"\\u672c\\u8282\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"88\",\"10\":null}', '2020-04-01 15:46:53', '2020-04-01 15:46:53'); INSERT INTO `admin_operation_log` VALUES ('1081', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/b10ca8f1d39a79975a5900e64058fba0.jpg\",\"file\":null,\"description\":\"\\u672c\\u8282\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"88\",\"10\":null}', '2020-04-01 15:48:03', '2020-04-01 15:48:03'); INSERT INTO `admin_operation_log` VALUES ('1082', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/b10ca8f1d39a79975a5900e64058fba0.jpg\",\"file\":null,\"description\":\"\\u672c\\u8282\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"88\",\"10\":null}', '2020-04-01 15:50:56', '2020-04-01 15:50:56'); INSERT INTO `admin_operation_log` VALUES ('1083', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"5\",\"course_id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/b10ca8f1d39a79975a5900e64058fba0.jpg\",\"file\":null,\"description\":\"\\u672c\\u8282\\u4e3b\\u8981\\u4ecb\\u7ecd\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"88\",\"10\":null}', '2020-04-01 15:52:24', '2020-04-01 15:52:24'); INSERT INTO `admin_operation_log` VALUES ('1084', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:52:38', '2020-04-01 15:52:38'); INSERT INTO `admin_operation_log` VALUES ('1085', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:52:39', '2020-04-01 15:52:39'); INSERT INTO `admin_operation_log` VALUES ('1086', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\",\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:52:47', '2020-04-01 15:52:47'); INSERT INTO `admin_operation_log` VALUES ('1087', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"5\",\"course_id\":\"2\",\"id\":\"10\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/29d63a0ed83ee3fc99dbdfbba0396ffe.jpg\",\"file\":null,\"description\":\"\\u963f\\u677e\\u5927\",\"sort\":\"77\",\"10\":null}', '2020-04-01 15:53:04', '2020-04-01 15:53:04'); INSERT INTO `admin_operation_log` VALUES ('1088', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:53:11', '2020-04-01 15:53:11'); INSERT INTO `admin_operation_log` VALUES ('1089', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:53:42', '2020-04-01 15:53:42'); INSERT INTO `admin_operation_log` VALUES ('1090', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:54:32', '2020-04-01 15:54:32'); INSERT INTO `admin_operation_log` VALUES ('1091', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"3\",\"sort\":\"3\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:54:39', '2020-04-01 15:54:39'); INSERT INTO `admin_operation_log` VALUES ('1092', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:55:27', '2020-04-01 15:55:27'); INSERT INTO `admin_operation_log` VALUES ('1093', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"3\",\"sort\":\"3\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:55:38', '2020-04-01 15:55:38'); INSERT INTO `admin_operation_log` VALUES ('1094', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"4\",\"sort\":\"8\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:55:40', '2020-04-01 15:55:40'); INSERT INTO `admin_operation_log` VALUES ('1095', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"7\",\"sort\":\"8\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:55:41', '2020-04-01 15:55:41'); INSERT INTO `admin_operation_log` VALUES ('1096', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"1\",\"sort\":\"99\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:55:42', '2020-04-01 15:55:42'); INSERT INTO `admin_operation_log` VALUES ('1097', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"2\",\"sort\":\"99\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:55:46', '2020-04-01 15:55:46'); INSERT INTO `admin_operation_log` VALUES ('1098', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:55:46', '2020-04-01 15:55:46'); INSERT INTO `admin_operation_log` VALUES ('1099', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"2\",\"sort\":\"99\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:55:49', '2020-04-01 15:55:49'); INSERT INTO `admin_operation_log` VALUES ('1100', '1', 'admin/course/category/check', 'GET', '192.168.10.1', '{\"id\":\"10\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:55:59', '2020-04-01 15:55:59'); INSERT INTO `admin_operation_log` VALUES ('1101', '1', 'admin/course/coursevideo/delete', 'POST', '192.168.10.1', '{\"id\":\"10\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:56:01', '2020-04-01 15:56:01'); INSERT INTO `admin_operation_log` VALUES ('1102', '1', 'admin/course/category/check', 'GET', '192.168.10.1', '{\"id\":\"10\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:56:08', '2020-04-01 15:56:08'); INSERT INTO `admin_operation_log` VALUES ('1103', '1', 'admin/course/coursevideo/delete', 'POST', '192.168.10.1', '{\"id\":\"10\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 15:56:11', '2020-04-01 15:56:11'); INSERT INTO `admin_operation_log` VALUES ('1104', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 15:57:40', '2020-04-01 15:57:40'); INSERT INTO `admin_operation_log` VALUES ('1105', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '{\"course_id\":\"2\",\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:57:48', '2020-04-01 15:57:48'); INSERT INTO `admin_operation_log` VALUES ('1106', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 15:59:15', '2020-04-01 15:59:15'); INSERT INTO `admin_operation_log` VALUES ('1107', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 15:59:18', '2020-04-01 15:59:18'); INSERT INTO `admin_operation_log` VALUES ('1108', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:00:48', '2020-04-01 16:00:48'); INSERT INTO `admin_operation_log` VALUES ('1109', '1', 'admin/course/coursevideo/edit/11', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:00:58', '2020-04-01 16:00:58'); INSERT INTO `admin_operation_log` VALUES ('1110', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:03:29', '2020-04-01 16:03:29'); INSERT INTO `admin_operation_log` VALUES ('1111', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"2\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:04:29', '2020-04-01 16:04:29'); INSERT INTO `admin_operation_log` VALUES ('1112', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:04:35', '2020-04-01 16:04:35'); INSERT INTO `admin_operation_log` VALUES ('1113', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:04:44', '2020-04-01 16:04:44'); INSERT INTO `admin_operation_log` VALUES ('1114', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"2\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:07:08', '2020-04-01 16:07:08'); INSERT INTO `admin_operation_log` VALUES ('1115', '1', 'admin/course/coursevideo/delete', 'POST', '192.168.10.1', '{\"id\":\"2\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:07:13', '2020-04-01 16:07:13'); INSERT INTO `admin_operation_log` VALUES ('1116', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:07:13', '2020-04-01 16:07:13'); INSERT INTO `admin_operation_log` VALUES ('1117', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:07:21', '2020-04-01 16:07:21'); INSERT INTO `admin_operation_log` VALUES ('1118', '1', 'admin/course/coursevideo/delete', 'POST', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:07:23', '2020-04-01 16:07:23'); INSERT INTO `admin_operation_log` VALUES ('1119', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:08:43', '2020-04-01 16:08:43'); INSERT INTO `admin_operation_log` VALUES ('1120', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:08:53', '2020-04-01 16:08:53'); INSERT INTO `admin_operation_log` VALUES ('1121', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:09:03', '2020-04-01 16:09:03'); INSERT INTO `admin_operation_log` VALUES ('1122', '1', 'admin/course/coursevideo/destory', 'POST', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:09:06', '2020-04-01 16:09:06'); INSERT INTO `admin_operation_log` VALUES ('1123', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:09:12', '2020-04-01 16:09:12'); INSERT INTO `admin_operation_log` VALUES ('1124', '1', 'admin/course/coursevideo/destory', 'POST', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:09:16', '2020-04-01 16:09:16'); INSERT INTO `admin_operation_log` VALUES ('1125', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:09:50', '2020-04-01 16:09:50'); INSERT INTO `admin_operation_log` VALUES ('1126', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:09:56', '2020-04-01 16:09:56'); INSERT INTO `admin_operation_log` VALUES ('1127', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:10:11', '2020-04-01 16:10:11'); INSERT INTO `admin_operation_log` VALUES ('1128', '1', 'admin/course/coursevideo/destroy', 'POST', '192.168.10.1', '{\"id\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:10:13', '2020-04-01 16:10:13'); INSERT INTO `admin_operation_log` VALUES ('1129', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:10:19', '2020-04-01 16:10:19'); INSERT INTO `admin_operation_log` VALUES ('1130', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"11\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:10:35', '2020-04-01 16:10:35'); INSERT INTO `admin_operation_log` VALUES ('1131', '1', 'admin/course/coursevideo/destroy', 'POST', '192.168.10.1', '{\"id\":\"11\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:10:38', '2020-04-01 16:10:38'); INSERT INTO `admin_operation_log` VALUES ('1132', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:10:41', '2020-04-01 16:10:41'); INSERT INTO `admin_operation_log` VALUES ('1133', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"5\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:10:49', '2020-04-01 16:10:49'); INSERT INTO `admin_operation_log` VALUES ('1134', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:13:46', '2020-04-01 16:13:46'); INSERT INTO `admin_operation_log` VALUES ('1135', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"4\",\"sort\":\"9\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:14:04', '2020-04-01 16:14:04'); INSERT INTO `admin_operation_log` VALUES ('1136', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:14:09', '2020-04-01 16:14:09'); INSERT INTO `admin_operation_log` VALUES ('1137', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"9\",\"sort\":\"87\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:14:49', '2020-04-01 16:14:49'); INSERT INTO `admin_operation_log` VALUES ('1138', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"8\",\"sort\":\"123\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:14:53', '2020-04-01 16:14:53'); INSERT INTO `admin_operation_log` VALUES ('1139', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:14:54', '2020-04-01 16:14:54'); INSERT INTO `admin_operation_log` VALUES ('1140', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"8\",\"sort\":\"123\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:14:57', '2020-04-01 16:14:57'); INSERT INTO `admin_operation_log` VALUES ('1141', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:15:00', '2020-04-01 16:15:00'); INSERT INTO `admin_operation_log` VALUES ('1142', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"8\",\"sort\":\"13\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:15:00', '2020-04-01 16:15:00'); INSERT INTO `admin_operation_log` VALUES ('1143', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"6\",\"sort\":\"11\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:15:05', '2020-04-01 16:15:05'); INSERT INTO `admin_operation_log` VALUES ('1144', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:15:06', '2020-04-01 16:15:06'); INSERT INTO `admin_operation_log` VALUES ('1145', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"8\",\"sort\":\"13\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:15:07', '2020-04-01 16:15:07'); INSERT INTO `admin_operation_log` VALUES ('1146', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"6\",\"sort\":\"11\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:15:10', '2020-04-01 16:15:10'); INSERT INTO `admin_operation_log` VALUES ('1147', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:15:12', '2020-04-01 16:15:12'); INSERT INTO `admin_operation_log` VALUES ('1148', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:15:13', '2020-04-01 16:15:13'); INSERT INTO `admin_operation_log` VALUES ('1149', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:15:15', '2020-04-01 16:15:15'); INSERT INTO `admin_operation_log` VALUES ('1150', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:16:06', '2020-04-01 16:16:06'); INSERT INTO `admin_operation_log` VALUES ('1151', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7b2c2.1\\u8282 php\\u51fd\\u6570\\u6c47\\u603b\",\"parent_id\":\"3\",\"course_id\":\"2\",\"id\":null,\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/2354e0f501796ca55ece286309d2aaa6.jpg\",\"file\":null,\"description\":\"\\u672c\\u8282\\u4e3b\\u8981\\u4ecb\\u7ecdPHP\\u6570\\u7ec4\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"7\"}', '2020-04-01 16:17:17', '2020-04-01 16:17:17'); INSERT INTO `admin_operation_log` VALUES ('1152', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:17:22', '2020-04-01 16:17:22'); INSERT INTO `admin_operation_log` VALUES ('1153', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:20:43', '2020-04-01 16:20:43'); INSERT INTO `admin_operation_log` VALUES ('1154', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:22:14', '2020-04-01 16:22:14'); INSERT INTO `admin_operation_log` VALUES ('1155', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:23:11', '2020-04-01 16:23:11'); INSERT INTO `admin_operation_log` VALUES ('1156', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"2\",\"sort\":\"1\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:23:31', '2020-04-01 16:23:31'); INSERT INTO `admin_operation_log` VALUES ('1157', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:23:35', '2020-04-01 16:23:35'); INSERT INTO `admin_operation_log` VALUES ('1158', '1', 'admin/course/coursevideo/edit/4', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:23:48', '2020-04-01 16:23:48'); INSERT INTO `admin_operation_log` VALUES ('1159', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7b2c\\u4e09\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u5f00\\u62d3\",\"parent_id\":\"0\",\"course_id\":\"2\",\"id\":\"4\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/2fd5ebb8e01d81adad9d624d665ab3cc.jpg\",\"file\":null,\"description\":\"\\u672c\\u8282\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"0\",\"4\":null}', '2020-04-01 16:24:20', '2020-04-01 16:24:20'); INSERT INTO `admin_operation_log` VALUES ('1160', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:24:24', '2020-04-01 16:24:24'); INSERT INTO `admin_operation_log` VALUES ('1161', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"4\",\"sort\":\"3\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:24:40', '2020-04-01 16:24:40'); INSERT INTO `admin_operation_log` VALUES ('1162', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"3\",\"sort\":\"2\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:24:43', '2020-04-01 16:24:43'); INSERT INTO `admin_operation_log` VALUES ('1163', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:24:44', '2020-04-01 16:24:44'); INSERT INTO `admin_operation_log` VALUES ('1164', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"3\",\"sort\":\"2\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:24:47', '2020-04-01 16:24:47'); INSERT INTO `admin_operation_log` VALUES ('1165', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:24:51', '2020-04-01 16:24:51'); INSERT INTO `admin_operation_log` VALUES ('1166', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"3\",\"sort\":\"2\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:24:52', '2020-04-01 16:24:52'); INSERT INTO `admin_operation_log` VALUES ('1167', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:24:55', '2020-04-01 16:24:55'); INSERT INTO `admin_operation_log` VALUES ('1168', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"3\",\"sort\":\"2\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:24:58', '2020-04-01 16:24:58'); INSERT INTO `admin_operation_log` VALUES ('1169', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:00', '2020-04-01 16:25:00'); INSERT INTO `admin_operation_log` VALUES ('1170', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:03', '2020-04-01 16:25:03'); INSERT INTO `admin_operation_log` VALUES ('1171', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:06', '2020-04-01 16:25:06'); INSERT INTO `admin_operation_log` VALUES ('1172', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"6\",\"sort\":\"4\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:26', '2020-04-01 16:25:26'); INSERT INTO `admin_operation_log` VALUES ('1173', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"7\",\"sort\":\"5\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:30', '2020-04-01 16:25:30'); INSERT INTO `admin_operation_log` VALUES ('1174', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:32', '2020-04-01 16:25:32'); INSERT INTO `admin_operation_log` VALUES ('1175', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"7\",\"sort\":\"5\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:33', '2020-04-01 16:25:33'); INSERT INTO `admin_operation_log` VALUES ('1176', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"7\",\"sort\":\"5\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:36', '2020-04-01 16:25:36'); INSERT INTO `admin_operation_log` VALUES ('1177', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:38', '2020-04-01 16:25:38'); INSERT INTO `admin_operation_log` VALUES ('1178', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"7\",\"sort\":\"5\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:42', '2020-04-01 16:25:42'); INSERT INTO `admin_operation_log` VALUES ('1179', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"8\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:45', '2020-04-01 16:25:45'); INSERT INTO `admin_operation_log` VALUES ('1180', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:46', '2020-04-01 16:25:46'); INSERT INTO `admin_operation_log` VALUES ('1181', '1', 'admin/course/coursevideo/check', 'GET', '192.168.10.1', '{\"id\":\"9\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:48', '2020-04-01 16:25:48'); INSERT INTO `admin_operation_log` VALUES ('1182', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:49', '2020-04-01 16:25:49'); INSERT INTO `admin_operation_log` VALUES ('1183', '1', 'admin/course/coursevideo/destroy', 'POST', '192.168.10.1', '{\"id\":\"8\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:51', '2020-04-01 16:25:51'); INSERT INTO `admin_operation_log` VALUES ('1184', '1', 'admin/course/coursevideo/destroy', 'POST', '192.168.10.1', '{\"id\":\"9\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:25:52', '2020-04-01 16:25:52'); INSERT INTO `admin_operation_log` VALUES ('1185', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:53', '2020-04-01 16:25:53'); INSERT INTO `admin_operation_log` VALUES ('1186', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:55', '2020-04-01 16:25:55'); INSERT INTO `admin_operation_log` VALUES ('1187', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:25:59', '2020-04-01 16:25:59'); INSERT INTO `admin_operation_log` VALUES ('1188', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:26:12', '2020-04-01 16:26:12'); INSERT INTO `admin_operation_log` VALUES ('1189', '1', 'admin/course/coursevideo/edit/10', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:26:29', '2020-04-01 16:26:29'); INSERT INTO `admin_operation_log` VALUES ('1190', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"7\",\"course_id\":\"2\",\"id\":\"10\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/29d63a0ed83ee3fc99dbdfbba0396ffe.jpg\",\"file\":null,\"description\":null,\"sort\":\"0\",\"10\":null}', '2020-04-01 16:26:39', '2020-04-01 16:26:39'); INSERT INTO `admin_operation_log` VALUES ('1191', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:26:43', '2020-04-01 16:26:43'); INSERT INTO `admin_operation_log` VALUES ('1192', '1', 'admin/course/coursevideo/edit/2', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:26:53', '2020-04-01 16:26:53'); INSERT INTO `admin_operation_log` VALUES ('1193', '1', 'admin/course/coursevideo/edit/2', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:28:07', '2020-04-01 16:28:07'); INSERT INTO `admin_operation_log` VALUES ('1194', '1', 'admin/course/coursevideo/edit/2', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:28:15', '2020-04-01 16:28:15'); INSERT INTO `admin_operation_log` VALUES ('1195', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7b2c\\u4e00\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"course_id\":\"2\",\"id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"1\",\"2\":null}', '2020-04-01 16:28:32', '2020-04-01 16:28:32'); INSERT INTO `admin_operation_log` VALUES ('1196', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:28:36', '2020-04-01 16:28:36'); INSERT INTO `admin_operation_log` VALUES ('1197', '1', 'admin/course/coursevideo/edit/2', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:28:45', '2020-04-01 16:28:45'); INSERT INTO `admin_operation_log` VALUES ('1198', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7b2c\\u4e00\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u8d77\\u6e90\",\"parent_id\":\"0\",\"course_id\":\"2\",\"id\":\"2\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg\",\"file\":null,\"description\":\"\\u672c\\u7ae0\\u4e3b\\u8981\\u8bb2\\u8ff0\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"1\",\"2\":null}', '2020-04-01 16:29:49', '2020-04-01 16:29:49'); INSERT INTO `admin_operation_log` VALUES ('1199', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:29:52', '2020-04-01 16:29:52'); INSERT INTO `admin_operation_log` VALUES ('1200', '1', 'admin/course/coursevideo/edit/2', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:30:05', '2020-04-01 16:30:05'); INSERT INTO `admin_operation_log` VALUES ('1201', '1', 'admin/course/coursevideo/edit/2', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 16:30:50', '2020-04-01 16:30:50'); INSERT INTO `admin_operation_log` VALUES ('1202', '1', 'admin/course/coursevideo/create/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 16:31:27', '2020-04-01 16:31:27'); INSERT INTO `admin_operation_log` VALUES ('1203', '1', 'admin/course/coursevideo/store', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7b2c\\u4e5d\\u7ae0 PHP\\u8fdb\\u9636\\u5b8c\\u6210\",\"parent_id\":\"0\",\"course_id\":\"2\",\"id\":null,\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/7afe36e09a5a63b12900e140fd08e3aa.jpg\",\"file\":null,\"description\":\"\\u5b8c\\u6210\\u8fdb\\u9636\\u4e4b\\u8def\\u3002\\u3002\\u3002\",\"sort\":\"3\"}', '2020-04-01 16:32:38', '2020-04-01 16:32:38'); INSERT INTO `admin_operation_log` VALUES ('1204', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:32:42', '2020-04-01 16:32:42'); INSERT INTO `admin_operation_log` VALUES ('1205', '1', 'admin/course/coursevideo/coursevideo_sort', 'GET', '192.168.10.1', '{\"id\":\"14\",\"sort\":\"9\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 16:32:57', '2020-04-01 16:32:57'); INSERT INTO `admin_operation_log` VALUES ('1206', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 16:33:02', '2020-04-01 16:33:02'); INSERT INTO `admin_operation_log` VALUES ('1207', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:33:35', '2020-04-01 16:33:35'); INSERT INTO `admin_operation_log` VALUES ('1208', '1', 'admin/course/course/create', 'GET', '192.168.10.1', '[]', '2020-04-01 16:33:43', '2020-04-01 16:33:43'); INSERT INTO `admin_operation_log` VALUES ('1209', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u5c71\\u6c34\\u753b\\u8be6\\u7ec6\\u89e3\\u6790\",\"category\":\"11\",\"teacher_id\":\"5\",\"description\":\"\\u4e3b\\u8981\\u8bb2\\u89e3\\u5c71\\u6c34\\u753b\\u4f1a\\u505a\\u6280\\u5de7\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/d44e6d682374e28a9f769c2851f8d3a7.jpg\",\"file\":null,\"watch_num\":\"1\",\"good_num\":\"1\",\"collection_num\":\"1\",\"original_price\":\"180\",\"price\":\"159\",\"is_shelves\":\"0\",\"is_recom\":\"0\",\"is_hot\":\"0\",\"is_wonderful\":\"0\",\"tags\":\"\\u5c71\\u6c34,\\u8981\\u70b9,\\u514d\\u8d39\"}', '2020-04-01 16:35:18', '2020-04-01 16:35:18'); INSERT INTO `admin_operation_log` VALUES ('1210', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:35:22', '2020-04-01 16:35:22'); INSERT INTO `admin_operation_log` VALUES ('1211', '1', 'admin/course/course/edit/3', 'GET', '192.168.10.1', '[]', '2020-04-01 16:35:31', '2020-04-01 16:35:31'); INSERT INTO `admin_operation_log` VALUES ('1212', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"id\":\"3\",\"name\":\"\\u5c71\\u6c34\\u753b\\u8be6\\u7ec6\\u89e3\\u679012\",\"category\":\"16\",\"teacher_id\":\"4\",\"description\":\"\\u4e3b\\u8981\\u8bb2\\u89e3\\u5c71\\u6c34\\u753b\\u4f1a\\u505a\\u6280\\u5de712\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/d44e6d682374e28a9f769c2851f8d3a7.jpg\",\"file\":null,\"watch_num\":\"15\",\"good_num\":\"12\",\"collection_num\":\"13\",\"original_price\":\"180.00\",\"price\":\"159.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"0\",\"is_wonderful\":\"1\",\"tags\":\"\\u5c71\\u6c34,\\u8981\\u70b9,\\u514d\\u8d39,\\u6280\\u5de7\"}', '2020-04-01 16:36:13', '2020-04-01 16:36:13'); INSERT INTO `admin_operation_log` VALUES ('1213', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:36:18', '2020-04-01 16:36:18'); INSERT INTO `admin_operation_log` VALUES ('1214', '1', 'admin/course/course/edit/3', 'GET', '192.168.10.1', '[]', '2020-04-01 16:36:29', '2020-04-01 16:36:29'); INSERT INTO `admin_operation_log` VALUES ('1215', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"id\":\"3\",\"name\":\"\\u5c71\\u6c34\\u753b\\u8be6\\u7ec6\\u89e3\\u679012\",\"category\":\"16\",\"teacher_id\":\"4\",\"description\":\"\\u4e3b\\u8981\\u8bb2\\u89e3\\u5c71\\u6c34\\u753b\\u4f1a\\u505a\\u6280\\u5de712\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5f6252e4cc1916971d55badaa0ec9ab0.jpg\",\"file\":null,\"watch_num\":\"15\",\"good_num\":\"12\",\"collection_num\":\"13\",\"original_price\":\"180.00\",\"price\":\"159.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"0\",\"is_wonderful\":\"1\",\"tags\":\"\\u5c71\\u6c34,\\u8981\\u70b9,\\u514d\\u8d39,\\u6280\\u5de7\"}', '2020-04-01 16:36:42', '2020-04-01 16:36:42'); INSERT INTO `admin_operation_log` VALUES ('1216', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:36:47', '2020-04-01 16:36:47'); INSERT INTO `admin_operation_log` VALUES ('1217', '1', 'admin/course/course/delete', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 16:37:10', '2020-04-01 16:37:10'); INSERT INTO `admin_operation_log` VALUES ('1218', '1', 'admin/course/course/delete', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 16:40:37', '2020-04-01 16:40:37'); INSERT INTO `admin_operation_log` VALUES ('1219', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:40:51', '2020-04-01 16:40:51'); INSERT INTO `admin_operation_log` VALUES ('1220', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:41:00', '2020-04-01 16:41:00'); INSERT INTO `admin_operation_log` VALUES ('1221', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:41:09', '2020-04-01 16:41:09'); INSERT INTO `admin_operation_log` VALUES ('1222', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:41:17', '2020-04-01 16:41:17'); INSERT INTO `admin_operation_log` VALUES ('1223', '1', 'admin/course/course/delete', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 16:41:27', '2020-04-01 16:41:27'); INSERT INTO `admin_operation_log` VALUES ('1224', '1', 'admin/course/course/delete', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 16:42:50', '2020-04-01 16:42:50'); INSERT INTO `admin_operation_log` VALUES ('1225', '1', 'admin/course/course/delete', 'GET', '192.168.10.1', '{\"id\":\"1\"}', '2020-04-01 16:42:57', '2020-04-01 16:42:57'); INSERT INTO `admin_operation_log` VALUES ('1226', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:44:26', '2020-04-01 16:44:26'); INSERT INTO `admin_operation_log` VALUES ('1227', '1', 'admin/course/course/delete/1', 'GET', '192.168.10.1', '[]', '2020-04-01 16:44:45', '2020-04-01 16:44:45'); INSERT INTO `admin_operation_log` VALUES ('1228', '1', 'admin/course/course/delete/1', 'GET', '192.168.10.1', '[]', '2020-04-01 16:45:06', '2020-04-01 16:45:06'); INSERT INTO `admin_operation_log` VALUES ('1229', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:45:12', '2020-04-01 16:45:12'); INSERT INTO `admin_operation_log` VALUES ('1230', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:47:32', '2020-04-01 16:47:32'); INSERT INTO `admin_operation_log` VALUES ('1231', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:50:06', '2020-04-01 16:50:06'); INSERT INTO `admin_operation_log` VALUES ('1232', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:51:24', '2020-04-01 16:51:24'); INSERT INTO `admin_operation_log` VALUES ('1233', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"NaN\"}', '2020-04-01 16:51:31', '2020-04-01 16:51:31'); INSERT INTO `admin_operation_log` VALUES ('1234', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:54:00', '2020-04-01 16:54:00'); INSERT INTO `admin_operation_log` VALUES ('1235', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:54:32', '2020-04-01 16:54:32'); INSERT INTO `admin_operation_log` VALUES ('1236', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:55:10', '2020-04-01 16:55:10'); INSERT INTO `admin_operation_log` VALUES ('1237', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:55:46', '2020-04-01 16:55:46'); INSERT INTO `admin_operation_log` VALUES ('1238', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:56:41', '2020-04-01 16:56:41'); INSERT INTO `admin_operation_log` VALUES ('1239', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 16:58:36', '2020-04-01 16:58:36'); INSERT INTO `admin_operation_log` VALUES ('1240', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"1\"}', '2020-04-01 16:58:48', '2020-04-01 16:58:48'); INSERT INTO `admin_operation_log` VALUES ('1241', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:01:18', '2020-04-01 17:01:18'); INSERT INTO `admin_operation_log` VALUES ('1242', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"0\"}', '2020-04-01 17:01:30', '2020-04-01 17:01:30'); INSERT INTO `admin_operation_log` VALUES ('1243', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"1\"}', '2020-04-01 17:01:33', '2020-04-01 17:01:33'); INSERT INTO `admin_operation_log` VALUES ('1244', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:02:00', '2020-04-01 17:02:00'); INSERT INTO `admin_operation_log` VALUES ('1245', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:02:07', '2020-04-01 17:02:07'); INSERT INTO `admin_operation_log` VALUES ('1246', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"3\"}', '2020-04-01 17:02:39', '2020-04-01 17:02:39'); INSERT INTO `admin_operation_log` VALUES ('1247', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:06:06', '2020-04-01 17:06:06'); INSERT INTO `admin_operation_log` VALUES ('1248', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:06:51', '2020-04-01 17:06:51'); INSERT INTO `admin_operation_log` VALUES ('1249', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:07:11', '2020-04-01 17:07:11'); INSERT INTO `admin_operation_log` VALUES ('1250', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:13:02', '2020-04-01 17:13:02'); INSERT INTO `admin_operation_log` VALUES ('1251', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:13:20', '2020-04-01 17:13:20'); INSERT INTO `admin_operation_log` VALUES ('1252', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:13:38', '2020-04-01 17:13:38'); INSERT INTO `admin_operation_log` VALUES ('1253', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:13:43', '2020-04-01 17:13:43'); INSERT INTO `admin_operation_log` VALUES ('1254', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:15:38', '2020-04-01 17:15:38'); INSERT INTO `admin_operation_log` VALUES ('1255', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:15:48', '2020-04-01 17:15:48'); INSERT INTO `admin_operation_log` VALUES ('1256', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:15:53', '2020-04-01 17:15:53'); INSERT INTO `admin_operation_log` VALUES ('1257', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:16:18', '2020-04-01 17:16:18'); INSERT INTO `admin_operation_log` VALUES ('1258', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:16:24', '2020-04-01 17:16:24'); INSERT INTO `admin_operation_log` VALUES ('1259', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:16:30', '2020-04-01 17:16:30'); INSERT INTO `admin_operation_log` VALUES ('1260', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:16:36', '2020-04-01 17:16:36'); INSERT INTO `admin_operation_log` VALUES ('1261', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:16:41', '2020-04-01 17:16:41'); INSERT INTO `admin_operation_log` VALUES ('1262', '1', 'admin/course/course/status', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"3\"}', '2020-04-01 17:16:57', '2020-04-01 17:16:57'); INSERT INTO `admin_operation_log` VALUES ('1263', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:17:05', '2020-04-01 17:17:05'); INSERT INTO `admin_operation_log` VALUES ('1264', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:12', '2020-04-01 17:20:12'); INSERT INTO `admin_operation_log` VALUES ('1265', '1', 'admin/member/points', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:21', '2020-04-01 17:20:21'); INSERT INTO `admin_operation_log` VALUES ('1266', '1', 'admin/member/users', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:22', '2020-04-01 17:20:22'); INSERT INTO `admin_operation_log` VALUES ('1267', '1', 'admin/store/dashboard', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:23', '2020-04-01 17:20:23'); INSERT INTO `admin_operation_log` VALUES ('1268', '1', 'admin/store/getMonthData', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:32', '2020-04-01 17:20:32'); INSERT INTO `admin_operation_log` VALUES ('1269', '1', 'admin/store/goods', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:36', '2020-04-01 17:20:36'); INSERT INTO `admin_operation_log` VALUES ('1270', '1', 'admin/store/goods/create', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:42', '2020-04-01 17:20:42'); INSERT INTO `admin_operation_log` VALUES ('1271', '1', 'admin/store/goods/createBefore', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:44', '2020-04-01 17:20:44'); INSERT INTO `admin_operation_log` VALUES ('1272', '1', 'admin/member/recharge', 'GET', '192.168.10.1', '[]', '2020-04-01 17:20:56', '2020-04-01 17:20:56'); INSERT INTO `admin_operation_log` VALUES ('1273', '1', 'admin/member/points', 'GET', '192.168.10.1', '[]', '2020-04-01 17:21:03', '2020-04-01 17:21:03'); INSERT INTO `admin_operation_log` VALUES ('1274', '1', 'admin/member/balances', 'GET', '192.168.10.1', '[]', '2020-04-01 17:21:08', '2020-04-01 17:21:08'); INSERT INTO `admin_operation_log` VALUES ('1275', '1', 'admin/store/promotion/gift/birthday', 'GET', '192.168.10.1', '[]', '2020-04-01 17:21:28', '2020-04-01 17:21:28'); INSERT INTO `admin_operation_log` VALUES ('1276', '1', 'admin/store/promotion/gift/birthday/create', 'GET', '192.168.10.1', '[]', '2020-04-01 17:21:35', '2020-04-01 17:21:35'); INSERT INTO `admin_operation_log` VALUES ('1277', '1', 'admin/store/promotion/gift/birthday/api/coupon', 'GET', '192.168.10.1', '{\"status\":\"ing\"}', '2020-04-01 17:21:40', '2020-04-01 17:21:40'); INSERT INTO `admin_operation_log` VALUES ('1278', '1', 'admin/store/setting/shopSetting', 'GET', '192.168.10.1', '[]', '2020-04-01 17:21:45', '2020-04-01 17:21:45'); INSERT INTO `admin_operation_log` VALUES ('1279', '1', 'admin/store/setting/refund-reason', 'GET', '192.168.10.1', '[]', '2020-04-01 17:22:03', '2020-04-01 17:22:03'); INSERT INTO `admin_operation_log` VALUES ('1280', '1', 'admin/store/setting/point', 'GET', '192.168.10.1', '[]', '2020-04-01 17:22:12', '2020-04-01 17:22:12'); INSERT INTO `admin_operation_log` VALUES ('1281', '1', 'admin/store/setting/onlineService', 'GET', '192.168.10.1', '[]', '2020-04-01 17:22:21', '2020-04-01 17:22:21'); INSERT INTO `admin_operation_log` VALUES ('1282', '1', 'admin/store/setting/micro/page', 'GET', '192.168.10.1', '[]', '2020-04-01 17:22:30', '2020-04-01 17:22:30'); INSERT INTO `admin_operation_log` VALUES ('1283', '1', 'admin/store/setting/invoice', 'GET', '192.168.10.1', '[]', '2020-04-01 17:22:50', '2020-04-01 17:22:50'); INSERT INTO `admin_operation_log` VALUES ('1284', '1', 'admin/store/setting/micro/page/compoent', 'GET', '192.168.10.1', '[]', '2020-04-01 17:22:57', '2020-04-01 17:22:57'); INSERT INTO `admin_operation_log` VALUES ('1285', '1', 'admin/store/setting/micro/page/compoent/micro_page_componet_slide/create', 'GET', '192.168.10.1', '{\"header\":\"\\u5e7b\\u706f\\u7247\"}', '2020-04-01 17:23:03', '2020-04-01 17:23:03'); INSERT INTO `admin_operation_log` VALUES ('1286', '1', 'admin/store/point-mall/goods', 'GET', '192.168.10.1', '[]', '2020-04-01 17:24:39', '2020-04-01 17:24:39'); INSERT INTO `admin_operation_log` VALUES ('1287', '1', 'admin/store/point-mall/goods', 'GET', '192.168.10.1', '{\"view\":\"2\"}', '2020-04-01 17:24:48', '2020-04-01 17:24:48'); INSERT INTO `admin_operation_log` VALUES ('1288', '1', 'admin/store/point-mall/orders', 'GET', '192.168.10.1', '{\"status\":\"all\"}', '2020-04-01 17:24:49', '2020-04-01 17:24:49'); INSERT INTO `admin_operation_log` VALUES ('1289', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:33:28', '2020-04-01 17:33:28'); INSERT INTO `admin_operation_log` VALUES ('1290', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:33:28', '2020-04-01 17:33:28'); INSERT INTO `admin_operation_log` VALUES ('1291', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:33:51', '2020-04-01 17:33:51'); INSERT INTO `admin_operation_log` VALUES ('1292', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:33:57', '2020-04-01 17:33:57'); INSERT INTO `admin_operation_log` VALUES ('1293', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:34:05', '2020-04-01 17:34:05'); INSERT INTO `admin_operation_log` VALUES ('1294', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:34:12', '2020-04-01 17:34:12'); INSERT INTO `admin_operation_log` VALUES ('1295', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:34:18', '2020-04-01 17:34:18'); INSERT INTO `admin_operation_log` VALUES ('1296', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:34:23', '2020-04-01 17:34:23'); INSERT INTO `admin_operation_log` VALUES ('1297', '1', 'admin/course/course/hot', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:34:29', '2020-04-01 17:34:29'); INSERT INTO `admin_operation_log` VALUES ('1298', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:34:38', '2020-04-01 17:34:38'); INSERT INTO `admin_operation_log` VALUES ('1299', '1', 'admin/course/course/hot', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:34:45', '2020-04-01 17:34:45'); INSERT INTO `admin_operation_log` VALUES ('1300', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:34:50', '2020-04-01 17:34:50'); INSERT INTO `admin_operation_log` VALUES ('1301', '1', 'admin/course/course/hot', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:34:57', '2020-04-01 17:34:57'); INSERT INTO `admin_operation_log` VALUES ('1302', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:35:03', '2020-04-01 17:35:03'); INSERT INTO `admin_operation_log` VALUES ('1303', '1', 'admin/course/course/wonderful', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:35:09', '2020-04-01 17:35:09'); INSERT INTO `admin_operation_log` VALUES ('1304', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:35:14', '2020-04-01 17:35:14'); INSERT INTO `admin_operation_log` VALUES ('1305', '1', 'admin/course/course/wonderful', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:35:21', '2020-04-01 17:35:21'); INSERT INTO `admin_operation_log` VALUES ('1306', '1', 'admin/course/course/wonderful', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:35:39', '2020-04-01 17:35:39'); INSERT INTO `admin_operation_log` VALUES ('1307', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:35:45', '2020-04-01 17:35:45'); INSERT INTO `admin_operation_log` VALUES ('1308', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:36:01', '2020-04-01 17:36:01'); INSERT INTO `admin_operation_log` VALUES ('1309', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:36:07', '2020-04-01 17:36:07'); INSERT INTO `admin_operation_log` VALUES ('1310', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:36:22', '2020-04-01 17:36:22'); INSERT INTO `admin_operation_log` VALUES ('1311', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:37:51', '2020-04-01 17:37:51'); INSERT INTO `admin_operation_log` VALUES ('1312', '1', 'admin/course/course/shelves', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:37:58', '2020-04-01 17:37:58'); INSERT INTO `admin_operation_log` VALUES ('1313', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:38:03', '2020-04-01 17:38:03'); INSERT INTO `admin_operation_log` VALUES ('1314', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:39:42', '2020-04-01 17:39:42'); INSERT INTO `admin_operation_log` VALUES ('1315', '1', 'admin/course/course/shelves', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:39:51', '2020-04-01 17:39:51'); INSERT INTO `admin_operation_log` VALUES ('1316', '1', 'admin/course/course/shelves', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:39:56', '2020-04-01 17:39:56'); INSERT INTO `admin_operation_log` VALUES ('1317', '1', 'admin/course/course/shelves', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"3\"}', '2020-04-01 17:40:06', '2020-04-01 17:40:06'); INSERT INTO `admin_operation_log` VALUES ('1318', '1', 'admin/course/course/shelves', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"3\"}', '2020-04-01 17:40:09', '2020-04-01 17:40:09'); INSERT INTO `admin_operation_log` VALUES ('1319', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:44:48', '2020-04-01 17:44:48'); INSERT INTO `admin_operation_log` VALUES ('1320', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:44:49', '2020-04-01 17:44:49'); INSERT INTO `admin_operation_log` VALUES ('1321', '1', 'admin/course/course/shelves', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:44:57', '2020-04-01 17:44:57'); INSERT INTO `admin_operation_log` VALUES ('1322', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:45:38', '2020-04-01 17:45:38'); INSERT INTO `admin_operation_log` VALUES ('1323', '1', 'admin/course/course/shelves', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:45:45', '2020-04-01 17:45:45'); INSERT INTO `admin_operation_log` VALUES ('1324', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:45:49', '2020-04-01 17:45:49'); INSERT INTO `admin_operation_log` VALUES ('1325', '1', 'admin/course/course/shelves', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:45:57', '2020-04-01 17:45:57'); INSERT INTO `admin_operation_log` VALUES ('1326', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:46:01', '2020-04-01 17:46:01'); INSERT INTO `admin_operation_log` VALUES ('1327', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:49:13', '2020-04-01 17:49:13'); INSERT INTO `admin_operation_log` VALUES ('1328', '1', 'admin/course/course/hot', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:49:25', '2020-04-01 17:49:25'); INSERT INTO `admin_operation_log` VALUES ('1329', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:49:31', '2020-04-01 17:49:31'); INSERT INTO `admin_operation_log` VALUES ('1330', '1', 'admin/course/course/hot', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:49:38', '2020-04-01 17:49:38'); INSERT INTO `admin_operation_log` VALUES ('1331', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:49:43', '2020-04-01 17:49:43'); INSERT INTO `admin_operation_log` VALUES ('1332', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:49:49', '2020-04-01 17:49:49'); INSERT INTO `admin_operation_log` VALUES ('1333', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:49:58', '2020-04-01 17:49:58'); INSERT INTO `admin_operation_log` VALUES ('1334', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:50:04', '2020-04-01 17:50:04'); INSERT INTO `admin_operation_log` VALUES ('1335', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:50:08', '2020-04-01 17:50:08'); INSERT INTO `admin_operation_log` VALUES ('1336', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:50:12', '2020-04-01 17:50:12'); INSERT INTO `admin_operation_log` VALUES ('1337', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-01 17:50:15', '2020-04-01 17:50:15'); INSERT INTO `admin_operation_log` VALUES ('1338', '1', 'admin/course/course/recom', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-01 17:50:19', '2020-04-01 17:50:19'); INSERT INTO `admin_operation_log` VALUES ('1339', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:50:24', '2020-04-01 17:50:24'); INSERT INTO `admin_operation_log` VALUES ('1340', '1', 'admin/course/course/wonderful', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"3\"}', '2020-04-01 17:50:30', '2020-04-01 17:50:30'); INSERT INTO `admin_operation_log` VALUES ('1341', '1', 'admin/course/course/wonderful', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"3\"}', '2020-04-01 17:50:33', '2020-04-01 17:50:33'); INSERT INTO `admin_operation_log` VALUES ('1342', '1', 'admin/course/course/wonderful', 'POST', '192.168.10.1', '{\"status\":\"0\",\"modelId\":\"3\"}', '2020-04-01 17:50:36', '2020-04-01 17:50:36'); INSERT INTO `admin_operation_log` VALUES ('1343', '1', 'admin/course/course/wonderful', 'POST', '192.168.10.1', '{\"status\":\"1\",\"modelId\":\"3\"}', '2020-04-01 17:50:39', '2020-04-01 17:50:39'); INSERT INTO `admin_operation_log` VALUES ('1344', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:50:43', '2020-04-01 17:50:43'); INSERT INTO `admin_operation_log` VALUES ('1345', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:50:52', '2020-04-01 17:50:52'); INSERT INTO `admin_operation_log` VALUES ('1346', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:53:30', '2020-04-01 17:53:30'); INSERT INTO `admin_operation_log` VALUES ('1347', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:54:04', '2020-04-01 17:54:04'); INSERT INTO `admin_operation_log` VALUES ('1348', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 17:54:29', '2020-04-01 17:54:29'); INSERT INTO `admin_operation_log` VALUES ('1349', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 17:55:41', '2020-04-01 17:55:41'); INSERT INTO `admin_operation_log` VALUES ('1350', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-04-01 17:55:58', '2020-04-01 17:55:58'); INSERT INTO `admin_operation_log` VALUES ('1351', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-04-01 17:56:31', '2020-04-01 17:56:31'); INSERT INTO `admin_operation_log` VALUES ('1352', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-04-01 17:57:47', '2020-04-01 17:57:47'); INSERT INTO `admin_operation_log` VALUES ('1353', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:58:01', '2020-04-01 17:58:01'); INSERT INTO `admin_operation_log` VALUES ('1354', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"14\",\"sort\":\"22\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 17:58:56', '2020-04-01 17:58:56'); INSERT INTO `admin_operation_log` VALUES ('1355', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"16\",\"sort\":\"23\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 17:58:58', '2020-04-01 17:58:58'); INSERT INTO `admin_operation_log` VALUES ('1356', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"17\",\"sort\":\"4\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 17:59:00', '2020-04-01 17:59:00'); INSERT INTO `admin_operation_log` VALUES ('1357', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:59:03', '2020-04-01 17:59:03'); INSERT INTO `admin_operation_log` VALUES ('1358', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"17\",\"sort\":\"4\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 17:59:06', '2020-04-01 17:59:06'); INSERT INTO `admin_operation_log` VALUES ('1359', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:59:07', '2020-04-01 17:59:07'); INSERT INTO `admin_operation_log` VALUES ('1360', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:59:07', '2020-04-01 17:59:07'); INSERT INTO `admin_operation_log` VALUES ('1361', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 17:59:11', '2020-04-01 17:59:11'); INSERT INTO `admin_operation_log` VALUES ('1362', '1', 'admin/course/category/category_sort', 'GET', '192.168.10.1', '{\"id\":\"17\",\"sort\":\"4\",\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\"}', '2020-04-01 17:59:12', '2020-04-01 17:59:12'); INSERT INTO `admin_operation_log` VALUES ('1363', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-04-01 17:59:19', '2020-04-01 17:59:19'); INSERT INTO `admin_operation_log` VALUES ('1364', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-04-01 18:00:18', '2020-04-01 18:00:18'); INSERT INTO `admin_operation_log` VALUES ('1365', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-04-01 18:01:14', '2020-04-01 18:01:14'); INSERT INTO `admin_operation_log` VALUES ('1366', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-04-01 18:01:46', '2020-04-01 18:01:46'); INSERT INTO `admin_operation_log` VALUES ('1367', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-04-01 18:02:12', '2020-04-01 18:02:12'); INSERT INTO `admin_operation_log` VALUES ('1368', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-04-01 18:02:42', '2020-04-01 18:02:42'); INSERT INTO `admin_operation_log` VALUES ('1369', '1', 'admin/course/category/create', 'GET', '192.168.10.1', '[]', '2020-04-01 18:02:59', '2020-04-01 18:02:59'); INSERT INTO `admin_operation_log` VALUES ('1370', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-04-01 18:03:06', '2020-04-01 18:03:06'); INSERT INTO `admin_operation_log` VALUES ('1371', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 18:03:27', '2020-04-01 18:03:27'); INSERT INTO `admin_operation_log` VALUES ('1372', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 18:03:39', '2020-04-01 18:03:39'); INSERT INTO `admin_operation_log` VALUES ('1373', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 18:04:08', '2020-04-01 18:04:08'); INSERT INTO `admin_operation_log` VALUES ('1374', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 18:04:45', '2020-04-01 18:04:45'); INSERT INTO `admin_operation_log` VALUES ('1375', '1', 'admin/course/coursevideo/edit/5', 'GET', '192.168.10.1', '{\"course_id\":\"2\"}', '2020-04-01 18:05:30', '2020-04-01 18:05:30'); INSERT INTO `admin_operation_log` VALUES ('1376', '1', 'admin/course/coursevideo/update', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"name\":\"\\u7b2c\\u516d\\u7ae0 PHP\\u8fdb\\u9636\\u4e4b\\u8def --- php\\u7684\\u521b\\u65b0\",\"parent_id\":\"0\",\"course_id\":\"2\",\"id\":\"5\",\"resource\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/7ec749977b57c5422b3ea26f60705afd.jpg\",\"file\":null,\"description\":null,\"sort\":\"6\",\"5\":null}', '2020-04-01 18:05:46', '2020-04-01 18:05:46'); INSERT INTO `admin_operation_log` VALUES ('1377', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 18:05:49', '2020-04-01 18:05:49'); INSERT INTO `admin_operation_log` VALUES ('1378', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:07:09', '2020-04-01 18:07:09'); INSERT INTO `admin_operation_log` VALUES ('1379', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:08:48', '2020-04-01 18:08:48'); INSERT INTO `admin_operation_log` VALUES ('1380', '1', 'admin/course/course/edit/2', 'GET', '192.168.10.1', '[]', '2020-04-01 18:09:05', '2020-04-01 18:09:05'); INSERT INTO `admin_operation_log` VALUES ('1381', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"id\":\"2\",\"name\":\"\\u4f18\\u8d28\\u4f1a\\u5458 \\u786c\\u7b14\\u8f6f\\u7b14\\u4e66\\u6cd5\\u901f\\u6210\\u5165\\u95e8\\u63d0\\u9ad8\\u4e00\\u4f53\\u73ed\",\"category\":\"17\",\"teacher_id\":\"5\",\"description\":\"asdsad\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/41207898bac2564c7d2e3eb0940e505c.jpg\",\"file\":null,\"watch_num\":\"12\",\"good_num\":\"13\",\"collection_num\":\"14\",\"original_price\":\"155.00\",\"price\":\"122.00\",\"is_shelves\":\"0\",\"is_recom\":\"1\",\"is_hot\":\"1\",\"is_wonderful\":\"1\",\"tags\":\"222,223,44\"}', '2020-04-01 18:10:35', '2020-04-01 18:10:35'); INSERT INTO `admin_operation_log` VALUES ('1382', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:10:39', '2020-04-01 18:10:39'); INSERT INTO `admin_operation_log` VALUES ('1383', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:11:42', '2020-04-01 18:11:42'); INSERT INTO `admin_operation_log` VALUES ('1384', '1', 'admin/course/course/edit/3', 'GET', '192.168.10.1', '[]', '2020-04-01 18:12:45', '2020-04-01 18:12:45'); INSERT INTO `admin_operation_log` VALUES ('1385', '1', 'admin/course/course/store', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"id\":\"3\",\"name\":\"\\u5c71\\u6c34\\u753b\\u8be6\\u7ec6\\u89e3\\u6790\\u3001\\u5361\\u901a\\u6f2b\\u753b\\u9ad8\\u7ea7\\u73ed\",\"category\":\"9\",\"teacher_id\":\"4\",\"description\":\"\\u4e3b\\u8981\\u8bb2\\u89e3\\u5c71\\u6c34\\u753b\\u4f1a\\u505a\\u6280\\u5de712\",\"cover\":\"http:\\/\\/www.homestead.test\\/storage\\/20200401\\/5f6252e4cc1916971d55badaa0ec9ab0.jpg\",\"file\":null,\"watch_num\":\"15\",\"good_num\":\"12\",\"collection_num\":\"13\",\"original_price\":\"180.00\",\"price\":\"159.00\",\"is_shelves\":\"1\",\"is_recom\":\"1\",\"is_hot\":\"0\",\"is_wonderful\":\"1\",\"tags\":\"\\u5c71\\u6c34,\\u8981\\u70b9,\\u514d\\u8d39,\\u6280\\u5de7,\\u5361\\u901a\"}', '2020-04-01 18:13:41', '2020-04-01 18:13:41'); INSERT INTO `admin_operation_log` VALUES ('1386', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:13:45', '2020-04-01 18:13:45'); INSERT INTO `admin_operation_log` VALUES ('1387', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:17:57', '2020-04-01 18:17:57'); INSERT INTO `admin_operation_log` VALUES ('1388', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:18:08', '2020-04-01 18:18:08'); INSERT INTO `admin_operation_log` VALUES ('1389', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-04-01 18:18:28', '2020-04-01 18:18:28'); INSERT INTO `admin_operation_log` VALUES ('1390', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:18:50', '2020-04-01 18:18:50'); INSERT INTO `admin_operation_log` VALUES ('1391', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-01 18:18:55', '2020-04-01 18:18:55'); INSERT INTO `admin_operation_log` VALUES ('1392', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:18:58', '2020-04-01 18:18:58'); INSERT INTO `admin_operation_log` VALUES ('1393', '1', 'admin/course/teacher/edit/1', 'GET', '192.168.10.1', '[]', '2020-04-01 18:19:04', '2020-04-01 18:19:04'); INSERT INTO `admin_operation_log` VALUES ('1394', '1', 'admin/course/teacher/store', 'POST', '192.168.10.1', '{\"_token\":\"U9lPLT7aJBIzWSRXue3ikJvoAxgxzwZWxM8t2VW9\",\"id\":\"1\",\"name\":\"\\u5f20\\u4e00\\u65b9\",\"headimg\":\"http:\\/\\/www.homestead.test\\/storage\\/20200331\\/a71a130795ff13d4c16ab4bebc8b710f.jpg\",\"file\":null,\"course_num\":\"10\",\"good_num\":\"121\",\"description\":\"\\u64c5\\u957f\\u56fd\\u753b\\u5c71\\u6c34\\u753b\\uff0c\\u8349\\u4e66\",\"body\":\"\\u963f\\u4e09\\u9876\\u9876\\u9876\\u9876\\u9876121\",\"tags\":[\"121\",\"123\",\"122\",\"124\"],\"status\":\"2\"}', '2020-04-01 18:19:43', '2020-04-01 18:19:43'); INSERT INTO `admin_operation_log` VALUES ('1395', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:20:20', '2020-04-01 18:20:20'); INSERT INTO `admin_operation_log` VALUES ('1396', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-04-01 18:20:40', '2020-04-01 18:20:40'); INSERT INTO `admin_operation_log` VALUES ('1397', '1', 'admin/course/teacher/create', 'GET', '192.168.10.1', '[]', '2020-04-01 18:21:24', '2020-04-01 18:21:24'); INSERT INTO `admin_operation_log` VALUES ('1398', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:22:14', '2020-04-01 18:22:14'); INSERT INTO `admin_operation_log` VALUES ('1399', '1', 'admin/course/category/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:22:26', '2020-04-01 18:22:26'); INSERT INTO `admin_operation_log` VALUES ('1400', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:31:57', '2020-04-01 18:31:57'); INSERT INTO `admin_operation_log` VALUES ('1401', '1', 'admin/course/coursevideo/index/2', 'GET', '192.168.10.1', '[]', '2020-04-01 18:32:10', '2020-04-01 18:32:10'); INSERT INTO `admin_operation_log` VALUES ('1402', '1', 'admin/course/coursevideo/index/3', 'GET', '192.168.10.1', '[]', '2020-04-01 18:32:28', '2020-04-01 18:32:28'); INSERT INTO `admin_operation_log` VALUES ('1403', '1', 'admin/course/coursevideo/create/3', 'GET', '192.168.10.1', '[]', '2020-04-01 18:33:52', '2020-04-01 18:33:52'); INSERT INTO `admin_operation_log` VALUES ('1404', '1', 'admin/course/coursevideo/create/3', 'GET', '192.168.10.1', '[]', '2020-04-01 18:35:59', '2020-04-01 18:35:59'); INSERT INTO `admin_operation_log` VALUES ('1405', '1', 'admin/course/course/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:38:16', '2020-04-01 18:38:16'); INSERT INTO `admin_operation_log` VALUES ('1406', '1', 'admin', 'GET', '192.168.10.1', '[]', '2020-04-01 18:38:33', '2020-04-01 18:38:33'); INSERT INTO `admin_operation_log` VALUES ('1407', '1', 'admin/course/teacher/index', 'GET', '192.168.10.1', '[]', '2020-04-01 18:50:13', '2020-04-01 18:50:13'); INSERT INTO `admin_operation_log` VALUES ('1408', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 09:27:50', '2020-04-02 09:27:50'); INSERT INTO `admin_operation_log` VALUES ('1409', '1', 'admin/course/coursevideo/index/3', 'GET', '127.0.0.1', '[]', '2020-04-02 09:27:58', '2020-04-02 09:27:58'); INSERT INTO `admin_operation_log` VALUES ('1410', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:28:03', '2020-04-02 09:28:03'); INSERT INTO `admin_operation_log` VALUES ('1411', '1', 'admin/course/coursevideo/edit/2', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:28:07', '2020-04-02 09:28:07'); INSERT INTO `admin_operation_log` VALUES ('1412', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:41:06', '2020-04-02 09:41:06'); INSERT INTO `admin_operation_log` VALUES ('1413', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:41:11', '2020-04-02 09:41:11'); INSERT INTO `admin_operation_log` VALUES ('1414', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:41:19', '2020-04-02 09:41:19'); INSERT INTO `admin_operation_log` VALUES ('1415', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:42:17', '2020-04-02 09:42:17'); INSERT INTO `admin_operation_log` VALUES ('1416', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 09:42:51', '2020-04-02 09:42:51'); INSERT INTO `admin_operation_log` VALUES ('1417', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:42:53', '2020-04-02 09:42:53'); INSERT INTO `admin_operation_log` VALUES ('1418', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:42:57', '2020-04-02 09:42:57'); INSERT INTO `admin_operation_log` VALUES ('1419', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:42:58', '2020-04-02 09:42:58'); INSERT INTO `admin_operation_log` VALUES ('1420', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:42:59', '2020-04-02 09:42:59'); INSERT INTO `admin_operation_log` VALUES ('1421', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:42:59', '2020-04-02 09:42:59'); INSERT INTO `admin_operation_log` VALUES ('1422', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:42:59', '2020-04-02 09:42:59'); INSERT INTO `admin_operation_log` VALUES ('1423', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:43:01', '2020-04-02 09:43:01'); INSERT INTO `admin_operation_log` VALUES ('1424', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:43:01', '2020-04-02 09:43:01'); INSERT INTO `admin_operation_log` VALUES ('1425', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:43:01', '2020-04-02 09:43:01'); INSERT INTO `admin_operation_log` VALUES ('1426', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:43:02', '2020-04-02 09:43:02'); INSERT INTO `admin_operation_log` VALUES ('1427', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:43:19', '2020-04-02 09:43:19'); INSERT INTO `admin_operation_log` VALUES ('1428', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:43:22', '2020-04-02 09:43:22'); INSERT INTO `admin_operation_log` VALUES ('1429', '1', 'admin/course/coursevideo/edit/2', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:43:30', '2020-04-02 09:43:30'); INSERT INTO `admin_operation_log` VALUES ('1430', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:44:19', '2020-04-02 09:44:19'); INSERT INTO `admin_operation_log` VALUES ('1431', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:44:38', '2020-04-02 09:44:38'); INSERT INTO `admin_operation_log` VALUES ('1432', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"2\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 09:44:41', '2020-04-02 09:44:41'); INSERT INTO `admin_operation_log` VALUES ('1433', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"4\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 09:44:50', '2020-04-02 09:44:50'); INSERT INTO `admin_operation_log` VALUES ('1434', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"5\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 09:45:01', '2020-04-02 09:45:01'); INSERT INTO `admin_operation_log` VALUES ('1435', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"5\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 09:45:08', '2020-04-02 09:45:08'); INSERT INTO `admin_operation_log` VALUES ('1436', '1', 'admin/course/coursevideo/edit/5', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:45:14', '2020-04-02 09:45:14'); INSERT INTO `admin_operation_log` VALUES ('1437', '1', 'admin/course/coursevideo/edit/5', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:46:55', '2020-04-02 09:46:55'); INSERT INTO `admin_operation_log` VALUES ('1438', '1', 'admin/course/coursevideo/edit/5', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:47:22', '2020-04-02 09:47:22'); INSERT INTO `admin_operation_log` VALUES ('1439', '1', 'admin/course/course/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 09:48:26', '2020-04-02 09:48:26'); INSERT INTO `admin_operation_log` VALUES ('1440', '1', 'admin/course/course/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 09:49:37', '2020-04-02 09:49:37'); INSERT INTO `admin_operation_log` VALUES ('1441', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:49:45', '2020-04-02 09:49:45'); INSERT INTO `admin_operation_log` VALUES ('1442', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:49:50', '2020-04-02 09:49:50'); INSERT INTO `admin_operation_log` VALUES ('1443', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:51:07', '2020-04-02 09:51:07'); INSERT INTO `admin_operation_log` VALUES ('1444', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:52:00', '2020-04-02 09:52:00'); INSERT INTO `admin_operation_log` VALUES ('1445', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:52:01', '2020-04-02 09:52:01'); INSERT INTO `admin_operation_log` VALUES ('1446', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:52:01', '2020-04-02 09:52:01'); INSERT INTO `admin_operation_log` VALUES ('1447', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:52:03', '2020-04-02 09:52:03'); INSERT INTO `admin_operation_log` VALUES ('1448', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:52:03', '2020-04-02 09:52:03'); INSERT INTO `admin_operation_log` VALUES ('1449', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:28', '2020-04-02 09:53:28'); INSERT INTO `admin_operation_log` VALUES ('1450', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:29', '2020-04-02 09:53:29'); INSERT INTO `admin_operation_log` VALUES ('1451', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:29', '2020-04-02 09:53:29'); INSERT INTO `admin_operation_log` VALUES ('1452', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:30', '2020-04-02 09:53:30'); INSERT INTO `admin_operation_log` VALUES ('1453', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:30', '2020-04-02 09:53:30'); INSERT INTO `admin_operation_log` VALUES ('1454', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:31', '2020-04-02 09:53:31'); INSERT INTO `admin_operation_log` VALUES ('1455', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:31', '2020-04-02 09:53:31'); INSERT INTO `admin_operation_log` VALUES ('1456', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:31', '2020-04-02 09:53:31'); INSERT INTO `admin_operation_log` VALUES ('1457', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:32', '2020-04-02 09:53:32'); INSERT INTO `admin_operation_log` VALUES ('1458', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:32', '2020-04-02 09:53:32'); INSERT INTO `admin_operation_log` VALUES ('1459', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:32', '2020-04-02 09:53:32'); INSERT INTO `admin_operation_log` VALUES ('1460', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:33', '2020-04-02 09:53:33'); INSERT INTO `admin_operation_log` VALUES ('1461', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:33', '2020-04-02 09:53:33'); INSERT INTO `admin_operation_log` VALUES ('1462', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:33', '2020-04-02 09:53:33'); INSERT INTO `admin_operation_log` VALUES ('1463', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:33', '2020-04-02 09:53:33'); INSERT INTO `admin_operation_log` VALUES ('1464', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:33', '2020-04-02 09:53:33'); INSERT INTO `admin_operation_log` VALUES ('1465', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:33', '2020-04-02 09:53:33'); INSERT INTO `admin_operation_log` VALUES ('1466', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:33', '2020-04-02 09:53:33'); INSERT INTO `admin_operation_log` VALUES ('1467', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:33', '2020-04-02 09:53:33'); INSERT INTO `admin_operation_log` VALUES ('1468', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:34', '2020-04-02 09:53:34'); INSERT INTO `admin_operation_log` VALUES ('1469', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:34', '2020-04-02 09:53:34'); INSERT INTO `admin_operation_log` VALUES ('1470', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:34', '2020-04-02 09:53:34'); INSERT INTO `admin_operation_log` VALUES ('1471', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:34', '2020-04-02 09:53:34'); INSERT INTO `admin_operation_log` VALUES ('1472', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:35', '2020-04-02 09:53:35'); INSERT INTO `admin_operation_log` VALUES ('1473', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:35', '2020-04-02 09:53:35'); INSERT INTO `admin_operation_log` VALUES ('1474', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:35', '2020-04-02 09:53:35'); INSERT INTO `admin_operation_log` VALUES ('1475', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:35', '2020-04-02 09:53:35'); INSERT INTO `admin_operation_log` VALUES ('1476', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:35', '2020-04-02 09:53:35'); INSERT INTO `admin_operation_log` VALUES ('1477', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1478', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1479', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1480', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1481', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1482', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1483', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1484', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1485', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1486', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:36', '2020-04-02 09:53:36'); INSERT INTO `admin_operation_log` VALUES ('1487', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:37', '2020-04-02 09:53:37'); INSERT INTO `admin_operation_log` VALUES ('1488', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:37', '2020-04-02 09:53:37'); INSERT INTO `admin_operation_log` VALUES ('1489', '1', 'admin/course/coursevideo/edit/3', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:53:59', '2020-04-02 09:53:59'); INSERT INTO `admin_operation_log` VALUES ('1490', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"13\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 09:54:23', '2020-04-02 09:54:23'); INSERT INTO `admin_operation_log` VALUES ('1491', '1', 'admin/course/coursevideo/edit/13', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:54:31', '2020-04-02 09:54:31'); INSERT INTO `admin_operation_log` VALUES ('1492', '1', 'admin/course/coursevideo/create/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:54:47', '2020-04-02 09:54:47'); INSERT INTO `admin_operation_log` VALUES ('1493', '1', 'admin/course/coursevideo/create/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:55:34', '2020-04-02 09:55:34'); INSERT INTO `admin_operation_log` VALUES ('1494', '1', 'admin/course/coursevideo/edit/10', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:55:40', '2020-04-02 09:55:40'); INSERT INTO `admin_operation_log` VALUES ('1495', '1', 'admin/course/coursevideo/update', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"7\",\"course_id\":\"2\",\"id\":\"10\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/101c705fcc134372f3c53383c7657491.mp4\",\"file\":null,\"description\":\"\\u672c\\u5c0f\\u8282\\u4e3b\\u8981\\u8bb2php\\u8d77\\u6e90\\u4e4b\\u59cb\\u672b\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"0\",\"10\":null}', '2020-04-02 09:57:06', '2020-04-02 09:57:06'); INSERT INTO `admin_operation_log` VALUES ('1496', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:57:08', '2020-04-02 09:57:08'); INSERT INTO `admin_operation_log` VALUES ('1497', '1', 'admin/course/coursevideo/edit/10', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 09:57:12', '2020-04-02 09:57:12'); INSERT INTO `admin_operation_log` VALUES ('1498', '1', 'admin/course/coursevideo/update', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"parent_id\":\"7\",\"course_id\":\"2\",\"id\":\"10\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/101c705fcc134372f3c53383c7657491.mp4\",\"file\":null,\"description\":\"\\u672c\\u5c0f\\u8282\\u4e3b\\u8981\\u8bb2php\\u8d77\\u6e90\\u4e4b\\u59cb\\u672b\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"15\",\"10\":null}', '2020-04-02 09:57:26', '2020-04-02 09:57:26'); INSERT INTO `admin_operation_log` VALUES ('1499', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 09:57:28', '2020-04-02 09:57:28'); INSERT INTO `admin_operation_log` VALUES ('1500', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"13\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 09:57:33', '2020-04-02 09:57:33'); INSERT INTO `admin_operation_log` VALUES ('1501', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"13\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 10:00:53', '2020-04-02 10:00:53'); INSERT INTO `admin_operation_log` VALUES ('1502', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"10\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 10:01:00', '2020-04-02 10:01:00'); INSERT INTO `admin_operation_log` VALUES ('1503', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"10\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 10:02:56', '2020-04-02 10:02:56'); INSERT INTO `admin_operation_log` VALUES ('1504', '1', 'admin/course/coursevideo/edit/10', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 10:11:14', '2020-04-02 10:11:14'); INSERT INTO `admin_operation_log` VALUES ('1505', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 10:11:23', '2020-04-02 10:11:23'); INSERT INTO `admin_operation_log` VALUES ('1506', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"10\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 10:11:26', '2020-04-02 10:11:26'); INSERT INTO `admin_operation_log` VALUES ('1507', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:12:31', '2020-04-02 10:12:31'); INSERT INTO `admin_operation_log` VALUES ('1508', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:13:41', '2020-04-02 10:13:41'); INSERT INTO `admin_operation_log` VALUES ('1509', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:13:41', '2020-04-02 10:13:41'); INSERT INTO `admin_operation_log` VALUES ('1510', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:13:42', '2020-04-02 10:13:42'); INSERT INTO `admin_operation_log` VALUES ('1511', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:13:42', '2020-04-02 10:13:42'); INSERT INTO `admin_operation_log` VALUES ('1512', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:13:42', '2020-04-02 10:13:42'); INSERT INTO `admin_operation_log` VALUES ('1513', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:13:43', '2020-04-02 10:13:43'); INSERT INTO `admin_operation_log` VALUES ('1514', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:13:43', '2020-04-02 10:13:43'); INSERT INTO `admin_operation_log` VALUES ('1515', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:13:58', '2020-04-02 10:13:58'); INSERT INTO `admin_operation_log` VALUES ('1516', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:15:46', '2020-04-02 10:15:46'); INSERT INTO `admin_operation_log` VALUES ('1517', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 10:16:38', '2020-04-02 10:16:38'); INSERT INTO `admin_operation_log` VALUES ('1518', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 10:16:45', '2020-04-02 10:16:45'); INSERT INTO `admin_operation_log` VALUES ('1519', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:17:09', '2020-04-02 10:17:09'); INSERT INTO `admin_operation_log` VALUES ('1520', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:18:09', '2020-04-02 10:18:09'); INSERT INTO `admin_operation_log` VALUES ('1521', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:18:15', '2020-04-02 10:18:15'); INSERT INTO `admin_operation_log` VALUES ('1522', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:24:43', '2020-04-02 10:24:43'); INSERT INTO `admin_operation_log` VALUES ('1523', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:25:01', '2020-04-02 10:25:01'); INSERT INTO `admin_operation_log` VALUES ('1524', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:25:33', '2020-04-02 10:25:33'); INSERT INTO `admin_operation_log` VALUES ('1525', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:26:08', '2020-04-02 10:26:08'); INSERT INTO `admin_operation_log` VALUES ('1526', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:26:50', '2020-04-02 10:26:50'); INSERT INTO `admin_operation_log` VALUES ('1527', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:27:54', '2020-04-02 10:27:54'); INSERT INTO `admin_operation_log` VALUES ('1528', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:29:32', '2020-04-02 10:29:32'); INSERT INTO `admin_operation_log` VALUES ('1529', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:30:41', '2020-04-02 10:30:41'); INSERT INTO `admin_operation_log` VALUES ('1530', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"price\":\"sell_price\",\"status\":null,\"value\":null}', '2020-04-02 10:31:06', '2020-04-02 10:31:06'); INSERT INTO `admin_operation_log` VALUES ('1531', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"status\":null,\"search\":\"\\u6d4b\\u8bd5\"}', '2020-04-02 10:31:18', '2020-04-02 10:31:18'); INSERT INTO `admin_operation_log` VALUES ('1532', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"status\":null,\"search\":\"\\u6d4b\\u8bd5\"}', '2020-04-02 10:37:44', '2020-04-02 10:37:44'); INSERT INTO `admin_operation_log` VALUES ('1533', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"status\":null,\"search\":\"\\u6d4b\\u8bd5\"}', '2020-04-02 10:38:06', '2020-04-02 10:38:06'); INSERT INTO `admin_operation_log` VALUES ('1534', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"17\",\"status\":null,\"search\":null}', '2020-04-02 10:38:19', '2020-04-02 10:38:19'); INSERT INTO `admin_operation_log` VALUES ('1535', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"14\",\"status\":null,\"search\":null}', '2020-04-02 10:38:28', '2020-04-02 10:38:28'); INSERT INTO `admin_operation_log` VALUES ('1536', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"11\",\"status\":null,\"search\":null}', '2020-04-02 10:38:33', '2020-04-02 10:38:33'); INSERT INTO `admin_operation_log` VALUES ('1537', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"11\",\"status\":null,\"search\":null}', '2020-04-02 10:39:15', '2020-04-02 10:39:15'); INSERT INTO `admin_operation_log` VALUES ('1538', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"14\",\"status\":null,\"search\":null}', '2020-04-02 10:39:27', '2020-04-02 10:39:27'); INSERT INTO `admin_operation_log` VALUES ('1539', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"17\",\"status\":null,\"search\":null}', '2020-04-02 10:39:34', '2020-04-02 10:39:34'); INSERT INTO `admin_operation_log` VALUES ('1540', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"17\",\"status\":null,\"search\":null}', '2020-04-02 10:39:49', '2020-04-02 10:39:49'); INSERT INTO `admin_operation_log` VALUES ('1541', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"status\":null,\"search\":null}', '2020-04-02 10:39:55', '2020-04-02 10:39:55'); INSERT INTO `admin_operation_log` VALUES ('1542', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:39:58', '2020-04-02 10:39:58'); INSERT INTO `admin_operation_log` VALUES ('1543', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:40:09', '2020-04-02 10:40:09'); INSERT INTO `admin_operation_log` VALUES ('1544', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:40:33', '2020-04-02 10:40:33'); INSERT INTO `admin_operation_log` VALUES ('1545', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:40:45', '2020-04-02 10:40:45'); INSERT INTO `admin_operation_log` VALUES ('1546', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:41:43', '2020-04-02 10:41:43'); INSERT INTO `admin_operation_log` VALUES ('1547', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"status\":null,\"search\":null}', '2020-04-02 10:42:05', '2020-04-02 10:42:05'); INSERT INTO `admin_operation_log` VALUES ('1548', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"17\",\"status\":null,\"search\":null}', '2020-04-02 10:42:08', '2020-04-02 10:42:08'); INSERT INTO `admin_operation_log` VALUES ('1549', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"9\",\"status\":null,\"search\":null}', '2020-04-02 10:42:18', '2020-04-02 10:42:18'); INSERT INTO `admin_operation_log` VALUES ('1550', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"9\",\"status\":null,\"search\":null}', '2020-04-02 10:47:33', '2020-04-02 10:47:33'); INSERT INTO `admin_operation_log` VALUES ('1551', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"17\",\"status\":null,\"search\":null}', '2020-04-02 10:48:23', '2020-04-02 10:48:23'); INSERT INTO `admin_operation_log` VALUES ('1552', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 10:48:28', '2020-04-02 10:48:28'); INSERT INTO `admin_operation_log` VALUES ('1553', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":null}', '2020-04-02 10:48:32', '2020-04-02 10:48:32'); INSERT INTO `admin_operation_log` VALUES ('1554', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":\"\\u4f1a\"}', '2020-04-02 10:48:36', '2020-04-02 10:48:36'); INSERT INTO `admin_operation_log` VALUES ('1555', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":null}', '2020-04-02 10:49:43', '2020-04-02 10:49:43'); INSERT INTO `admin_operation_log` VALUES ('1556', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":\"\\u4f1a\"}', '2020-04-02 10:49:48', '2020-04-02 10:49:48'); INSERT INTO `admin_operation_log` VALUES ('1557', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":\"\\u4f1a\"}', '2020-04-02 10:51:45', '2020-04-02 10:51:45'); INSERT INTO `admin_operation_log` VALUES ('1558', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":\"\\u4f1a\"}', '2020-04-02 10:52:46', '2020-04-02 10:52:46'); INSERT INTO `admin_operation_log` VALUES ('1559', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":\"\\u4f1a\"}', '2020-04-02 10:52:59', '2020-04-02 10:52:59'); INSERT INTO `admin_operation_log` VALUES ('1560', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":\"\\u4f1a\"}', '2020-04-02 10:59:24', '2020-04-02 10:59:24'); INSERT INTO `admin_operation_log` VALUES ('1561', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":\"\\u4f1a\"}', '2020-04-02 10:59:29', '2020-04-02 10:59:29'); INSERT INTO `admin_operation_log` VALUES ('1562', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"search\":null}', '2020-04-02 10:59:33', '2020-04-02 10:59:33'); INSERT INTO `admin_operation_log` VALUES ('1563', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"search\":\"\\u4f1a\"}', '2020-04-02 10:59:36', '2020-04-02 10:59:36'); INSERT INTO `admin_operation_log` VALUES ('1564', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"search\":\"\\u4f1a\"}', '2020-04-02 11:00:06', '2020-04-02 11:00:06'); INSERT INTO `admin_operation_log` VALUES ('1565', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"search\":null}', '2020-04-02 11:00:11', '2020-04-02 11:00:11'); INSERT INTO `admin_operation_log` VALUES ('1566', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":\"\\u4f1a\"}', '2020-04-02 11:00:21', '2020-04-02 11:00:21'); INSERT INTO `admin_operation_log` VALUES ('1567', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"0\",\"search\":null}', '2020-04-02 11:00:26', '2020-04-02 11:00:26'); INSERT INTO `admin_operation_log` VALUES ('1568', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:04:55', '2020-04-02 11:04:55'); INSERT INTO `admin_operation_log` VALUES ('1569', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:04:59', '2020-04-02 11:04:59'); INSERT INTO `admin_operation_log` VALUES ('1570', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"status\":null,\"search\":\"\\u4f1a\"}', '2020-04-02 11:05:06', '2020-04-02 11:05:06'); INSERT INTO `admin_operation_log` VALUES ('1571', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"status\":null,\"search\":\"\\u4f1a\"}', '2020-04-02 11:05:12', '2020-04-02 11:05:12'); INSERT INTO `admin_operation_log` VALUES ('1572', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"status\":null,\"search\":\"\\u4f1a\"}', '2020-04-02 11:05:43', '2020-04-02 11:05:43'); INSERT INTO `admin_operation_log` VALUES ('1573', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"category\":\"13\",\"search\":\"\\u4f1a\"}', '2020-04-02 11:05:46', '2020-04-02 11:05:46'); INSERT INTO `admin_operation_log` VALUES ('1574', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:37:21', '2020-04-02 11:37:21'); INSERT INTO `admin_operation_log` VALUES ('1575', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:38:50', '2020-04-02 11:38:50'); INSERT INTO `admin_operation_log` VALUES ('1576', '1', 'admin/course/category/create', 'GET', '127.0.0.1', '[]', '2020-04-02 11:38:54', '2020-04-02 11:38:54'); INSERT INTO `admin_operation_log` VALUES ('1577', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:43:59', '2020-04-02 11:43:59'); INSERT INTO `admin_operation_log` VALUES ('1578', '1', 'admin/course/category/create', 'GET', '127.0.0.1', '[]', '2020-04-02 11:44:04', '2020-04-02 11:44:04'); INSERT INTO `admin_operation_log` VALUES ('1579', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:54:09', '2020-04-02 11:54:09'); INSERT INTO `admin_operation_log` VALUES ('1580', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:56:04', '2020-04-02 11:56:04'); INSERT INTO `admin_operation_log` VALUES ('1581', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:56:25', '2020-04-02 11:56:25'); INSERT INTO `admin_operation_log` VALUES ('1582', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 11:56:39', '2020-04-02 11:56:39'); INSERT INTO `admin_operation_log` VALUES ('1583', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 11:56:40', '2020-04-02 11:56:40'); INSERT INTO `admin_operation_log` VALUES ('1584', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 11:57:01', '2020-04-02 11:57:01'); INSERT INTO `admin_operation_log` VALUES ('1585', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 12:02:19', '2020-04-02 12:02:19'); INSERT INTO `admin_operation_log` VALUES ('1586', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:02:21', '2020-04-02 12:02:21'); INSERT INTO `admin_operation_log` VALUES ('1587', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:02:46', '2020-04-02 12:02:46'); INSERT INTO `admin_operation_log` VALUES ('1588', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:03:10', '2020-04-02 12:03:10'); INSERT INTO `admin_operation_log` VALUES ('1589', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:05:17', '2020-04-02 12:05:17'); INSERT INTO `admin_operation_log` VALUES ('1590', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:06:11', '2020-04-02 12:06:11'); INSERT INTO `admin_operation_log` VALUES ('1591', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:06:56', '2020-04-02 12:06:56'); INSERT INTO `admin_operation_log` VALUES ('1592', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:07:16', '2020-04-02 12:07:16'); INSERT INTO `admin_operation_log` VALUES ('1593', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:07:34', '2020-04-02 12:07:34'); INSERT INTO `admin_operation_log` VALUES ('1594', '1', 'admin', 'GET', '127.0.0.1', '[]', '2020-04-02 12:08:07', '2020-04-02 12:08:07'); INSERT INTO `admin_operation_log` VALUES ('1595', '1', 'admin/store/dashboard', 'GET', '127.0.0.1', '[]', '2020-04-02 12:08:12', '2020-04-02 12:08:12'); INSERT INTO `admin_operation_log` VALUES ('1596', '1', 'admin/store/getMonthData', 'GET', '127.0.0.1', '[]', '2020-04-02 12:08:13', '2020-04-02 12:08:13'); INSERT INTO `admin_operation_log` VALUES ('1597', '1', 'admin/store/promotion/seckill', 'GET', '127.0.0.1', '[]', '2020-04-02 12:08:16', '2020-04-02 12:08:16'); INSERT INTO `admin_operation_log` VALUES ('1598', '1', 'admin/store/promotion/seckill/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:08:19', '2020-04-02 12:08:19'); INSERT INTO `admin_operation_log` VALUES ('1599', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:13:52', '2020-04-02 12:13:52'); INSERT INTO `admin_operation_log` VALUES ('1600', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:14:55', '2020-04-02 12:14:55'); INSERT INTO `admin_operation_log` VALUES ('1601', '1', 'admin/store/promotion/seckill/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:16:26', '2020-04-02 12:16:26'); INSERT INTO `admin_operation_log` VALUES ('1602', '1', 'admin/store/promotion/seckill/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:16:30', '2020-04-02 12:16:30'); INSERT INTO `admin_operation_log` VALUES ('1603', '1', 'admin/store/promotion/seckill/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:18:25', '2020-04-02 12:18:25'); INSERT INTO `admin_operation_log` VALUES ('1604', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:18:30', '2020-04-02 12:18:30'); INSERT INTO `admin_operation_log` VALUES ('1605', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:18:39', '2020-04-02 12:18:39'); INSERT INTO `admin_operation_log` VALUES ('1606', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:18:54', '2020-04-02 12:18:54'); INSERT INTO `admin_operation_log` VALUES ('1607', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:20:55', '2020-04-02 12:20:55'); INSERT INTO `admin_operation_log` VALUES ('1608', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:21:41', '2020-04-02 12:21:41'); INSERT INTO `admin_operation_log` VALUES ('1609', '1', 'admin/store/promotion/seckill/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:22:31', '2020-04-02 12:22:31'); INSERT INTO `admin_operation_log` VALUES ('1610', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:27:18', '2020-04-02 12:27:18'); INSERT INTO `admin_operation_log` VALUES ('1611', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:27:23', '2020-04-02 12:27:23'); INSERT INTO `admin_operation_log` VALUES ('1612', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:27:24', '2020-04-02 12:27:24'); INSERT INTO `admin_operation_log` VALUES ('1613', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:27:25', '2020-04-02 12:27:25'); INSERT INTO `admin_operation_log` VALUES ('1614', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:27:25', '2020-04-02 12:27:25'); INSERT INTO `admin_operation_log` VALUES ('1615', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:27:25', '2020-04-02 12:27:25'); INSERT INTO `admin_operation_log` VALUES ('1616', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:27:26', '2020-04-02 12:27:26'); INSERT INTO `admin_operation_log` VALUES ('1617', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:29:45', '2020-04-02 12:29:45'); INSERT INTO `admin_operation_log` VALUES ('1618', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:29:47', '2020-04-02 12:29:47'); INSERT INTO `admin_operation_log` VALUES ('1619', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:29:59', '2020-04-02 12:29:59'); INSERT INTO `admin_operation_log` VALUES ('1620', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:30:14', '2020-04-02 12:30:14'); INSERT INTO `admin_operation_log` VALUES ('1621', '1', 'admin/store/promotion/seckill/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:30:27', '2020-04-02 12:30:27'); INSERT INTO `admin_operation_log` VALUES ('1622', '1', 'admin/store/promotion/seckill/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:30:36', '2020-04-02 12:30:36'); INSERT INTO `admin_operation_log` VALUES ('1623', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:32:18', '2020-04-02 12:32:18'); INSERT INTO `admin_operation_log` VALUES ('1624', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:35:57', '2020-04-02 12:35:57'); INSERT INTO `admin_operation_log` VALUES ('1625', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:36:10', '2020-04-02 12:36:10'); INSERT INTO `admin_operation_log` VALUES ('1626', '1', 'admin/store/point-mall/orders', 'GET', '127.0.0.1', '{\"status\":\"all\"}', '2020-04-02 12:56:03', '2020-04-02 12:56:03'); INSERT INTO `admin_operation_log` VALUES ('1627', '1', 'admin/store/point-mall/orders', 'GET', '127.0.0.1', '{\"status\":\"2\"}', '2020-04-02 12:56:14', '2020-04-02 12:56:14'); INSERT INTO `admin_operation_log` VALUES ('1628', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 12:57:37', '2020-04-02 12:57:37'); INSERT INTO `admin_operation_log` VALUES ('1629', '1', 'admin/store/promotion/discount', 'GET', '127.0.0.1', '[]', '2020-04-02 13:03:11', '2020-04-02 13:03:11'); INSERT INTO `admin_operation_log` VALUES ('1630', '1', 'admin/store/promotion/discount/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:03:13', '2020-04-02 13:03:13'); INSERT INTO `admin_operation_log` VALUES ('1631', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:05:04', '2020-04-02 13:05:04'); INSERT INTO `admin_operation_log` VALUES ('1632', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:05:49', '2020-04-02 13:05:49'); INSERT INTO `admin_operation_log` VALUES ('1633', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:06:26', '2020-04-02 13:06:26'); INSERT INTO `admin_operation_log` VALUES ('1634', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:06:44', '2020-04-02 13:06:44'); INSERT INTO `admin_operation_log` VALUES ('1635', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:08:28', '2020-04-02 13:08:28'); INSERT INTO `admin_operation_log` VALUES ('1636', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:12:20', '2020-04-02 13:12:20'); INSERT INTO `admin_operation_log` VALUES ('1637', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:12:47', '2020-04-02 13:12:47'); INSERT INTO `admin_operation_log` VALUES ('1638', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:12:55', '2020-04-02 13:12:55'); INSERT INTO `admin_operation_log` VALUES ('1639', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:13:29', '2020-04-02 13:13:29'); INSERT INTO `admin_operation_log` VALUES ('1640', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:13:36', '2020-04-02 13:13:36'); INSERT INTO `admin_operation_log` VALUES ('1641', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:13:38', '2020-04-02 13:13:38'); INSERT INTO `admin_operation_log` VALUES ('1642', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:13:55', '2020-04-02 13:13:55'); INSERT INTO `admin_operation_log` VALUES ('1643', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:14:23', '2020-04-02 13:14:23'); INSERT INTO `admin_operation_log` VALUES ('1644', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:14:33', '2020-04-02 13:14:33'); INSERT INTO `admin_operation_log` VALUES ('1645', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:14:47', '2020-04-02 13:14:47'); INSERT INTO `admin_operation_log` VALUES ('1646', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:15:17', '2020-04-02 13:15:17'); INSERT INTO `admin_operation_log` VALUES ('1647', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:15:26', '2020-04-02 13:15:26'); INSERT INTO `admin_operation_log` VALUES ('1648', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:15:44', '2020-04-02 13:15:44'); INSERT INTO `admin_operation_log` VALUES ('1649', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:15:53', '2020-04-02 13:15:53'); INSERT INTO `admin_operation_log` VALUES ('1650', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:16:24', '2020-04-02 13:16:24'); INSERT INTO `admin_operation_log` VALUES ('1651', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:17:46', '2020-04-02 13:17:46'); INSERT INTO `admin_operation_log` VALUES ('1652', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:18:02', '2020-04-02 13:18:02'); INSERT INTO `admin_operation_log` VALUES ('1653', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:18:18', '2020-04-02 13:18:18'); INSERT INTO `admin_operation_log` VALUES ('1654', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:18:34', '2020-04-02 13:18:34'); INSERT INTO `admin_operation_log` VALUES ('1655', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:18:36', '2020-04-02 13:18:36'); INSERT INTO `admin_operation_log` VALUES ('1656', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:18:39', '2020-04-02 13:18:39'); INSERT INTO `admin_operation_log` VALUES ('1657', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:18:53', '2020-04-02 13:18:53'); INSERT INTO `admin_operation_log` VALUES ('1658', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:19:13', '2020-04-02 13:19:13'); INSERT INTO `admin_operation_log` VALUES ('1659', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:19:48', '2020-04-02 13:19:48'); INSERT INTO `admin_operation_log` VALUES ('1660', '1', 'admin/course/advertising/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"resource\":null,\"file\":null,\"description\":\"asdasdasd\",\"site\":\"\\u9996\\u9875\",\"sort\":\"2\"}', '2020-04-02 13:20:01', '2020-04-02 13:20:01'); INSERT INTO `admin_operation_log` VALUES ('1661', '1', 'admin/course/advertising/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"resource\":null,\"file\":null,\"description\":\"asdasdasd\",\"site\":\"\\u9996\\u9875\",\"sort\":\"2\"}', '2020-04-02 13:20:45', '2020-04-02 13:20:45'); INSERT INTO `admin_operation_log` VALUES ('1662', '1', 'admin/course/advertising/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"resource\":null,\"file\":null,\"description\":\"asdasdasd\",\"site\":\"\\u9996\\u9875\",\"sort\":\"2\"}', '2020-04-02 13:21:15', '2020-04-02 13:21:15'); INSERT INTO `admin_operation_log` VALUES ('1663', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:21:21', '2020-04-02 13:21:21'); INSERT INTO `admin_operation_log` VALUES ('1664', '1', 'admin/course/category/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:22:19', '2020-04-02 13:22:19'); INSERT INTO `admin_operation_log` VALUES ('1665', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:22:32', '2020-04-02 13:22:32'); INSERT INTO `admin_operation_log` VALUES ('1666', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:23:35', '2020-04-02 13:23:35'); INSERT INTO `admin_operation_log` VALUES ('1667', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:25:17', '2020-04-02 13:25:17'); INSERT INTO `admin_operation_log` VALUES ('1668', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:25:28', '2020-04-02 13:25:28'); INSERT INTO `admin_operation_log` VALUES ('1669', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:25:53', '2020-04-02 13:25:53'); INSERT INTO `admin_operation_log` VALUES ('1670', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:27:36', '2020-04-02 13:27:36'); INSERT INTO `admin_operation_log` VALUES ('1671', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:28:15', '2020-04-02 13:28:15'); INSERT INTO `admin_operation_log` VALUES ('1672', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:29:40', '2020-04-02 13:29:40'); INSERT INTO `admin_operation_log` VALUES ('1673', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:30:20', '2020-04-02 13:30:20'); INSERT INTO `admin_operation_log` VALUES ('1674', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:31:12', '2020-04-02 13:31:12'); INSERT INTO `admin_operation_log` VALUES ('1675', '1', 'admin/course/advertising/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"resource\":null,\"file\":null,\"description\":\"asdasd\",\"site\":\"\\u9996\\u9875\",\"sort\":\"111\"}', '2020-04-02 13:31:29', '2020-04-02 13:31:29'); INSERT INTO `admin_operation_log` VALUES ('1676', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:32:59', '2020-04-02 13:32:59'); INSERT INTO `admin_operation_log` VALUES ('1677', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:33:00', '2020-04-02 13:33:00'); INSERT INTO `admin_operation_log` VALUES ('1678', '1', 'admin/course/advertising/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"file\":null,\"description\":\"asddd\",\"site\":\"\\u9996\\u9875\",\"sort\":\"8\"}', '2020-04-02 13:33:22', '2020-04-02 13:33:22'); INSERT INTO `admin_operation_log` VALUES ('1679', '1', 'admin/course/advertising/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"file\":null,\"description\":\"asddd\",\"site\":\"\\u9996\\u9875\",\"sort\":\"8\"}', '2020-04-02 13:34:10', '2020-04-02 13:34:10'); INSERT INTO `admin_operation_log` VALUES ('1680', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:34:11', '2020-04-02 13:34:11'); INSERT INTO `admin_operation_log` VALUES ('1681', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:35:09', '2020-04-02 13:35:09'); INSERT INTO `admin_operation_log` VALUES ('1682', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:35:38', '2020-04-02 13:35:38'); INSERT INTO `admin_operation_log` VALUES ('1683', '1', 'admin/course/category/category_sort', 'GET', '127.0.0.1', '{\"id\":\"1\",\"sort\":\"2\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 13:36:14', '2020-04-02 13:36:14'); INSERT INTO `admin_operation_log` VALUES ('1684', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:38:37', '2020-04-02 13:38:37'); INSERT INTO `admin_operation_log` VALUES ('1685', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:39:10', '2020-04-02 13:39:10'); INSERT INTO `admin_operation_log` VALUES ('1686', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:39:31', '2020-04-02 13:39:31'); INSERT INTO `admin_operation_log` VALUES ('1687', '1', 'admin/course/category/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:40:22', '2020-04-02 13:40:22'); INSERT INTO `admin_operation_log` VALUES ('1688', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:40:32', '2020-04-02 13:40:32'); INSERT INTO `admin_operation_log` VALUES ('1689', '1', 'admin/course/advertising/edit', 'GET', '127.0.0.1', '{\"id\":\"1\"}', '2020-04-02 13:40:50', '2020-04-02 13:40:50'); INSERT INTO `admin_operation_log` VALUES ('1690', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:42:27', '2020-04-02 13:42:27'); INSERT INTO `admin_operation_log` VALUES ('1691', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:42:34', '2020-04-02 13:42:34'); INSERT INTO `admin_operation_log` VALUES ('1692', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:43:10', '2020-04-02 13:43:10'); INSERT INTO `admin_operation_log` VALUES ('1693', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:43:47', '2020-04-02 13:43:47'); INSERT INTO `admin_operation_log` VALUES ('1694', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:43:58', '2020-04-02 13:43:58'); INSERT INTO `admin_operation_log` VALUES ('1695', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:44:03', '2020-04-02 13:44:03'); INSERT INTO `admin_operation_log` VALUES ('1696', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:45:38', '2020-04-02 13:45:38'); INSERT INTO `admin_operation_log` VALUES ('1697', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:45:55', '2020-04-02 13:45:55'); INSERT INTO `admin_operation_log` VALUES ('1698', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:46:01', '2020-04-02 13:46:01'); INSERT INTO `admin_operation_log` VALUES ('1699', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:46:25', '2020-04-02 13:46:25'); INSERT INTO `admin_operation_log` VALUES ('1700', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:46:28', '2020-04-02 13:46:28'); INSERT INTO `admin_operation_log` VALUES ('1701', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 13:46:33', '2020-04-02 13:46:33'); INSERT INTO `admin_operation_log` VALUES ('1702', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:46:39', '2020-04-02 13:46:39'); INSERT INTO `admin_operation_log` VALUES ('1703', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:47:33', '2020-04-02 13:47:33'); INSERT INTO `admin_operation_log` VALUES ('1704', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:49:05', '2020-04-02 13:49:05'); INSERT INTO `admin_operation_log` VALUES ('1705', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:50:51', '2020-04-02 13:50:51'); INSERT INTO `admin_operation_log` VALUES ('1706', '1', 'admin/course/advertising/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 13:52:02', '2020-04-02 13:52:02'); INSERT INTO `admin_operation_log` VALUES ('1707', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 13:52:10', '2020-04-02 13:52:10'); INSERT INTO `admin_operation_log` VALUES ('1708', '1', 'admin/course/category/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:52:24', '2020-04-02 13:52:24'); INSERT INTO `admin_operation_log` VALUES ('1709', '1', 'admin/course/category/edit/8', 'GET', '127.0.0.1', '[]', '2020-04-02 13:52:26', '2020-04-02 13:52:26'); INSERT INTO `admin_operation_log` VALUES ('1710', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:52:33', '2020-04-02 13:52:33'); INSERT INTO `admin_operation_log` VALUES ('1711', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:52:35', '2020-04-02 13:52:35'); INSERT INTO `admin_operation_log` VALUES ('1712', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 13:52:47', '2020-04-02 13:52:47'); INSERT INTO `admin_operation_log` VALUES ('1713', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 13:52:54', '2020-04-02 13:52:54'); INSERT INTO `admin_operation_log` VALUES ('1714', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 13:54:48', '2020-04-02 13:54:48'); INSERT INTO `admin_operation_log` VALUES ('1715', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 13:55:25', '2020-04-02 13:55:25'); INSERT INTO `admin_operation_log` VALUES ('1716', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 13:55:41', '2020-04-02 13:55:41'); INSERT INTO `admin_operation_log` VALUES ('1717', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 13:55:58', '2020-04-02 13:55:58'); INSERT INTO `admin_operation_log` VALUES ('1718', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 13:56:12', '2020-04-02 13:56:12'); INSERT INTO `admin_operation_log` VALUES ('1719', '1', 'admin/course/advertising/update', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"description\":\"qweqwe\",\"site\":\"0\",\"sort\":\"8\",\"4\":null}', '2020-04-02 13:56:20', '2020-04-02 13:56:20'); INSERT INTO `admin_operation_log` VALUES ('1720', '1', 'admin/course/advertising/update', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"description\":\"qweqwe\",\"site\":\"0\",\"sort\":\"8\",\"4\":null}', '2020-04-02 13:59:35', '2020-04-02 13:59:35'); INSERT INTO `admin_operation_log` VALUES ('1721', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:02:39', '2020-04-02 14:02:39'); INSERT INTO `admin_operation_log` VALUES ('1722', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:02:41', '2020-04-02 14:02:41'); INSERT INTO `admin_operation_log` VALUES ('1723', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 14:02:44', '2020-04-02 14:02:44'); INSERT INTO `admin_operation_log` VALUES ('1724', '1', 'admin/course/advertising/update/4', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"description\":\"asdasd\",\"site\":\"\\u4e2a\\u4eba\\u4e2d\\u5fc3\",\"sort\":\"81\"}', '2020-04-02 14:02:51', '2020-04-02 14:02:51'); INSERT INTO `admin_operation_log` VALUES ('1725', '1', 'admin/course/advertising/update/4', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"description\":\"asdasd\",\"site\":\"\\u4e2a\\u4eba\\u4e2d\\u5fc3\",\"sort\":\"81\"}', '2020-04-02 14:03:20', '2020-04-02 14:03:20'); INSERT INTO `admin_operation_log` VALUES ('1726', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:03:22', '2020-04-02 14:03:22'); INSERT INTO `admin_operation_log` VALUES ('1727', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 14:03:25', '2020-04-02 14:03:25'); INSERT INTO `admin_operation_log` VALUES ('1728', '1', 'admin/course/advertising/update/4', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"description\":\"qweqwe\",\"site\":\"\\u9996\\u9875\",\"sort\":\"81\"}', '2020-04-02 14:04:32', '2020-04-02 14:04:32'); INSERT INTO `admin_operation_log` VALUES ('1729', '1', 'admin/course/advertising/update/4', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"description\":\"qweqwe\",\"site\":\"\\u9996\\u9875\",\"sort\":\"81\"}', '2020-04-02 14:04:56', '2020-04-02 14:04:56'); INSERT INTO `admin_operation_log` VALUES ('1730', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:04:58', '2020-04-02 14:04:58'); INSERT INTO `admin_operation_log` VALUES ('1731', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 14:05:01', '2020-04-02 14:05:01'); INSERT INTO `admin_operation_log` VALUES ('1732', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 14:07:05', '2020-04-02 14:07:05'); INSERT INTO `admin_operation_log` VALUES ('1733', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 14:08:57', '2020-04-02 14:08:57'); INSERT INTO `admin_operation_log` VALUES ('1734', '1', 'admin/course/advertising/update/4', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"description\":\"qweqwe\",\"site\":\"\\u9996\\u9875\",\"sort\":\"81\"}', '2020-04-02 14:09:02', '2020-04-02 14:09:02'); INSERT INTO `admin_operation_log` VALUES ('1735', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:09:03', '2020-04-02 14:09:03'); INSERT INTO `admin_operation_log` VALUES ('1736', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 14:09:06', '2020-04-02 14:09:06'); INSERT INTO `admin_operation_log` VALUES ('1737', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 14:09:25', '2020-04-02 14:09:25'); INSERT INTO `admin_operation_log` VALUES ('1738', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:11:27', '2020-04-02 14:11:27'); INSERT INTO `admin_operation_log` VALUES ('1739', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:11:41', '2020-04-02 14:11:41'); INSERT INTO `admin_operation_log` VALUES ('1740', '1', 'admin/course/advertising/check', 'GET', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:11:51', '2020-04-02 14:11:51'); INSERT INTO `admin_operation_log` VALUES ('1741', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:14:00', '2020-04-02 14:14:00'); INSERT INTO `admin_operation_log` VALUES ('1742', '1', 'admin/course/advertising/check', 'GET', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:14:03', '2020-04-02 14:14:03'); INSERT INTO `admin_operation_log` VALUES ('1743', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:15:04', '2020-04-02 14:15:04'); INSERT INTO `admin_operation_log` VALUES ('1744', '1', 'admin/course/advertising/check', 'GET', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:15:06', '2020-04-02 14:15:06'); INSERT INTO `admin_operation_log` VALUES ('1745', '1', 'admin/course/category/delete', 'POST', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:15:06', '2020-04-02 14:15:06'); INSERT INTO `admin_operation_log` VALUES ('1746', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:17:19', '2020-04-02 14:17:19'); INSERT INTO `admin_operation_log` VALUES ('1747', '1', 'admin/course/advertising/check', 'GET', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:17:22', '2020-04-02 14:17:22'); INSERT INTO `admin_operation_log` VALUES ('1748', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:17:45', '2020-04-02 14:17:45'); INSERT INTO `admin_operation_log` VALUES ('1749', '1', 'admin/course/advertising/check', 'GET', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:17:47', '2020-04-02 14:17:47'); INSERT INTO `admin_operation_log` VALUES ('1750', '1', 'admin/course/advertising/destory', 'POST', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:17:48', '2020-04-02 14:17:48'); INSERT INTO `admin_operation_log` VALUES ('1751', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:18:32', '2020-04-02 14:18:32'); INSERT INTO `admin_operation_log` VALUES ('1752', '1', 'admin/course/advertising/check', 'GET', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:18:34', '2020-04-02 14:18:34'); INSERT INTO `admin_operation_log` VALUES ('1753', '1', 'admin/course/advertising/destroy', 'POST', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:18:34', '2020-04-02 14:18:34'); INSERT INTO `admin_operation_log` VALUES ('1754', '1', 'admin/course/advertising/check', 'GET', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:21:24', '2020-04-02 14:21:24'); INSERT INTO `admin_operation_log` VALUES ('1755', '1', 'admin/course/advertising/destroy', 'POST', '127.0.0.1', '{\"id\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:21:25', '2020-04-02 14:21:25'); INSERT INTO `admin_operation_log` VALUES ('1756', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:21:26', '2020-04-02 14:21:26'); INSERT INTO `admin_operation_log` VALUES ('1757', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:21:32', '2020-04-02 14:21:32'); INSERT INTO `admin_operation_log` VALUES ('1758', '1', 'admin/course/category/category_sort', 'GET', '127.0.0.1', '{\"id\":\"2\",\"sort\":\"1\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:21:45', '2020-04-02 14:21:45'); INSERT INTO `admin_operation_log` VALUES ('1759', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:24:51', '2020-04-02 14:24:51'); INSERT INTO `admin_operation_log` VALUES ('1760', '1', 'admin/course/advertising/advertising_sort', 'GET', '127.0.0.1', '{\"id\":\"2\",\"sort\":\"23\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 14:24:57', '2020-04-02 14:24:57'); INSERT INTO `admin_operation_log` VALUES ('1761', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:24:59', '2020-04-02 14:24:59'); INSERT INTO `admin_operation_log` VALUES ('1762', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:25:58', '2020-04-02 14:25:58'); INSERT INTO `admin_operation_log` VALUES ('1763', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:26:09', '2020-04-02 14:26:09'); INSERT INTO `admin_operation_log` VALUES ('1764', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:31:00', '2020-04-02 14:31:00'); INSERT INTO `admin_operation_log` VALUES ('1765', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:32:03', '2020-04-02 14:32:03'); INSERT INTO `admin_operation_log` VALUES ('1766', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:41:02', '2020-04-02 14:41:02'); INSERT INTO `admin_operation_log` VALUES ('1767', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:43:44', '2020-04-02 14:43:44'); INSERT INTO `admin_operation_log` VALUES ('1768', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:44:04', '2020-04-02 14:44:04'); INSERT INTO `admin_operation_log` VALUES ('1769', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:44:28', '2020-04-02 14:44:28'); INSERT INTO `admin_operation_log` VALUES ('1770', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:45:41', '2020-04-02 14:45:41'); INSERT INTO `admin_operation_log` VALUES ('1771', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:46:00', '2020-04-02 14:46:00'); INSERT INTO `admin_operation_log` VALUES ('1772', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:46:37', '2020-04-02 14:46:37'); INSERT INTO `admin_operation_log` VALUES ('1773', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 14:49:29', '2020-04-02 14:49:29'); INSERT INTO `admin_operation_log` VALUES ('1774', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '{\"search\":null}', '2020-04-02 14:49:39', '2020-04-02 14:49:39'); INSERT INTO `admin_operation_log` VALUES ('1775', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:50:03', '2020-04-02 14:50:03'); INSERT INTO `admin_operation_log` VALUES ('1776', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:51:50', '2020-04-02 14:51:50'); INSERT INTO `admin_operation_log` VALUES ('1777', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:54:18', '2020-04-02 14:54:18'); INSERT INTO `admin_operation_log` VALUES ('1778', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:55:14', '2020-04-02 14:55:14'); INSERT INTO `admin_operation_log` VALUES ('1779', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:55:55', '2020-04-02 14:55:55'); INSERT INTO `admin_operation_log` VALUES ('1780', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:57:48', '2020-04-02 14:57:48'); INSERT INTO `admin_operation_log` VALUES ('1781', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:58:18', '2020-04-02 14:58:18'); INSERT INTO `admin_operation_log` VALUES ('1782', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:58:56', '2020-04-02 14:58:56'); INSERT INTO `admin_operation_log` VALUES ('1783', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 14:59:59', '2020-04-02 14:59:59'); INSERT INTO `admin_operation_log` VALUES ('1784', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"path\":\"asd\",\"description\":\"assssssssssssssssd\"}', '2020-04-02 15:00:10', '2020-04-02 15:00:10'); INSERT INTO `admin_operation_log` VALUES ('1785', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"path\":\"asd\",\"description\":\"assssssssssssssssd\"}', '2020-04-02 15:01:56', '2020-04-02 15:01:56'); INSERT INTO `admin_operation_log` VALUES ('1786', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"path\":\"asd\",\"description\":\"assssssssssssssssd\"}', '2020-04-02 15:02:22', '2020-04-02 15:02:22'); INSERT INTO `admin_operation_log` VALUES ('1787', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"path\":\"asd\",\"description\":\"assssssssssssssssd\"}', '2020-04-02 15:02:31', '2020-04-02 15:02:31'); INSERT INTO `admin_operation_log` VALUES ('1788', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"path\":\"asd\",\"description\":\"assssssssssssssssd\"}', '2020-04-02 15:03:26', '2020-04-02 15:03:26'); INSERT INTO `admin_operation_log` VALUES ('1789', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:03:28', '2020-04-02 15:03:28'); INSERT INTO `admin_operation_log` VALUES ('1790', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 15:05:33', '2020-04-02 15:05:33'); INSERT INTO `admin_operation_log` VALUES ('1791', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 15:05:50', '2020-04-02 15:05:50'); INSERT INTO `admin_operation_log` VALUES ('1792', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"qwe\",\"path\":\"qwe\",\"status\":\"1\",\"description\":\"qwe\"}', '2020-04-02 15:06:12', '2020-04-02 15:06:12'); INSERT INTO `admin_operation_log` VALUES ('1793', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"qwe\",\"path\":\"qwe\",\"status\":\"1\",\"description\":\"qwe\"}', '2020-04-02 15:06:40', '2020-04-02 15:06:40'); INSERT INTO `admin_operation_log` VALUES ('1794', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:06:42', '2020-04-02 15:06:42'); INSERT INTO `admin_operation_log` VALUES ('1795', '1', 'admin/course/advertisingSite/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 15:06:44', '2020-04-02 15:06:44'); INSERT INTO `admin_operation_log` VALUES ('1796', '1', 'admin/course/advertisingSite/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 15:08:05', '2020-04-02 15:08:05'); INSERT INTO `admin_operation_log` VALUES ('1797', '1', 'admin/course/advertisingSite/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 15:08:54', '2020-04-02 15:08:54'); INSERT INTO `admin_operation_log` VALUES ('1798', '1', 'admin/course/advertisingSite/update/2', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"qwe123\",\"path\":\"qwe123\",\"status\":\"1\",\"description\":\"qwe123\"}', '2020-04-02 15:09:01', '2020-04-02 15:09:01'); INSERT INTO `admin_operation_log` VALUES ('1799', '1', 'admin/course/advertisingSite/update/2', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"qwe123\",\"path\":\"qwe123\",\"status\":\"1\",\"description\":\"qwe123\"}', '2020-04-02 15:09:37', '2020-04-02 15:09:37'); INSERT INTO `admin_operation_log` VALUES ('1800', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:09:39', '2020-04-02 15:09:39'); INSERT INTO `admin_operation_log` VALUES ('1801', '1', 'admin/course/advertisingSite/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 15:09:41', '2020-04-02 15:09:41'); INSERT INTO `admin_operation_log` VALUES ('1802', '1', 'admin/course/advertisingSite/update/2', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"qwe123\",\"path\":\"qwe123\",\"status\":\"0\",\"description\":\"qwe123\"}', '2020-04-02 15:09:45', '2020-04-02 15:09:45'); INSERT INTO `admin_operation_log` VALUES ('1803', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:09:46', '2020-04-02 15:09:46'); INSERT INTO `admin_operation_log` VALUES ('1804', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 15:10:09', '2020-04-02 15:10:09'); INSERT INTO `admin_operation_log` VALUES ('1805', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"qwe\",\"path\":\"qweqwe\",\"status\":\"0\",\"description\":\"qweqwe\"}', '2020-04-02 15:10:14', '2020-04-02 15:10:14'); INSERT INTO `admin_operation_log` VALUES ('1806', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:10:16', '2020-04-02 15:10:16'); INSERT INTO `admin_operation_log` VALUES ('1807', '1', 'admin/course/advertisingSite/check', 'GET', '127.0.0.1', '{\"id\":\"3\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:10:20', '2020-04-02 15:10:20'); INSERT INTO `admin_operation_log` VALUES ('1808', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:11:26', '2020-04-02 15:11:26'); INSERT INTO `admin_operation_log` VALUES ('1809', '1', 'admin/course/advertisingSite/check', 'GET', '127.0.0.1', '{\"id\":\"3\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:11:28', '2020-04-02 15:11:28'); INSERT INTO `admin_operation_log` VALUES ('1810', '1', 'admin/course/advertisingSite/check', 'GET', '127.0.0.1', '{\"id\":\"3\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:11:39', '2020-04-02 15:11:39'); INSERT INTO `admin_operation_log` VALUES ('1811', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:11:50', '2020-04-02 15:11:50'); INSERT INTO `admin_operation_log` VALUES ('1812', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:11:51', '2020-04-02 15:11:51'); INSERT INTO `admin_operation_log` VALUES ('1813', '1', 'admin/course/advertisingSite/check', 'GET', '127.0.0.1', '{\"id\":\"3\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:11:54', '2020-04-02 15:11:54'); INSERT INTO `admin_operation_log` VALUES ('1814', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:13:54', '2020-04-02 15:13:54'); INSERT INTO `admin_operation_log` VALUES ('1815', '1', 'admin/course/advertisingSite/destroy', 'POST', '127.0.0.1', '{\"id\":\"3\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:13:57', '2020-04-02 15:13:57'); INSERT INTO `admin_operation_log` VALUES ('1816', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:13:59', '2020-04-02 15:13:59'); INSERT INTO `admin_operation_log` VALUES ('1817', '1', 'admin/course/advertisingSite/destroy', 'POST', '127.0.0.1', '{\"id\":\"2\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:16:06', '2020-04-02 15:16:06'); INSERT INTO `admin_operation_log` VALUES ('1818', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:16:08', '2020-04-02 15:16:08'); INSERT INTO `admin_operation_log` VALUES ('1819', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:16:57', '2020-04-02 15:16:57'); INSERT INTO `admin_operation_log` VALUES ('1820', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:18:24', '2020-04-02 15:18:24'); INSERT INTO `admin_operation_log` VALUES ('1821', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:21:38', '2020-04-02 15:21:38'); INSERT INTO `admin_operation_log` VALUES ('1822', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:22:30', '2020-04-02 15:22:30'); INSERT INTO `admin_operation_log` VALUES ('1823', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:23:32', '2020-04-02 15:23:32'); INSERT INTO `admin_operation_log` VALUES ('1824', '1', 'admin/course/advertisingSite/status', 'POST', '127.0.0.1', '{\"status\":\"1\",\"modelId\":\"1\"}', '2020-04-02 15:23:34', '2020-04-02 15:23:34'); INSERT INTO `admin_operation_log` VALUES ('1825', '1', 'admin/course/advertisingSite/status', 'POST', '127.0.0.1', '{\"status\":\"0\",\"modelId\":\"1\"}', '2020-04-02 15:23:37', '2020-04-02 15:23:37'); INSERT INTO `admin_operation_log` VALUES ('1826', '1', 'admin/course/advertisingSite/status', 'POST', '127.0.0.1', '{\"status\":\"1\",\"modelId\":\"1\"}', '2020-04-02 15:23:39', '2020-04-02 15:23:39'); INSERT INTO `admin_operation_log` VALUES ('1827', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:23:41', '2020-04-02 15:23:41'); INSERT INTO `admin_operation_log` VALUES ('1828', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:25:09', '2020-04-02 15:25:09'); INSERT INTO `admin_operation_log` VALUES ('1829', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:25:50', '2020-04-02 15:25:50'); INSERT INTO `admin_operation_log` VALUES ('1830', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:26:02', '2020-04-02 15:26:02'); INSERT INTO `admin_operation_log` VALUES ('1831', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 15:26:16', '2020-04-02 15:26:16'); INSERT INTO `admin_operation_log` VALUES ('1832', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u6d4b\\u8bd5\\u7ad9\\u4f4d\",\"path\":\"ceshi\\/zhnaeiw\",\"status\":\"1\",\"description\":\"\\u6b64\\u4f4d\\u7f6e\\u4e3b\\u8981\\u5c55\\u793a\\u7ed8\\u753b\\u8bfe\\u7a0b\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\"}', '2020-04-02 15:27:00', '2020-04-02 15:27:00'); INSERT INTO `admin_operation_log` VALUES ('1833', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:27:02', '2020-04-02 15:27:02'); INSERT INTO `admin_operation_log` VALUES ('1834', '1', 'admin/course/advertisingSite/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 15:27:08', '2020-04-02 15:27:08'); INSERT INTO `admin_operation_log` VALUES ('1835', '1', 'admin/course/advertisingSite/update/1', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u540c\\u57ce\\u5546\\u8d38\\u9ed8\\u8ba4\\u77ed\\u4fe1\\u6a21\\u677f\",\"path\":\"tongcehng\\/duanxin\",\"status\":\"0\",\"description\":\"assssssssssssssssd\"}', '2020-04-02 15:27:23', '2020-04-02 15:27:23'); INSERT INTO `admin_operation_log` VALUES ('1836', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:27:25', '2020-04-02 15:27:25'); INSERT INTO `admin_operation_log` VALUES ('1837', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:27:48', '2020-04-02 15:27:48'); INSERT INTO `admin_operation_log` VALUES ('1838', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '{\"search\":\"\\u4f1a\"}', '2020-04-02 15:27:54', '2020-04-02 15:27:54'); INSERT INTO `admin_operation_log` VALUES ('1839', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '{\"search\":\"\\u4f1a\"}', '2020-04-02 15:30:14', '2020-04-02 15:30:14'); INSERT INTO `admin_operation_log` VALUES ('1840', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '{\"search\":null}', '2020-04-02 15:30:19', '2020-04-02 15:30:19'); INSERT INTO `admin_operation_log` VALUES ('1841', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '{\"search\":\"\\u6d4b\\u8bd5\"}', '2020-04-02 15:30:26', '2020-04-02 15:30:26'); INSERT INTO `admin_operation_log` VALUES ('1842', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '{\"search\":\"\\u6d4b\"}', '2020-04-02 15:30:32', '2020-04-02 15:30:32'); INSERT INTO `admin_operation_log` VALUES ('1843', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '{\"search\":null}', '2020-04-02 15:30:35', '2020-04-02 15:30:35'); INSERT INTO `admin_operation_log` VALUES ('1844', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '{\"search\":null}', '2020-04-02 15:32:11', '2020-04-02 15:32:11'); INSERT INTO `admin_operation_log` VALUES ('1845', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"search\":null}', '2020-04-02 15:32:22', '2020-04-02 15:32:22'); INSERT INTO `admin_operation_log` VALUES ('1846', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"search\":null}', '2020-04-02 15:34:26', '2020-04-02 15:34:26'); INSERT INTO `admin_operation_log` VALUES ('1847', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"search\":null}', '2020-04-02 15:35:23', '2020-04-02 15:35:23'); INSERT INTO `admin_operation_log` VALUES ('1848', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"search\":null}', '2020-04-02 15:36:51', '2020-04-02 15:36:51'); INSERT INTO `admin_operation_log` VALUES ('1849', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:36:56', '2020-04-02 15:36:56'); INSERT INTO `admin_operation_log` VALUES ('1850', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:40:20', '2020-04-02 15:40:20'); INSERT INTO `admin_operation_log` VALUES ('1851', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:40:52', '2020-04-02 15:40:52'); INSERT INTO `admin_operation_log` VALUES ('1852', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:43:21', '2020-04-02 15:43:21'); INSERT INTO `admin_operation_log` VALUES ('1853', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:43:35', '2020-04-02 15:43:35'); INSERT INTO `admin_operation_log` VALUES ('1854', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:43:59', '2020-04-02 15:43:59'); INSERT INTO `admin_operation_log` VALUES ('1855', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:44:37', '2020-04-02 15:44:37'); INSERT INTO `admin_operation_log` VALUES ('1856', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:45:01', '2020-04-02 15:45:01'); INSERT INTO `admin_operation_log` VALUES ('1857', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:45:30', '2020-04-02 15:45:30'); INSERT INTO `admin_operation_log` VALUES ('1858', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:45:50', '2020-04-02 15:45:50'); INSERT INTO `admin_operation_log` VALUES ('1859', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:46:39', '2020-04-02 15:46:39'); INSERT INTO `admin_operation_log` VALUES ('1860', '1', 'admin/course/advertising/advertising_sort', 'GET', '127.0.0.1', '{\"id\":\"3\",\"sort\":\"2\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:46:44', '2020-04-02 15:46:44'); INSERT INTO `admin_operation_log` VALUES ('1861', '1', 'admin/course/advertising/advertising_sort', 'GET', '127.0.0.1', '{\"id\":\"2\",\"sort\":\"23\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:46:45', '2020-04-02 15:46:45'); INSERT INTO `admin_operation_log` VALUES ('1862', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"1\",\"search\":null}', '2020-04-02 15:46:46', '2020-04-02 15:46:46'); INSERT INTO `admin_operation_log` VALUES ('1863', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 15:46:53', '2020-04-02 15:46:53'); INSERT INTO `admin_operation_log` VALUES ('1864', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 15:47:25', '2020-04-02 15:47:25'); INSERT INTO `admin_operation_log` VALUES ('1865', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 15:47:54', '2020-04-02 15:47:54'); INSERT INTO `admin_operation_log` VALUES ('1866', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":\"\\u7ed8\"}', '2020-04-02 15:48:05', '2020-04-02 15:48:05'); INSERT INTO `admin_operation_log` VALUES ('1867', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":\"\\u7ed8\"}', '2020-04-02 15:48:15', '2020-04-02 15:48:15'); INSERT INTO `admin_operation_log` VALUES ('1868', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 15:48:27', '2020-04-02 15:48:27'); INSERT INTO `admin_operation_log` VALUES ('1869', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 15:48:37', '2020-04-02 15:48:37'); INSERT INTO `admin_operation_log` VALUES ('1870', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 15:48:40', '2020-04-02 15:48:40'); INSERT INTO `admin_operation_log` VALUES ('1871', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 15:49:33', '2020-04-02 15:49:33'); INSERT INTO `admin_operation_log` VALUES ('1872', '1', 'admin/course/advertising/update/3', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a4847d585952c72640ebec109cfba70.jpg\",\"file\":null,\"description\":\"\\u7ba1\\u7406\\u5458\\u5ba3\\u4f20\\u4fe1\\u606f\",\"site\":\"0\",\"sort\":\"2\"}', '2020-04-02 15:50:14', '2020-04-02 15:50:14'); INSERT INTO `admin_operation_log` VALUES ('1873', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:50:15', '2020-04-02 15:50:15'); INSERT INTO `admin_operation_log` VALUES ('1874', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:51:39', '2020-04-02 15:51:39'); INSERT INTO `admin_operation_log` VALUES ('1875', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 15:51:42', '2020-04-02 15:51:42'); INSERT INTO `admin_operation_log` VALUES ('1876', '1', 'admin/course/category/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:52:46', '2020-04-02 15:52:46'); INSERT INTO `admin_operation_log` VALUES ('1877', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:52:53', '2020-04-02 15:52:53'); INSERT INTO `admin_operation_log` VALUES ('1878', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:53:00', '2020-04-02 15:53:00'); INSERT INTO `admin_operation_log` VALUES ('1879', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 15:53:09', '2020-04-02 15:53:09'); INSERT INTO `admin_operation_log` VALUES ('1880', '1', 'admin/course/advertising/update/3', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a4847d585952c72640ebec109cfba70.jpg\",\"file\":null,\"description\":\"\\u7ba1\\u7406\\u5458\\u5ba3\\u4f20\\u4fe1\\u606f\",\"site\":\"4\",\"sort\":\"2\"}', '2020-04-02 15:53:16', '2020-04-02 15:53:16'); INSERT INTO `admin_operation_log` VALUES ('1881', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:53:18', '2020-04-02 15:53:18'); INSERT INTO `admin_operation_log` VALUES ('1882', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 15:53:22', '2020-04-02 15:53:22'); INSERT INTO `admin_operation_log` VALUES ('1883', '1', 'admin/course/advertising/update/3', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ba1\\u7406\\u5458\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a4847d585952c72640ebec109cfba70.jpg\",\"file\":null,\"description\":\"\\u7ba1\\u7406\\u5458\\u5ba3\\u4f20\\u4fe1\\u606f\",\"site\":\"4\",\"sort\":\"22\"}', '2020-04-02 15:53:29', '2020-04-02 15:53:29'); INSERT INTO `admin_operation_log` VALUES ('1884', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:53:31', '2020-04-02 15:53:31'); INSERT INTO `admin_operation_log` VALUES ('1885', '1', 'admin/course/advertising/advertising_sort', 'GET', '127.0.0.1', '{\"id\":\"3\",\"sort\":\"25\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 15:53:39', '2020-04-02 15:53:39'); INSERT INTO `admin_operation_log` VALUES ('1886', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 15:53:41', '2020-04-02 15:53:41'); INSERT INTO `admin_operation_log` VALUES ('1887', '1', 'admin/course/advertising/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 15:53:45', '2020-04-02 15:53:45'); INSERT INTO `admin_operation_log` VALUES ('1888', '1', 'admin/course/advertising/update/2', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u54c7\\u54c8\\u54c8\\u77ff\\u6cc9\\u6c34\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/c211d09504cb7eac5843cd4215655b59.jpg\",\"file\":null,\"description\":\"\\u5a03\\u54c8\\u54c8\\u963f\\u5a03\\u54c8\\u54c8\\u3002\\u3002\\u3002\\u3002\\u3002\",\"site\":\"1\",\"sort\":\"23\"}', '2020-04-02 16:02:54', '2020-04-02 16:02:54'); INSERT INTO `admin_operation_log` VALUES ('1889', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:02:56', '2020-04-02 16:02:56'); INSERT INTO `admin_operation_log` VALUES ('1890', '1', 'admin/course/advertising/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 16:03:05', '2020-04-02 16:03:05'); INSERT INTO `admin_operation_log` VALUES ('1891', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 16:03:09', '2020-04-02 16:03:09'); INSERT INTO `admin_operation_log` VALUES ('1892', '1', 'admin/course/advertising/update/3', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u5f69\\u8272\\u6253\\u5370\\u673a\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a4847d585952c72640ebec109cfba70.jpg\",\"file\":null,\"description\":\"\\u5f69\\u8272\\u6253\\u5370\\u673a\\u4fe1\\u606f\\u3002\\u3002\\u3002\\u3002\\u3002\",\"site\":\"4\",\"sort\":\"25\"}', '2020-04-02 16:03:41', '2020-04-02 16:03:41'); INSERT INTO `admin_operation_log` VALUES ('1893', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:03:44', '2020-04-02 16:03:44'); INSERT INTO `admin_operation_log` VALUES ('1894', '1', 'admin/course/advertising/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 16:03:48', '2020-04-02 16:03:48'); INSERT INTO `admin_operation_log` VALUES ('1895', '1', 'admin/course/advertising/update/4', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7ed8\\u753b\\u989c\\u6599\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/8a782932e60432219529a0a825dcf393.jpg\",\"file\":null,\"description\":\"\\u4e94\\u989c\\u516d\\u8272\\uff0c\\u4e07\\u7d2b\\u5343\\u7ea2\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"site\":\"4\",\"sort\":\"81\"}', '2020-04-02 16:04:14', '2020-04-02 16:04:14'); INSERT INTO `admin_operation_log` VALUES ('1896', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:04:15', '2020-04-02 16:04:15'); INSERT INTO `admin_operation_log` VALUES ('1897', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:04:31', '2020-04-02 16:04:31'); INSERT INTO `admin_operation_log` VALUES ('1898', '1', 'admin/course/advertisingSite/edit/1', 'GET', '127.0.0.1', '[]', '2020-04-02 16:04:35', '2020-04-02 16:04:35'); INSERT INTO `admin_operation_log` VALUES ('1899', '1', 'admin/course/advertisingSite/update/1', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u9996\\u9875\",\"path\":\"tongcehng\\/duanxin\",\"status\":\"0\",\"description\":\"\\u9996\\u9875\\u8f6e\\u64ad\\u56fe\"}', '2020-04-02 16:04:54', '2020-04-02 16:04:54'); INSERT INTO `admin_operation_log` VALUES ('1900', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:04:56', '2020-04-02 16:04:56'); INSERT INTO `admin_operation_log` VALUES ('1901', '1', 'admin/course/advertisingSite/edit/4', 'GET', '127.0.0.1', '[]', '2020-04-02 16:04:59', '2020-04-02 16:04:59'); INSERT INTO `admin_operation_log` VALUES ('1902', '1', 'admin/course/advertisingSite/update/4', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u5217\\u8868\\u9875\",\"path\":\"ceshi\\/zhnaeiw\",\"status\":\"1\",\"description\":\"\\u6b64\\u4f4d\\u7f6e\\u4e3b\\u8981\\u5c55\\u793a\\u7ed8\\u753b\\u8bfe\\u7a0b\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\"}', '2020-04-02 16:05:10', '2020-04-02 16:05:10'); INSERT INTO `admin_operation_log` VALUES ('1903', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:05:12', '2020-04-02 16:05:12'); INSERT INTO `admin_operation_log` VALUES ('1904', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:05:15', '2020-04-02 16:05:15'); INSERT INTO `admin_operation_log` VALUES ('1905', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u5206\\u7c7b\\u5217\\u8868\\u9875\",\"path\":\"cate\\/list\",\"status\":\"0\",\"description\":\"\\u5206\\u7c7b\\u5217\\u8868\\u9875\\u3002\\u3002\\u3002\\u3002\\u3002\"}', '2020-04-02 16:06:07', '2020-04-02 16:06:07'); INSERT INTO `admin_operation_log` VALUES ('1906', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:06:09', '2020-04-02 16:06:09'); INSERT INTO `admin_operation_log` VALUES ('1907', '1', 'admin/course/advertisingSite/status', 'POST', '127.0.0.1', '{\"status\":\"1\",\"modelId\":\"5\"}', '2020-04-02 16:06:21', '2020-04-02 16:06:21'); INSERT INTO `admin_operation_log` VALUES ('1908', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:06:29', '2020-04-02 16:06:29'); INSERT INTO `admin_operation_log` VALUES ('1909', '1', 'admin/course/advertisingSite/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u8bfe\\u7a0b\\u8be6\\u60c5\\u9875\",\"path\":\"course\\/details\",\"status\":\"0\",\"description\":\"\\u8bfe\\u7a0b\\u8be6\\u60c5\\u9875\\u5e7f\\u544a\\u5c55\\u793a\"}', '2020-04-02 16:07:15', '2020-04-02 16:07:15'); INSERT INTO `admin_operation_log` VALUES ('1910', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:07:16', '2020-04-02 16:07:16'); INSERT INTO `admin_operation_log` VALUES ('1911', '1', 'admin/course/advertisingSite/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:09:03', '2020-04-02 16:09:03'); INSERT INTO `admin_operation_log` VALUES ('1912', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:09:11', '2020-04-02 16:09:11'); INSERT INTO `admin_operation_log` VALUES ('1913', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:09:16', '2020-04-02 16:09:16'); INSERT INTO `admin_operation_log` VALUES ('1914', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:10:20', '2020-04-02 16:10:20'); INSERT INTO `admin_operation_log` VALUES ('1915', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:11:28', '2020-04-02 16:11:28'); INSERT INTO `admin_operation_log` VALUES ('1916', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:13:38', '2020-04-02 16:13:38'); INSERT INTO `admin_operation_log` VALUES ('1917', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:13:49', '2020-04-02 16:13:49'); INSERT INTO `admin_operation_log` VALUES ('1918', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:14:46', '2020-04-02 16:14:46'); INSERT INTO `admin_operation_log` VALUES ('1919', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:15:23', '2020-04-02 16:15:23'); INSERT INTO `admin_operation_log` VALUES ('1920', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:15:39', '2020-04-02 16:15:39'); INSERT INTO `admin_operation_log` VALUES ('1921', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:15:52', '2020-04-02 16:15:52'); INSERT INTO `admin_operation_log` VALUES ('1922', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:16:43', '2020-04-02 16:16:43'); INSERT INTO `admin_operation_log` VALUES ('1923', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:17:31', '2020-04-02 16:17:31'); INSERT INTO `admin_operation_log` VALUES ('1924', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:17:50', '2020-04-02 16:17:50'); INSERT INTO `admin_operation_log` VALUES ('1925', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:18:20', '2020-04-02 16:18:20'); INSERT INTO `admin_operation_log` VALUES ('1926', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:18:29', '2020-04-02 16:18:29'); INSERT INTO `admin_operation_log` VALUES ('1927', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:18:37', '2020-04-02 16:18:37'); INSERT INTO `admin_operation_log` VALUES ('1928', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:19:03', '2020-04-02 16:19:03'); INSERT INTO `admin_operation_log` VALUES ('1929', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:19:53', '2020-04-02 16:19:53'); INSERT INTO `admin_operation_log` VALUES ('1930', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:20:20', '2020-04-02 16:20:20'); INSERT INTO `admin_operation_log` VALUES ('1931', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:20:29', '2020-04-02 16:20:29'); INSERT INTO `admin_operation_log` VALUES ('1932', '1', 'admin/member/users', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:46', '2020-04-02 16:21:46'); INSERT INTO `admin_operation_log` VALUES ('1933', '1', 'admin/store/dashboard', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:48', '2020-04-02 16:21:48'); INSERT INTO `admin_operation_log` VALUES ('1934', '1', 'admin/store/getMonthData', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:50', '2020-04-02 16:21:50'); INSERT INTO `admin_operation_log` VALUES ('1935', '1', 'admin/distribution', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:50', '2020-04-02 16:21:50'); INSERT INTO `admin_operation_log` VALUES ('1936', '1', 'admin/distribution/getDashBoardData', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:51', '2020-04-02 16:21:51'); INSERT INTO `admin_operation_log` VALUES ('1937', '1', 'admin/store/dashboard', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:52', '2020-04-02 16:21:52'); INSERT INTO `admin_operation_log` VALUES ('1938', '1', 'admin/store/getMonthData', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:53', '2020-04-02 16:21:53'); INSERT INTO `admin_operation_log` VALUES ('1939', '1', 'admin/member/users', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:53', '2020-04-02 16:21:53'); INSERT INTO `admin_operation_log` VALUES ('1940', '1', 'admin', 'GET', '127.0.0.1', '[]', '2020-04-02 16:21:55', '2020-04-02 16:21:55'); INSERT INTO `admin_operation_log` VALUES ('1941', '1', 'admin', 'GET', '127.0.0.1', '[]', '2020-04-02 16:22:02', '2020-04-02 16:22:02'); INSERT INTO `admin_operation_log` VALUES ('1942', '1', 'admin/store/promotion/discount', 'GET', '127.0.0.1', '[]', '2020-04-02 16:22:41', '2020-04-02 16:22:41'); INSERT INTO `admin_operation_log` VALUES ('1943', '1', 'admin/store/promotion/discount/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:22:43', '2020-04-02 16:22:43'); INSERT INTO `admin_operation_log` VALUES ('1944', '1', 'admin/member/users', 'GET', '127.0.0.1', '[]', '2020-04-02 16:22:59', '2020-04-02 16:22:59'); INSERT INTO `admin_operation_log` VALUES ('1945', '1', 'admin/course/advertisingSite/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:23:10', '2020-04-02 16:23:10'); INSERT INTO `admin_operation_log` VALUES ('1946', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:23:20', '2020-04-02 16:23:20'); INSERT INTO `admin_operation_log` VALUES ('1947', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":\"\\u5a03\"}', '2020-04-02 16:23:30', '2020-04-02 16:23:30'); INSERT INTO `admin_operation_log` VALUES ('1948', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":\"\\u5a03\"}', '2020-04-02 16:23:39', '2020-04-02 16:23:39'); INSERT INTO `admin_operation_log` VALUES ('1949', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:23:46', '2020-04-02 16:23:46'); INSERT INTO `admin_operation_log` VALUES ('1950', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:24:18', '2020-04-02 16:24:18'); INSERT INTO `admin_operation_log` VALUES ('1951', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:24:42', '2020-04-02 16:24:42'); INSERT INTO `admin_operation_log` VALUES ('1952', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:25:09', '2020-04-02 16:25:09'); INSERT INTO `admin_operation_log` VALUES ('1953', '1', 'admin/store/setting/user/agreement', 'GET', '127.0.0.1', '[]', '2020-04-02 16:27:34', '2020-04-02 16:27:34'); INSERT INTO `admin_operation_log` VALUES ('1954', '1', 'admin/store/setting/agreement/save', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 16:27:37', '2020-04-02 16:27:37'); INSERT INTO `admin_operation_log` VALUES ('1955', '1', 'admin/store/point-mall/goods', 'GET', '127.0.0.1', '[]', '2020-04-02 16:27:41', '2020-04-02 16:27:41'); INSERT INTO `admin_operation_log` VALUES ('1956', '1', 'admin/store/point-mall/orders', 'GET', '127.0.0.1', '{\"status\":\"all\"}', '2020-04-02 16:27:44', '2020-04-02 16:27:44'); INSERT INTO `admin_operation_log` VALUES ('1957', '1', 'admin/store/point-mall/orders', 'GET', '127.0.0.1', '{\"status\":\"all\"}', '2020-04-02 16:29:14', '2020-04-02 16:29:14'); INSERT INTO `admin_operation_log` VALUES ('1958', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:29:18', '2020-04-02 16:29:18'); INSERT INTO `admin_operation_log` VALUES ('1959', '1', 'admin/store/promotion/discount', 'GET', '127.0.0.1', '[]', '2020-04-02 16:31:03', '2020-04-02 16:31:03'); INSERT INTO `admin_operation_log` VALUES ('1960', '1', 'admin/store/promotion/discount/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:31:06', '2020-04-02 16:31:06'); INSERT INTO `admin_operation_log` VALUES ('1961', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:32:29', '2020-04-02 16:32:29'); INSERT INTO `admin_operation_log` VALUES ('1962', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:35:53', '2020-04-02 16:35:53'); INSERT INTO `admin_operation_log` VALUES ('1963', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:36:04', '2020-04-02 16:36:04'); INSERT INTO `admin_operation_log` VALUES ('1964', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:36:05', '2020-04-02 16:36:05'); INSERT INTO `admin_operation_log` VALUES ('1965', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:37:38', '2020-04-02 16:37:38'); INSERT INTO `admin_operation_log` VALUES ('1966', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:38:06', '2020-04-02 16:38:06'); INSERT INTO `admin_operation_log` VALUES ('1967', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:38:28', '2020-04-02 16:38:28'); INSERT INTO `admin_operation_log` VALUES ('1968', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:39:40', '2020-04-02 16:39:40'); INSERT INTO `admin_operation_log` VALUES ('1969', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:40:03', '2020-04-02 16:40:03'); INSERT INTO `admin_operation_log` VALUES ('1970', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:40:04', '2020-04-02 16:40:04'); INSERT INTO `admin_operation_log` VALUES ('1971', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:40:22', '2020-04-02 16:40:22'); INSERT INTO `admin_operation_log` VALUES ('1972', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":\"\\u5a03\"}', '2020-04-02 16:41:07', '2020-04-02 16:41:07'); INSERT INTO `admin_operation_log` VALUES ('1973', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":null}', '2020-04-02 16:41:11', '2020-04-02 16:41:11'); INSERT INTO `admin_operation_log` VALUES ('1974', '1', 'admin/course/advertising/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 16:41:15', '2020-04-02 16:41:15'); INSERT INTO `admin_operation_log` VALUES ('1975', '1', 'admin/course/advertising/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 16:42:40', '2020-04-02 16:42:40'); INSERT INTO `admin_operation_log` VALUES ('1976', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:43:24', '2020-04-02 16:43:24'); INSERT INTO `admin_operation_log` VALUES ('1977', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:45:33', '2020-04-02 16:45:33'); INSERT INTO `admin_operation_log` VALUES ('1978', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:45:53', '2020-04-02 16:45:53'); INSERT INTO `admin_operation_log` VALUES ('1979', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:11', '2020-04-02 16:46:11'); INSERT INTO `admin_operation_log` VALUES ('1980', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:32', '2020-04-02 16:46:32'); INSERT INTO `admin_operation_log` VALUES ('1981', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:45', '2020-04-02 16:46:45'); INSERT INTO `admin_operation_log` VALUES ('1982', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:47', '2020-04-02 16:46:47'); INSERT INTO `admin_operation_log` VALUES ('1983', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:47', '2020-04-02 16:46:47'); INSERT INTO `admin_operation_log` VALUES ('1984', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:48', '2020-04-02 16:46:48'); INSERT INTO `admin_operation_log` VALUES ('1985', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:48', '2020-04-02 16:46:48'); INSERT INTO `admin_operation_log` VALUES ('1986', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:48', '2020-04-02 16:46:48'); INSERT INTO `admin_operation_log` VALUES ('1987', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:49', '2020-04-02 16:46:49'); INSERT INTO `admin_operation_log` VALUES ('1988', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:46:49', '2020-04-02 16:46:49'); INSERT INTO `admin_operation_log` VALUES ('1989', '1', 'admin/course/advertising/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u963f\\u91cc\\u4e91\\u670d\\u52a1\\u5668\\u9650\\u65f6\\u4fc3\\u9500\",\"file\":null,\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/5bb9ffd486e105afa9ee4e4b024f5850.jpg\",\"start_time\":\"2020-04-02 00:00\",\"hour\":\"23\",\"minute\":\"59\",\"end_time\":\"2022-12-31 23:59\",\"description\":\"\\u670d\\u52a1\\u5668\\u9650\\u65f6\\u4f18\\u60e0\\uff0c\\u4e0d\\u5bb9\\u9519\\u8fc7\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"site\":\"4\",\"sort\":\"8\"}', '2020-04-02 16:48:06', '2020-04-02 16:48:06'); INSERT INTO `admin_operation_log` VALUES ('1990', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:48:08', '2020-04-02 16:48:08'); INSERT INTO `admin_operation_log` VALUES ('1991', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:49:10', '2020-04-02 16:49:10'); INSERT INTO `admin_operation_log` VALUES ('1992', '1', 'admin/course/advertising/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 16:49:26', '2020-04-02 16:49:26'); INSERT INTO `admin_operation_log` VALUES ('1993', '1', 'admin/course/advertising/update/2', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u54c7\\u54c8\\u54c8\\u77ff\\u6cc9\\u6c34\",\"file\":null,\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/c211d09504cb7eac5843cd4215655b59.jpg\",\"start_time\":\"2020-04-02 00:00\",\"hour\":\"23\",\"minute\":\"59\",\"end_time\":\"2020-05-31 23:59\",\"description\":\"\\u5a03\\u54c8\\u54c8\\u963f\\u5a03\\u54c8\\u54c8\\u3002\\u3002\\u3002\\u3002\\u3002\",\"site\":\"0\",\"sort\":\"23\"}', '2020-04-02 16:49:50', '2020-04-02 16:49:50'); INSERT INTO `admin_operation_log` VALUES ('1994', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:49:52', '2020-04-02 16:49:52'); INSERT INTO `admin_operation_log` VALUES ('1995', '1', 'admin/course/advertising/edit/2', 'GET', '127.0.0.1', '[]', '2020-04-02 16:49:57', '2020-04-02 16:49:57'); INSERT INTO `admin_operation_log` VALUES ('1996', '1', 'admin/course/advertising/update/2', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u54c7\\u54c8\\u54c8\\u77ff\\u6cc9\\u6c34\",\"file\":null,\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/c211d09504cb7eac5843cd4215655b59.jpg\",\"start_time\":\"2020-04-02 00:00:00\",\"hour\":\"16\",\"minute\":\"49\",\"end_time\":\"2020-05-31 23:59:00\",\"description\":\"\\u5a03\\u54c8\\u54c8\\u963f\\u5a03\\u54c8\\u54c8\\u3002\\u3002\\u3002\\u3002\\u3002\",\"site\":\"4\",\"sort\":\"23\"}', '2020-04-02 16:50:02', '2020-04-02 16:50:02'); INSERT INTO `admin_operation_log` VALUES ('1997', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:50:04', '2020-04-02 16:50:04'); INSERT INTO `admin_operation_log` VALUES ('1998', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:52:21', '2020-04-02 16:52:21'); INSERT INTO `admin_operation_log` VALUES ('1999', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:53:12', '2020-04-02 16:53:12'); INSERT INTO `admin_operation_log` VALUES ('2000', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:53:31', '2020-04-02 16:53:31'); INSERT INTO `admin_operation_log` VALUES ('2001', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 16:53:42', '2020-04-02 16:53:42'); INSERT INTO `admin_operation_log` VALUES ('2002', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 16:54:27', '2020-04-02 16:54:27'); INSERT INTO `admin_operation_log` VALUES ('2003', '1', 'admin/course/advertising/edit/3', 'GET', '127.0.0.1', '[]', '2020-04-02 16:55:20', '2020-04-02 16:55:20'); INSERT INTO `admin_operation_log` VALUES ('2004', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:55:31', '2020-04-02 16:55:31'); INSERT INTO `admin_operation_log` VALUES ('2005', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:56:05', '2020-04-02 16:56:05'); INSERT INTO `admin_operation_log` VALUES ('2006', '1', 'admin/course/advertising/store', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u817e\\u8baf\\u89c6\\u9891\\u514d\\u8d39\\u4f1a\\u5458\\u9650\\u65f6\\u9886\\u53d6\",\"file\":null,\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/de8488a0c7fd2c6fcc55445fe1b4ae1d.jpg\",\"start_time\":\"2020-04-02 16:56\",\"hour\":\"16\",\"minute\":\"56\",\"end_time\":\"2020-05-30 16:56\",\"description\":\"\\u514d\\u8d39\\u9886\\u4f1a\\u5458\\u770b\\u89c6\\u9891\",\"site\":\"5\",\"sort\":\"88\"}', '2020-04-02 16:57:14', '2020-04-02 16:57:14'); INSERT INTO `admin_operation_log` VALUES ('2007', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 16:57:16', '2020-04-02 16:57:16'); INSERT INTO `admin_operation_log` VALUES ('2008', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 16:57:24', '2020-04-02 16:57:24'); INSERT INTO `admin_operation_log` VALUES ('2009', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"5\",\"search\":null}', '2020-04-02 16:57:29', '2020-04-02 16:57:29'); INSERT INTO `admin_operation_log` VALUES ('2010', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 16:57:36', '2020-04-02 16:57:36'); INSERT INTO `admin_operation_log` VALUES ('2011', '1', 'admin/course/advertising/advertising_sort', 'GET', '127.0.0.1', '{\"id\":\"2\",\"sort\":\"6\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 16:57:59', '2020-04-02 16:57:59'); INSERT INTO `admin_operation_log` VALUES ('2012', '1', 'admin/course/advertising/advertising_sort', 'GET', '127.0.0.1', '{\"id\":\"3\",\"sort\":\"25\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 16:58:00', '2020-04-02 16:58:00'); INSERT INTO `admin_operation_log` VALUES ('2013', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 16:58:02', '2020-04-02 16:58:02'); INSERT INTO `admin_operation_log` VALUES ('2014', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":\"\\u7ed8\"}', '2020-04-02 16:58:16', '2020-04-02 16:58:16'); INSERT INTO `admin_operation_log` VALUES ('2015', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":\"\\u7ed8\"}', '2020-04-02 16:58:25', '2020-04-02 16:58:25'); INSERT INTO `admin_operation_log` VALUES ('2016', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":\"\\u7ed8\"}', '2020-04-02 16:58:30', '2020-04-02 16:58:30'); INSERT INTO `admin_operation_log` VALUES ('2017', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 16:58:37', '2020-04-02 16:58:37'); INSERT INTO `admin_operation_log` VALUES ('2018', '1', 'admin/course/advertising/advertising_sort', 'GET', '127.0.0.1', '{\"id\":\"3\",\"sort\":\"15\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 16:58:48', '2020-04-02 16:58:48'); INSERT INTO `admin_operation_log` VALUES ('2019', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 16:58:50', '2020-04-02 16:58:50'); INSERT INTO `admin_operation_log` VALUES ('2020', '1', 'admin/course/advertising/advertising_sort', 'GET', '127.0.0.1', '{\"id\":\"4\",\"sort\":\"11\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 16:58:59', '2020-04-02 16:58:59'); INSERT INTO `admin_operation_log` VALUES ('2021', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 16:59:01', '2020-04-02 16:59:01'); INSERT INTO `admin_operation_log` VALUES ('2022', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 16:59:07', '2020-04-02 16:59:07'); INSERT INTO `admin_operation_log` VALUES ('2023', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 16:59:50', '2020-04-02 16:59:50'); INSERT INTO `admin_operation_log` VALUES ('2024', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:01:36', '2020-04-02 17:01:36'); INSERT INTO `admin_operation_log` VALUES ('2025', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:04:42', '2020-04-02 17:04:42'); INSERT INTO `admin_operation_log` VALUES ('2026', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:05:12', '2020-04-02 17:05:12'); INSERT INTO `admin_operation_log` VALUES ('2027', '1', 'admin/course/advertising/status', 'POST', '127.0.0.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-02 17:05:17', '2020-04-02 17:05:17'); INSERT INTO `admin_operation_log` VALUES ('2028', '1', 'admin/course/advertising/status', 'POST', '127.0.0.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-02 17:05:33', '2020-04-02 17:05:33'); INSERT INTO `admin_operation_log` VALUES ('2029', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:07:00', '2020-04-02 17:07:00'); INSERT INTO `admin_operation_log` VALUES ('2030', '1', 'admin/course/advertising/status', 'POST', '127.0.0.1', '{\"status\":\"1\",\"modelId\":\"2\"}', '2020-04-02 17:07:03', '2020-04-02 17:07:03'); INSERT INTO `admin_operation_log` VALUES ('2031', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:07:06', '2020-04-02 17:07:06'); INSERT INTO `admin_operation_log` VALUES ('2032', '1', 'admin/course/advertising/status', 'POST', '127.0.0.1', '{\"status\":\"0\",\"modelId\":\"2\"}', '2020-04-02 17:07:08', '2020-04-02 17:07:08'); INSERT INTO `admin_operation_log` VALUES ('2033', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:07:10', '2020-04-02 17:07:10'); INSERT INTO `admin_operation_log` VALUES ('2034', '1', 'admin/course/advertising/status', 'POST', '127.0.0.1', '{\"status\":\"1\",\"modelId\":\"5\"}', '2020-04-02 17:07:13', '2020-04-02 17:07:13'); INSERT INTO `admin_operation_log` VALUES ('2035', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:07:14', '2020-04-02 17:07:14'); INSERT INTO `admin_operation_log` VALUES ('2036', '1', 'admin/course/advertising/status', 'POST', '127.0.0.1', '{\"status\":\"1\",\"modelId\":\"4\"}', '2020-04-02 17:07:16', '2020-04-02 17:07:16'); INSERT INTO `admin_operation_log` VALUES ('2037', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:07:19', '2020-04-02 17:07:19'); INSERT INTO `admin_operation_log` VALUES ('2038', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":null}', '2020-04-02 17:07:33', '2020-04-02 17:07:33'); INSERT INTO `admin_operation_log` VALUES ('2039', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":null}', '2020-04-02 17:07:40', '2020-04-02 17:07:40'); INSERT INTO `admin_operation_log` VALUES ('2040', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":null}', '2020-04-02 17:07:43', '2020-04-02 17:07:43'); INSERT INTO `admin_operation_log` VALUES ('2041', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":\"\\u65f6\"}', '2020-04-02 17:08:07', '2020-04-02 17:08:07'); INSERT INTO `admin_operation_log` VALUES ('2042', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"5\",\"search\":\"\\u65f6\"}', '2020-04-02 17:08:11', '2020-04-02 17:08:11'); INSERT INTO `admin_operation_log` VALUES ('2043', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"4\",\"search\":\"\\u65f6\"}', '2020-04-02 17:08:17', '2020-04-02 17:08:17'); INSERT INTO `admin_operation_log` VALUES ('2044', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":\"\\u65f6\"}', '2020-04-02 17:08:21', '2020-04-02 17:08:21'); INSERT INTO `admin_operation_log` VALUES ('2045', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '{\"site\":\"0\",\"search\":null}', '2020-04-02 17:08:28', '2020-04-02 17:08:28'); INSERT INTO `admin_operation_log` VALUES ('2046', '1', 'admin/course/advertising/create', 'GET', '127.0.0.1', '[]', '2020-04-02 17:08:38', '2020-04-02 17:08:38'); INSERT INTO `admin_operation_log` VALUES ('2047', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '[]', '2020-04-02 17:08:51', '2020-04-02 17:08:51'); INSERT INTO `admin_operation_log` VALUES ('2048', '1', 'admin/course/course/create', 'GET', '127.0.0.1', '[]', '2020-04-02 17:08:54', '2020-04-02 17:08:54'); INSERT INTO `admin_operation_log` VALUES ('2049', '1', 'admin/distribution', 'GET', '127.0.0.1', '[]', '2020-04-02 17:09:30', '2020-04-02 17:09:30'); INSERT INTO `admin_operation_log` VALUES ('2050', '1', 'admin/distribution/getDashBoardData', 'GET', '127.0.0.1', '[]', '2020-04-02 17:09:30', '2020-04-02 17:09:30'); INSERT INTO `admin_operation_log` VALUES ('2051', '1', 'admin/course/course/index', 'GET', '127.0.0.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-02 17:12:34', '2020-04-02 17:12:34'); INSERT INTO `admin_operation_log` VALUES ('2052', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '{\"_pjax\":\"#pjax-container\"}', '2020-04-02 17:13:18', '2020-04-02 17:13:18'); INSERT INTO `admin_operation_log` VALUES ('2053', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"13\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 17:13:22', '2020-04-02 17:13:22'); INSERT INTO `admin_operation_log` VALUES ('2054', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"10\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 17:13:26', '2020-04-02 17:13:26'); INSERT INTO `admin_operation_log` VALUES ('2055', '1', 'admin/course/coursevideo/edit/10', 'GET', '127.0.0.1', '{\"course_id\":\"2\",\"_pjax\":\"#pjax-container\"}', '2020-04-02 17:13:55', '2020-04-02 17:13:55'); INSERT INTO `admin_operation_log` VALUES ('2056', '1', 'admin/course/coursevideo/update', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7b2c5.1\\u8282 php\\u5947\\u7f18\\u4e4b\\u65c5\",\"parent_id\":\"7\",\"course_id\":\"2\",\"id\":\"10\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/101c705fcc134372f3c53383c7657491.mp4\",\"file\":null,\"description\":\"\\u672c\\u5c0f\\u8282\\u4e3b\\u8981\\u8bb2php\\u8d77\\u6e90\\u4e4b\\u59cb\\u672b\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"15\",\"10\":null}', '2020-04-02 17:14:43', '2020-04-02 17:14:43'); INSERT INTO `admin_operation_log` VALUES ('2057', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 17:14:44', '2020-04-02 17:14:44'); INSERT INTO `admin_operation_log` VALUES ('2058', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"10\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 17:14:50', '2020-04-02 17:14:50'); INSERT INTO `admin_operation_log` VALUES ('2059', '1', 'admin/course/coursevideo/edit/10', 'GET', '127.0.0.1', '{\"course_id\":\"2\"}', '2020-04-02 17:15:04', '2020-04-02 17:15:04'); INSERT INTO `admin_operation_log` VALUES ('2060', '1', 'admin/course/coursevideo/update', 'POST', '127.0.0.1', '{\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\",\"name\":\"\\u7b2c5.1\\u8282 php\\u8d77\\u6e90\\u4e4b\\u65c5\",\"parent_id\":\"7\",\"course_id\":\"2\",\"id\":\"10\",\"resource\":\"http:\\/\\/www.course.com\\/storage\\/20200402\\/101c705fcc134372f3c53383c7657491.mp4\",\"file\":null,\"description\":\"\\u672c\\u5c0f\\u8282\\u4e3b\\u8981\\u8bb2php\\u8d77\\u6e90\\u4e4b\\u59cb\\u672b\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\\u3002\",\"sort\":\"15\",\"10\":null}', '2020-04-02 17:15:15', '2020-04-02 17:15:15'); INSERT INTO `admin_operation_log` VALUES ('2061', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 17:15:16', '2020-04-02 17:15:16'); INSERT INTO `admin_operation_log` VALUES ('2062', '1', 'admin/course/coursevideo/info', 'GET', '127.0.0.1', '{\"id\":\"10\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 17:15:29', '2020-04-02 17:15:29'); INSERT INTO `admin_operation_log` VALUES ('2063', '1', 'admin/course/coursevideo/check', 'GET', '127.0.0.1', '{\"id\":\"12\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 17:16:20', '2020-04-02 17:16:20'); INSERT INTO `admin_operation_log` VALUES ('2064', '1', 'admin/course/coursevideo/destroy', 'POST', '127.0.0.1', '{\"id\":\"12\",\"_token\":\"f91YOWfAGxPM9yEIIUnbzecysTvMg2f5jbtkBXYr\"}', '2020-04-02 17:16:21', '2020-04-02 17:16:21'); INSERT INTO `admin_operation_log` VALUES ('2065', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 17:16:23', '2020-04-02 17:16:23'); INSERT INTO `admin_operation_log` VALUES ('2066', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 17:24:01', '2020-04-02 17:24:01'); INSERT INTO `admin_operation_log` VALUES ('2067', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 17:24:04', '2020-04-02 17:24:04'); INSERT INTO `admin_operation_log` VALUES ('2068', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 17:24:08', '2020-04-02 17:24:08'); INSERT INTO `admin_operation_log` VALUES ('2069', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 17:24:11', '2020-04-02 17:24:11'); INSERT INTO `admin_operation_log` VALUES ('2070', '1', 'admin/course/coursevideo/index/2', 'GET', '127.0.0.1', '[]', '2020-04-02 17:32:28', '2020-04-02 17:32:28'); INSERT INTO `admin_operation_log` VALUES ('2071', '1', 'admin', 'GET', '127.0.0.1', '[]', '2020-04-02 17:32:36', '2020-04-02 17:32:36'); INSERT INTO `admin_operation_log` VALUES ('2072', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 17:32:48', '2020-04-02 17:32:48'); INSERT INTO `admin_operation_log` VALUES ('2073', '1', 'admin/course/advertising/index', 'GET', '127.0.0.1', '[]', '2020-04-02 17:33:41', '2020-04-02 17:33:41'); -- ---------------------------- -- Table structure for admin_permissions -- ---------------------------- DROP TABLE IF EXISTS `admin_permissions`; CREATE TABLE `admin_permissions` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `http_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `http_path` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `admin_permissions_name_unique` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_permissions -- ---------------------------- INSERT INTO `admin_permissions` VALUES ('1', 'All permission', '*', '', '*', null, null); INSERT INTO `admin_permissions` VALUES ('2', 'Dashboard', 'dashboard', 'GET', '/', null, null); INSERT INTO `admin_permissions` VALUES ('3', 'Login', 'auth.login', '', '/auth/login\r\n/auth/logout', null, null); INSERT INTO `admin_permissions` VALUES ('4', 'User setting', 'auth.setting', 'GET,PUT', '/auth/setting', null, null); INSERT INTO `admin_permissions` VALUES ('5', 'Auth management', 'auth.management', '', '/auth/roles\r\n/auth/permissions\r\n/auth/menu\r\n/auth/logs', null, null); INSERT INTO `admin_permissions` VALUES ('6', 'Admin helpers', 'ext.helpers', null, '/helpers/*', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); INSERT INTO `admin_permissions` VALUES ('7', 'Redis Manager', 'ext.redis-manager', null, '/redis*', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); INSERT INTO `admin_permissions` VALUES ('8', 'Backup', 'ext.backup', null, '/backup*', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); INSERT INTO `admin_permissions` VALUES ('9', 'Logs', 'ext.log-viewer', null, '/logs*', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); INSERT INTO `admin_permissions` VALUES ('10', 'Scheduling', 'ext.scheduling', null, '/scheduling*', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); -- ---------------------------- -- Table structure for admin_roles -- ---------------------------- DROP TABLE IF EXISTS `admin_roles`; CREATE TABLE `admin_roles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `admin_roles_name_unique` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_roles -- ---------------------------- INSERT INTO `admin_roles` VALUES ('1', 'Administrator', 'administrator', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); -- ---------------------------- -- Table structure for admin_role_menu -- ---------------------------- DROP TABLE IF EXISTS `admin_role_menu`; CREATE TABLE `admin_role_menu` ( `role_id` int(11) NOT NULL, `menu_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, KEY `admin_role_menu_role_id_menu_id_index` (`role_id`,`menu_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_role_menu -- ---------------------------- INSERT INTO `admin_role_menu` VALUES ('1', '2', null, null); INSERT INTO `admin_role_menu` VALUES ('1', '2', null, null); INSERT INTO `admin_role_menu` VALUES ('1', '71', null, null); INSERT INTO `admin_role_menu` VALUES ('1', '72', null, null); INSERT INTO `admin_role_menu` VALUES ('1', '73', null, null); INSERT INTO `admin_role_menu` VALUES ('1', '74', null, null); -- ---------------------------- -- Table structure for admin_role_permissions -- ---------------------------- DROP TABLE IF EXISTS `admin_role_permissions`; CREATE TABLE `admin_role_permissions` ( `role_id` int(11) NOT NULL, `permission_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, KEY `admin_role_permissions_role_id_permission_id_index` (`role_id`,`permission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_role_permissions -- ---------------------------- INSERT INTO `admin_role_permissions` VALUES ('1', '1', null, null); -- ---------------------------- -- Table structure for admin_role_users -- ---------------------------- DROP TABLE IF EXISTS `admin_role_users`; CREATE TABLE `admin_role_users` ( `role_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, KEY `admin_role_users_role_id_user_id_index` (`role_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_role_users -- ---------------------------- INSERT INTO `admin_role_users` VALUES ('1', '1', null, null); -- ---------------------------- -- Table structure for admin_users -- ---------------------------- DROP TABLE IF EXISTS `admin_users`; CREATE TABLE `admin_users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(190) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mobile` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `admin_users_username_unique` (`username`), UNIQUE KEY `admin_users_mobile_unique` (`mobile`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_users -- ---------------------------- INSERT INTO `admin_users` VALUES ('1', 'admin', null, '$2y$10$18/syYvimWyuTo1rn66l9OTPtXcYxOdCadYprJzdX8HSVYM/Gv2.G', 'Administrator', null, null, 'wDV7zf6mBbDo7ZJhLupvwGUbVS2HzsjX9FVKxKajEJOKx4C9W5J1bQiAxL6K', '2020-03-23 21:50:43', '2020-03-23 21:50:43', '1'); -- ---------------------------- -- Table structure for admin_user_permissions -- ---------------------------- DROP TABLE IF EXISTS `admin_user_permissions`; CREATE TABLE `admin_user_permissions` ( `user_id` int(11) NOT NULL, `permission_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, KEY `admin_user_permissions_user_id_permission_id_index` (`user_id`,`permission_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of admin_user_permissions -- ---------------------------- -- ---------------------------- -- Table structure for el_admin_notifications -- ---------------------------- DROP TABLE IF EXISTS `el_admin_notifications`; CREATE TABLE `el_admin_notifications` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `admin_id` int(11) NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of el_admin_notifications -- ---------------------------- -- ---------------------------- -- Table structure for hopa_advertising -- ---------------------------- DROP TABLE IF EXISTS `hopa_advertising`; CREATE TABLE `hopa_advertising` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `resource` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, `sort` int(11) DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `site` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL, `start_time` timestamp NULL DEFAULT NULL, `end_time` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of hopa_advertising -- ---------------------------- INSERT INTO `hopa_advertising` VALUES ('2', '哇哈哈矿泉水', 'http://www.course.com/storage/20200402/c211d09504cb7eac5843cd4215655b59.jpg', '6', '0', '4', '娃哈哈阿娃哈哈。。。。。', '2020-04-02 00:00:00', '2020-05-31 23:59:00', '2020-04-02 13:20:45', '2020-04-02 17:07:08'); INSERT INTO `hopa_advertising` VALUES ('3', '彩色打印机', 'http://www.course.com/storage/20200402/8a4847d585952c72640ebec109cfba70.jpg', '15', '0', '4', '彩色打印机信息。。。。。', null, null, '2020-04-02 13:21:15', '2020-04-02 16:58:48'); INSERT INTO `hopa_advertising` VALUES ('4', '绘画颜料', 'http://www.course.com/storage/20200402/8a782932e60432219529a0a825dcf393.jpg', '11', '1', '4', '五颜六色,万紫千红。。。。。。', null, null, '2020-04-02 13:34:10', '2020-04-02 17:07:16'); INSERT INTO `hopa_advertising` VALUES ('5', '阿里云服务器限时促销', 'http://www.course.com/storage/20200402/5bb9ffd486e105afa9ee4e4b024f5850.jpg', '8', '1', '4', '服务器限时优惠,不容错过。。。。。。', '2020-04-02 00:00:00', '2022-12-31 23:59:00', '2020-04-02 16:48:06', '2020-04-02 17:07:13'); INSERT INTO `hopa_advertising` VALUES ('6', '腾讯视频免费会员限时领取', 'http://www.course.com/storage/20200402/de8488a0c7fd2c6fcc55445fe1b4ae1d.jpg', '88', '0', '5', '免费领会员看视频', '2020-04-02 16:56:00', '2020-05-30 16:56:00', '2020-04-02 16:57:14', '2020-04-02 16:57:14'); -- ---------------------------- -- Table structure for hopa_advertising_site -- ---------------------------- DROP TABLE IF EXISTS `hopa_advertising_site`; CREATE TABLE `hopa_advertising_site` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, `path` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `description` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- ---------------------------- -- Records of hopa_advertising_site -- ---------------------------- INSERT INTO `hopa_advertising_site` VALUES ('1', '首页', 'tongcehng/duanxin', '0', '首页轮播图', '2020-04-02 16:04:54', '2020-04-02 15:03:26'); INSERT INTO `hopa_advertising_site` VALUES ('4', '列表页', 'ceshi/zhnaeiw', '1', '此位置主要展示绘画课程。。。。。。', '2020-04-02 16:05:10', '2020-04-02 15:27:01'); INSERT INTO `hopa_advertising_site` VALUES ('5', '分类列表页', 'cate/list', '1', '分类列表页。。。。。', '2020-04-02 16:06:21', '2020-04-02 16:06:07'); INSERT INTO `hopa_advertising_site` VALUES ('6', '课程详情页', 'course/details', '0', '课程详情页广告展示', '2020-04-02 16:07:15', '2020-04-02 16:07:15'); -- ---------------------------- -- Table structure for hopa_category -- ---------------------------- DROP TABLE IF EXISTS `hopa_category`; CREATE TABLE `hopa_category` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '分类的名字', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态:1 有效 ,0 失效', `sort` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '分类描述', `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '/', `level` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `_lft` int(10) unsigned NOT NULL DEFAULT '0', `_rgt` int(10) unsigned NOT NULL DEFAULT '0', `parent_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `hopa_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of hopa_category -- ---------------------------- INSERT INTO `hopa_category` VALUES ('7', '绘画', '1', '8', null, '/7/', '1', '2020-03-31 10:57:02', '2020-04-01 15:55:41', null, '0', '0', '0'); INSERT INTO `hopa_category` VALUES ('8', '书法', '1', '1', null, '/8/', '1', '2020-03-31 10:57:21', '2020-03-31 10:57:22', null, '0', '0', '0'); INSERT INTO `hopa_category` VALUES ('9', '卡通画', '1', '2', null, '/7/9/', '2', '2020-03-31 10:57:50', '2020-03-31 12:12:50', null, '0', '0', '7'); INSERT INTO `hopa_category` VALUES ('10', '水彩画', '1', '2', null, '/7/10/', '2', '2020-03-31 10:58:15', '2020-03-31 12:13:33', null, '0', '0', '7'); INSERT INTO `hopa_category` VALUES ('11', '山水画', '1', '2', null, '/7/11/', '2', '2020-03-31 10:58:52', '2020-03-31 10:58:52', null, '0', '0', '7'); INSERT INTO `hopa_category` VALUES ('12', '蜡笔画', '1', '2', null, '/7/12/', '2', '2020-03-31 11:09:16', '2020-03-31 11:09:17', null, '0', '0', '7'); INSERT INTO `hopa_category` VALUES ('13', '甲骨文', '1', '2', null, '/8/13/', '2', '2020-03-31 11:11:40', '2020-03-31 11:11:40', null, '0', '0', '8'); INSERT INTO `hopa_category` VALUES ('14', '小篆', '1', '22', null, '/8/14/', '2', '2020-03-31 11:47:22', '2020-04-01 17:58:56', null, '0', '0', '8'); INSERT INTO `hopa_category` VALUES ('16', '草书', '1', '23', null, '/8/16/', '2', '2020-03-31 11:49:46', '2020-04-01 17:58:58', null, '0', '0', '8'); INSERT INTO `hopa_category` VALUES ('17', '楷书', '1', '4', null, '/8/17/', '2', '2020-03-31 12:17:25', '2020-04-01 17:59:00', null, '0', '0', '8'); INSERT INTO `hopa_category` VALUES ('18', '人像画', '1', '2', null, '/7/18/', '2', '2020-04-01 10:07:12', '2020-04-01 12:08:03', null, '0', '0', '7'); INSERT INTO `hopa_category` VALUES ('19', '素描', '1', '2', null, '/7/19/', '2', '2020-04-01 12:06:59', '2020-04-01 12:06:59', null, '0', '0', '7'); -- ---------------------------- -- Table structure for hopa_collection -- ---------------------------- DROP TABLE IF EXISTS `hopa_collection`; CREATE TABLE `hopa_collection` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL, `obj_id` bigint(20) DEFAULT NULL, `obj_type` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_collection -- ---------------------------- -- ---------------------------- -- Table structure for hopa_coupons -- ---------------------------- DROP TABLE IF EXISTS `hopa_coupons`; CREATE TABLE `hopa_coupons` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` bigint(20) DEFAULT NULL, `type` int(11) DEFAULT NULL, `start_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `end_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `use_day` int(11) DEFAULT NULL, `amount` decimal(10,2) DEFAULT NULL, `min_limit_amount` decimal(10,2) DEFAULT NULL, `is_disabled` tinyint(4) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `num` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_coupons -- ---------------------------- -- ---------------------------- -- Table structure for hopa_course -- ---------------------------- DROP TABLE IF EXISTS `hopa_course`; CREATE TABLE `hopa_course` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, `category` varchar(50) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `type` tinyint(4) DEFAULT NULL, `pid` bigint(20) DEFAULT NULL, `tags` varchar(255) DEFAULT NULL, `cover` varchar(255) DEFAULT NULL, `resource` varchar(255) DEFAULT NULL, `body` text, `teacher_id` bigint(20) DEFAULT NULL, `watch_num` int(11) DEFAULT NULL, `good_num` int(11) DEFAULT NULL, `collection_num` int(11) DEFAULT NULL, `status` tinyint(4) DEFAULT NULL, `section` int(11) DEFAULT NULL, `original_price` decimal(10,2) DEFAULT NULL, `price` decimal(10,2) DEFAULT NULL, `is_shelves` tinyint(4) DEFAULT NULL, `sort` int(11) DEFAULT NULL, `is_recom` tinyint(4) DEFAULT NULL, `is_hot` tinyint(4) DEFAULT NULL, `is_wonderful` tinyint(4) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_course -- ---------------------------- INSERT INTO `hopa_course` VALUES ('2', '优质会员 硬笔软笔书法速成入门提高一体班', '17', 'asdsad', null, null, '222,223,44', 'http://www.homestead.test/storage/20200401/41207898bac2564c7d2e3eb0940e505c.jpg', null, null, '5', '12', '13', '14', '0', null, '155.00', '122.00', '0', null, '1', '1', '1', '2020-04-01 12:12:04', '2020-04-01 18:10:35'); INSERT INTO `hopa_course` VALUES ('3', '山水画详细解析、卡通漫画高级班', '9', '主要讲解山水画会做技巧12', null, null, '山水,要点,免费,技巧,卡通', 'http://www.homestead.test/storage/20200401/5f6252e4cc1916971d55badaa0ec9ab0.jpg', null, null, '4', '15', '12', '13', '1', null, '180.00', '159.00', '1', null, '1', '0', '1', '2020-04-01 16:35:18', '2020-04-01 18:13:41'); -- ---------------------------- -- Table structure for hopa_course_activities -- ---------------------------- DROP TABLE IF EXISTS `hopa_course_activities`; CREATE TABLE `hopa_course_activities` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(128) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `started_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `ended_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `content` text CHARACTER SET utf8 COLLATE utf8_unicode_ci, `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `num` int(11) DEFAULT NULL COMMENT '活动名额', `img` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of hopa_course_activities -- ---------------------------- -- ---------------------------- -- Table structure for hopa_course_activities_sign_up -- ---------------------------- DROP TABLE IF EXISTS `hopa_course_activities_sign_up`; CREATE TABLE `hopa_course_activities_sign_up` ( `id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `activity_id` int(11) DEFAULT NULL, `name` varchar(32) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `mobile` varchar(11) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `age` tinyint(4) DEFAULT NULL, `out_trade_no` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `status` tinyint(4) DEFAULT NULL COMMENT '0未支付 1已支付 2已退款', `sell_price` decimal(11,0) NOT NULL DEFAULT '0', `discount_amount` decimal(11,0) NOT NULL DEFAULT '0', `is_coupon` tinyint(4) DEFAULT NULL COMMENT '是否使用优惠券', `coupon_id` tinyint(4) DEFAULT NULL COMMENT '优惠券类型', `fee` decimal(11,0) NOT NULL DEFAULT '0' COMMENT '减免价格', `pay_amount` decimal(11,0) DEFAULT '0', `pay_trade_no` varchar(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, `pay_type` tinyint(4) DEFAULT NULL, `payed_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- ---------------------------- -- Records of hopa_course_activities_sign_up -- ---------------------------- -- ---------------------------- -- Table structure for hopa_course_sign_up -- ---------------------------- DROP TABLE IF EXISTS `hopa_course_sign_up`; CREATE TABLE `hopa_course_sign_up` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `grade_id` bigint(20) DEFAULT NULL, `type_id` bigint(20) DEFAULT NULL, `cycle_id` bigint(20) DEFAULT NULL, `course_category_id` bigint(20) DEFAULT NULL, `course_id` bigint(20) DEFAULT NULL, `truename` varchar(50) DEFAULT NULL, `mobile` char(11) DEFAULT NULL, `age` tinyint(4) DEFAULT NULL, `referrer` varchar(50) DEFAULT NULL, `referrer_mobile` char(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_course_sign_up -- ---------------------------- -- ---------------------------- -- Table structure for hopa_course_video -- ---------------------------- DROP TABLE IF EXISTS `hopa_course_video`; CREATE TABLE `hopa_course_video` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `course_id` bigint(20) DEFAULT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `resource` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `parent_id` int(11) DEFAULT NULL, `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `status` tinyint(4) DEFAULT NULL, `sort` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `level` int(11) DEFAULT NULL, `_lft` int(11) DEFAULT NULL, `_rgt` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; -- ---------------------------- -- Records of hopa_course_video -- ---------------------------- INSERT INTO `hopa_course_video` VALUES ('2', '2', '第一章 PHP进阶之路 --- php的起源', 'http://www.homestead.test/storage/20200401/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg', '0', '本章主要讲述。。。。。', null, '1', '2020-04-01 08:29:49', '2020-04-01 16:29:49', '/2/', '1', null, null); INSERT INTO `hopa_course_video` VALUES ('3', '2', '第二章 PHP进阶之路 --- php的发展', 'http://www.homestead.test/storage/20200401/7934d1b8536027d22ef1162f9099d9c4.jpg', '0', null, null, '2', '2020-04-01 08:24:43', '2020-04-01 16:24:43', '/3/', '1', null, null); INSERT INTO `hopa_course_video` VALUES ('4', '2', '第三章 PHP进阶之路 --- php的开拓', 'http://www.homestead.test/storage/20200401/2fd5ebb8e01d81adad9d624d665ab3cc.jpg', '0', null, null, '3', '2020-04-01 08:24:40', '2020-04-01 16:24:40', '/4/', '1', null, null); INSERT INTO `hopa_course_video` VALUES ('5', '2', '第六章 PHP进阶之路 --- php的创新', 'http://www.homestead.test/storage/20200401/7ec749977b57c5422b3ea26f60705afd.jpg', '0', null, null, '6', '2020-04-01 10:05:46', '2020-04-01 18:05:46', '/5/', '1', null, null); INSERT INTO `hopa_course_video` VALUES ('6', '2', '第四章 PHP进阶之路 --- php的创新', 'http://www.homestead.test/storage/20200401/7ec749977b57c5422b3ea26f60705afd.jpg', '0', null, null, '4', '2020-04-01 08:25:27', '2020-04-01 16:25:27', '/6/', '1', null, null); INSERT INTO `hopa_course_video` VALUES ('7', '2', '第五章 PHP进阶之路 --- php的起源', 'http://www.homestead.test/storage/20200401/0b3874069b744ceb9049cb4aff8dda90.jpg', '0', null, null, '5', '2020-04-01 08:25:30', '2020-04-01 16:25:30', '/7/', '1', null, null); INSERT INTO `hopa_course_video` VALUES ('10', '2', '第5.1节 php起源之旅', 'http://www.course.com/storage/20200402/101c705fcc134372f3c53383c7657491.mp4', '7', '本小节主要讲php起源之始末。。。。。。。', null, '15', '2020-04-02 17:15:15', '2020-04-02 17:15:15', '/7/10/', '2', null, null); INSERT INTO `hopa_course_video` VALUES ('13', '2', '第2.1节 php函数汇总', 'http://www.homestead.test/storage/20200401/2354e0f501796ca55ece286309d2aaa6.jpg', '3', null, null, '7', '2020-04-01 08:17:17', '2020-04-01 16:17:17', '/3/13/', '2', null, null); INSERT INTO `hopa_course_video` VALUES ('14', '2', '第九章 PHP进阶完成', 'http://www.homestead.test/storage/20200401/7afe36e09a5a63b12900e140fd08e3aa.jpg', '0', '完成进阶之路。。。', null, '9', '2020-04-01 08:32:57', '2020-04-01 16:32:57', '/14/', '1', null, null); -- ---------------------------- -- Table structure for hopa_good -- ---------------------------- DROP TABLE IF EXISTS `hopa_good`; CREATE TABLE `hopa_good` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL, `obj_id` bigint(20) DEFAULT NULL, `obj_type` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_good -- ---------------------------- -- ---------------------------- -- Table structure for hopa_history -- ---------------------------- DROP TABLE IF EXISTS `hopa_history`; CREATE TABLE `hopa_history` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(11) DEFAULT NULL, `obj_id` bigint(11) DEFAULT NULL, `obj_type` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_history -- ---------------------------- -- ---------------------------- -- Table structure for hopa_incarnate_order -- ---------------------------- DROP TABLE IF EXISTS `hopa_incarnate_order`; CREATE TABLE `hopa_incarnate_order` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_incarnate_order -- ---------------------------- -- ---------------------------- -- Table structure for hopa_message -- ---------------------------- DROP TABLE IF EXISTS `hopa_message`; CREATE TABLE `hopa_message` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_message -- ---------------------------- -- ---------------------------- -- Table structure for hopa_pay_order -- ---------------------------- DROP TABLE IF EXISTS `hopa_pay_order`; CREATE TABLE `hopa_pay_order` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `no` varchar(32) DEFAULT NULL, `money` decimal(10,2) DEFAULT NULL, `discounts_money` decimal(10,2) DEFAULT NULL, `total_money` decimal(10,2) DEFAULT NULL, `pay_money` decimal(10,2) DEFAULT NULL, `pay_status` tinyint(4) DEFAULT NULL, `pay_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `obj_id` bigint(20) DEFAULT NULL, `obj_type` varchar(255) DEFAULT NULL, `wechat_result` varchar(255) DEFAULT NULL, `wechat_result_code` varchar(255) DEFAULT NULL, `status` tinyint(4) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_pay_order -- ---------------------------- -- ---------------------------- -- Table structure for hopa_shop -- ---------------------------- DROP TABLE IF EXISTS `hopa_shop`; CREATE TABLE `hopa_shop` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `coordinates` varchar(255) DEFAULT NULL, `body` text, `manager` varchar(255) DEFAULT NULL, `mobile` varchar(255) DEFAULT NULL, `cover` varchar(255) DEFAULT NULL, `country` varchar(255) DEFAULT NULL, `province` varchar(255) DEFAULT NULL, `city` varchar(255) DEFAULT NULL, `district` varchar(255) DEFAULT NULL, `wechat_no` varchar(50) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_shop -- ---------------------------- -- ---------------------------- -- Table structure for hopa_teacher -- ---------------------------- DROP TABLE IF EXISTS `hopa_teacher`; CREATE TABLE `hopa_teacher` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `headimg` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `body` text, `tags` varchar(255) DEFAULT NULL COMMENT '标签', `course_num` int(11) DEFAULT '0' COMMENT '课程数', `good_num` int(11) DEFAULT '0' COMMENT '点赞数', `status` tinyint(4) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_teacher -- ---------------------------- INSERT INTO `hopa_teacher` VALUES ('1', '张一方', 'http://www.homestead.test/storage/20200331/a71a130795ff13d4c16ab4bebc8b710f.jpg', '擅长国画山水画,草书', '阿三顶顶顶顶顶121', '121,123,122,124', '10', '121', '2', '2020-03-31 14:31:23', '2020-04-01 18:19:44'); INSERT INTO `hopa_teacher` VALUES ('5', '郝又多', 'http://www.homestead.test/storage/20200331/60f9a670bed38ed752cf97e9e918c846.jpg', '阿松大12', '阿松大12', '121,123', '12', '1820', '1', '2020-03-31 15:13:08', '2020-03-31 16:31:15'); INSERT INTO `hopa_teacher` VALUES ('3', '王一添123', 'http://www.homestead.test/storage/20200331/80874c33c7911c28db3b0d54ca98bb34.jpg', '阿松大123', '阿松大123', null, null, null, '2', '2020-03-31 14:41:48', '2020-03-31 15:11:46'); INSERT INTO `hopa_teacher` VALUES ('4', '柳随风', 'http://www.homestead.test/storage/20200331/6d8c31fb18a04b754fa286247a3b7b39.jpg', '阿松大', '阿松大', null, null, null, '0', '2020-03-31 14:44:42', '2020-03-31 14:44:42'); INSERT INTO `hopa_teacher` VALUES ('6', '俞得水1', 'http://www.homestead.test/storage/20200331/58f6bbf209b082bdd8a9b208a66309b9.jpg', '啊实打实的1', '阿三顶顶顶1', '去1,去2,去3,去', '0', '0', '0', '2020-03-31 15:58:59', '2020-03-31 15:58:59'); INSERT INTO `hopa_teacher` VALUES ('7', '李一凡', 'http://www.homestead.test/storage/20200331/563bb0fdc346883f7556211564fb9a8a.jpg', '阿松大', '阿松大阿斯蒂芬撒地方', '我1,我2,我,666,888,111,我6,我8,我9', '0', '0', '2', '2020-03-31 16:02:32', '2020-03-31 16:20:55'); INSERT INTO `hopa_teacher` VALUES ('8', '沈为其', 'http://www.homestead.test/storage/20200331/97441842ccb846cdb2f3c92254c7689d.jpg', '阿松大', '阿松大', '阿松大1,阿松大2', '11', '12368', '0', '2020-03-31 16:32:39', '2020-03-31 16:32:39'); -- ---------------------------- -- Table structure for hopa_userinfo -- ---------------------------- DROP TABLE IF EXISTS `hopa_userinfo`; CREATE TABLE `hopa_userinfo` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `is_partner` tinyint(4) DEFAULT NULL, `wellat` decimal(10,0) DEFAULT NULL, `qr_code` varchar(255) DEFAULT NULL, `promote_num` int(11) DEFAULT NULL, `income` decimal(10,2) DEFAULT NULL, `incarnate` decimal(10,2) DEFAULT NULL, `card_id` varchar(50) DEFAULT NULL, `card_truename` varchar(50) DEFAULT NULL, `card_no` varchar(18) DEFAULT NULL, `truename` varchar(50) DEFAULT NULL, `mobile` char(11) DEFAULT NULL, `card_address` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_userinfo -- ---------------------------- -- ---------------------------- -- Table structure for hopa_user_coupon -- ---------------------------- DROP TABLE IF EXISTS `hopa_user_coupon`; CREATE TABLE `hopa_user_coupon` ( `id` bigint(20) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `coupon_id` bigint(20) DEFAULT NULL, `start_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `end_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `is_use` tinyint(4) DEFAULT NULL, `type` tinyint(4) DEFAULT NULL, `obj_id` bigint(20) DEFAULT NULL, `obj_type` bigint(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_user_coupon -- ---------------------------- -- ---------------------------- -- Table structure for hopa_vip -- ---------------------------- DROP TABLE IF EXISTS `hopa_vip`; CREATE TABLE `hopa_vip` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `gread` varchar(255) DEFAULT NULL, `body` text, `original_price` decimal(10,2) DEFAULT NULL, `price` decimal(10,2) DEFAULT NULL, `course_type` bigint(20) DEFAULT NULL, `num` int(11) DEFAULT NULL, `sort` int(11) DEFAULT NULL, `is_show` tinyint(4) DEFAULT NULL, `status` tinyint(4) DEFAULT NULL, `use_day` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_vip -- ---------------------------- -- ---------------------------- -- Table structure for hopa_vip_order -- ---------------------------- DROP TABLE IF EXISTS `hopa_vip_order`; CREATE TABLE `hopa_vip_order` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `vip_card_id` bigint(20) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `card_no` varchar(30) DEFAULT NULL, `start_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `end_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `status` tinyint(4) DEFAULT NULL, `is_pay` tinyint(4) DEFAULT NULL, `money` decimal(10,2) DEFAULT NULL, `type` tinyint(4) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_vip_order -- ---------------------------- -- ---------------------------- -- Table structure for hopa_wettat_log -- ---------------------------- DROP TABLE IF EXISTS `hopa_wettat_log`; CREATE TABLE `hopa_wettat_log` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL, `type` tinyint(4) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `money` decimal(10,2) DEFAULT NULL, `start_money` decimal(10,2) DEFAULT NULL, `end_money` decimal(10,2) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of hopa_wettat_log -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_addresses -- ---------------------------- DROP TABLE IF EXISTS `ibrand_addresses`; CREATE TABLE `ibrand_addresses` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `accept_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mobile` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `province` int(11) DEFAULT NULL, `city` int(11) DEFAULT NULL, `area` int(11) DEFAULT NULL, `address_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_addresses -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_advert -- ---------------------------- DROP TABLE IF EXISTS `ibrand_advert`; CREATE TABLE `ibrand_advert` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1', `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_show_title` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ibrand_advert_code_unique` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_advert -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_advert_item -- ---------------------------- DROP TABLE IF EXISTS `ibrand_advert_item`; CREATE TABLE `ibrand_advert_item` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `advert_id` int(10) unsigned NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '1', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sort` int(11) NOT NULL DEFAULT '99', `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `associate_id` int(11) DEFAULT NULL, `associate_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `_lft` int(10) unsigned NOT NULL DEFAULT '0', `_rgt` int(10) unsigned NOT NULL DEFAULT '0', `parent_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `ibrand_advert_item__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_advert_item -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_agent -- ---------------------------- DROP TABLE IF EXISTS `ibrand_agent`; CREATE TABLE `ibrand_agent` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL COMMENT '用户ID', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '姓名', `mobile` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '手机号码', `note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注', `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '编码', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态 0:待审核 1:审核通过 2:审核不通过 3:清退', `total_commission` int(11) NOT NULL DEFAULT '0' COMMENT '总佣金', `balance` int(11) NOT NULL DEFAULT '0' COMMENT '佣金余额', `type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '分销员类型:1 普通;2 机构;3 门店', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `el_agent_code_unique` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_agent -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_agent_cash -- ---------------------------- DROP TABLE IF EXISTS `ibrand_agent_cash`; CREATE TABLE `ibrand_agent_cash` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `agent_id` int(11) NOT NULL COMMENT '分销商ID', `amount` int(11) NOT NULL DEFAULT '0' COMMENT '金额', `balance` int(11) NOT NULL DEFAULT '0' COMMENT '余额', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态 0:待审核 1:待打款提现 2:已打款提现 3:审核不通过', `settle_time` datetime DEFAULT NULL COMMENT '打款时间', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_agent_cash -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_agent_commission -- ---------------------------- DROP TABLE IF EXISTS `ibrand_agent_commission`; CREATE TABLE `ibrand_agent_commission` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `agent_id` int(11) NOT NULL COMMENT '分销商ID', `agent_order_id` int(11) NOT NULL COMMENT '分销商订单表ID', `commission` int(11) NOT NULL DEFAULT '0' COMMENT '佣金 单位为分', `note` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '描述', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_agent_commission -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_agent_goods -- ---------------------------- DROP TABLE IF EXISTS `ibrand_agent_goods`; CREATE TABLE `ibrand_agent_goods` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(11) NOT NULL COMMENT '商品ID', `activity` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否参与推广 0:不参与 1:参与', `rate` double(8,2) NOT NULL COMMENT '佣金比例', `rate_organ` double(8,2) NOT NULL DEFAULT '0.00' COMMENT '机构推客佣金比例', `rate_shop` double(8,2) NOT NULL DEFAULT '0.00' COMMENT '门店推客佣金比例', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_agent_goods -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_agent_order -- ---------------------------- DROP TABLE IF EXISTS `ibrand_agent_order`; CREATE TABLE `ibrand_agent_order` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `agent_id` int(11) NOT NULL, `from_agent_id` int(11) NOT NULL DEFAULT '0' COMMENT '来源分销商id', `level` int(11) NOT NULL DEFAULT '0' COMMENT '来源分销商层级', `agent_order_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '分销订单编号', `order_id` int(11) NOT NULL COMMENT '订单id', `total_commission` int(11) NOT NULL DEFAULT '0' COMMENT '总佣金 单位为分', `commission` int(11) NOT NULL DEFAULT '0' COMMENT '预计可获得佣金 单位为分', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '佣金状态: 0、未结算 1、已结算 2、已失效', `settle_time` datetime DEFAULT NULL COMMENT '结算时间', `settle_days` int(11) DEFAULT '0' COMMENT '结算周期:用于猫大手动添加佣金记录', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_agent_order -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_agent_order_item -- ---------------------------- DROP TABLE IF EXISTS `ibrand_agent_order_item`; CREATE TABLE `ibrand_agent_order_item` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `agent_id` int(11) NOT NULL COMMENT '分销商id', `order_item_id` int(11) NOT NULL COMMENT '订单item ID', `agent_order_id` int(11) NOT NULL COMMENT '分销商订单表ID', `rate` double(8,2) NOT NULL COMMENT '佣金比例', `total_commission` int(11) NOT NULL DEFAULT '0' COMMENT '总佣金 单位为分', `commission` int(11) NOT NULL DEFAULT '0' COMMENT '预计可获得佣金', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '佣金状态: 0、未结算 1、已结算 2、已失效', `settle_time` datetime DEFAULT NULL COMMENT '结算时间', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_agent_order_item -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_agent_relation -- ---------------------------- DROP TABLE IF EXISTS `ibrand_agent_relation`; CREATE TABLE `ibrand_agent_relation` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `level` int(11) NOT NULL COMMENT '相对等级', `parent_agent_id` int(11) NOT NULL COMMENT 'agent_id的父ID', `agent_id` int(11) NOT NULL COMMENT '分销商ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_agent_relation -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_agent_user_relation -- ---------------------------- DROP TABLE IF EXISTS `ibrand_agent_user_relation`; CREATE TABLE `ibrand_agent_user_relation` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `agent_id` int(11) NOT NULL COMMENT '分销商ID', `user_id` int(11) NOT NULL COMMENT '用户ID', `flag` tinyint(4) NOT NULL DEFAULT '2' COMMENT '是否是新用户:1 是 2否', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_agent_user_relation -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_article -- ---------------------------- DROP TABLE IF EXISTS `ibrand_article`; CREATE TABLE `ibrand_article` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` int(11) NOT NULL COMMENT '文章类型', `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文章标题', `sub_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '文章副标题', `author` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '文章发布人', `author_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '发布人头衔', `author_avatar` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '发布人头像', `img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '展示图片', `goods` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '关联商品', `article_detail` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '文章详情', `is_recommend` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否推荐', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '发布状态', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_article -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_balance -- ---------------------------- DROP TABLE IF EXISTS `ibrand_balance`; CREATE TABLE `ibrand_balance` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL COMMENT '用户id,外键关联 user 表 id 字段', `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'expend' COMMENT '余额变动的类型:recharge(充值), expend(消费)', `note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '文字描述,展示给用户', `value` int(11) NOT NULL DEFAULT '0' COMMENT '单位:分', `current_balance` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '当前余额', `origin_id` int(11) NOT NULL DEFAULT '0' COMMENT '引起变动的数据来源的id', `origin_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '引起变动的数据来源类型,值通常为 class 全称', `channel` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '渠道:可能的值 online (线上) offline (线下),', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_balance -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_balance_cash -- ---------------------------- DROP TABLE IF EXISTS `ibrand_balance_cash`; CREATE TABLE `ibrand_balance_cash` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `cash_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cash_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer_account', `agent_id` int(10) unsigned NOT NULL DEFAULT '0', `amount` int(11) NOT NULL DEFAULT '0' COMMENT '金额', `balance` int(11) NOT NULL DEFAULT '0' COMMENT '余额', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态 0:待审核 1:待打款提现 2:已打款提现 3:审核不通过', `settle_time` timestamp NULL DEFAULT NULL COMMENT '打款时间', `cert` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '打款凭证', `bank_account_id` int(11) NOT NULL DEFAULT '0' COMMENT '账号ID', `bank_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '银行名称', `bank_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '账号', `owner_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '收款姓名', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_balance_cash -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_balance_order -- ---------------------------- DROP TABLE IF EXISTS `ibrand_balance_order`; CREATE TABLE `ibrand_balance_order` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL COMMENT '用户id,外键关联 user 表 id 字段', `order_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '订单编号', `pay_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '支付方式 包含支付宝,微信,余额支付', `pay_status` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '支付状态,0 待支付,1 已支付 2 已退款', `pay_time` timestamp NULL DEFAULT NULL COMMENT '完成支付时间', `amount` int(10) unsigned NOT NULL COMMENT '实际到账金额,单位:分', `pay_amount` int(10) unsigned NOT NULL COMMENT '实际支付金额,单位:分', `origin_id` int(10) unsigned DEFAULT NULL COMMENT '支付优惠活动的id', `origin_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '支付优惠活动类型的class name', `note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '备注信息', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `recharge_rule_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_balance_order -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_category -- ---------------------------- DROP TABLE IF EXISTS `ibrand_category`; CREATE TABLE `ibrand_category` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '分类的名字', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态:1 有效 ,0 失效', `sort` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '分类描述', `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '/', `level` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `_lft` int(10) unsigned NOT NULL DEFAULT '0', `_rgt` int(10) unsigned NOT NULL DEFAULT '0', `parent_id` int(10) unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `ibrand_category__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_category -- ---------------------------- INSERT INTO `ibrand_category` VALUES ('7', '绘画', '1', '3', null, '/7/', '1', '2020-03-31 10:57:02', '2020-03-31 12:03:38', null, '0', '0', '0'); INSERT INTO `ibrand_category` VALUES ('8', '书法', '1', '1', null, '/8/', '1', '2020-03-31 10:57:21', '2020-03-31 10:57:22', null, '0', '0', '0'); INSERT INTO `ibrand_category` VALUES ('9', '卡通画', '1', '2', null, '/9/', '1', '2020-03-31 10:57:50', '2020-03-31 10:57:51', null, '0', '0', '0'); INSERT INTO `ibrand_category` VALUES ('10', '水彩画', '1', '2', null, '/10/', '1', '2020-03-31 10:58:15', '2020-03-31 10:58:15', null, '0', '0', '0'); INSERT INTO `ibrand_category` VALUES ('11', '山水画', '1', '2', null, '/7/11/', '2', '2020-03-31 10:58:52', '2020-03-31 10:58:52', null, '0', '0', '7'); INSERT INTO `ibrand_category` VALUES ('12', '蜡笔画', '1', '2', null, '/7/12/', '2', '2020-03-31 11:09:16', '2020-03-31 11:09:17', null, '0', '0', '7'); INSERT INTO `ibrand_category` VALUES ('13', '甲骨文', '1', '2', null, '/8/13/', '2', '2020-03-31 11:11:40', '2020-03-31 11:11:40', null, '0', '0', '8'); -- ---------------------------- -- Table structure for ibrand_category_group -- ---------------------------- DROP TABLE IF EXISTS `ibrand_category_group`; CREATE TABLE `ibrand_category_group` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `group_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '分组描述', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_category_group -- ---------------------------- INSERT INTO `ibrand_category_group` VALUES ('1', '默认分组', '默认分组', '2020-03-23 21:50:43', '2020-03-23 21:50:43', null); -- ---------------------------- -- Table structure for ibrand_cdn_files -- ---------------------------- DROP TABLE IF EXISTS `ibrand_cdn_files`; CREATE TABLE `ibrand_cdn_files` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `client_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_cdn_files -- ---------------------------- INSERT INTO `ibrand_cdn_files` VALUES ('1', null, '20200331/fdb6b84ba00c81ddec77c904fb7ee2a8.jpg', 'http://www.homestead.test/storage/20200331/fdb6b84ba00c81ddec77c904fb7ee2a8.jpg', '2020-03-31 12:32:50', '2020-03-31 12:32:50'); INSERT INTO `ibrand_cdn_files` VALUES ('2', null, '20200331/8dbd29bf7e49dfd3393cf19253113921.jpg', 'http://www.homestead.test/storage/20200331/8dbd29bf7e49dfd3393cf19253113921.jpg', '2020-03-31 14:07:57', '2020-03-31 14:07:57'); INSERT INTO `ibrand_cdn_files` VALUES ('3', null, '20200331/554622175f280080c5d22a18999809c2.jpg', 'http://www.homestead.test/storage/20200331/554622175f280080c5d22a18999809c2.jpg', '2020-03-31 14:08:47', '2020-03-31 14:08:47'); INSERT INTO `ibrand_cdn_files` VALUES ('4', null, '20200331/b4b509fc11c79fc14fe78c6b06b2b568.jpg', 'http://www.homestead.test/storage/20200331/b4b509fc11c79fc14fe78c6b06b2b568.jpg', '2020-03-31 14:24:14', '2020-03-31 14:24:14'); INSERT INTO `ibrand_cdn_files` VALUES ('5', null, '20200331/a9754894b2aaab61fe6cd7f733b5546e.jpg', 'http://www.homestead.test/storage/20200331/a9754894b2aaab61fe6cd7f733b5546e.jpg', '2020-03-31 14:26:30', '2020-03-31 14:26:30'); INSERT INTO `ibrand_cdn_files` VALUES ('6', null, '20200331/eec2b97255fc437e25c8d534ba41f2be.jpg', 'http://www.homestead.test/storage/20200331/eec2b97255fc437e25c8d534ba41f2be.jpg', '2020-03-31 14:28:04', '2020-03-31 14:28:04'); INSERT INTO `ibrand_cdn_files` VALUES ('7', null, '20200331/9f080d4e2e4b64c2dc04b8f34e3e2423.jpg', 'http://www.homestead.test/storage/20200331/9f080d4e2e4b64c2dc04b8f34e3e2423.jpg', '2020-03-31 14:36:11', '2020-03-31 14:36:11'); INSERT INTO `ibrand_cdn_files` VALUES ('8', null, '20200331/32487e04eb9bbf71873524a56c36c0cb.jpg', 'http://www.homestead.test/storage/20200331/32487e04eb9bbf71873524a56c36c0cb.jpg', '2020-03-31 14:38:06', '2020-03-31 14:38:06'); INSERT INTO `ibrand_cdn_files` VALUES ('9', null, '20200331/667871be526b9ffc0cfe199b1aaba2a7.jpg', 'http://www.homestead.test/storage/20200331/667871be526b9ffc0cfe199b1aaba2a7.jpg', '2020-03-31 14:41:43', '2020-03-31 14:41:43'); INSERT INTO `ibrand_cdn_files` VALUES ('10', null, '20200331/6d8c31fb18a04b754fa286247a3b7b39.jpg', 'http://www.homestead.test/storage/20200331/6d8c31fb18a04b754fa286247a3b7b39.jpg', '2020-03-31 14:42:42', '2020-03-31 14:42:42'); INSERT INTO `ibrand_cdn_files` VALUES ('11', null, '20200331/e484885947468b587dc9195b7fb3fd97.jpg', 'http://www.homestead.test/storage/20200331/e484885947468b587dc9195b7fb3fd97.jpg', '2020-03-31 15:05:18', '2020-03-31 15:05:18'); INSERT INTO `ibrand_cdn_files` VALUES ('12', null, '20200331/c69f5895e1493185896e71385f9b89ef.jpg', 'http://www.homestead.test/storage/20200331/c69f5895e1493185896e71385f9b89ef.jpg', '2020-03-31 15:06:03', '2020-03-31 15:06:03'); INSERT INTO `ibrand_cdn_files` VALUES ('13', null, '20200331/e2bb30ced2fa8064c4b2fac9e79a76a1.jpg', 'http://www.homestead.test/storage/20200331/e2bb30ced2fa8064c4b2fac9e79a76a1.jpg', '2020-03-31 15:10:00', '2020-03-31 15:10:00'); INSERT INTO `ibrand_cdn_files` VALUES ('14', null, '20200331/80874c33c7911c28db3b0d54ca98bb34.jpg', 'http://www.homestead.test/storage/20200331/80874c33c7911c28db3b0d54ca98bb34.jpg', '2020-03-31 15:11:25', '2020-03-31 15:11:25'); INSERT INTO `ibrand_cdn_files` VALUES ('15', null, '20200331/60f9a670bed38ed752cf97e9e918c846.jpg', 'http://www.homestead.test/storage/20200331/60f9a670bed38ed752cf97e9e918c846.jpg', '2020-03-31 15:13:01', '2020-03-31 15:13:01'); INSERT INTO `ibrand_cdn_files` VALUES ('16', null, '20200331/58f6bbf209b082bdd8a9b208a66309b9.jpg', 'http://www.homestead.test/storage/20200331/58f6bbf209b082bdd8a9b208a66309b9.jpg', '2020-03-31 15:49:36', '2020-03-31 15:49:36'); INSERT INTO `ibrand_cdn_files` VALUES ('17', null, '20200331/563bb0fdc346883f7556211564fb9a8a.jpg', 'http://www.homestead.test/storage/20200331/563bb0fdc346883f7556211564fb9a8a.jpg', '2020-03-31 16:01:14', '2020-03-31 16:01:14'); INSERT INTO `ibrand_cdn_files` VALUES ('18', null, '20200331/a71a130795ff13d4c16ab4bebc8b710f.jpg', 'http://www.homestead.test/storage/20200331/a71a130795ff13d4c16ab4bebc8b710f.jpg', '2020-03-31 16:29:50', '2020-03-31 16:29:50'); INSERT INTO `ibrand_cdn_files` VALUES ('19', null, '20200331/97441842ccb846cdb2f3c92254c7689d.jpg', 'http://www.homestead.test/storage/20200331/97441842ccb846cdb2f3c92254c7689d.jpg', '2020-03-31 16:32:14', '2020-03-31 16:32:14'); INSERT INTO `ibrand_cdn_files` VALUES ('20', null, '20200401/69de87a58153b505cf31ca997bffab39.jpg', 'http://www.homestead.test/storage/20200401/69de87a58153b505cf31ca997bffab39.jpg', '2020-04-01 09:46:06', '2020-04-01 09:46:06'); INSERT INTO `ibrand_cdn_files` VALUES ('21', null, '20200401/d5d62077fc0b0001b445ad642e3d54f9.jpg', 'http://www.homestead.test/storage/20200401/d5d62077fc0b0001b445ad642e3d54f9.jpg', '2020-04-01 09:58:25', '2020-04-01 09:58:25'); INSERT INTO `ibrand_cdn_files` VALUES ('22', null, '20200401/c8123dc0f1ce75a0409ce2748bff2d89.jpg', 'http://www.homestead.test/storage/20200401/c8123dc0f1ce75a0409ce2748bff2d89.jpg', '2020-04-01 10:04:54', '2020-04-01 10:04:54'); INSERT INTO `ibrand_cdn_files` VALUES ('23', null, '20200401/f706b6bdb7cb47d0e96e6f66e7f903b0.jpg', 'http://www.homestead.test/storage/20200401/f706b6bdb7cb47d0e96e6f66e7f903b0.jpg', '2020-04-01 10:05:55', '2020-04-01 10:05:55'); INSERT INTO `ibrand_cdn_files` VALUES ('24', null, '20200401/d14e87c8cb2b493d5d7110a60035f87d.jpg', 'http://www.homestead.test/storage/20200401/d14e87c8cb2b493d5d7110a60035f87d.jpg', '2020-04-01 10:33:26', '2020-04-01 10:33:26'); INSERT INTO `ibrand_cdn_files` VALUES ('25', null, '20200401/9c812ebb7f5ddbf9816d3c554f29b69f.jpg', 'http://www.homestead.test/storage/20200401/9c812ebb7f5ddbf9816d3c554f29b69f.jpg', '2020-04-01 11:47:18', '2020-04-01 11:47:18'); INSERT INTO `ibrand_cdn_files` VALUES ('26', null, '20200401/a91e78a33b47c8b827d2f7ac90ec9647.jpg', 'http://www.homestead.test/storage/20200401/a91e78a33b47c8b827d2f7ac90ec9647.jpg', '2020-04-01 11:49:42', '2020-04-01 11:49:42'); INSERT INTO `ibrand_cdn_files` VALUES ('27', null, '20200401/41207898bac2564c7d2e3eb0940e505c.jpg', 'http://www.homestead.test/storage/20200401/41207898bac2564c7d2e3eb0940e505c.jpg', '2020-04-01 12:08:41', '2020-04-01 12:08:41'); INSERT INTO `ibrand_cdn_files` VALUES ('28', null, '20200401/f64906475ac1b25b63c8842f4235a070.jpg', 'http://www.homestead.test/storage/20200401/f64906475ac1b25b63c8842f4235a070.jpg', '2020-04-01 13:50:10', '2020-04-01 13:50:10'); INSERT INTO `ibrand_cdn_files` VALUES ('29', null, '20200401/afdc02c783142d19a0534dd7dfbd97f4.jpg', 'http://www.homestead.test/storage/20200401/afdc02c783142d19a0534dd7dfbd97f4.jpg', '2020-04-01 13:51:28', '2020-04-01 13:51:28'); INSERT INTO `ibrand_cdn_files` VALUES ('30', null, '20200401/fab27dc8f68a94d34f4a23cbd277ca1c.jpg', 'http://www.homestead.test/storage/20200401/fab27dc8f68a94d34f4a23cbd277ca1c.jpg', '2020-04-01 13:52:22', '2020-04-01 13:52:22'); INSERT INTO `ibrand_cdn_files` VALUES ('31', null, '20200401/db2dc0f9d1fef6049022277793fd7a46.jpg', 'http://www.homestead.test/storage/20200401/db2dc0f9d1fef6049022277793fd7a46.jpg', '2020-04-01 13:56:29', '2020-04-01 13:56:29'); INSERT INTO `ibrand_cdn_files` VALUES ('32', null, '20200401/42fdf422d7db61dadd8cb4433f54f335.jpg', 'http://www.homestead.test/storage/20200401/42fdf422d7db61dadd8cb4433f54f335.jpg', '2020-04-01 13:56:50', '2020-04-01 13:56:50'); INSERT INTO `ibrand_cdn_files` VALUES ('33', null, '20200401/ed2cacdbf8bf40c3eb5e03761589ed01.jpg', 'http://www.homestead.test/storage/20200401/ed2cacdbf8bf40c3eb5e03761589ed01.jpg', '2020-04-01 13:57:24', '2020-04-01 13:57:24'); INSERT INTO `ibrand_cdn_files` VALUES ('34', null, '20200401/c43c8a23e7e24cb363b844a62980d978.jpg', 'http://www.homestead.test/storage/20200401/c43c8a23e7e24cb363b844a62980d978.jpg', '2020-04-01 14:00:13', '2020-04-01 14:00:13'); INSERT INTO `ibrand_cdn_files` VALUES ('35', null, '20200401/bd9ad1492167f841012a62201fffcdb9.jpg', 'http://www.homestead.test/storage/20200401/bd9ad1492167f841012a62201fffcdb9.jpg', '2020-04-01 14:00:41', '2020-04-01 14:00:41'); INSERT INTO `ibrand_cdn_files` VALUES ('36', null, '20200401/9c4ea75aefea1a14a2bc0e35a0d83263.jpg', 'http://www.homestead.test/storage/20200401/9c4ea75aefea1a14a2bc0e35a0d83263.jpg', '2020-04-01 14:02:44', '2020-04-01 14:02:44'); INSERT INTO `ibrand_cdn_files` VALUES ('37', null, '20200401/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg', 'http://www.homestead.test/storage/20200401/5c45ea2fa93ff3cb8a7d7ad9b2078ad2.jpg', '2020-04-01 14:09:39', '2020-04-01 14:09:39'); INSERT INTO `ibrand_cdn_files` VALUES ('38', null, '20200401/7934d1b8536027d22ef1162f9099d9c4.jpg', 'http://www.homestead.test/storage/20200401/7934d1b8536027d22ef1162f9099d9c4.jpg', '2020-04-01 14:37:08', '2020-04-01 14:37:08'); INSERT INTO `ibrand_cdn_files` VALUES ('39', null, '20200401/2fd5ebb8e01d81adad9d624d665ab3cc.jpg', 'http://www.homestead.test/storage/20200401/2fd5ebb8e01d81adad9d624d665ab3cc.jpg', '2020-04-01 14:43:04', '2020-04-01 14:43:04'); INSERT INTO `ibrand_cdn_files` VALUES ('40', null, '20200401/7ec749977b57c5422b3ea26f60705afd.jpg', 'http://www.homestead.test/storage/20200401/7ec749977b57c5422b3ea26f60705afd.jpg', '2020-04-01 14:45:26', '2020-04-01 14:45:26'); INSERT INTO `ibrand_cdn_files` VALUES ('41', null, '20200401/0b3874069b744ceb9049cb4aff8dda90.jpg', 'http://www.homestead.test/storage/20200401/0b3874069b744ceb9049cb4aff8dda90.jpg', '2020-04-01 14:57:05', '2020-04-01 14:57:05'); INSERT INTO `ibrand_cdn_files` VALUES ('42', null, '20200401/1ebf0f99266a29135b036b462eb0dc34.jpg', 'http://www.homestead.test/storage/20200401/1ebf0f99266a29135b036b462eb0dc34.jpg', '2020-04-01 15:06:52', '2020-04-01 15:06:52'); INSERT INTO `ibrand_cdn_files` VALUES ('43', null, '20200401/b10ca8f1d39a79975a5900e64058fba0.jpg', 'http://www.homestead.test/storage/20200401/b10ca8f1d39a79975a5900e64058fba0.jpg', '2020-04-01 15:46:35', '2020-04-01 15:46:35'); INSERT INTO `ibrand_cdn_files` VALUES ('44', null, '20200401/29d63a0ed83ee3fc99dbdfbba0396ffe.jpg', 'http://www.homestead.test/storage/20200401/29d63a0ed83ee3fc99dbdfbba0396ffe.jpg', '2020-04-01 15:52:59', '2020-04-01 15:52:59'); INSERT INTO `ibrand_cdn_files` VALUES ('45', null, '20200401/2354e0f501796ca55ece286309d2aaa6.jpg', 'http://www.homestead.test/storage/20200401/2354e0f501796ca55ece286309d2aaa6.jpg', '2020-04-01 16:16:57', '2020-04-01 16:16:57'); INSERT INTO `ibrand_cdn_files` VALUES ('46', null, '20200401/7afe36e09a5a63b12900e140fd08e3aa.jpg', 'http://www.homestead.test/storage/20200401/7afe36e09a5a63b12900e140fd08e3aa.jpg', '2020-04-01 16:32:17', '2020-04-01 16:32:17'); INSERT INTO `ibrand_cdn_files` VALUES ('47', null, '20200401/d44e6d682374e28a9f769c2851f8d3a7.jpg', 'http://www.homestead.test/storage/20200401/d44e6d682374e28a9f769c2851f8d3a7.jpg', '2020-04-01 16:34:36', '2020-04-01 16:34:36'); INSERT INTO `ibrand_cdn_files` VALUES ('48', null, '20200401/5f6252e4cc1916971d55badaa0ec9ab0.jpg', 'http://www.homestead.test/storage/20200401/5f6252e4cc1916971d55badaa0ec9ab0.jpg', '2020-04-01 16:36:39', '2020-04-01 16:36:39'); INSERT INTO `ibrand_cdn_files` VALUES ('49', null, '20200401/9fbbea017310c5a78d8afce9836e3378.jpg', 'http://www.homestead.test/storage/20200401/9fbbea017310c5a78d8afce9836e3378.jpg', '2020-04-01 17:56:10', '2020-04-01 17:56:10'); INSERT INTO `ibrand_cdn_files` VALUES ('50', null, '20200401/a52e2d79779a3eb42900002b2b7d2608.jpg', 'http://www.homestead.test/storage/20200401/a52e2d79779a3eb42900002b2b7d2608.jpg', '2020-04-01 18:21:03', '2020-04-01 18:21:03'); INSERT INTO `ibrand_cdn_files` VALUES ('51', null, '20200402/e881b179020340e46277934ed4ded91c.jpg', 'http://www.course.com/storage/20200402/e881b179020340e46277934ed4ded91c.jpg', '2020-04-02 09:52:10', '2020-04-02 09:52:10'); INSERT INTO `ibrand_cdn_files` VALUES ('52', null, '20200402/7029ee38469311501760bd7bbaae4e53.jpg', 'http://www.course.com/storage/20200402/7029ee38469311501760bd7bbaae4e53.jpg', '2020-04-02 09:52:16', '2020-04-02 09:52:16'); INSERT INTO `ibrand_cdn_files` VALUES ('53', null, '20200402/ba2639ec64aa6cbbd03ddb7ab6147047.mp4', 'http://www.course.com/storage/20200402/ba2639ec64aa6cbbd03ddb7ab6147047.mp4', '2020-04-02 09:54:52', '2020-04-02 09:54:52'); INSERT INTO `ibrand_cdn_files` VALUES ('54', null, '20200402/101c705fcc134372f3c53383c7657491.mp4', 'http://www.course.com/storage/20200402/101c705fcc134372f3c53383c7657491.mp4', '2020-04-02 09:55:46', '2020-04-02 09:55:46'); INSERT INTO `ibrand_cdn_files` VALUES ('55', null, '20200402/029d63a9fcd0a8b9bc039b3099663dab.jpg', 'http://www.course.com/storage/20200402/029d63a9fcd0a8b9bc039b3099663dab.jpg', '2020-04-02 13:10:34', '2020-04-02 13:10:34'); INSERT INTO `ibrand_cdn_files` VALUES ('56', null, '20200402/f3e96033d94ebd6d3aa2b8fcd1d0184c.jpg', 'http://www.course.com/storage/20200402/f3e96033d94ebd6d3aa2b8fcd1d0184c.jpg', '2020-04-02 13:19:55', '2020-04-02 13:19:55'); INSERT INTO `ibrand_cdn_files` VALUES ('57', null, '20200402/12734c77701076d5da43bff5c2daf062.jpg', 'http://www.course.com/storage/20200402/12734c77701076d5da43bff5c2daf062.jpg', '2020-04-02 13:31:21', '2020-04-02 13:31:21'); INSERT INTO `ibrand_cdn_files` VALUES ('58', null, '20200402/8a782932e60432219529a0a825dcf393.jpg', 'http://www.course.com/storage/20200402/8a782932e60432219529a0a825dcf393.jpg', '2020-04-02 13:33:15', '2020-04-02 13:33:15'); INSERT INTO `ibrand_cdn_files` VALUES ('59', null, '20200402/b6ccf17c5e0e7d9dcc218d6424673f33.jpg', 'http://www.course.com/storage/20200402/b6ccf17c5e0e7d9dcc218d6424673f33.jpg', '2020-04-02 13:49:10', '2020-04-02 13:49:10'); INSERT INTO `ibrand_cdn_files` VALUES ('60', null, '20200402/8a4847d585952c72640ebec109cfba70.jpg', 'http://www.course.com/storage/20200402/8a4847d585952c72640ebec109cfba70.jpg', '2020-04-02 15:49:42', '2020-04-02 15:49:42'); INSERT INTO `ibrand_cdn_files` VALUES ('61', null, '20200402/c211d09504cb7eac5843cd4215655b59.jpg', 'http://www.course.com/storage/20200402/c211d09504cb7eac5843cd4215655b59.jpg', '2020-04-02 15:53:50', '2020-04-02 15:53:50'); INSERT INTO `ibrand_cdn_files` VALUES ('62', null, '20200402/b47b0e51d20c10c97be0a74fe02240f4.jpg', 'http://www.course.com/storage/20200402/b47b0e51d20c10c97be0a74fe02240f4.jpg', '2020-04-02 16:15:59', '2020-04-02 16:15:59'); INSERT INTO `ibrand_cdn_files` VALUES ('63', null, '20200402/5ac0b5c39428f3be6637a882ad731b5d.jpg', 'http://www.course.com/storage/20200402/5ac0b5c39428f3be6637a882ad731b5d.jpg', '2020-04-02 16:17:00', '2020-04-02 16:17:00'); INSERT INTO `ibrand_cdn_files` VALUES ('64', null, '20200402/13eb203842e7b53534b5ca636a8b5b00.jpg', 'http://www.course.com/storage/20200402/13eb203842e7b53534b5ca636a8b5b00.jpg', '2020-04-02 16:17:20', '2020-04-02 16:17:20'); INSERT INTO `ibrand_cdn_files` VALUES ('65', null, '20200402/140ee6f63250105b6662ba83dcebadd2.jpg', 'http://www.course.com/storage/20200402/140ee6f63250105b6662ba83dcebadd2.jpg', '2020-04-02 16:17:24', '2020-04-02 16:17:24'); INSERT INTO `ibrand_cdn_files` VALUES ('66', null, '20200402/7fcdb6ebcdb1bc3ac405243b5c1123e5.jpg', 'http://www.course.com/storage/20200402/7fcdb6ebcdb1bc3ac405243b5c1123e5.jpg', '2020-04-02 16:18:25', '2020-04-02 16:18:25'); INSERT INTO `ibrand_cdn_files` VALUES ('67', null, '20200402/108bc4c79767b1082d3ebd235e34da79.jpg', 'http://www.course.com/storage/20200402/108bc4c79767b1082d3ebd235e34da79.jpg', '2020-04-02 16:19:07', '2020-04-02 16:19:07'); INSERT INTO `ibrand_cdn_files` VALUES ('68', null, '20200402/1c96a41e06da2a4cc0e7522831c146b1.jpg', 'http://www.course.com/storage/20200402/1c96a41e06da2a4cc0e7522831c146b1.jpg', '2020-04-02 16:19:58', '2020-04-02 16:19:58'); INSERT INTO `ibrand_cdn_files` VALUES ('69', null, '20200402/66c8a4456cc22523acc5c8a53fcec022.jpg', 'http://www.course.com/storage/20200402/66c8a4456cc22523acc5c8a53fcec022.jpg', '2020-04-02 16:20:07', '2020-04-02 16:20:07'); INSERT INTO `ibrand_cdn_files` VALUES ('70', null, '20200402/796ea650e79f774957eaf9443cfb2844.jpg', 'http://www.course.com/storage/20200402/796ea650e79f774957eaf9443cfb2844.jpg', '2020-04-02 16:20:25', '2020-04-02 16:20:25'); INSERT INTO `ibrand_cdn_files` VALUES ('71', null, '20200402/c9998c05cec8c8fde31178265bdc7678.jpg', 'http://www.course.com/storage/20200402/c9998c05cec8c8fde31178265bdc7678.jpg', '2020-04-02 16:44:52', '2020-04-02 16:44:52'); INSERT INTO `ibrand_cdn_files` VALUES ('72', null, '20200402/5bb9ffd486e105afa9ee4e4b024f5850.jpg', 'http://www.course.com/storage/20200402/5bb9ffd486e105afa9ee4e4b024f5850.jpg', '2020-04-02 16:47:05', '2020-04-02 16:47:05'); INSERT INTO `ibrand_cdn_files` VALUES ('73', null, '20200402/de8488a0c7fd2c6fcc55445fe1b4ae1d.jpg', 'http://www.course.com/storage/20200402/de8488a0c7fd2c6fcc55445fe1b4ae1d.jpg', '2020-04-02 16:56:13', '2020-04-02 16:56:13'); INSERT INTO `ibrand_cdn_files` VALUES ('74', null, '20200402/0f60574c5a5abc755c17b44b55a56122.jpg', 'http://www.course.com/storage/20200402/0f60574c5a5abc755c17b44b55a56122.jpg', '2020-04-02 17:08:46', '2020-04-02 17:08:46'); -- ---------------------------- -- Table structure for ibrand_demo -- ---------------------------- DROP TABLE IF EXISTS `ibrand_demo`; CREATE TABLE `ibrand_demo` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称', `avatar` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '头像', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_demo -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_discount -- ---------------------------- DROP TABLE IF EXISTS `ibrand_discount`; CREATE TABLE `ibrand_discount` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` tinyint(4) NOT NULL DEFAULT '0', `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `intro` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `exclusive` tinyint(4) NOT NULL DEFAULT '0', `usage_limit` int(11) DEFAULT NULL, `per_usage_limit` int(11) DEFAULT '0', `used` int(11) NOT NULL DEFAULT '0', `coupon_based` tinyint(4) NOT NULL DEFAULT '0', `status` tinyint(4) NOT NULL DEFAULT '1', `starts_at` timestamp NULL DEFAULT NULL, `ends_at` timestamp NULL DEFAULT NULL, `usestart_at` timestamp NULL DEFAULT NULL, `useend_at` timestamp NULL DEFAULT NULL, `tags` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_open` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否对外显示', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_discount -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_discount_action -- ---------------------------- DROP TABLE IF EXISTS `ibrand_discount_action`; CREATE TABLE `ibrand_discount_action` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `discount_id` int(10) unsigned NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `configuration` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `ibrand_discount_action_discount_id_foreign` (`discount_id`), CONSTRAINT `ibrand_discount_action_discount_id_foreign` FOREIGN KEY (`discount_id`) REFERENCES `ibrand_discount` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_discount_action -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_discount_coupon -- ---------------------------- DROP TABLE IF EXISTS `ibrand_discount_coupon`; CREATE TABLE `ibrand_discount_coupon` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `discount_id` int(10) unsigned NOT NULL, `user_id` int(10) unsigned NOT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `used_at` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ibrand_discount_coupon_discount_id_foreign` (`discount_id`), CONSTRAINT `ibrand_discount_coupon_discount_id_foreign` FOREIGN KEY (`discount_id`) REFERENCES `ibrand_discount` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_discount_coupon -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_discount_rule -- ---------------------------- DROP TABLE IF EXISTS `ibrand_discount_rule`; CREATE TABLE `ibrand_discount_rule` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `discount_id` int(10) unsigned NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `configuration` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `ibrand_discount_rule_discount_id_foreign` (`discount_id`), CONSTRAINT `ibrand_discount_rule_discount_id_foreign` FOREIGN KEY (`discount_id`) REFERENCES `ibrand_discount` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_discount_rule -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_discover_banner -- ---------------------------- DROP TABLE IF EXISTS `ibrand_discover_banner`; CREATE TABLE `ibrand_discover_banner` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `keywords` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '搜索关键字', `brand_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属品牌', `discover_category_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属分类', `tags_list` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '标签', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_discover_banner -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_discover_category -- ---------------------------- DROP TABLE IF EXISTS `ibrand_discover_category`; CREATE TABLE `ibrand_discover_category` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '分类名称', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_discover_category -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_discover_content -- ---------------------------- DROP TABLE IF EXISTS `ibrand_discover_content`; CREATE TABLE `ibrand_discover_content` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `img_list` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '展示图片', `recommend_goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联商品id', `brand_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属品牌', `discover_category_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属分类', `tags_list` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '标签', `meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '用户数据', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态', `is_recommend` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否推荐', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_discover_content -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_discover_tag -- ---------------------------- DROP TABLE IF EXISTS `ibrand_discover_tag`; CREATE TABLE `ibrand_discover_tag` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '标签名称', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_discover_tag -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_favorite -- ---------------------------- DROP TABLE IF EXISTS `ibrand_favorite`; CREATE TABLE `ibrand_favorite` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL COMMENT '用户id', `favoriteable_id` int(10) unsigned NOT NULL COMMENT '收藏的id', `favoriteable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '收藏的类型(如:商品 ,故事)', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_favorite -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_gift_activity -- ---------------------------- DROP TABLE IF EXISTS `ibrand_gift_activity`; CREATE TABLE `ibrand_gift_activity` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'gift_new_user新人礼 gift_birthday生日礼', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '活动名称', `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '前端标题', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态:1 有效 ,0 失效', `open_point` tinyint(4) NOT NULL DEFAULT '0' COMMENT '赠送积分状态:1 是 ,0 否', `point` int(11) NOT NULL DEFAULT '0' COMMENT '赠送积分', `open_coupon` tinyint(4) NOT NULL DEFAULT '0' COMMENT '赠送优惠券状态:1 是 ,0 否', `starts_at` timestamp NULL DEFAULT NULL COMMENT '开始时间', `ends_at` timestamp NULL DEFAULT NULL COMMENT '结束时间', `point_double` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1' COMMENT '积分倍数目', `activity_day` int(11) NOT NULL DEFAULT '1' COMMENT '有效天数。 从生日当天往推前', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_gift_activity -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_gift_coupon -- ---------------------------- DROP TABLE IF EXISTS `ibrand_gift_coupon`; CREATE TABLE `ibrand_gift_coupon` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'gift_new_user gift_birthday gift_recharge', `type_id` int(11) NOT NULL DEFAULT '0', `coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券ID', `num` int(11) NOT NULL DEFAULT '1' COMMENT '数量', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态:1 有效 ,0 失效', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_gift_coupon -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_gift_coupon_receive -- ---------------------------- DROP TABLE IF EXISTS `ibrand_gift_coupon_receive`; CREATE TABLE `ibrand_gift_coupon_receive` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type_id` int(11) DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `balance_order_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `discount_id` int(11) DEFAULT NULL, `gift_coupon_id` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_gift_coupon_receive -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_gift_directional_coupon -- ---------------------------- DROP TABLE IF EXISTS `ibrand_gift_directional_coupon`; CREATE TABLE `ibrand_gift_directional_coupon` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `directional_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'mobile手机号 custom自定义', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '活动名称', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态:1 有效 ,0 失效', `mobile` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '手机号', `group_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '会员等级', `n_day_buy` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'N天内有购买', `n_day_no_buy` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'N天内有无购买', `buy_num_above` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '累计购物次数大于', `buy_num_below` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '累计购物次数小于', `buy_price_above` decimal(15,2) DEFAULT NULL COMMENT '购买商品价格大于', `buy_price_below` decimal(15,2) DEFAULT NULL COMMENT '购买商品价格小于', `number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '预计发送人数', `coupon_id` int(11) NOT NULL DEFAULT '0' COMMENT '优惠券ID', `vip_id` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_gift_directional_coupon -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods`; CREATE TABLE `ibrand_goods` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `goods_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `brand_id` int(10) unsigned NOT NULL, `model_id` int(10) unsigned NOT NULL, `min_price` decimal(15,2) NOT NULL, `max_price` decimal(15,2) NOT NULL, `sell_price` decimal(15,2) NOT NULL, `market_price` decimal(15,2) DEFAULT NULL, `min_market_price` decimal(15,2) DEFAULT NULL, `cost_price` decimal(15,2) DEFAULT NULL, `weight` decimal(15,2) DEFAULT NULL, `store_nums` int(11) NOT NULL DEFAULT '0', `img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `contentpc` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `sync` tinyint(4) NOT NULL DEFAULT '0', `comment_count` int(11) NOT NULL DEFAULT '0', `visit_count` int(11) NOT NULL DEFAULT '0', `favorite_count` int(11) NOT NULL DEFAULT '0', `sale_count` int(11) NOT NULL DEFAULT '0', `grade` int(11) NOT NULL DEFAULT '0', `tags` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `keywords` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_del` tinyint(4) NOT NULL DEFAULT '0', `is_largess` tinyint(4) NOT NULL DEFAULT '0', `is_commend` tinyint(4) NOT NULL DEFAULT '0', `is_new` tinyint(4) NOT NULL DEFAULT '0', `collocation` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `extra` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `redeem_point` int(11) NOT NULL DEFAULT '0', `category_group` int(11) NOT NULL DEFAULT '0', `is_share` tinyint(4) NOT NULL DEFAULT '0', `is_old` tinyint(4) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_attribute -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_attribute`; CREATE TABLE `ibrand_goods_attribute` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `model_id` int(11) NOT NULL DEFAULT '0', `type` tinyint(4) NOT NULL DEFAULT '1', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `is_search` tinyint(4) NOT NULL DEFAULT '0', `is_chart` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_attribute -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_attribute_relation -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_attribute_relation`; CREATE TABLE `ibrand_goods_attribute_relation` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(10) unsigned NOT NULL, `model_id` int(10) unsigned NOT NULL, `attribute_id` int(10) unsigned NOT NULL, `attribute_value_id` int(10) unsigned DEFAULT NULL, `attribute_value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_attribute_relation -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_attribute_value -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_attribute_value`; CREATE TABLE `ibrand_goods_attribute_value` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `attribute_id` int(10) unsigned NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_attribute_value -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_brand -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_brand`; CREATE TABLE `ibrand_goods_brand` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_show` int(11) NOT NULL DEFAULT '1', `sort` int(11) NOT NULL DEFAULT '99', `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_brand -- ---------------------------- INSERT INTO `ibrand_goods_brand` VALUES ('1', '耐克', 'sd', '1', '1', 'www.naike.com', 'http://www.homestead.test/storage/20200331/fdb6b84ba00c81ddec77c904fb7ee2a8.jpg', '2020-03-31 12:33:22', '2020-03-31 12:33:22', null); -- ---------------------------- -- Table structure for ibrand_goods_category -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_category`; CREATE TABLE `ibrand_goods_category` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(10) unsigned NOT NULL, `category_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_category -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_limit -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_limit`; CREATE TABLE `ibrand_goods_limit` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(11) NOT NULL COMMENT '商品id', `activity` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否参与限购 0:不参与 1:参与', `starts_at` timestamp NULL DEFAULT NULL COMMENT '限购开始时间', `ends_at` timestamp NULL DEFAULT NULL COMMENT '限购结束时间', `quantity` int(11) NOT NULL DEFAULT '0' COMMENT '限购数量', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_limit -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_model -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_model`; CREATE TABLE `ibrand_goods_model` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `spec_ids` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_model -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_model_attribute_relation -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_model_attribute_relation`; CREATE TABLE `ibrand_goods_model_attribute_relation` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `model_id` int(10) unsigned NOT NULL, `attribute_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_model_attribute_relation -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_photo -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_photo`; CREATE TABLE `ibrand_goods_photo` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(10) unsigned NOT NULL, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `sort` int(11) NOT NULL DEFAULT '0', `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_photo -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_product -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_product`; CREATE TABLE `ibrand_goods_product` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(10) unsigned NOT NULL, `store_nums` int(11) NOT NULL DEFAULT '0', `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sell_price` decimal(15,2) NOT NULL, `market_price` decimal(15,2) DEFAULT NULL, `cost_price` decimal(15,2) DEFAULT NULL, `weight` decimal(15,2) DEFAULT NULL, `is_show` tinyint(4) NOT NULL DEFAULT '1', `spec_ids` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_product -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_spec -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_spec`; CREATE TABLE `ibrand_goods_spec` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `display_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `type` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_spec -- ---------------------------- INSERT INTO `ibrand_goods_spec` VALUES ('1', '尺寸', '尺寸', '1', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec` VALUES ('2', '颜色', '颜色', '2', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); -- ---------------------------- -- Table structure for ibrand_goods_spec_relation -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_spec_relation`; CREATE TABLE `ibrand_goods_spec_relation` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(10) unsigned NOT NULL, `spec_id` int(10) unsigned NOT NULL, `spec_value_id` int(10) unsigned NOT NULL, `sort` int(11) NOT NULL DEFAULT '99', `alias` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_spec_relation -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_goods_spec_value -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_spec_value`; CREATE TABLE `ibrand_goods_spec_value` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `spec_id` int(10) unsigned NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `rgb` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_spec_value -- ---------------------------- INSERT INTO `ibrand_goods_spec_value` VALUES ('1', '2', '黑色', '000000', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('2', '2', '橘红色', 'ff7500', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('3', '2', '玫红色', 'df1b76', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('4', '2', '粉红色', 'ffb6c1', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('5', '2', '红色', 'ff0000', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('6', '2', '藕色', 'eed0d8', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('7', '2', '西瓜红', 'f05654', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('8', '2', '酒红色', '990000', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('9', '2', '军绿色', '5d762a', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('10', '2', '浅绿色', '98fb98', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('11', '2', '绿色', '008000', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('12', '2', '翠绿色', '0aa344', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('13', '2', '青色', '00e09e', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('14', '2', '天蓝色', '44cef6', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('15', '2', '孔雀蓝', '00a4c5', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('16', '2', '宝蓝色', '4b5cc4', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('17', '2', '浅蓝色', 'd2f0f4', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('18', '2', '深蓝色', '041690', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('19', '2', '湖蓝色', '30dff3', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('20', '2', '蓝色', '0000fe', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('21', '2', '藏青色', '2e4e7e', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('22', '2', '浅紫色', 'ede0e6', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('23', '2', '深紫色', '430653', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('24', '2', '紫红色', '8b0062', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('25', '2', '紫罗兰', 'b7ace4', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('26', '2', '紫色', '800080', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('27', '2', '咖啡色', '603912', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('28', '2', '巧克力色', 'd2691e', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('29', '2', '栗色', '60281e', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('30', '2', '浅棕色', 'b35c44', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('31', '2', '深卡其布色', 'bdb76b', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('32', '2', '深棕色', '7c4b00', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('33', '2', '褐色', '855b00', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('34', '2', '驼色', 'a88462', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('35', '2', '浅灰色', 'e4e4e4', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('36', '2', '深灰色', '666666', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('37', '2', '灰色', '808080', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('38', '2', '银色', 'c0c0c0', '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); INSERT INTO `ibrand_goods_spec_value` VALUES ('39', '1', 'S', null, '2020-03-23 21:50:44', '2020-03-23 21:50:44', null); -- ---------------------------- -- Table structure for ibrand_goods_user_limit -- ---------------------------- DROP TABLE IF EXISTS `ibrand_goods_user_limit`; CREATE TABLE `ibrand_goods_user_limit` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(11) NOT NULL COMMENT '商品id', `user_id` int(11) NOT NULL COMMENT '用户id', `buy_nums` tinyint(4) NOT NULL COMMENT '购买数量', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_goods_user_limit -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_images -- ---------------------------- DROP TABLE IF EXISTS `ibrand_images`; CREATE TABLE `ibrand_images` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `remote_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_images -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_images_category -- ---------------------------- DROP TABLE IF EXISTS `ibrand_images_category`; CREATE TABLE `ibrand_images_category` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `parent_id` int(11) NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `sort` int(11) NOT NULL DEFAULT '99', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_images_category -- ---------------------------- INSERT INTO `ibrand_images_category` VALUES ('1', '0', '默认分组', null, '0', '2020-03-23 21:50:43', '2020-03-23 21:50:43', null); -- ---------------------------- -- Table structure for ibrand_invoice_order -- ---------------------------- DROP TABLE IF EXISTS `ibrand_invoice_order`; CREATE TABLE `ibrand_invoice_order` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `order_id` int(11) NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'personal' COMMENT '发票类型:personal 个人,enterprise 企业', `content` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '商品明细', `amount` int(11) DEFAULT NULL COMMENT '发票金额', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '发票抬头', `number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '税号', `bank` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '开户银行', `bank_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '银行账号', `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '企业电话', `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '企业地址', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ibrand_invoice_order_order_id_index` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_invoice_order -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_invoice_user -- ---------------------------- DROP TABLE IF EXISTS `ibrand_invoice_user`; CREATE TABLE `ibrand_invoice_user` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'personal' COMMENT '发票类型:personal 个人,enterprise 企业', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '发票抬头', `number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '税号', `bank` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '开户银行', `bank_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '银行账号', `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '企业电话', `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '企业地址', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_invoice_user -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_member_privilege -- ---------------------------- DROP TABLE IF EXISTS `ibrand_member_privilege`; CREATE TABLE `ibrand_member_privilege` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '权益展示图', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_member_privilege -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_merchant_pay -- ---------------------------- DROP TABLE IF EXISTS `ibrand_merchant_pay`; CREATE TABLE `ibrand_merchant_pay` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `origin_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `origin_id` int(11) NOT NULL, `channel` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'wechat', `channel_id` int(11) NOT NULL DEFAULT '0', `partner_trade_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `payment_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` int(11) NOT NULL, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `error_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `err_code_des` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_time` datetime DEFAULT NULL, `user_id` int(11) NOT NULL, `admin_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_merchant_pay -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_micro_page -- ---------------------------- DROP TABLE IF EXISTS `ibrand_micro_page`; CREATE TABLE `ibrand_micro_page` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default' COMMENT '类型', `page_type` int(11) NOT NULL DEFAULT '1', `link` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link_image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ibrand_micro_page_code_unique` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_micro_page -- ---------------------------- INSERT INTO `ibrand_micro_page` VALUES ('1', '阿松大', 'PAGE2020033159779588229', 'default', '1', 'pages/index/index/index?id=PAGE2020033159779588229', null, null, '2020-03-31 15:28:50', '2020-03-31 15:28:50', null); -- ---------------------------- -- Table structure for ibrand_micro_page_advert -- ---------------------------- DROP TABLE IF EXISTS `ibrand_micro_page_advert`; CREATE TABLE `ibrand_micro_page_advert` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `micro_page_id` int(11) NOT NULL, `advert_id` int(11) NOT NULL, `sort` int(11) NOT NULL DEFAULT '99', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_micro_page_advert -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_multi_groupon -- ---------------------------- DROP TABLE IF EXISTS `ibrand_multi_groupon`; CREATE TABLE `ibrand_multi_groupon` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `goods_id` int(11) NOT NULL, `number` int(11) NOT NULL, `price` decimal(15,2) NOT NULL, `rate` int(11) NOT NULL DEFAULT '0', `sort` int(11) NOT NULL DEFAULT '9', `get_point` tinyint(4) NOT NULL DEFAULT '0', `status` tinyint(4) NOT NULL DEFAULT '1', `starts_at` datetime NOT NULL, `ends_at` datetime NOT NULL, `tags` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_multi_groupon -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_multi_groupon_items -- ---------------------------- DROP TABLE IF EXISTS `ibrand_multi_groupon_items`; CREATE TABLE `ibrand_multi_groupon_items` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `multi_groupon_id` int(11) NOT NULL, `multi_groupon_goods_id` int(11) NOT NULL, `starts_at` timestamp NULL DEFAULT NULL, `ends_at` timestamp NULL DEFAULT NULL, `complete_time` timestamp NULL DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_multi_groupon_items -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_multi_groupon_users -- ---------------------------- DROP TABLE IF EXISTS `ibrand_multi_groupon_users`; CREATE TABLE `ibrand_multi_groupon_users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `multi_groupon_id` int(11) NOT NULL, `multi_groupon_items_id` int(11) DEFAULT NULL, `order_id` int(11) NOT NULL, `meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_leader` tinyint(4) NOT NULL DEFAULT '0', `status` tinyint(4) NOT NULL DEFAULT '0', `share_img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_multi_groupon_users -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_order -- ---------------------------- DROP TABLE IF EXISTS `ibrand_order`; CREATE TABLE `ibrand_order` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `order_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` int(10) unsigned NOT NULL DEFAULT '0', `pay_status` tinyint(3) unsigned NOT NULL DEFAULT '0', `distribution_status` int(10) unsigned NOT NULL DEFAULT '0', `count` int(10) unsigned NOT NULL DEFAULT '0', `items_total` int(11) NOT NULL, `adjustments_total` int(11) NOT NULL DEFAULT '0', `payable_freight` int(11) NOT NULL DEFAULT '0', `real_freight` int(11) NOT NULL DEFAULT '0', `total` int(11) NOT NULL, `redeem_point` int(11) NOT NULL DEFAULT '0', `accept_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `submit_time` timestamp NULL DEFAULT NULL, `pay_time` timestamp NULL DEFAULT NULL, `send_time` timestamp NULL DEFAULT NULL, `completion_time` timestamp NULL DEFAULT NULL, `accept_time` timestamp NULL DEFAULT NULL, `message` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` int(11) NOT NULL DEFAULT '0', `cancel_reason` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_order -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_order_adjustment -- ---------------------------- DROP TABLE IF EXISTS `ibrand_order_adjustment`; CREATE TABLE `ibrand_order_adjustment` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `order_id` int(10) unsigned DEFAULT NULL, `order_item_id` int(10) unsigned DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` int(11) NOT NULL DEFAULT '0', `origin_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `origin_id` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_order_adjustment -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_order_comment -- ---------------------------- DROP TABLE IF EXISTS `ibrand_order_comment`; CREATE TABLE `ibrand_order_comment` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `order_id` int(10) unsigned NOT NULL DEFAULT '0', `order_item_id` int(10) unsigned NOT NULL DEFAULT '0', `goods_id` int(11) DEFAULT '0', `item_id` int(10) unsigned NOT NULL DEFAULT '0', `item_meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `user_id` int(10) unsigned NOT NULL, `user_meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `contents` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `point` int(11) DEFAULT NULL, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pic_list` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `recommend` tinyint(4) NOT NULL DEFAULT '0', `recommend_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_order_comment -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_order_item -- ---------------------------- DROP TABLE IF EXISTS `ibrand_order_item`; CREATE TABLE `ibrand_order_item` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `order_id` int(10) unsigned NOT NULL, `item_id` int(10) unsigned NOT NULL, `item_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `item_meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `quantity` int(10) unsigned NOT NULL, `unit_price` int(11) NOT NULL, `units_total` int(10) unsigned NOT NULL, `adjustments_total` int(11) DEFAULT '0', `divide_order_discount` int(11) NOT NULL DEFAULT '0', `total` int(11) NOT NULL, `shipping_id` int(11) NOT NULL DEFAULT '0', `is_send` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_order_item -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_order_special_type -- ---------------------------- DROP TABLE IF EXISTS `ibrand_order_special_type`; CREATE TABLE `ibrand_order_special_type` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `order_id` int(10) unsigned DEFAULT NULL, `origin_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `origin_id` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_order_special_type -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_payment -- ---------------------------- DROP TABLE IF EXISTS `ibrand_payment`; CREATE TABLE `ibrand_payment` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `order_id` int(10) unsigned NOT NULL, `order_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '关联订单模型', `channel` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `channel_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` int(11) NOT NULL, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `paid_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_payment -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_payment_log -- ---------------------------- DROP TABLE IF EXISTS `ibrand_payment_log`; CREATE TABLE `ibrand_payment_log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `action` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'create_charge 创建支付请求;result_pay 支付之后', `operate_time` datetime NOT NULL COMMENT '提交时间/支付时间', `order_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '订单号', `transcation_order_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '提交给微信的新的订单号', `transcation_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '交易流水号', `amount` int(11) NOT NULL DEFAULT '0' COMMENT '订单金额', `channel` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '支付渠道 wx_pub_qr,wx_pub,wx_lite,alipay', `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '订单类型:order,activity,recharge', `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '状态:state,success,failed', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID', `meta` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '记录微信、支付宝之后成功之后返回的所有数据', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_payment_log -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_pay_charge -- ---------------------------- DROP TABLE IF EXISTS `ibrand_pay_charge`; CREATE TABLE `ibrand_pay_charge` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `charge_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `app` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `paid` tinyint(1) NOT NULL DEFAULT '0', `refunded` tinyint(1) NOT NULL DEFAULT '0', `reversed` tinyint(1) NOT NULL DEFAULT '0', `channel` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `order_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `out_trade_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `client_ip` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1', `amount` int(11) NOT NULL, `currency` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'cny', `subject` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `body` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `extra` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `time_paid` timestamp NULL DEFAULT NULL, `time_expire` timestamp NULL DEFAULT NULL, `transaction_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `metadata` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `credential` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `failure_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ibrand_pay_charge_charge_id_unique` (`charge_id`), KEY `ibrand_pay_charge_order_no_index` (`order_no`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_pay_charge -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_point -- ---------------------------- DROP TABLE IF EXISTS `ibrand_point`; CREATE TABLE `ibrand_point` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL COMMENT '用户id', `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `action` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'order_item' COMMENT 'action:产生积分变化的动作,用于查询', `note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '积分变化的提示信息', `value` decimal(10,2) DEFAULT '0.00' COMMENT '积分变化数值,可为负数', `valid_time` timestamp NULL DEFAULT NULL COMMENT '积分有效期 为空时永久有效', `status` int(10) unsigned DEFAULT '1', `item_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `item_id` int(10) unsigned DEFAULT NULL COMMENT '积分变化动作对应表的id', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ibrand_point_item_type_item_id_index` (`item_type`,`item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_point -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_point_goods -- ---------------------------- DROP TABLE IF EXISTS `ibrand_point_goods`; CREATE TABLE `ibrand_point_goods` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `item_id` int(11) NOT NULL COMMENT '商品ID', `type` tinyint(4) NOT NULL COMMENT '积分计算方式', `status` tinyint(4) NOT NULL COMMENT '开启状态', `value` int(11) NOT NULL COMMENT '积分变化参数', `can_use_point` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否可使用积分抵扣', `note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '描述', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_point_goods -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_promotion_goods_relation -- ---------------------------- DROP TABLE IF EXISTS `ibrand_promotion_goods_relation`; CREATE TABLE `ibrand_promotion_goods_relation` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `goods_id` int(11) NOT NULL, `origin_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `origin_id` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_promotion_goods_relation -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_recharge_rule -- ---------------------------- DROP TABLE IF EXISTS `ibrand_recharge_rule`; CREATE TABLE `ibrand_recharge_rule` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'gift_recharge', `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '储值规则名称', `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '前端显示副标题', `payment_amount` decimal(15,2) DEFAULT NULL COMMENT '实付金额', `amount` decimal(15,2) DEFAULT NULL COMMENT '到账金额', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态:1 有效 ,0 失效', `open_point` tinyint(4) NOT NULL DEFAULT '0' COMMENT '赠送积分状态:1 是 ,0 否', `point` int(11) NOT NULL DEFAULT '0' COMMENT '赠送积分', `open_coupon` tinyint(4) NOT NULL DEFAULT '0' COMMENT '赠送优惠券状态:1 是 ,0 否', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_recharge_rule -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_reduce -- ---------------------------- DROP TABLE IF EXISTS `ibrand_reduce`; CREATE TABLE `ibrand_reduce` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `goods_id` int(11) NOT NULL, `number` int(11) NOT NULL, `reduce_store_nums` int(11) NOT NULL, `store_nums` int(11) NOT NULL, `hour` int(11) NOT NULL DEFAULT '24', `price` decimal(15,2) NOT NULL, `sort` int(11) NOT NULL DEFAULT '9', `status` tinyint(4) NOT NULL DEFAULT '1', `starts_at` datetime NOT NULL, `ends_at` datetime NOT NULL, `get_point` tinyint(4) NOT NULL DEFAULT '0', `tags` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_reduce -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_reduce_items -- ---------------------------- DROP TABLE IF EXISTS `ibrand_reduce_items`; CREATE TABLE `ibrand_reduce_items` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `reduce_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `reduce_goods_id` int(11) NOT NULL, `order_id` int(11) DEFAULT NULL, `reduce_amount_arr` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `starts_at` timestamp NULL DEFAULT NULL, `ends_at` timestamp NULL DEFAULT NULL, `order_time` timestamp NULL DEFAULT NULL, `complete_time` timestamp NULL DEFAULT NULL, `share_img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_reduce_items -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_reduce_users -- ---------------------------- DROP TABLE IF EXISTS `ibrand_reduce_users`; CREATE TABLE `ibrand_reduce_users` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `reduce_id` int(11) NOT NULL, `reduce_items_id` int(11) NOT NULL, `reduce_amount` decimal(15,2) NOT NULL, `meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_leader` tinyint(4) NOT NULL DEFAULT '0', `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_reduce_users -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_refund -- ---------------------------- DROP TABLE IF EXISTS `ibrand_refund`; CREATE TABLE `ibrand_refund` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `refund_no` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '退款编号', `reason` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '退款理由', `amount` int(11) DEFAULT '0' COMMENT '退款金额', `user_id` int(10) unsigned NOT NULL COMMENT '申请人', `admin_id` int(10) unsigned DEFAULT NULL COMMENT '处理人', `order_id` int(11) NOT NULL COMMENT '订单ID', `order_item_id` int(11) NOT NULL COMMENT '订单中具体的商品', `type` int(11) NOT NULL COMMENT '1:退货, 2:换货,3:维修', `quantity` int(11) NOT NULL COMMENT '数量', `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '问题描述', `status` int(11) NOT NULL COMMENT '1. 处理中 2.已完成 3.退款中 4上门取件 5 待您邮寄 6待您评价', `images` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `paid_time` timestamp NULL DEFAULT NULL COMMENT '系统操作退款时间', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_refund -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_refund_amount -- ---------------------------- DROP TABLE IF EXISTS `ibrand_refund_amount`; CREATE TABLE `ibrand_refund_amount` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `amount` int(11) NOT NULL DEFAULT '0' COMMENT '金额,单位:分', `refund_id` int(11) NOT NULL COMMENT '售后ID', `order_id` int(11) NOT NULL COMMENT '订单ID', `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '类型:目前是 cash,balance', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_refund_amount -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_refund_log -- ---------------------------- DROP TABLE IF EXISTS `ibrand_refund_log`; CREATE TABLE `ibrand_refund_log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `refund_id` int(11) NOT NULL COMMENT '退款编号', `user_id` int(10) unsigned DEFAULT NULL COMMENT '申请人', `admin_id` int(10) unsigned DEFAULT NULL COMMENT '处理人', `action` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_refund_log -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_refund_shipping -- ---------------------------- DROP TABLE IF EXISTS `ibrand_refund_shipping`; CREATE TABLE `ibrand_refund_shipping` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `refund_id` int(11) NOT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '快递公司编号', `shipping_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '快递公司名称', `shipping_tracking` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '运单编号', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_refund_shipping -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_seckill -- ---------------------------- DROP TABLE IF EXISTS `ibrand_seckill`; CREATE TABLE `ibrand_seckill` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '活动标题', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态:0 无效;1有效', `auto_close` int(11) NOT NULL DEFAULT '0' COMMENT '拍下多少分钟未付款自动关闭订单:0 采用商城统一设置;>0 使用单独设置', `starts_at` datetime NOT NULL COMMENT '开始时间', `ends_at` datetime NOT NULL COMMENT '结束时间', `tags` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '活动标签', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_seckill -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_seckill_item -- ---------------------------- DROP TABLE IF EXISTS `ibrand_seckill_item`; CREATE TABLE `ibrand_seckill_item` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `seckill_id` int(11) NOT NULL, `item_id` int(11) NOT NULL COMMENT '商品ID', `seckill_price` decimal(15,2) NOT NULL COMMENT '秒杀价格', `status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '参与状态:0 不参与;1 参与', `limit` int(11) NOT NULL DEFAULT '0' COMMENT '限购数量:0 不限购;', `get_point` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否可获得积分:0 否;1是', `use_point` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否可使用积分:0 否;1是', `rate` int(11) NOT NULL DEFAULT '0' COMMENT '佣金比例', `img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sell_num` int(11) NOT NULL DEFAULT '0', `sort` int(11) NOT NULL DEFAULT '9', `recommend` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否推荐', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_seckill_item -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_seckill_sale -- ---------------------------- DROP TABLE IF EXISTS `ibrand_seckill_sale`; CREATE TABLE `ibrand_seckill_sale` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `seckill_item_id` int(11) NOT NULL, `quantity` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ibrand_seckill_sale_user_id_seckill_item_id_index` (`user_id`,`seckill_item_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_seckill_sale -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_shipping -- ---------------------------- DROP TABLE IF EXISTS `ibrand_shipping`; CREATE TABLE `ibrand_shipping` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `method_id` int(11) NOT NULL, `order_id` int(11) NOT NULL, `tracking` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_time` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_shipping -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_shipping_method -- ---------------------------- DROP TABLE IF EXISTS `ibrand_shipping_method`; CREATE TABLE `ibrand_shipping_method` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_enabled` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_shipping_method -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_suit -- ---------------------------- DROP TABLE IF EXISTS `ibrand_suit`; CREATE TABLE `ibrand_suit` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '套餐分享海报', `type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '套餐类型预留', `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '套餐标题', `origin_total` decimal(15,2) DEFAULT NULL COMMENT '套餐组原总价', `total` decimal(15,2) DEFAULT NULL COMMENT '套餐组合总价', `describe` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci COMMENT '套餐描述', `starts_at` timestamp NULL DEFAULT NULL COMMENT '套餐开始时间', `ends_at` timestamp NULL DEFAULT NULL COMMENT '套餐结束时间', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态:1 有效 ,0 失效', `get_point` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否可获得积分:0 否;1是', `rate` int(11) NOT NULL DEFAULT '0' COMMENT '佣金比例', `use_point` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否可使用积分:0 否;1是', `recommend` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否推荐', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_suit -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_suit_item -- ---------------------------- DROP TABLE IF EXISTS `ibrand_suit_item`; CREATE TABLE `ibrand_suit_item` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `suit_id` int(11) DEFAULT NULL COMMENT '套餐表id', `item_id` int(11) NOT NULL DEFAULT '0', `item_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'spu', `origin_price` decimal(15,2) DEFAULT NULL COMMENT '原价', `package_price` decimal(15,2) DEFAULT NULL COMMENT '套餐搭配价', `fixed` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否必选商品', `quantity` int(11) NOT NULL DEFAULT '1' COMMENT '搭配数量', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '套餐中商品排序', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态:1 有效 ,0 失效', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_suit_item -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_system_settings -- ---------------------------- DROP TABLE IF EXISTS `ibrand_system_settings`; CREATE TABLE `ibrand_system_settings` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ibrand_system_settings_key_index` (`key`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_system_settings -- ---------------------------- INSERT INTO `ibrand_system_settings` VALUES ('1', 'store_name', '\"ibrand\"', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); INSERT INTO `ibrand_system_settings` VALUES ('2', 'goods_spec_color', '[\"\\u9ed1\\u8272\",\"\\u7eff\\u8272\",\"\\u767d\\u8272\",\"\\u7d2b\\u8272\",\"\\u7ea2\\u8272\",\"\\u9ec4\\u8272\",\"\\u84dd\\u8272\",\"\\u68d5\\u8272\",\"\\u7070\\u8272\"]', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); INSERT INTO `ibrand_system_settings` VALUES ('3', 'point_enabled', '0', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); INSERT INTO `ibrand_system_settings` VALUES ('4', 'shop_show_store', '0', '2020-03-23 21:50:43', '2020-03-23 21:50:43'); -- ---------------------------- -- Table structure for ibrand_user -- ---------------------------- DROP TABLE IF EXISTS `ibrand_user`; CREATE TABLE `ibrand_user` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `nick_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(4) NOT NULL DEFAULT '1', `sex` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `birthday` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ibrand_user_name_unique` (`name`), UNIQUE KEY `ibrand_user_email_unique` (`email`), UNIQUE KEY `ibrand_user_mobile_unique` (`mobile`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_user -- ---------------------------- -- ---------------------------- -- Table structure for ibrand_user_bind -- ---------------------------- DROP TABLE IF EXISTS `ibrand_user_bind`; CREATE TABLE `ibrand_user_bind` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'wechat', `app_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `open_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `nick_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sex` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `province` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `language` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ibrand_user_bind_open_id_unique` (`open_id`), KEY `ibrand_user_bind_user_id_foreign` (`user_id`), CONSTRAINT `ibrand_user_bind_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `ibrand_user` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of ibrand_user_bind -- ---------------------------- INSERT INTO `ibrand_user_bind` VALUES ('1', null, 'miniprogram', 'wx32dd576197e942f4', 'ok7Xs4hoCbGO09Ub4T5JdwvxGn3o', null, null, null, null, null, null, null, null, '2020-03-30 17:51:27', '2020-03-30 17:51:27'); -- ---------------------------- -- Table structure for laravel_sms_log -- ---------------------------- DROP TABLE IF EXISTS `laravel_sms_log`; CREATE TABLE `laravel_sms_log` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `mobile` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `is_sent` tinyint(4) NOT NULL DEFAULT '0', `result` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of laravel_sms_log -- ---------------------------- -- ---------------------------- -- Table structure for migrations -- ---------------------------- DROP TABLE IF EXISTS `migrations`; CREATE TABLE `migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of migrations -- ---------------------------- INSERT INTO `migrations` VALUES ('1', '2016_01_04_173148_create_admin_tables', '1'); INSERT INTO `migrations` VALUES ('2', '2016_06_01_000001_create_oauth_auth_codes_table', '1'); INSERT INTO `migrations` VALUES ('3', '2016_06_01_000002_create_oauth_access_tokens_table', '1'); INSERT INTO `migrations` VALUES ('4', '2016_06_01_000003_create_oauth_refresh_tokens_table', '1'); INSERT INTO `migrations` VALUES ('5', '2016_06_01_000004_create_oauth_clients_table', '1'); INSERT INTO `migrations` VALUES ('6', '2016_06_01_000005_create_oauth_personal_access_clients_table', '1'); INSERT INTO `migrations` VALUES ('7', '2016_11_02_104000_create_invoice_user', '1'); INSERT INTO `migrations` VALUES ('8', '2016_11_02_104915_create_invoice_order', '1'); INSERT INTO `migrations` VALUES ('9', '2016_11_03_074420_create_system_setting_table', '1'); INSERT INTO `migrations` VALUES ('10', '2016_12_16_154403_create_shopping_cart_table', '1'); INSERT INTO `migrations` VALUES ('11', '2017_03_07_043801_create_images_table', '1'); INSERT INTO `migrations` VALUES ('12', '2017_03_07_061248_create_images_category_table', '1'); INSERT INTO `migrations` VALUES ('13', '2017_09_26_120701_create_el_admin_notifications_table', '1'); INSERT INTO `migrations` VALUES ('14', '2017_11_17_187709_create_el_recharge_rule_table', '1'); INSERT INTO `migrations` VALUES ('15', '2017_11_18_144329_create_el_gift_coupon_table', '1'); INSERT INTO `migrations` VALUES ('16', '2017_11_22_187711_create_el_gift_coupon_receive_table', '1'); INSERT INTO `migrations` VALUES ('17', '2018_04_08_181654_create_laravel_sms_log_table', '1'); INSERT INTO `migrations` VALUES ('18', '2018_05_17_664455_add_blank_to_admin_menu_table', '1'); INSERT INTO `migrations` VALUES ('19', '2018_06_04_168621_add_mobile_to_admin_users_table', '1'); INSERT INTO `migrations` VALUES ('20', '2018_06_04_673423_add_status_to_admin_users_table', '1'); INSERT INTO `migrations` VALUES ('21', '2018_12_05_165241_create_ibrand_cdn_files_table', '1'); INSERT INTO `migrations` VALUES ('22', '2018_12_17_182213_change_fields_for_admin_user_table', '1'); INSERT INTO `migrations` VALUES ('23', '2019_05_21_115141_change_column_laravel_sms_log_data_to_text', '1'); INSERT INTO `migrations` VALUES ('24', '2019_06_19_141426_create_discover_category_table', '1'); INSERT INTO `migrations` VALUES ('25', '2019_06_19_142851_create_discover_tag_table', '1'); INSERT INTO `migrations` VALUES ('26', '2019_06_19_144413_create_discover_content_table', '1'); INSERT INTO `migrations` VALUES ('27', '2019_06_20_101028_create_discover_banner_table', '1'); INSERT INTO `migrations` VALUES ('28', '2019_06_27_140804_create_member_privilege_table', '1'); INSERT INTO `migrations` VALUES ('29', '2019_10_09_144948_create_favorite_tables', '1'); INSERT INTO `migrations` VALUES ('30', '2019_10_17_204521_create_poster_tables', '1'); INSERT INTO `migrations` VALUES ('31', '2019_10_17_204522_create_multi_groupon_tables', '1'); INSERT INTO `migrations` VALUES ('32', '2019_10_17_204523_create_reduce_tables', '1'); INSERT INTO `migrations` VALUES ('33', '2019_12_03_092657_create_ibrand_article_table', '1'); INSERT INTO `migrations` VALUES ('34', '2019_12_03_194534_create_goods_limit_table', '1'); INSERT INTO `migrations` VALUES ('35', '2019_12_03_194826_create_goods_user_limit_table', '1'); INSERT INTO `migrations` VALUES ('36', '2019_12_09_153544_create_category_group_table', '1'); INSERT INTO `migrations` VALUES ('37', '2019_12_17_114109_add_columns_to_goods_attribute_table', '1'); INSERT INTO `migrations` VALUES ('38', '2019_12_17_115429_create_ibrand_point_goods_table', '1'); INSERT INTO `migrations` VALUES ('39', '2019_12_18_111052_create_suits_tables', '1'); INSERT INTO `migrations` VALUES ('40', '2019_12_18_141059_add_column_meta_to_micro_page_table', '1'); INSERT INTO `migrations` VALUES ('41', '2019_12_26_100600_create_agent_order_table', '1'); INSERT INTO `migrations` VALUES ('42', '2019_12_26_100925_create_agent_order_item_table', '1'); INSERT INTO `migrations` VALUES ('43', '2019_12_26_101010_create_agent_commission_table', '1'); INSERT INTO `migrations` VALUES ('44', '2019_12_26_101040_create_agent_cash_table', '1'); INSERT INTO `migrations` VALUES ('45', '2019_12_26_101108_create_agent_user_relation_table', '1'); INSERT INTO `migrations` VALUES ('46', '2019_12_26_101126_create_agent_goods_table', '1'); INSERT INTO `migrations` VALUES ('47', '2019_12_26_101143_create_agent_table', '1'); INSERT INTO `migrations` VALUES ('48', '2019_12_26_101203_create_agent_relation_table', '1'); INSERT INTO `migrations` VALUES ('49', '2019_12_26_113722_rename_agent_tabels_name', '1'); INSERT INTO `migrations` VALUES ('50', '2019_12_31_113316_create_addresses_tables', '1'); INSERT INTO `migrations` VALUES ('51', '2019_12_31_113801_create_advert_tables', '1'); INSERT INTO `migrations` VALUES ('52', '2019_12_31_114322_create_balance_tables', '1'); INSERT INTO `migrations` VALUES ('53', '2019_12_31_115422_create_category_tables', '1'); INSERT INTO `migrations` VALUES ('54', '2019_12_31_115801_create_discount_tables', '1'); INSERT INTO `migrations` VALUES ('55', '2019_12_31_133732_create_order_tables', '1'); INSERT INTO `migrations` VALUES ('56', '2019_12_31_134152_create_payment_tables', '1'); INSERT INTO `migrations` VALUES ('57', '2019_12_31_134323_create_point_tables', '1'); INSERT INTO `migrations` VALUES ('58', '2019_12_31_134502_create_product_tables', '1'); INSERT INTO `migrations` VALUES ('59', '2019_12_31_134621_create_shipping_tables', '1'); INSERT INTO `migrations` VALUES ('60', '2019_12_31_141418_create_user_tables', '1'); INSERT INTO `migrations` VALUES ('61', '2019_12_31_151951_add_column_type_to_micro_page_table', '1'); INSERT INTO `migrations` VALUES ('62', '2019_12_31_154250_add_column_model_id_value_to_goods_attribute_table', '1'); INSERT INTO `migrations` VALUES ('63', '2020_01_02_094820_add_column_redeem_point_to_goods_table', '1'); INSERT INTO `migrations` VALUES ('64', '2020_01_02_102722_change_column_origin_id_origin_type_to_balance_table', '1'); INSERT INTO `migrations` VALUES ('65', '2020_01_02_103344_add_column_type_discoutn_table', '1'); INSERT INTO `migrations` VALUES ('66', '2020_01_02_145757_add_columns_to_goods_table', '1'); INSERT INTO `migrations` VALUES ('67', '2020_01_03_144113_add_column_status_order_item_table', '1'); INSERT INTO `migrations` VALUES ('68', '2020_01_04_153826_change_column_value_balance_table', '1'); INSERT INTO `migrations` VALUES ('69', '2020_01_06_171814_add_column_is_open_to_ibrand_discount_table', '1'); INSERT INTO `migrations` VALUES ('70', '2020_01_07_094252_create_gift_tables', '1'); INSERT INTO `migrations` VALUES ('71', '2020_01_07_115140_create_refund_tables', '1'); INSERT INTO `migrations` VALUES ('72', '2020_01_07_144318_create_seckill_tables', '1'); INSERT INTO `migrations` VALUES ('73', '2020_01_09_102621_add_columns_to_order_item_table', '1'); INSERT INTO `migrations` VALUES ('74', '2020_01_09_105834_create_payment_log_table', '1'); INSERT INTO `migrations` VALUES ('75', '2020_02_20_102704_create_ibrand_demo_table', '1'); INSERT INTO `migrations` VALUES ('76', '2020_02_27_135559_change_column_extra_to_ibrand_pay_charge_table', '1'); INSERT INTO `migrations` VALUES ('77', '2020_03_09_131806_fix_payment_table_order_type', '1'); INSERT INTO `migrations` VALUES ('78', '2020_03_23_214935_create_pay_tables', '1'); INSERT INTO `migrations` VALUES ('79', '2020_11_20_165060_add_recharge_rule_id_to_balance_order_table', '1'); -- ---------------------------- -- Table structure for oauth_access_tokens -- ---------------------------- DROP TABLE IF EXISTS `oauth_access_tokens`; CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) DEFAULT NULL, `client_id` int(11) NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `oauth_access_tokens_user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of oauth_access_tokens -- ---------------------------- -- ---------------------------- -- Table structure for oauth_auth_codes -- ---------------------------- DROP TABLE IF EXISTS `oauth_auth_codes`; CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) NOT NULL, `client_id` int(11) NOT NULL, `scopes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of oauth_auth_codes -- ---------------------------- -- ---------------------------- -- Table structure for oauth_clients -- ---------------------------- DROP TABLE IF EXISTS `oauth_clients`; CREATE TABLE `oauth_clients` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `oauth_clients_user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of oauth_clients -- ---------------------------- -- ---------------------------- -- Table structure for oauth_personal_access_clients -- ---------------------------- DROP TABLE IF EXISTS `oauth_personal_access_clients`; CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `client_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `oauth_personal_access_clients_client_id_index` (`client_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of oauth_personal_access_clients -- ---------------------------- -- ---------------------------- -- Table structure for oauth_refresh_tokens -- ---------------------------- DROP TABLE IF EXISTS `oauth_refresh_tokens`; CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of oauth_refresh_tokens -- ---------------------------- -- ---------------------------- -- Table structure for posters -- ---------------------------- DROP TABLE IF EXISTS `posters`; CREATE TABLE `posters` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `posterable_id` int(10) unsigned NOT NULL, `posterable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `posters_posterable_id_posterable_type_index` (`posterable_id`,`posterable_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of posters -- ---------------------------- -- ---------------------------- -- Table structure for shopping_cart -- ---------------------------- DROP TABLE IF EXISTS `shopping_cart`; CREATE TABLE `shopping_cart` ( `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `__raw_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `guard` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `id` int(11) NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `qty` int(11) NOT NULL, `price` decimal(8,2) NOT NULL, `total` decimal(8,2) NOT NULL, `__model` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attributes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`key`,`__raw_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- ---------------------------- -- Records of shopping_cart -- ----------------------------