/*SQLyog Ultimate v11.11 (64 bit)MySQL - 5.7.14 : Database - local.tpadmin.com**********************************************************************//*!40101 SET NAMES utf8 */;/*!40101 SET SQL_MODE=''*/;/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;CREATE DATABASE /*!32312 IF NOT EXISTS*/`local.tpadmin.com` /*!40100 DEFAULT CHARACTER SET utf8 */;USE `local.tpadmin.com`;/*Table structure for table `bk_admin` */DROP TABLE IF EXISTS `bk_admin`;CREATE TABLE `bk_admin` (`id` mediumint(9) NOT NULL AUTO_INCREMENT COMMENT '管理员id',`name` varchar(30) NOT NULL COMMENT '管理员名称',`password` char(32) NOT NULL COMMENT '管理员密码',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;/*Data for the table `bk_admin` */insert into `bk_admin`(`id`,`name`,`password`) values (28,'root','e10adc3949ba59abbe56e057f20f883e');/*Table structure for table `bk_article` */DROP TABLE IF EXISTS `bk_article`;CREATE TABLE `bk_article` (`id` mediumint(9) NOT NULL AUTO_INCREMENT COMMENT '文章id',`title` varchar(60) NOT NULL COMMENT '文章标题',`keywords` varchar(100) NOT NULL COMMENT '关键词',`desc` varchar(255) NOT NULL COMMENT '描述',`author` varchar(30) NOT NULL COMMENT '作者',`thumb` varchar(160) NOT NULL DEFAULT '' COMMENT '缩略图',`content` text COMMENT '内容',`click` mediumint(9) NOT NULL DEFAULT '0' COMMENT '点击数',`zan` mediumint(9) NOT NULL DEFAULT '0' COMMENT '点赞数',`rec` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:不推荐 1:推荐',`time` int(10) NOT NULL COMMENT '发布时间',`cateid` mediumint(9) NOT NULL COMMENT '所属栏目',`xmbj` varchar(100) DEFAULT NULL COMMENT '价格',`xmnr` varchar(100) DEFAULT NULL,`tzgs` varchar(100) DEFAULT NULL,`hzsx` varchar(100) DEFAULT NULL,`jzqk` varchar(100) DEFAULT NULL,`preorder_date` datetime DEFAULT NULL,PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COMMENT='\r\n';/*Data for the table `bk_article` */insert into `bk_article`(`id`,`title`,`keywords`,`desc`,`author`,`thumb`,`content`,`click`,`zan`,`rec`,`time`,`cateid`,`xmbj`,`xmnr`,`tzgs`,`hzsx`,`jzqk`,`preorder_date`) values (22,'飞龙湖居住项目','','','','','<p>awdaw</p>',15,0,0,1539357201,37,'这是','aa','bb','cc','dd',NULL),(35,'长江项目','','','','',NULL,0,0,0,1570681875,32,'aa','bb','cc','dd','ff',NULL);/*Table structure for table `bk_auth_group` */DROP TABLE IF EXISTS `bk_auth_group`;CREATE TABLE `bk_auth_group` (`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,`title` char(100) NOT NULL DEFAULT '',`status` tinyint(1) NOT NULL DEFAULT '1',`rules` char(80) NOT NULL DEFAULT '',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;/*Data for the table `bk_auth_group` */insert into `bk_auth_group`(`id`,`title`,`status`,`rules`) values (1,'超级管理员',1,'15,16,17,18,19,1,11,12,13,14,9'),(3,'链接专员',1,'2,3,20,10,4'),(4,'配置管理员',1,'1,9,11,14,13,12');/*Table structure for table `bk_auth_group_access` */DROP TABLE IF EXISTS `bk_auth_group_access`;CREATE TABLE `bk_auth_group_access` (`uid` mediumint(8) unsigned NOT NULL,`group_id` mediumint(8) unsigned NOT NULL,UNIQUE KEY `uid_group_id` (`uid`,`group_id`),KEY `uid` (`uid`),KEY `group_id` (`group_id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8;/*Data for the table `bk_auth_group_access` */insert into `bk_auth_group_access`(`uid`,`group_id`) values (1,1),(28,1),(29,4);/*Table structure for table `bk_auth_rule` */DROP TABLE IF EXISTS `bk_auth_rule`;CREATE TABLE `bk_auth_rule` (`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,`name` char(80) NOT NULL DEFAULT '',`title` char(20) NOT NULL DEFAULT '',`type` tinyint(1) NOT NULL DEFAULT '1',`status` tinyint(1) NOT NULL DEFAULT '1',`condition` char(100) NOT NULL DEFAULT '',`pid` mediumint(9) NOT NULL DEFAULT '0',`level` tinyint(1) NOT NULL DEFAULT '0',`sort` int(5) NOT NULL DEFAULT '50',PRIMARY KEY (`id`),UNIQUE KEY `name` (`name`)) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;/*Data for the table `bk_auth_rule` */insert into `bk_auth_rule`(`id`,`name`,`title`,`type`,`status`,`condition`,`pid`,`level`,`sort`) values (1,'sys','系统设置',1,1,'',0,0,7),(2,'link','友情链接',1,1,'',0,0,4),(3,'link/lst','链接列表',1,1,'',2,1,5),(4,'link/del','删除链接',1,1,'',3,2,6),(11,'conf/lst','配置列表',1,1,'',1,1,50),(10,'link/add','添加链接',1,1,'',3,2,50),(9,'conf/conf','配置项',1,1,'',1,1,50),(12,'conf/add','添加配置',1,1,'',11,2,50),(13,'conf/del','配置删除',1,1,'',11,2,50),(14,'conf/edit','配置编辑',1,1,'',11,2,50),(15,'admin','管理员',1,1,'',0,0,50),(16,'admin/lst','管理员列表',1,1,'',15,1,50),(17,'admin/add','管理员添加',1,1,'',16,2,50),(18,'admin/del','管理员删除',1,1,'',16,2,50),(19,'admin/edit','管理员修改',1,1,'',16,2,50),(20,'link/edit','修改链接',1,1,'',3,2,50);/*Table structure for table `bk_cate` */DROP TABLE IF EXISTS `bk_cate`;CREATE TABLE `bk_cate` (`id` mediumint(9) NOT NULL AUTO_INCREMENT COMMENT '栏目id',`catename` varchar(30) NOT NULL COMMENT '栏目名称',`catealias` varchar(30) DEFAULT NULL COMMENT '栏目别名',`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '栏目类型:1:文章列表栏目 2:单页栏目3:图片列表',`keywords` varchar(255) NOT NULL COMMENT '栏目关键词',`desc` varchar(255) NOT NULL COMMENT '栏目描述',`content` text NOT NULL COMMENT '栏目内容',`about_our_team` text,`quality_assurance` text,`behind_the_scenes` text,`rec_index` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:不推荐 1:推荐',`rec_bottom` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0:不推荐 1:推荐',`pid` mediumint(9) NOT NULL DEFAULT '0' COMMENT '上级栏目id',`sort` mediumint(9) NOT NULL DEFAULT '50' COMMENT '排序',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8;/*Data for the table `bk_cate` */insert into `bk_cate`(`id`,`catename`,`catealias`,`type`,`keywords`,`desc`,`content`,`about_our_team`,`quality_assurance`,`behind_the_scenes`,`rec_index`,`rec_bottom`,`pid`,`sort`) values (32,'商贸与流通项目','smlt',1,'','','',NULL,NULL,NULL,0,0,0,5),(33,'文化与旅游','whly',1,'','','','','','',0,0,0,3),(37,'金融与地产项目','jrdc',1,'','','','<p style=\"white-space: normal;\">Experienced the scourge invasion of azeroth shattered, felwood forest into a death, lift, method of woodland rogue who once again stand up already dead rotten body, night town all foggy, healy seuss undercurrent, of the desert kingdom of lordaeron, illidan betrayal night elf exiled outland, prince arthas once the finally boarded the frozen throne, become the new lich king in northrend, seems to temporarily halt war, because war horde and alliance vulnerable agreement seems to have gradually been forgotten.</p><p style=\"white-space: normal;\">In the dry land of durontal, the tribes led by saar set up camp and continued to expand their armies. They invited the original high spirit ranger, who also hated the league, silvanus, the current leader of the forgotten, and his followers to join the tribes of orcs, tauren and trolls.</p><p><br/></p>','<p>Experienced the scourge invasion of azeroth shattered, felwood forest into a death, lift, method of woodland rogue who once again stand up already dead rotten body, night town all foggy, healy seuss undercurrent, of the desert kingdom of lordaeron, illidan betrayal night elf exiled outland, prince arthas once the finally boarded the frozen throne, become the new lich king in northrend, seems to temporarily halt war, because war horde and alliance vulnerable agreement seems to have gradually been forgotten.</p><p>In the dry land of durontal, the tribes led by saar set up camp and continued to expand their armies. They invited the original high spirit ranger, who also hated the league, silvanus, the current leader of the forgotten, and his followers to join the tribes of orcs, tauren and trolls.</p>','<p>Experienced the scourge invasion of azeroth shattered, felwood forest into a death, lift, method of woodland rogue who once again stand up already dead rotten body, night town all foggy, healy seuss undercurrent, of the desert kingdom of lordaeron, illidan betrayal night elf exiled outland, prince arthas once the finally boarded the frozen throne, become the new lich king in northrend, seems to temporarily halt war, because war horde and alliance vulnerable agreement seems to have gradually been forgotten.</p><p>In the dry land of durontal, the tribes led by saar set up camp and continued to expand their armies. They invited the original high spirit ranger, who also hated the league, silvanus, the current leader of the forgotten, and his followers to join the tribes of orcs, tauren and trolls.</p>',0,0,0,7),(42,'制造业项目','zzy',1,'','','',NULL,NULL,NULL,0,0,0,1);/*Table structure for table `bk_conf` */DROP TABLE IF EXISTS `bk_conf`;CREATE TABLE `bk_conf` (`id` mediumint(9) NOT NULL AUTO_INCREMENT COMMENT '配置项id',`cnname` varchar(50) NOT NULL COMMENT '配置中文名称',`enname` varchar(50) NOT NULL COMMENT '英文名称',`type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '配置类型 1:单行文本框 2:多行文本 3:单选按钮 4:复选按钮 5:下拉菜单',`value` varchar(255) DEFAULT NULL COMMENT '配置值',`values` varchar(255) NOT NULL COMMENT '配置可选值',`sort` smallint(6) NOT NULL DEFAULT '50' COMMENT '配置项排序',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;/*Data for the table `bk_conf` */insert into `bk_conf`(`id`,`cnname`,`enname`,`type`,`value`,`values`,`sort`) values (1,'站点名称','sitename',1,'中国路桥招商项目','',53),(2,'站点关键词','keywords',1,'路桥','',52),(3,'站点描述','desc',2,'中国路桥招商项目','',51),(13,'是否关闭网站','close',4,'是','是',50),(7,'启动验证码','code',4,'','是',50),(8,'自动清空缓存','cache',5,'3个小时','1个小时,2个小时,3个小时',50),(9,'允许评论','comment',4,'允许','允许',50),(11,'站标修改','thumb',6,'\\uploads/20181023\\aec3f521f64f35548220eaeb3769d742.png','',50);/*Table structure for table `bk_link` */DROP TABLE IF EXISTS `bk_link`;CREATE TABLE `bk_link` (`id` mediumint(9) NOT NULL AUTO_INCREMENT COMMENT '链接id',`title` varchar(60) NOT NULL COMMENT '链接标题',`desc` varchar(255) NOT NULL COMMENT '链接描述',`url` varchar(160) NOT NULL COMMENT '链接地址',`sort` mediumint(9) NOT NULL DEFAULT '50' COMMENT '链接排序',`sortTwo` mediumint(9) DEFAULT NULL,PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;/*Data for the table `bk_link` */insert into `bk_link`(`id`,`title`,`desc`,`url`,`sort`,`sortTwo`) values (10,'百度','百度','http://www.baidu.com',50,NULL),(2,'36011','','http://www.360.com',2,2);/*Table structure for table `bk_link_copy` */DROP TABLE IF EXISTS `bk_link_copy`;CREATE TABLE `bk_link_copy` (`id` mediumint(9) NOT NULL AUTO_INCREMENT COMMENT '链接id',`title` varchar(60) NOT NULL COMMENT '链接标题',`desc` varchar(255) NOT NULL COMMENT '链接描述',`url` varchar(160) NOT NULL COMMENT '链接地址',`sort` mediumint(9) NOT NULL DEFAULT '50' COMMENT '链接排序',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;/*Data for the table `bk_link_copy` */insert into `bk_link_copy`(`id`,`title`,`desc`,`url`,`sort`) values (10,'百度2','百度','http://www.baidu.com',50),(2,'36011','','http://www.360.com',2);/*Table structure for table `bk_slide` */DROP TABLE IF EXISTS `bk_slide`;CREATE TABLE `bk_slide` (`id` mediumint(9) NOT NULL AUTO_INCREMENT COMMENT '链接id',`title` varchar(60) NOT NULL COMMENT '链接标题',`desc` varchar(255) NOT NULL COMMENT '链接描述',`url` varchar(160) NOT NULL COMMENT '链接地址',`sort` mediumint(9) NOT NULL DEFAULT '50' COMMENT '链接排序',`imgurl` varchar(500) DEFAULT NULL COMMENT '图片地址',`cat` tinyint(1) DEFAULT NULL COMMENT '所属分类位置',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;/*Data for the table `bk_slide` */insert into `bk_slide`(`id`,`title`,`desc`,`url`,`sort`,`imgurl`,`cat`) values (2,'36011','','http://www.360.com',2,NULL,1),(11,'awdwa','a','awawddaw',50,'/uploads/20181014\\7d2d0f18cab2aa97914ca3826e828cc9.jpg',37),(12,'1','222222','1111111111111111',50,'\\uploads/20181014\\e737a57b4706f306c7c146bd850969ac.jpg',37),(13,'awad','232','addawd',50,'\\uploads/20181014\\169f257ca750c66288bc7e08b799c952.jpg',2),(14,'index','index','v',50,'\\uploads/20181014\\d018ec6038b1516acbc3209daca444be.jpg',42);/*Table structure for table `bk_user` */DROP TABLE IF EXISTS `bk_user`;CREATE TABLE `bk_user` (`id` int(1) DEFAULT NULL,`name` char(20) NOT NULL DEFAULT '') ENGINE=InnoDB DEFAULT CHARSET=latin1;/*Data for the table `bk_user` */insert into `bk_user`(`id`,`name`) values (1,'a'),(2,'b'),(3,'c');/*Table structure for table `bk_zan` */DROP TABLE IF EXISTS `bk_zan`;CREATE TABLE `bk_zan` (`id` mediumint(9) NOT NULL AUTO_INCREMENT,`ip` char(20) NOT NULL,`artid` mediumint(9) NOT NULL,`num` mediumint(9) NOT NULL DEFAULT '0',PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=utf8;/*Data for the table `bk_zan` *//*Table structure for table `orders` */DROP TABLE IF EXISTS `orders`;CREATE TABLE `orders` (`user_id` int(1) NOT NULL,`order_num` char(20) CHARACTER SET latin1 DEFAULT NULL,`creatTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,UNIQUE KEY `idx_aNum` (`order_num`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;/*Data for the table `orders` */insert into `orders`(`user_id`,`order_num`,`creatTime`) values (1,'a20050111','0000-00-00 00:00:00'),(1,'a20050112','0000-00-00 00:00:00'),(1,'a20050113','0000-00-00 00:00:00'),(2,'a20050114','0000-00-00 00:00:00'),(2,'a20050116','0000-00-00 00:00:00'),(3,'a20050117','2019-04-18 20:32:42'),(5,'aaa','2019-04-18 20:34:04'),(60,'aaa1','2019-04-18 20:35:36');/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。