mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
500 lines
31 KiB
SQL
500 lines
31 KiB
SQL
/*
|
||
Navicat MySQL Data Transfer
|
||
|
||
Source Server : ctolog.com
|
||
Source Server Version : 50559
|
||
Source Host : ctolog.com:3306
|
||
Source Database : admin_v3
|
||
|
||
Target Server Type : MYSQL
|
||
Target Server Version : 50559
|
||
File Encoding : 65001
|
||
|
||
Date: 2018-03-13 15:44:55
|
||
*/
|
||
|
||
SET FOREIGN_KEY_CHECKS=0;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for system_auth
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `system_auth`;
|
||
CREATE TABLE `system_auth` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`title` varchar(20) NOT NULL COMMENT '权限名称',
|
||
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '状态(1:禁用,2:启用)',
|
||
`sort` smallint(6) unsigned DEFAULT '0' COMMENT '排序权重',
|
||
`desc` varchar(255) DEFAULT NULL COMMENT '备注说明',
|
||
`create_by` bigint(11) unsigned DEFAULT '0' COMMENT '创建人',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `index_system_auth_title` (`title`) USING BTREE,
|
||
KEY `index_system_auth_status` (`status`) USING BTREE
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统权限表';
|
||
|
||
-- ----------------------------
|
||
-- Records of system_auth
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for system_auth_node
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `system_auth_node`;
|
||
CREATE TABLE `system_auth_node` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`auth` bigint(20) unsigned DEFAULT NULL COMMENT '角色ID',
|
||
`node` varchar(200) DEFAULT NULL COMMENT '节点路径',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_system_auth_auth` (`auth`) USING BTREE,
|
||
KEY `index_system_auth_node` (`node`) USING BTREE
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统角色与节点绑定';
|
||
|
||
-- ----------------------------
|
||
-- Records of system_auth_node
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for system_config
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `system_config`;
|
||
CREATE TABLE `system_config` (
|
||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(100) DEFAULT NULL COMMENT '配置编码',
|
||
`value` varchar(500) DEFAULT NULL COMMENT '配置值',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_system_config_name` (`name`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='系统参数配置';
|
||
|
||
-- ----------------------------
|
||
-- Records of system_config
|
||
-- ----------------------------
|
||
INSERT INTO `system_config` VALUES ('1', 'app_name', 'ThinkAdmin');
|
||
INSERT INTO `system_config` VALUES ('2', 'site_name', 'ThinkAdmin');
|
||
INSERT INTO `system_config` VALUES ('3', 'app_version', '3.0 dev');
|
||
INSERT INTO `system_config` VALUES ('4', 'site_copy', '©版权所有 2014-2018 楚才科技');
|
||
INSERT INTO `system_config` VALUES ('5', 'browser_icon', 'http://service.thinkadmin.top/static/upload/f47b8fe06e38ae99/08e8398da45583b9.png');
|
||
INSERT INTO `system_config` VALUES ('6', 'tongji_baidu_key', '');
|
||
INSERT INTO `system_config` VALUES ('7', 'miitbeian', '粤ICP备16006642号-2');
|
||
INSERT INTO `system_config` VALUES ('8', 'storage_type', 'local');
|
||
INSERT INTO `system_config` VALUES ('9', 'storage_local_exts', 'png,jpg,rar,doc,icon,mp4');
|
||
INSERT INTO `system_config` VALUES ('10', 'storage_qiniu_bucket', '');
|
||
INSERT INTO `system_config` VALUES ('11', 'storage_qiniu_domain', '');
|
||
INSERT INTO `system_config` VALUES ('12', 'storage_qiniu_access_key', '');
|
||
INSERT INTO `system_config` VALUES ('13', 'storage_qiniu_secret_key', '');
|
||
INSERT INTO `system_config` VALUES ('14', 'storage_oss_bucket', 'cuci');
|
||
INSERT INTO `system_config` VALUES ('15', 'storage_oss_endpoint', 'oss-cn-beijing.aliyuncs.com');
|
||
INSERT INTO `system_config` VALUES ('16', 'storage_oss_domain', 'cuci.oss-cn-beijing.aliyuncs.com');
|
||
INSERT INTO `system_config` VALUES ('17', 'storage_oss_keyid', '用你自己的吧');
|
||
INSERT INTO `system_config` VALUES ('18', 'storage_oss_secret', '用你自己的吧');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for system_log
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `system_log`;
|
||
CREATE TABLE `system_log` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`ip` char(15) NOT NULL DEFAULT '' COMMENT '操作者IP地址',
|
||
`node` char(200) NOT NULL DEFAULT '' COMMENT '当前操作节点',
|
||
`username` varchar(32) NOT NULL DEFAULT '' COMMENT '操作人用户名',
|
||
`action` varchar(200) NOT NULL DEFAULT '' COMMENT '操作行为',
|
||
`content` text NOT NULL COMMENT '操作内容描述',
|
||
`create_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='系统操作日志表';
|
||
|
||
-- ----------------------------
|
||
-- Records of system_log
|
||
-- ----------------------------
|
||
INSERT INTO `system_log` VALUES ('1', '113.106.73.138', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-13 15:42:15');
|
||
INSERT INTO `system_log` VALUES ('2', '115.229.46.40', 'admin/login/index', 'admin', '系统管理', '用户登录系统成功', '2018-03-13 15:43:48');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for system_menu
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `system_menu`;
|
||
CREATE TABLE `system_menu` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`pid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '父id',
|
||
`title` varchar(100) NOT NULL DEFAULT '' COMMENT '名称',
|
||
`node` varchar(200) NOT NULL DEFAULT '' COMMENT '节点代码',
|
||
`icon` varchar(100) NOT NULL DEFAULT '' COMMENT '菜单图标',
|
||
`url` varchar(400) NOT NULL DEFAULT '' COMMENT '链接',
|
||
`params` varchar(500) DEFAULT '' COMMENT '链接参数',
|
||
`target` varchar(20) NOT NULL DEFAULT '_self' COMMENT '链接打开方式',
|
||
`sort` int(11) unsigned DEFAULT '0' COMMENT '菜单排序',
|
||
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态(0:禁用,1:启用)',
|
||
`create_by` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建人',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_system_menu_node` (`node`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8 COMMENT='系统菜单表';
|
||
|
||
-- ----------------------------
|
||
-- Records of system_menu
|
||
-- ----------------------------
|
||
INSERT INTO `system_menu` VALUES ('1', '0', '系统设置', '', '', '#', '', '_self', '9000', '1', '10000', '2018-01-19 15:27:00');
|
||
INSERT INTO `system_menu` VALUES ('2', '10', '后台菜单', '', 'fa fa-leaf', 'admin/menu/index', '', '_self', '10', '1', '10000', '2018-01-19 15:27:17');
|
||
INSERT INTO `system_menu` VALUES ('3', '10', '系统参数', '', 'fa fa-modx', 'admin/config/index', '', '_self', '20', '1', '10000', '2018-01-19 15:27:57');
|
||
INSERT INTO `system_menu` VALUES ('4', '11', '访问授权', '', 'fa fa-group', 'admin/auth/index', '', '_self', '20', '1', '10000', '2018-01-22 11:13:02');
|
||
INSERT INTO `system_menu` VALUES ('5', '11', '用户管理', '', 'fa fa-user', 'admin/user/index', '', '_self', '10', '1', '0', '2018-01-23 12:15:12');
|
||
INSERT INTO `system_menu` VALUES ('6', '11', '访问节点', '', 'fa fa-fort-awesome', 'admin/node/index', '', '_self', '30', '1', '0', '2018-01-23 12:36:54');
|
||
INSERT INTO `system_menu` VALUES ('7', '0', '后台首页', '', '', 'admin/index/main', '', '_self', '1000', '1', '0', '2018-01-23 13:42:30');
|
||
INSERT INTO `system_menu` VALUES ('8', '16', '系统日志', '', 'fa fa-code', 'admin/log/index', '', '_self', '10', '1', '0', '2018-01-24 13:52:58');
|
||
INSERT INTO `system_menu` VALUES ('9', '10', '文件存储', '', 'fa fa-stop-circle', 'admin/config/file', '', '_self', '30', '1', '0', '2018-01-25 10:54:28');
|
||
INSERT INTO `system_menu` VALUES ('10', '1', '系统管理', '', 'fa fa-scribd', '#', '', '_self', '200', '1', '0', '2018-01-25 18:14:28');
|
||
INSERT INTO `system_menu` VALUES ('11', '1', '访问权限', '', 'fa fa-anchor', '#', '', '_self', '300', '1', '0', '2018-01-25 18:15:08');
|
||
INSERT INTO `system_menu` VALUES ('16', '1', '日志管理', '', 'fa fa-hashtag', '#', '', '_self', '400', '1', '0', '2018-02-10 16:31:15');
|
||
INSERT INTO `system_menu` VALUES ('17', '0', '微信管理', '', '', '#', '', '_self', '8000', '1', '0', '2018-03-06 14:42:49');
|
||
INSERT INTO `system_menu` VALUES ('18', '17', '公众号配置', '', 'fa fa-cogs', '#', '', '_self', '0', '1', '0', '2018-03-06 14:43:05');
|
||
INSERT INTO `system_menu` VALUES ('19', '18', '微信授权绑定', '', 'fa fa-cog', 'wechat/config/index', '', '_self', '0', '1', '0', '2018-03-06 14:43:26');
|
||
INSERT INTO `system_menu` VALUES ('20', '18', '关注默认回复', '', 'fa fa-comment-o', 'wechat/keys/subscribe', '', '_self', '0', '1', '0', '2018-03-06 14:44:45');
|
||
INSERT INTO `system_menu` VALUES ('21', '18', '无反馈默认回复', '', 'fa fa-commenting', 'wechat/keys/defaults', '', '_self', '0', '1', '0', '2018-03-06 14:45:55');
|
||
INSERT INTO `system_menu` VALUES ('22', '18', '微信关键字管理', '', 'fa fa-hashtag', 'wechat/keys/index', '', '_self', '0', '1', '0', '2018-03-06 14:46:23');
|
||
INSERT INTO `system_menu` VALUES ('23', '17', '微信服务定制', '', 'fa fa-cubes', '#', '', '_self', '0', '1', '0', '2018-03-06 14:47:11');
|
||
INSERT INTO `system_menu` VALUES ('24', '23', '微信菜单管理', '', 'fa fa-gg-circle', 'wechat/menu/index', '', '_self', '0', '1', '0', '2018-03-06 14:47:39');
|
||
INSERT INTO `system_menu` VALUES ('25', '23', '微信图文管理', '', 'fa fa-map-o', 'wechat/news/index', '', '_self', '0', '1', '0', '2018-03-06 14:48:14');
|
||
INSERT INTO `system_menu` VALUES ('26', '17', '微信粉丝管理', '', 'fa fa-user', '#', '', '_self', '0', '1', '0', '2018-03-06 14:48:33');
|
||
INSERT INTO `system_menu` VALUES ('27', '26', '微信粉丝列表', '', 'fa fa-users', 'wechat/fans/index', '', '_self', '20', '1', '0', '2018-03-06 14:49:04');
|
||
INSERT INTO `system_menu` VALUES ('28', '26', '微信黑名单管理', '', 'fa fa-user-times', 'wechat/block/index', '', '_self', '30', '1', '0', '2018-03-06 14:49:22');
|
||
INSERT INTO `system_menu` VALUES ('29', '26', '微信标签管理', '', 'fa fa-tags', 'wechat/tags/index', '', '_self', '10', '1', '0', '2018-03-06 14:49:39');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for system_node
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `system_node`;
|
||
CREATE TABLE `system_node` (
|
||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||
`node` varchar(100) DEFAULT NULL COMMENT '节点代码',
|
||
`title` varchar(500) DEFAULT NULL COMMENT '节点标题',
|
||
`is_menu` tinyint(1) unsigned DEFAULT '0' COMMENT '是否可设置为菜单',
|
||
`is_auth` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启动RBAC权限控制',
|
||
`is_login` tinyint(1) unsigned DEFAULT '1' COMMENT '是否启动登录控制',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_system_node_node` (`node`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=322 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='系统节点表';
|
||
|
||
-- ----------------------------
|
||
-- Records of system_node
|
||
-- ----------------------------
|
||
INSERT INTO `system_node` VALUES ('1', 'admin', '系统管理', '0', '1', '1', '2018-01-23 12:39:13');
|
||
INSERT INTO `system_node` VALUES ('2', 'admin/auth', '权限管理', '0', '1', '1', '2018-01-23 12:39:14');
|
||
INSERT INTO `system_node` VALUES ('3', 'admin/auth/index', '权限列表', '1', '1', '1', '2018-01-23 12:39:14');
|
||
INSERT INTO `system_node` VALUES ('4', 'admin/auth/apply', '访问授权', '0', '1', '1', '2018-01-23 12:39:19');
|
||
INSERT INTO `system_node` VALUES ('5', 'admin/auth/add', '添加权限', '0', '1', '1', '2018-01-23 12:39:22');
|
||
INSERT INTO `system_node` VALUES ('6', 'admin/auth/edit', '编辑权限', '0', '1', '1', '2018-01-23 12:39:23');
|
||
INSERT INTO `system_node` VALUES ('7', 'admin/auth/forbid', '禁用权限', '0', '1', '1', '2018-01-23 12:39:23');
|
||
INSERT INTO `system_node` VALUES ('8', 'admin/auth/resume', '启用权限', '0', '1', '1', '2018-01-23 12:39:24');
|
||
INSERT INTO `system_node` VALUES ('9', 'admin/auth/del', '删除权限', '0', '1', '1', '2018-01-23 12:39:25');
|
||
INSERT INTO `system_node` VALUES ('10', 'admin/config/index', '系统参数', '1', '1', '1', '2018-01-23 12:39:25');
|
||
INSERT INTO `system_node` VALUES ('11', 'admin/config/file', '文件存储', '0', '1', '1', '2018-01-23 12:39:26');
|
||
INSERT INTO `system_node` VALUES ('12', 'admin/config/sms', '短信接口', '0', '1', '1', '2018-01-23 12:39:28');
|
||
INSERT INTO `system_node` VALUES ('13', 'admin/log/index', '日志记录', '1', '1', '1', '2018-01-23 12:39:28');
|
||
INSERT INTO `system_node` VALUES ('14', 'admin/log/sms', '短信记录', '0', '1', '1', '2018-01-23 12:39:29');
|
||
INSERT INTO `system_node` VALUES ('15', 'admin/log/del', '日志删除', '0', '1', '1', '2018-01-23 12:39:29');
|
||
INSERT INTO `system_node` VALUES ('16', 'admin/menu/index', '系统菜单列表', '1', '1', '1', '2018-01-23 12:39:31');
|
||
INSERT INTO `system_node` VALUES ('17', 'admin/menu/add', '添加系统菜单', '0', '1', '1', '2018-01-23 12:39:31');
|
||
INSERT INTO `system_node` VALUES ('18', 'admin/menu/edit', '编辑系统菜单', '0', '1', '1', '2018-01-23 12:39:32');
|
||
INSERT INTO `system_node` VALUES ('19', 'admin/menu/del', '删除系统菜单', '0', '1', '1', '2018-01-23 12:39:33');
|
||
INSERT INTO `system_node` VALUES ('20', 'admin/menu/forbid', '禁用系统菜单', '0', '1', '1', '2018-01-23 12:39:33');
|
||
INSERT INTO `system_node` VALUES ('21', 'admin/menu/resume', '启用系统菜单', '0', '1', '1', '2018-01-23 12:39:34');
|
||
INSERT INTO `system_node` VALUES ('22', 'admin/node/index', '系统节点列表', '1', '1', '1', '2018-01-23 12:39:36');
|
||
INSERT INTO `system_node` VALUES ('23', 'admin/node/save', '保存节点信息', '0', '1', '1', '2018-01-23 12:39:36');
|
||
INSERT INTO `system_node` VALUES ('24', 'admin/user/index', '系统用户列表', '1', '1', '1', '2018-01-23 12:39:37');
|
||
INSERT INTO `system_node` VALUES ('25', 'admin/user/auth', '用户授权操作', '0', '1', '1', '2018-01-23 12:39:38');
|
||
INSERT INTO `system_node` VALUES ('26', 'admin/user/add', '添加系统用户', '0', '1', '1', '2018-01-23 12:39:39');
|
||
INSERT INTO `system_node` VALUES ('27', 'admin/user/edit', '编辑系统用户', '0', '1', '1', '2018-01-23 12:39:39');
|
||
INSERT INTO `system_node` VALUES ('28', 'admin/user/pass', '修改用户密码', '0', '1', '1', '2018-01-23 12:39:40');
|
||
INSERT INTO `system_node` VALUES ('29', 'admin/user/del', '删除系统用户', '0', '1', '1', '2018-01-23 12:39:41');
|
||
INSERT INTO `system_node` VALUES ('30', 'admin/user/forbid', '禁用系统用户', '0', '1', '1', '2018-01-23 12:39:41');
|
||
INSERT INTO `system_node` VALUES ('31', 'admin/user/resume', '启用系统用户', '0', '1', '1', '2018-01-23 12:39:42');
|
||
INSERT INTO `system_node` VALUES ('32', 'admin/config', '系统配置', '0', '1', '1', '2018-01-23 13:34:37');
|
||
INSERT INTO `system_node` VALUES ('33', 'admin/log', '日志管理', '0', '1', '1', '2018-01-23 13:34:48');
|
||
INSERT INTO `system_node` VALUES ('34', 'admin/menu', '系统菜单管理', '0', '1', '1', '2018-01-23 13:34:58');
|
||
INSERT INTO `system_node` VALUES ('35', 'admin/node', '系统节点管理', '0', '1', '1', '2018-01-23 13:35:17');
|
||
INSERT INTO `system_node` VALUES ('36', 'admin/user', '系统用户管理', '0', '1', '1', '2018-01-23 13:35:26');
|
||
INSERT INTO `system_node` VALUES ('37', 'wechat', '微信管理', '0', '1', '1', '2018-02-06 11:53:21');
|
||
INSERT INTO `system_node` VALUES ('38', 'wechat/config', '公众号对接', '0', '1', '1', '2018-02-06 11:53:32');
|
||
INSERT INTO `system_node` VALUES ('39', 'wechat/config/index', '公众号对接', '1', '1', '1', '2018-02-06 11:53:32');
|
||
INSERT INTO `system_node` VALUES ('45', 'wechat/block', '黑名单', '0', '1', '1', '2018-03-06 14:37:37');
|
||
INSERT INTO `system_node` VALUES ('46', 'wechat/block/index', '黑名单列表', '1', '1', '1', '2018-03-06 14:37:47');
|
||
INSERT INTO `system_node` VALUES ('47', 'wechat/block/backdel', '移出黑名单', '0', '1', '1', '2018-03-06 14:37:49');
|
||
INSERT INTO `system_node` VALUES ('48', 'wechat/fans', '粉丝管理', '0', '1', '1', '2018-03-06 14:38:06');
|
||
INSERT INTO `system_node` VALUES ('49', 'wechat/fans/index', '粉丝列表', '1', '1', '1', '2018-03-06 14:38:25');
|
||
INSERT INTO `system_node` VALUES ('50', 'wechat/fans/backadd', '移入黑名单', '0', '1', '1', '2018-03-06 14:38:35');
|
||
INSERT INTO `system_node` VALUES ('51', 'wechat/fans/tagset', '标签设置', '0', '1', '1', '2018-03-06 14:38:36');
|
||
INSERT INTO `system_node` VALUES ('52', 'wechat/fans/tagadd', '添加标签', '0', '1', '1', '2018-03-06 14:38:37');
|
||
INSERT INTO `system_node` VALUES ('53', 'wechat/fans/tagdel', '删除标签', '0', '1', '1', '2018-03-06 14:38:38');
|
||
INSERT INTO `system_node` VALUES ('54', 'wechat/fans/sync', '同步粉丝', '0', '1', '1', '2018-03-06 14:38:38');
|
||
INSERT INTO `system_node` VALUES ('55', 'wechat/keys', '关键字管理', '0', '1', '1', '2018-03-06 14:39:21');
|
||
INSERT INTO `system_node` VALUES ('56', 'wechat/keys/index', '关键字列表', '1', '1', '1', '2018-03-06 14:39:25');
|
||
INSERT INTO `system_node` VALUES ('57', 'wechat/keys/add', '添加关键字', '0', '1', '1', '2018-03-06 14:39:27');
|
||
INSERT INTO `system_node` VALUES ('58', 'wechat/keys/edit', '编辑关键字', '0', '1', '1', '2018-03-06 14:39:28');
|
||
INSERT INTO `system_node` VALUES ('59', 'wechat/keys/del', '删除关键字', '0', '1', '1', '2018-03-06 14:39:42');
|
||
INSERT INTO `system_node` VALUES ('60', 'wechat/keys/forbid', '禁用关键字', '0', '1', '1', '2018-03-06 14:39:55');
|
||
INSERT INTO `system_node` VALUES ('61', 'wechat/keys/resume', '启用关键字', '0', '1', '1', '2018-03-06 14:40:01');
|
||
INSERT INTO `system_node` VALUES ('62', 'wechat/keys/subscribe', '关注默认回复', '1', '1', '1', '2018-03-06 14:40:12');
|
||
INSERT INTO `system_node` VALUES ('63', 'wechat/keys/defaults', '无反馈默认回复', '1', '1', '1', '2018-03-06 14:40:27');
|
||
INSERT INTO `system_node` VALUES ('64', 'wechat/menu', '微信菜单管理', '0', '1', '1', '2018-03-06 14:40:37');
|
||
INSERT INTO `system_node` VALUES ('65', 'wechat/menu/index', '微信菜单管理', '1', '1', '1', '2018-03-06 14:40:41');
|
||
INSERT INTO `system_node` VALUES ('66', 'wechat/menu/edit', '编辑发布菜单', '0', '1', '1', '2018-03-06 14:40:53');
|
||
INSERT INTO `system_node` VALUES ('67', 'wechat/menu/cancel', '取消发布菜单', '0', '1', '1', '2018-03-06 14:41:01');
|
||
INSERT INTO `system_node` VALUES ('68', 'wechat/news', '图文内容管理', '0', '1', '1', '2018-03-06 14:41:13');
|
||
INSERT INTO `system_node` VALUES ('69', 'wechat/news/index', '图文内容管理', '1', '1', '1', '2018-03-06 14:41:20');
|
||
INSERT INTO `system_node` VALUES ('70', 'wechat/news/select', '图文选择器', '0', '1', '1', '2018-03-06 14:41:22');
|
||
INSERT INTO `system_node` VALUES ('71', 'wechat/news/image', '图文选择器', '0', '1', '1', '2018-03-06 14:41:22');
|
||
INSERT INTO `system_node` VALUES ('72', 'wechat/news/add', '添加图文', '0', '1', '1', '2018-03-06 14:41:23');
|
||
INSERT INTO `system_node` VALUES ('73', 'wechat/news/del', '删除图文', '0', '1', '1', '2018-03-06 14:41:23');
|
||
INSERT INTO `system_node` VALUES ('74', 'wechat/news/push', '推荐图文', '0', '1', '1', '2018-03-06 14:41:24');
|
||
INSERT INTO `system_node` VALUES ('75', 'wechat/news/edit', '编辑图文', '0', '1', '1', '2018-03-06 14:41:25');
|
||
INSERT INTO `system_node` VALUES ('76', 'wechat/tags', '标签管理', '0', '1', '1', '2018-03-06 14:42:06');
|
||
INSERT INTO `system_node` VALUES ('77', 'wechat/tags/index', '标签列表', '1', '1', '1', '2018-03-06 14:42:09');
|
||
INSERT INTO `system_node` VALUES ('78', 'wechat/tags/add', '添加标签', '0', '1', '1', '2018-03-06 14:42:14');
|
||
INSERT INTO `system_node` VALUES ('79', 'wechat/tags/edit', '编辑标签', '0', '1', '1', '2018-03-06 14:42:17');
|
||
INSERT INTO `system_node` VALUES ('80', 'wechat/tags/del', '删除标签', '0', '1', '1', '2018-03-06 14:42:20');
|
||
INSERT INTO `system_node` VALUES ('81', 'wechat/tags/sync', '同步标签', '0', '1', '1', '2018-03-06 14:42:23');
|
||
INSERT INTO `system_node` VALUES ('229', 'admin/node/clear', '清理无效记录', '0', '1', '1', '2018-03-09 12:24:31');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for system_sequence
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `system_sequence`;
|
||
CREATE TABLE `system_sequence` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`type` varchar(20) DEFAULT NULL COMMENT '序号类型',
|
||
`sequence` char(50) NOT NULL COMMENT '序号值',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `index_system_sequence_unique` (`type`,`sequence`) USING BTREE,
|
||
KEY `index_system_sequence_type` (`type`),
|
||
KEY `index_system_sequence_number` (`sequence`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统序号表';
|
||
|
||
-- ----------------------------
|
||
-- Records of system_sequence
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for system_user
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `system_user`;
|
||
CREATE TABLE `system_user` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`username` varchar(50) NOT NULL DEFAULT '' COMMENT '用户登录名',
|
||
`password` char(32) NOT NULL DEFAULT '' COMMENT '用户登录密码',
|
||
`qq` varchar(16) DEFAULT NULL COMMENT '联系QQ',
|
||
`mail` varchar(32) DEFAULT NULL COMMENT '联系邮箱',
|
||
`phone` varchar(16) DEFAULT NULL COMMENT '联系手机号',
|
||
`desc` varchar(255) DEFAULT '' COMMENT '备注说明',
|
||
`login_num` bigint(20) unsigned DEFAULT '0' COMMENT '登录次数',
|
||
`login_at` datetime DEFAULT NULL,
|
||
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态(0:禁用,1:启用)',
|
||
`authorize` varchar(255) DEFAULT NULL,
|
||
`is_deleted` tinyint(1) unsigned DEFAULT '0' COMMENT '删除状态(1:删除,0:未删)',
|
||
`create_by` bigint(20) unsigned DEFAULT NULL COMMENT '创建人',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
UNIQUE KEY `index_system_user_username` (`username`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COMMENT='系统用户表';
|
||
|
||
-- ----------------------------
|
||
-- Records of system_user
|
||
-- ----------------------------
|
||
INSERT INTO `system_user` VALUES ('10000', 'admin', '21232f297a57a5a743894a0e4a801fc3', '', '', '', '', '22409', '2018-03-13 15:43:48', '1', '1', '0', null, '2015-11-13 15:14:22');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for wechat_fans
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `wechat_fans`;
|
||
CREATE TABLE `wechat_fans` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`appid` char(50) DEFAULT '' COMMENT '公众号Appid',
|
||
`unionid` char(100) DEFAULT '' COMMENT 'unionid',
|
||
`openid` char(100) DEFAULT '' COMMENT '用户的标识,对当前公众号唯一',
|
||
`spread_openid` char(100) DEFAULT '' COMMENT '推荐人OPENID',
|
||
`spread_at` datetime DEFAULT NULL COMMENT '推荐时间',
|
||
`tagid_list` varchar(100) DEFAULT '' COMMENT '标签id',
|
||
`is_black` tinyint(1) unsigned DEFAULT '0' COMMENT '是否为黑名单用户',
|
||
`subscribe` tinyint(1) unsigned DEFAULT '0' COMMENT '用户是否关注该公众号(0:未关注, 1:已关注)',
|
||
`nickname` varchar(200) DEFAULT '' COMMENT '用户的昵称',
|
||
`sex` tinyint(1) unsigned DEFAULT NULL COMMENT '用户的性别,值为1时是男性,值为2时是女性,值为0时是未知',
|
||
`country` varchar(50) DEFAULT '' COMMENT '用户所在国家',
|
||
`province` varchar(50) DEFAULT '' COMMENT '用户所在省份',
|
||
`city` varchar(50) DEFAULT '' COMMENT '用户所在城市',
|
||
`language` varchar(50) DEFAULT '' COMMENT '用户的语言,简体中文为zh_CN',
|
||
`headimgurl` varchar(500) DEFAULT '' COMMENT '用户头像',
|
||
`subscribe_time` bigint(20) unsigned DEFAULT '0' COMMENT '用户关注时间',
|
||
`subscribe_at` datetime DEFAULT NULL COMMENT '关注时间',
|
||
`remark` varchar(50) DEFAULT '' COMMENT '备注',
|
||
`expires_in` bigint(20) unsigned DEFAULT '0' COMMENT '有效时间',
|
||
`refresh_token` varchar(200) DEFAULT '' COMMENT '刷新token',
|
||
`access_token` varchar(200) DEFAULT '' COMMENT '访问token',
|
||
`subscribe_scene` varchar(200) DEFAULT '' COMMENT '扫码关注场景',
|
||
`qr_scene` varchar(100) DEFAULT '' COMMENT '二维码场景值',
|
||
`qr_scene_str` varchar(200) DEFAULT '' COMMENT '二维码场景内容',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_wechat_fans_spread_openid` (`spread_openid`) USING BTREE,
|
||
KEY `index_wechat_fans_openid` (`openid`) USING BTREE,
|
||
KEY `index_wechat_fans_unionid` (`unionid`),
|
||
KEY `index_wechat_fans_is_back` (`is_black`),
|
||
KEY `index_wechat_fans_subscribe` (`subscribe`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信粉丝';
|
||
|
||
-- ----------------------------
|
||
-- Records of wechat_fans
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for wechat_fans_tags
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `wechat_fans_tags`;
|
||
CREATE TABLE `wechat_fans_tags` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '标签ID',
|
||
`appid` char(50) DEFAULT NULL COMMENT '公众号APPID',
|
||
`name` varchar(35) DEFAULT NULL COMMENT '标签名称',
|
||
`count` int(11) unsigned DEFAULT NULL COMMENT '总数',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
|
||
KEY `index_wechat_fans_tags_id` (`id`) USING BTREE,
|
||
KEY `index_wechat_fans_tags_appid` (`appid`) USING BTREE
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信会员标签';
|
||
|
||
-- ----------------------------
|
||
-- Records of wechat_fans_tags
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for wechat_keys
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `wechat_keys`;
|
||
CREATE TABLE `wechat_keys` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`appid` char(100) DEFAULT '' COMMENT '公众号APPID',
|
||
`type` varchar(20) DEFAULT '' COMMENT '类型,text 文件消息,image 图片消息,news 图文消息',
|
||
`keys` varchar(100) DEFAULT NULL COMMENT '关键字',
|
||
`content` text COMMENT '文本内容',
|
||
`image_url` varchar(255) DEFAULT '' COMMENT '图片链接',
|
||
`voice_url` varchar(255) DEFAULT '' COMMENT '语音链接',
|
||
`music_title` varchar(100) DEFAULT '' COMMENT '音乐标题',
|
||
`music_url` varchar(255) DEFAULT '' COMMENT '音乐链接',
|
||
`music_image` varchar(255) DEFAULT '' COMMENT '音乐缩略图链接',
|
||
`music_desc` varchar(255) DEFAULT '' COMMENT '音乐描述',
|
||
`video_title` varchar(100) DEFAULT '' COMMENT '视频标题',
|
||
`video_url` varchar(255) DEFAULT '' COMMENT '视频URL',
|
||
`video_desc` varchar(255) DEFAULT '' COMMENT '视频描述',
|
||
`news_id` bigint(20) unsigned DEFAULT NULL COMMENT '图文ID',
|
||
`sort` bigint(20) unsigned DEFAULT '0' COMMENT '排序字段',
|
||
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '0 禁用,1 启用',
|
||
`create_by` bigint(20) unsigned DEFAULT NULL COMMENT '创建人',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_wechat_keys_appid` (`appid`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信关键字';
|
||
|
||
-- ----------------------------
|
||
-- Records of wechat_keys
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for wechat_menu
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `wechat_menu`;
|
||
CREATE TABLE `wechat_menu` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`index` bigint(20) DEFAULT NULL,
|
||
`pindex` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '父id',
|
||
`type` varchar(24) NOT NULL DEFAULT '' COMMENT '菜单类型 null主菜单 link链接 keys关键字',
|
||
`name` varchar(256) NOT NULL DEFAULT '' COMMENT '菜单名称',
|
||
`content` text NOT NULL COMMENT '文字内容',
|
||
`sort` bigint(20) unsigned DEFAULT '0' COMMENT '排序',
|
||
`status` tinyint(1) unsigned DEFAULT '1' COMMENT '状态(0禁用1启用)',
|
||
`create_by` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '创建人',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_wechat_menu_pindex` (`pindex`) USING BTREE
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信菜单配置';
|
||
|
||
-- ----------------------------
|
||
-- Records of wechat_menu
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for wechat_news
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `wechat_news`;
|
||
CREATE TABLE `wechat_news` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`media_id` varchar(100) DEFAULT '' COMMENT '永久素材MediaID',
|
||
`local_url` varchar(300) DEFAULT '' COMMENT '永久素材显示URL',
|
||
`article_id` varchar(60) DEFAULT '' COMMENT '关联图文ID,用,号做分割',
|
||
`is_deleted` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
`create_by` bigint(20) DEFAULT NULL COMMENT '创建人',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_wechat_news_artcle_id` (`article_id`) USING BTREE
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信图文表';
|
||
|
||
-- ----------------------------
|
||
-- Records of wechat_news
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for wechat_news_article
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `wechat_news_article`;
|
||
CREATE TABLE `wechat_news_article` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`title` varchar(50) DEFAULT '' COMMENT '素材标题',
|
||
`local_url` varchar(300) DEFAULT '' COMMENT '永久素材显示URL',
|
||
`show_cover_pic` tinyint(4) unsigned DEFAULT '0' COMMENT '是否显示封面 0不显示,1 显示',
|
||
`author` varchar(20) DEFAULT '' COMMENT '作者',
|
||
`digest` varchar(300) DEFAULT '' COMMENT '摘要内容',
|
||
`content` longtext COMMENT '图文内容',
|
||
`content_source_url` varchar(200) DEFAULT '' COMMENT '图文消息原文地址',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
`create_by` bigint(20) DEFAULT NULL COMMENT '创建人',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信素材表';
|
||
|
||
-- ----------------------------
|
||
-- Records of wechat_news_article
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for wechat_news_image
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `wechat_news_image`;
|
||
CREATE TABLE `wechat_news_image` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`md5` varchar(32) DEFAULT '' COMMENT '文件md5',
|
||
`local_url` varchar(300) DEFAULT '' COMMENT '本地文件链接',
|
||
`media_url` varchar(300) DEFAULT '' COMMENT '远程图片链接',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `index_wechat_news_image_md5` (`md5`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信服务器图片';
|
||
|
||
-- ----------------------------
|
||
-- Records of wechat_news_image
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for wechat_news_media
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `wechat_news_media`;
|
||
CREATE TABLE `wechat_news_media` (
|
||
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
||
`appid` varchar(100) DEFAULT '' COMMENT '公众号ID',
|
||
`md5` varchar(32) DEFAULT '' COMMENT '文件md5',
|
||
`type` varchar(20) DEFAULT '' COMMENT '媒体类型',
|
||
`media_id` varchar(100) DEFAULT '' COMMENT '永久素材MediaID',
|
||
`local_url` varchar(300) DEFAULT '' COMMENT '本地文件链接',
|
||
`media_url` varchar(300) DEFAULT '' COMMENT '远程图片链接',
|
||
`create_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='微信素材表';
|
||
|
||
-- ----------------------------
|
||
-- Records of wechat_news_media
|
||
-- ----------------------------
|