-- ---------------------------- -- mysql备份 -- 日期:2019-06-01 15:00:49 -- ---------------------------- -- ---------------------------- -- Table structure for `xy_admin` -- ---------------------------- DROP TABLE IF EXISTS `xy_admin`; CREATE TABLE `xy_admin` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '管理员编号', `name` varchar(50) DEFAULT NULL COMMENT '登录名', `password` varchar(32) DEFAULT NULL COMMENT '登录密码', `passsalt` varchar(8) DEFAULT NULL, `last_ip` varchar(15) DEFAULT NULL COMMENT '最近登录ip', `last_time` int(10) DEFAULT NULL COMMENT '最近登录时间', `reg_time` int(10) DEFAULT NULL COMMENT '注册时间', `note` varchar(255) DEFAULT NULL COMMENT '备注', `rules` varchar(255) DEFAULT NULL COMMENT '权限栏目', `menu` text COMMENT '菜单', PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_admin_action_log` -- ---------------------------- DROP TABLE IF EXISTS `xy_admin_action_log`; CREATE TABLE `xy_admin_action_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `admin_id` int(11) NOT NULL, `admin_name` varchar(50) NOT NULL, `action` varchar(15) NOT NULL COMMENT '删除 修改 添加', `note` varchar(100) NOT NULL COMMENT '操作备注 ', `time` int(10) NOT NULL COMMENT '操作时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Table structure for `xy_admin_auth_group` -- ---------------------------- DROP TABLE IF EXISTS `xy_admin_auth_group`; CREATE TABLE `xy_admin_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`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_admin_auth_group_access` -- ---------------------------- DROP TABLE IF EXISTS `xy_admin_auth_group_access`; CREATE TABLE `xy_admin_auth_group_access` ( `uid` mediumint(8) unsigned NOT NULL, `group_id` mediumint(8) unsigned NOT NULL, UNIQUE KEY `uid_group_id` (`uid`,`group_id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `group_id` (`group_id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_admin_auth_menu` -- ---------------------------- DROP TABLE IF EXISTS `xy_admin_auth_menu`; CREATE TABLE `xy_admin_auth_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_admin_auth_rule` -- ---------------------------- DROP TABLE IF EXISTS `xy_admin_auth_rule`; CREATE TABLE `xy_admin_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 '', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `name` (`name`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_admin_login_log` -- ---------------------------- DROP TABLE IF EXISTS `xy_admin_login_log`; CREATE TABLE `xy_admin_login_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `admin_id` int(11) NOT NULL COMMENT '管理员编号', `admin_name` varchar(50) DEFAULT NULL COMMENT '姓名', `ip` varchar(15) DEFAULT NULL, `area` varchar(50) DEFAULT NULL COMMENT '地区', `time` int(10) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_article` -- ---------------------------- DROP TABLE IF EXISTS `xy_article`; CREATE TABLE `xy_article` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL COMMENT '文章标题', `sub_title` varchar(255) DEFAULT NULL COMMENT '文章副标题', `summary` varchar(500) DEFAULT NULL COMMENT '文章简介', `content` text COMMENT '文章内容', `main_image` varchar(255) DEFAULT NULL COMMENT '文章主图片', `main_thumb_image` varchar(255) DEFAULT NULL COMMENT '缩略图', `all_images` varchar(1000) DEFAULT NULL COMMENT '所有图片', `all_thumb_images` varchar(1000) DEFAULT NULL COMMENT '所有图片缩略图', `sort` int(11) DEFAULT '0' COMMENT '排序', `click` int(11) DEFAULT '0' COMMENT '点击量', `is_show` tinyint(1) DEFAULT NULL COMMENT '是否展示', `create_time` int(10) NOT NULL COMMENT '创建时间', `update_time` int(10) DEFAULT NULL COMMENT '修改时间', `cat_id` int(11) DEFAULT NULL COMMENT '文章分类', `cat_id_path` varchar(255) DEFAULT NULL COMMENT '文章分类路径', `url` varchar(255) DEFAULT NULL COMMENT '文章链接', `model` smallint(1) DEFAULT NULL COMMENT '文章模型', `seo_title` varchar(255) DEFAULT NULL COMMENT 'seo 标题', `seo_keyword` varchar(255) DEFAULT NULL COMMENT 'seo 关键字', `seo_introduction` varchar(255) DEFAULT NULL COMMENT 'seo描述', `english_name` varchar(255) DEFAULT NULL, `is_baidu_commit` smallint(1) DEFAULT NULL COMMENT '是否提交到百度', `lang` int(255) DEFAULT NULL, `lib_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_article_lib` -- ---------------------------- DROP TABLE IF EXISTS `xy_article_lib`; CREATE TABLE `xy_article_lib` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL COMMENT '文章标题', `content` text COMMENT '文章内容', `model` smallint(1) DEFAULT NULL COMMENT '文章模型', `lang` int(11) DEFAULT NULL, `number` int(11) DEFAULT '0', PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_article_lib_all` -- ---------------------------- DROP TABLE IF EXISTS `xy_article_lib_all`; CREATE TABLE `xy_article_lib_all` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `lang` int(11) DEFAULT NULL, `content` text, `lib_id` varchar(255) DEFAULT NULL, `status` int(1) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_baidu_auto_commit` -- ---------------------------- DROP TABLE IF EXISTS `xy_baidu_auto_commit`; CREATE TABLE `xy_baidu_auto_commit` ( `id` int(11) NOT NULL, `token` varchar(255) DEFAULT NULL, `site_url` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Table structure for `xy_carousel_figure` -- ---------------------------- DROP TABLE IF EXISTS `xy_carousel_figure`; CREATE TABLE `xy_carousel_figure` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(100) DEFAULT NULL COMMENT '标题', `category_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类id', `image` varchar(300) DEFAULT NULL COMMENT '图片地址', `url` varchar(200) DEFAULT NULL COMMENT '链接地址', `sort` int(11) DEFAULT NULL COMMENT '排序', `create_time` int(10) DEFAULT NULL COMMENT '添加时间', `start_time` int(10) DEFAULT '0' COMMENT '开始时间', `end_time` int(10) DEFAULT '0' COMMENT '结束时间', `lang` int(11) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Table structure for `xy_category` -- ---------------------------- DROP TABLE IF EXISTS `xy_category`; CREATE TABLE `xy_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL COMMENT '导航名称', `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '父类id', `sort` int(11) DEFAULT NULL COMMENT '排序', `is_show` smallint(1) DEFAULT NULL COMMENT '是否显示', `image` varchar(200) DEFAULT NULL COMMENT '图片', `model` smallint(1) DEFAULT NULL COMMENT '模型', `create_time` int(10) NOT NULL COMMENT '添加时间', `url` varchar(255) DEFAULT NULL COMMENT '链接', `appoint_url` varchar(255) DEFAULT NULL COMMENT '单页指定 页面', `templete` varchar(255) DEFAULT NULL COMMENT '模型指定模板', `seo_title` varchar(255) DEFAULT NULL, `seo_keyword` varchar(255) DEFAULT NULL, `seo_introduction` varchar(500) DEFAULT NULL, `summary` varchar(500) DEFAULT NULL COMMENT '栏目简介', `english_name` varchar(255) DEFAULT NULL, `lang` int(11) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Table structure for `xy_city` -- ---------------------------- DROP TABLE IF EXISTS `xy_city`; CREATE TABLE `xy_city` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL COMMENT '城市名称', `url` varchar(255) DEFAULT NULL COMMENT 'url', `sort` int(11) DEFAULT NULL COMMENT '排序', `is_show` smallint(1) DEFAULT NULL COMMENT '是否显示', `create_time` int(10) DEFAULT NULL COMMENT '创建时间', `name_full` varchar(255) DEFAULT NULL COMMENT '城市全拼', `lang` int(11) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_friend_url` -- ---------------------------- DROP TABLE IF EXISTS `xy_friend_url`; CREATE TABLE `xy_friend_url` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL COMMENT '名称', `image` varchar(300) DEFAULT NULL COMMENT '图片', `url` varchar(255) DEFAULT NULL COMMENT '链接地址', `sort` int(10) DEFAULT NULL COMMENT '排序', `create_time` int(10) DEFAULT NULL COMMENT '创建时间', `update_time` int(10) DEFAULT NULL COMMENT '修改时间', `is_show` smallint(1) DEFAULT NULL COMMENT '是否显示', `lang` int(11) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_image_setting` -- ---------------------------- DROP TABLE IF EXISTS `xy_image_setting`; CREATE TABLE `xy_image_setting` ( `id` int(11) NOT NULL, `news_thumb_width` double(255,0) DEFAULT NULL, `news_thumb_height` double DEFAULT NULL, `product_thumb_width` double DEFAULT NULL, `product_thumb_height` double DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_lang` -- ---------------------------- DROP TABLE IF EXISTS `xy_lang`; CREATE TABLE `xy_lang` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `template` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_member_leave_message` -- ---------------------------- DROP TABLE IF EXISTS `xy_member_leave_message`; CREATE TABLE `xy_member_leave_message` ( `id` int(11) NOT NULL AUTO_INCREMENT, `real_name` varchar(60) DEFAULT NULL COMMENT '客户姓名', `email` varchar(60) DEFAULT NULL COMMENT '电子邮箱', `phone` varchar(60) DEFAULT NULL COMMENT '电话', `company` varchar(60) DEFAULT NULL COMMENT '公司名', `content` varchar(600) DEFAULT NULL COMMENT '内容', `ip` varchar(30) DEFAULT NULL COMMENT '留言IP地址', `create_time` int(10) DEFAULT NULL COMMENT '留言时间', `ip_area` varchar(50) DEFAULT NULL COMMENT '留言地区', `address` varchar(300) DEFAULT NULL, `article_id` int(11) DEFAULT NULL, `lang` int(255) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Table structure for `xy_siteinfo` -- ---------------------------- DROP TABLE IF EXISTS `xy_siteinfo`; CREATE TABLE `xy_siteinfo` ( `id` int(11) NOT NULL AUTO_INCREMENT, `is_on` smallint(1) NOT NULL DEFAULT '1' COMMENT '网站是否开启', `off_reason` varchar(200) DEFAULT NULL COMMENT '关闭理由', `title` varchar(50) DEFAULT NULL COMMENT '网站标题', `logo` varchar(200) DEFAULT NULL COMMENT '网站logo', `icp` varchar(50) DEFAULT NULL COMMENT '网站备案号', `keyword` varchar(300) DEFAULT NULL COMMENT '网站关键词', `introduction` varchar(300) DEFAULT NULL COMMENT '网站介绍', `company_name` varchar(100) DEFAULT NULL COMMENT '公司名称', `telephone` varchar(100) DEFAULT NULL COMMENT '公司电话号码', `telephone1` varchar(100) DEFAULT NULL COMMENT '公司电话号码', `telephone2` varchar(100) DEFAULT NULL COMMENT '公司电话号码', `mobilephone` varchar(100) DEFAULT NULL COMMENT '手机号码', `mobilephone1` varchar(100) DEFAULT NULL COMMENT '手机号码', `mobilephone2` varchar(100) DEFAULT NULL COMMENT '手机号码', `fax` varchar(100) DEFAULT NULL COMMENT '公司传真', `fax1` varchar(100) DEFAULT NULL COMMENT '公司传真', `fax2` varchar(100) DEFAULT NULL COMMENT '公司传真', `email` varchar(100) DEFAULT NULL COMMENT '电子邮箱', `email1` varchar(100) DEFAULT NULL COMMENT '电子邮箱', `email2` varchar(100) DEFAULT NULL COMMENT '电子邮箱', `address` varchar(100) DEFAULT NULL COMMENT '公司地址', `qq` varchar(100) DEFAULT NULL COMMENT 'QQ', `qq1` varchar(100) DEFAULT NULL COMMENT 'QQ', `qq2` varchar(100) DEFAULT NULL COMMENT 'QQ', `wechat` varchar(100) DEFAULT NULL COMMENT '微信图片', `wechat_public_account` varchar(100) DEFAULT NULL COMMENT '公众号图片', `paginate` int(10) DEFAULT NULL COMMENT '分页数量', `seo_title` varchar(255) DEFAULT NULL COMMENT 'seo标题', `ico` varchar(255) DEFAULT NULL, `mobile_logo` varchar(255) DEFAULT NULL COMMENT '手机logo', `linkman` varchar(255) DEFAULT NULL COMMENT '联系人', `linkman1` varchar(255) DEFAULT NULL COMMENT '联系人', `linkman2` varchar(255) DEFAULT NULL COMMENT '联系人', `www` int(1) DEFAULT NULL, `http301` int(1) DEFAULT NULL, `product_list` int(255) DEFAULT NULL, `article_list` int(255) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Table structure for `xy_text` -- ---------------------------- DROP TABLE IF EXISTS `xy_text`; CREATE TABLE `xy_text` ( `id` int(11) NOT NULL AUTO_INCREMENT, `content` varchar(2000) DEFAULT NULL, `lang` int(255) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; -- ---------------------------- -- Records for `xy_admin` -- ---------------------------- INSERT INTO `xy_admin` VALUES ('1', 'admin', '822d80fbab4a59d22d41766520e1211a', 'lyxSigeE', '127.0.0.1', '1559367596', '0', '', '', ''); -- ---------------------------- -- Records for `xy_admin_login_log` -- ---------------------------- INSERT INTO `xy_admin_login_log` VALUES ('1', '1', 'admin', '127.0.0.1', '', '1558592243'); INSERT INTO `xy_admin_login_log` VALUES ('2', '1', 'admin', '127.0.0.1', '', '1559367216'); INSERT INTO `xy_admin_login_log` VALUES ('3', '1', 'admin', '127.0.0.1', '', '1559367596'); -- ---------------------------- -- Records for `xy_article` -- ---------------------------- INSERT INTO `xy_article` VALUES ('1', '新能源车电池柜', '', '', '', '/up123/2019/06/41a79606bd0517afca8f89688216b3cf0155936940079.jpg', '/up123/2019/06/41a79606bd0517afca8f89688216b3cf0155936940079.thumb.jpg', '', '', '255', '6', '1', '1559368958', '1559369402', '8', '3,8', '/cpzs/show_1.html', '2', '', '', '', '', '', '1', '0'); INSERT INTO `xy_article` VALUES ('2', '前处理设备', '', '', '', '/up123/2019/06/9f30609a5ac8c852f73ee4d3adb64cc7d155936948535.jpg', '/up123/2019/06/9f30609a5ac8c852f73ee4d3adb64cc7d155936948535.thumb.jpg', '', '', '255', '1', '1', '1559368995', '1559369487', '5', '5', '/gcsb/show_2.html', '2', '', '', '', '', '', '1', '0'); INSERT INTO `xy_article` VALUES ('3', '电泳加工有哪些注意事项', '', '', '', '/public/no_image.png', '/public/no_image.thumb.png', '', '', '255', '22', '1', '1559369709', '1559370982', '2', '2', '/fwyz/show_3.html', '1', '', '', '', '', '', '1', '0'); -- ---------------------------- -- Records for `xy_carousel_figure` -- ---------------------------- INSERT INTO `xy_carousel_figure` VALUES ('1', '', '0', '/up123/2019/06/8db406dc741c3fc7564fb0efb40fc9fe2155936825662.jpg', '', '1', '1559368259', '0', '0', '1'); INSERT INTO `xy_carousel_figure` VALUES ('2', '', '0', '/up123/2019/06/3e868673f53d845b3ad1a437cafb4b664155936826449.jpg', '', '2', '1559368267', '0', '0', '1'); INSERT INTO `xy_carousel_figure` VALUES ('3', '', '0', '/up123/2019/06/1fdb6f5c12a13b48816333251de6748bf155936827296.jpg', '', '3', '1559368274', '0', '0', '1'); INSERT INTO `xy_carousel_figure` VALUES ('4', '', '-1', '/up123/2019/06/41072fed2527e8811cff4460076f2e681155936828066.jpg', '', '11', '1559368288', '0', '0', '1'); INSERT INTO `xy_carousel_figure` VALUES ('5', '', '-1', '/up123/2019/06/10d11878b3909c52ae2ed76b1bce93b3d5155936829361.jpg', '', '12', '1559368319', '0', '0', '1'); INSERT INTO `xy_carousel_figure` VALUES ('6', '', '-1', '/up123/2019/06/6e3694f7e42c6a22df9c442d6906786d2155936830094.jpg', '', '13', '1559368308', '0', '0', '1'); -- ---------------------------- -- Records for `xy_category` -- ---------------------------- INSERT INTO `xy_category` VALUES ('1', '关于我们', '0', '1', '1', '/public/no_image.png', '3', '1559368130', '/gywm', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('2', '服务与支持', '0', '2', '1', '/public/no_image.png', '1', '1559368137', '/fwyz', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('3', '产品展示', '0', '3', '1', '/public/no_image.png', '2', '1559368146', '/cpzs', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('4', '企业资质', '0', '4', '1', '/public/no_image.png', '3', '1559368154', '/qyzz', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('5', '工程设备', '0', '5', '1', '/public/no_image.png', '2', '1559368163', '/gcsb', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('6', '工艺流程', '0', '6', '1', '/public/no_image.png', '3', '1559368171', '/gylc', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('7', '联系我们', '0', '7', '1', '/public/no_image.png', '3', '1559368179', '/lxwm', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('8', '电池产品', '3', '1', '1', '/public/no_image.png', '2', '1559368795', '/cpzs/list_8.html', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('9', '喷漆、喷粉产品', '3', '2', '1', '/public/no_image.png', '2', '1559368804', '/cpzs/list_9.html', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('10', '生产设备', '3', '3', '1', '/public/no_image.png', '2', '1559368811', '/cpzs/list_10.html', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('11', '前处理设备', '10', '1', '1', '/public/no_image.png', '2', '1559368847', '/cpzs/list_11.html', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('12', '电泳设备', '10', '2', '1', '/public/no_image.png', '2', '1559368859', '/cpzs/list_12.html', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('13', '喷漆、喷粉设备', '10', '3', '1', '/public/no_image.png', '2', '1559368867', '/cpzs/list_13.html', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('14', '固化设备', '10', '4', '1', '/public/no_image.png', '2', '1559368874', '/cpzs/list_14.html', '', '', '', '', '', '', '', '1'); INSERT INTO `xy_category` VALUES ('15', '悬挂系统', '10', '5', '1', '/public/no_image.png', '2', '1559368880', '/cpzs/list_15.html', '', '', '', '', '', '', '', '1'); -- ---------------------------- -- Records for `xy_lang` -- ---------------------------- INSERT INTO `xy_lang` VALUES ('1', 'CN', 'default'); -- ---------------------------- -- Records for `xy_siteinfo` -- ---------------------------- INSERT INTO `xy_siteinfo` VALUES ('1', '1', '', '江苏惠天工业涂装工程有限公司', '/up123/2019/06/9bcafee46cbfac2f518767f15bb7dff31155936794748.png', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '/up123/2019/06/76a7bd350e84582310d4e884e73c04c19155937006997.png', '', '0', '', '/up123/2019/06/35bc6148fb2e4db9101e92c9c1f304f13155936795581.ico', '', '', '', '', '0', '', '9', '5');