Files
new_nyfh/newnyfh.sql
2020-09-17 09:00:08 +08:00

2253 lines
2.3 MiB
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- 主机: localhost
-- 生成日期: 2020-09-14 15:34:40
-- 服务器版本: 5.5.48-log
-- PHP 版本: 7.3.18
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- 数据库: `newnyfh`
--
-- --------------------------------------------------------
--
-- 表的结构 `admin_config`
--
CREATE TABLE `admin_config` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- 表的结构 `admin_menu`
--
CREATE TABLE `admin_menu` (
`id` int(10) UNSIGNED NOT NULL,
`parent_id` int(11) NOT NULL DEFAULT '0',
`order` int(11) NOT NULL DEFAULT '0',
`title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`icon` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`uri` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`permission` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `admin_menu`
--
INSERT INTO `admin_menu` (`id`, `parent_id`, `order`, `title`, `icon`, `uri`, `permission`, `created_at`, `updated_at`) VALUES
(1, 0, 1, '看板', 'fa-bar-chart', '/', NULL, NULL, '2020-05-28 07:27:25'),
(2, 0, 10, '系统管理', 'fa-tasks', NULL, NULL, NULL, '2020-05-29 06:14:41'),
(3, 2, 12, '用户', 'fa-users', 'auth/users', NULL, NULL, '2020-06-02 01:58:11'),
(4, 2, 13, '角色', 'fa-user', 'auth/roles', NULL, NULL, '2020-06-02 01:58:11'),
(5, 2, 14, '权限', 'fa-ban', 'auth/permissions', NULL, NULL, '2020-06-02 01:58:11'),
(6, 2, 15, '菜单', 'fa-bars', 'auth/menu', NULL, NULL, '2020-06-02 01:58:11'),
(7, 2, 16, '操作日志', 'fa-history', 'auth/logs', NULL, NULL, '2020-06-02 01:58:11'),
(8, 0, 6, '资讯管理', 'fa-bank', 'articles', NULL, '2020-05-28 07:27:59', '2020-05-29 09:15:00'),
(9, 8, 7, '资讯列表', 'fa-book', 'articles', NULL, '2020-05-28 07:28:16', '2020-05-29 09:16:23'),
(10, 0, 8, '分类管理', 'fa-bars', NULL, NULL, '2020-05-28 07:28:28', '2020-05-29 06:14:41'),
(11, 10, 9, '分类列表', 'fa-bars', 'categories', NULL, '2020-05-28 07:28:36', '2020-05-29 06:14:41'),
(12, 0, 4, '友情链接', 'fa-amazon', NULL, NULL, '2020-05-28 08:45:01', '2020-05-29 09:14:37'),
(13, 12, 5, '友情链接列表', 'fa-at', 'links', NULL, '2020-05-28 08:45:07', '2020-05-29 09:15:48'),
(14, 0, 2, '广告管理', 'fa-500px', NULL, NULL, '2020-05-29 06:14:27', '2020-05-29 09:14:23'),
(15, 14, 3, '广告列表', 'fa-500px', 'adverts', NULL, '2020-05-29 06:14:37', '2020-05-29 09:15:32'),
(16, 2, 11, '配置项', 'fa-toggle-on', 'config', NULL, '2020-06-02 01:57:49', '2020-06-02 01:58:11');
-- --------------------------------------------------------
--
-- 表的结构 `admin_operation_log`
--
CREATE TABLE `admin_operation_log` (
`id` int(10) UNSIGNED NOT NULL,
`user_id` int(11) NOT NULL,
`path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`method` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`ip` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`input` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `admin_operation_log`
--
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(1, 1, 'admin', 'GET', '1.190.203.218', '[]', '2020-05-28 07:25:07', '2020-05-28 07:25:07'),
(2, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:25:24', '2020-05-28 07:25:24'),
(3, 1, 'admin/auth/menu/2/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:25:51', '2020-05-28 07:25:51'),
(4, 1, 'admin/auth/menu/2', 'PUT', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u7cfb\\u7edf\\u7ba1\\u7406\",\"icon\":\"fa-tasks\",\"uri\":null,\"roles\":[\"1\",null],\"permission\":null,\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-28 07:25:58', '2020-05-28 07:25:58'),
(5, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:25:58', '2020-05-28 07:25:58'),
(6, 1, 'admin/auth/menu/3/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:26:01', '2020-05-28 07:26:01'),
(7, 1, 'admin/auth/menu/3', 'PUT', '1.190.203.218', '{\"parent_id\":\"2\",\"title\":\"\\u7528\\u6237\",\"icon\":\"fa-users\",\"uri\":\"auth\\/users\",\"roles\":[null],\"permission\":null,\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-28 07:26:09', '2020-05-28 07:26:09'),
(8, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:26:09', '2020-05-28 07:26:09'),
(9, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:27:00', '2020-05-28 07:27:00'),
(10, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:27:06', '2020-05-28 07:27:06'),
(11, 1, 'admin/auth/users', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:27:10', '2020-05-28 07:27:10'),
(12, 1, 'admin/auth/roles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:27:10', '2020-05-28 07:27:10'),
(13, 1, 'admin/auth/permissions', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:27:11', '2020-05-28 07:27:11'),
(14, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:27:11', '2020-05-28 07:27:11'),
(15, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:27:17', '2020-05-28 07:27:17'),
(16, 1, 'admin/auth/menu/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:27:20', '2020-05-28 07:27:20'),
(17, 1, 'admin/auth/menu/1', 'PUT', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u770b\\u677f\",\"icon\":\"fa-bar-chart\",\"uri\":\"\\/\",\"roles\":[null],\"permission\":null,\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-28 07:27:25', '2020-05-28 07:27:25'),
(18, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:27:25', '2020-05-28 07:27:25'),
(19, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u8d44\\u8baf\\u7ba1\\u7406\",\"icon\":\"fa-bars\",\"uri\":\"articles\",\"roles\":[null],\"permission\":null,\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\"}', '2020-05-28 07:27:59', '2020-05-28 07:27:59'),
(20, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:27:59', '2020-05-28 07:27:59'),
(21, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"parent_id\":\"8\",\"title\":\"\\u8d44\\u8baf\\u5217\\u8868\",\"icon\":\"fa-bars\",\"uri\":\"articles\",\"roles\":[null],\"permission\":null,\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\"}', '2020-05-28 07:28:16', '2020-05-28 07:28:16'),
(22, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:28:16', '2020-05-28 07:28:16'),
(23, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u5206\\u7c7b\\u7ba1\\u7406\",\"icon\":\"fa-bars\",\"uri\":null,\"roles\":[null],\"permission\":null,\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\"}', '2020-05-28 07:28:28', '2020-05-28 07:28:28'),
(24, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:28:28', '2020-05-28 07:28:28'),
(25, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"parent_id\":\"10\",\"title\":\"\\u5206\\u7c7b\\u5217\\u8868\",\"icon\":\"fa-bars\",\"uri\":null,\"roles\":[null],\"permission\":null,\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\"}', '2020-05-28 07:28:36', '2020-05-28 07:28:36'),
(26, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:28:37', '2020-05-28 07:28:37'),
(27, 1, 'admin/auth/menu/11/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:28:40', '2020-05-28 07:28:40'),
(28, 1, 'admin/auth/menu/11', 'PUT', '1.190.203.218', '{\"parent_id\":\"10\",\"title\":\"\\u5206\\u7c7b\\u5217\\u8868\",\"icon\":\"fa-bars\",\"uri\":\"categories\",\"roles\":[null],\"permission\":null,\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-28 07:29:07', '2020-05-28 07:29:07'),
(29, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:29:07', '2020-05-28 07:29:07'),
(30, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:29:10', '2020-05-28 07:29:10'),
(31, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\",\"_order\":\"[{\\\"id\\\":1},{\\\"id\\\":8,\\\"children\\\":[{\\\"id\\\":9}]},{\\\"id\\\":10,\\\"children\\\":[{\\\"id\\\":11}]},{\\\"id\\\":2,\\\"children\\\":[{\\\"id\\\":3},{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7}]}]\"}', '2020-05-28 07:29:32', '2020-05-28 07:29:32'),
(32, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:29:32', '2020-05-28 07:29:32'),
(33, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 07:29:33', '2020-05-28 07:29:33'),
(34, 1, 'admin/auth/menu/11/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:31:42', '2020-05-28 07:31:42'),
(35, 1, 'admin/auth/menu/11/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:34:07', '2020-05-28 07:34:07'),
(36, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 07:34:55', '2020-05-28 07:34:55'),
(37, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 07:38:07', '2020-05-28 07:38:07'),
(38, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 07:38:11', '2020-05-28 07:38:11'),
(39, 1, 'admin', 'GET', '1.190.203.218', '[]', '2020-05-28 07:42:07', '2020-05-28 07:42:07'),
(40, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:42:12', '2020-05-28 07:42:12'),
(41, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 07:43:24', '2020-05-28 07:43:24'),
(42, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 07:43:40', '2020-05-28 07:43:40'),
(43, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:43:47', '2020-05-28 07:43:47'),
(44, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:44:37', '2020-05-28 07:44:37'),
(45, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:45:30', '2020-05-28 07:45:30'),
(46, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:46:26', '2020-05-28 07:46:26'),
(47, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:46:54', '2020-05-28 07:46:54'),
(48, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:47:02', '2020-05-28 07:47:02'),
(49, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:47:03', '2020-05-28 07:47:03'),
(50, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:47:04', '2020-05-28 07:47:04'),
(51, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:47:12', '2020-05-28 07:47:12'),
(52, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:47:44', '2020-05-28 07:47:44'),
(53, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:48:11', '2020-05-28 07:48:11'),
(54, 1, 'admin/categories/1', 'PUT', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u6982\\u51b5\\u7b80\\u4ecb\",\"type\":\"article\",\"description\":null,\"order\":\"0\",\"status\":\"on\",\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/categories\"}', '2020-05-28 07:48:16', '2020-05-28 07:48:16'),
(55, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:48:16', '2020-05-28 07:48:16'),
(56, 1, 'admin/categories/1', 'PUT', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u6982\\u51b5\\u7b80\\u4ecb\",\"type\":\"article\",\"description\":null,\"order\":\"0\",\"status\":\"on\",\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\",\"_method\":\"PUT\"}', '2020-05-28 07:49:03', '2020-05-28 07:49:03'),
(57, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:49:03', '2020-05-28 07:49:03'),
(58, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:49:08', '2020-05-28 07:49:08'),
(59, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:49:14', '2020-05-28 07:49:14'),
(60, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:50:05', '2020-05-28 07:50:05'),
(61, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:52:36', '2020-05-28 07:52:36'),
(62, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:52:39', '2020-05-28 07:52:39'),
(63, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:52:46', '2020-05-28 07:52:46'),
(64, 1, 'admin/articles/1', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:52:55', '2020-05-28 07:52:55'),
(65, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 07:52:55', '2020-05-28 07:52:55'),
(66, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:53:00', '2020-05-28 07:53:00'),
(67, 1, 'admin/articles/1', 'PUT', '1.190.203.218', '{\"title\":\"\\u5173\\u7231\\u5973\\u6027 \\u5173\\u7231\\u5065\\u5eb7\",\"category_id\":\"16\",\"description\":\"\\u5927\\u5e86\\u5206\\u9662\\u4e09\\u516b\\u8282\\u5065\\u5eb7\\u8bb2\\u5ea7 \\u4e3a\\u5e86\\u795d\\u56fd\\u9645\\u5987\\u5973\\u52b3\\u52a8\\u8282\\uff0c\\u63d0\\u9ad8\\u5973\\u804c\\u5de5\\u7684\\u8eab\\u4f53\\u7d20\\u8d28\\uff0c\\u5173\\u7231\\u5973\\u804c\\u5de5\\u7684\\u8eab\\u5fc3\\u5065\\u5eb7\\uff0c\\u5927\\u5e86\\u5206\\u9662\\u4e8e3\\u67087\\u65e5\\u4e0b\\u5348\\u4e3e\\u529e\",\"sort\":\"10\",\"_token\":\"KoqE953b9jVm0UEB3UaWJ9qMx8yRPnWWeGjFxuCf\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/articles\"}', '2020-05-28 07:53:08', '2020-05-28 07:53:08'),
(68, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:53:08', '2020-05-28 07:53:08'),
(69, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 07:54:01', '2020-05-28 07:54:01'),
(70, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:54:03', '2020-05-28 07:54:03'),
(71, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:54:05', '2020-05-28 07:54:05'),
(72, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:54:09', '2020-05-28 07:54:09'),
(73, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:54:43', '2020-05-28 07:54:43'),
(74, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:54:45', '2020-05-28 07:54:45'),
(75, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:54:45', '2020-05-28 07:54:45'),
(76, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:54:45', '2020-05-28 07:54:45'),
(77, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 07:54:45', '2020-05-28 07:54:45'),
(78, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:54:52', '2020-05-28 07:54:52'),
(79, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 07:54:55', '2020-05-28 07:54:55'),
(80, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:54:59', '2020-05-28 07:54:59'),
(81, 1, 'admin/articles/create', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 07:55:00', '2020-05-28 07:55:00'),
(82, 1, 'admin/articles/create', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:00:08', '2020-05-28 08:00:08'),
(83, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:00:09', '2020-05-28 08:00:09'),
(84, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:00:10', '2020-05-28 08:00:10'),
(85, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:00:10', '2020-05-28 08:00:10'),
(86, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:00:11', '2020-05-28 08:00:11'),
(87, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:00:11', '2020-05-28 08:00:11'),
(88, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:00:11', '2020-05-28 08:00:11'),
(89, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:00:14', '2020-05-28 08:00:14'),
(90, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:00:16', '2020-05-28 08:00:16'),
(91, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:00:17', '2020-05-28 08:00:17'),
(92, 1, 'admin/articles/create', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:00:20', '2020-05-28 08:00:20'),
(93, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:01:56', '2020-05-28 08:01:56'),
(94, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:01:58', '2020-05-28 08:01:58'),
(95, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:02:02', '2020-05-28 08:02:02'),
(96, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:02:05', '2020-05-28 08:02:05'),
(97, 1, 'admin/articles/create', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:02:08', '2020-05-28 08:02:08'),
(98, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:02:54', '2020-05-28 08:02:54'),
(99, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:02:56', '2020-05-28 08:02:56'),
(100, 1, 'admin/articles/create', 'GET', '1.190.203.218', '[]', '2020-05-28 08:03:45', '2020-05-28 08:03:45'),
(101, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:03:48', '2020-05-28 08:03:48'),
(102, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:03:50', '2020-05-28 08:03:50'),
(103, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:04:01', '2020-05-28 08:04:01'),
(104, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:05:15', '2020-05-28 08:05:15'),
(105, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:05:18', '2020-05-28 08:05:18'),
(106, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:06:59', '2020-05-28 08:06:59'),
(107, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:07:02', '2020-05-28 08:07:02'),
(108, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:13:18', '2020-05-28 08:13:18'),
(109, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:14:40', '2020-05-28 08:14:40'),
(110, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u5927\\u5e86\\u5206\\u9662\\u7ec4\\u7ec7\\u804c\\u5de5\\u53c2\\u52a0\\u201c\\u6025\\u6551\\u5065\\u5eb7\\u201d\\u4e13\\u9898\\u8bb2\\u5ea7\",\"category\":{\"id\":null}}', '2020-05-28 08:14:44', '2020-05-28 08:14:44'),
(111, 1, 'admin/articles/719/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:14:46', '2020-05-28 08:14:46'),
(112, 1, 'admin/articles/719/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:15:25', '2020-05-28 08:15:25'),
(113, 1, 'admin/articles/719/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:17:15', '2020-05-28 08:17:15'),
(114, 1, 'admin/articles/719', 'PUT', '1.190.203.218', '{\"title\":\"\\u5927\\u5e86\\u5206\\u9662\\u7ec4\\u7ec7\\u804c\\u5de5\\u53c2\\u52a0\\u201c\\u6025\\u6551\\u5065\\u5eb7\\u201d\\u4e13\\u9898\\u8bb2\\u5ea7\",\"category_id\":\"16\",\"description\":\"3\\u670821\\u65e5\\uff0c\\u5206\\u9662\\u5de5\\u4f1a\\u9080\\u8bf7\\u4e86\\u9ed1\\u9f99\\u6c5f\\u7701\\u5b89\\u5168\\u5065\\u5eb7\\u6559\\u80b2\\u4e2d\\u5fc3\\u725b\\u5a49\\u8fb0\\u4e3b\\u4efb\\u505a\\u9898\\u4e3a\\u6025\\u6551\\u5065\\u5eb7\\u4e13\\u4e1a\\u77e5\\u8bc6\\u8bb2\\u5ea7\\u3002\\u725b\\u5a49\\u8fb0\\u4e3b\\u4efb\\u8be6\\u7ec6\\u8bb2\\u89e3\\u4e86\\u751f\\u6d3b\\u4e2d\\u7a81\\u53d1\\u75be\\u75c5\\u60c5\\u51b5\\u7684\\u6025\\u6551\\u65b9\\u5f0f\\uff0c\\u5e76\\u793a\\u8303\\u6559\\u5b66\\u4eba\\u5de5\\u547c\\u5438\\u3001\\u5fc3\\u80ba\\u590d\\u82cf\",\"content\":\"<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3\\u670821\\u65e5\\uff0c\\u5206\\u9662\\u5de5\\u4f1a\\u9080\\u8bf7\\u4e86\\u9ed1\\u9f99\\u6c5f\\u7701\\u5b89\\u5168\\u5065\\u5eb7\\u6559\\u80b2\\u4e2d\\u5fc3\\u725b\\u5a49\\u8fb0\\u4e3b\\u4efb\\u505a\\u9898\\u4e3a\\u201c\\u6025\\u6551\\u5065\\u5eb7\\u201d\\u4e13\\u4e1a\\u77e5\\u8bc6\\u8bb2\\u5ea7\\u3002\\u725b\\u5a49\\u8fb0\\u4e3b\\u4efb\\u8be6\\u7ec6\\u8bb2\\u89e3\\u4e86\\u751f\\u6d3b\\u4e2d\\u7a81\\u53d1\\u75be\\u75c5\\u60c5\\u51b5\\u7684\\u6025\\u6551\\u65b9\\u5f0f\\uff0c\\u5e76\\u793a\\u8303\\u6559\\u5b66\\u4eba\\u5de5\\u547c\\u5438\\u3001\\u5fc3\\u80ba\\u590d\\u82cf\\u7b49\\u7684\\u6807\\u51c6\\u64cd\\u4f5c\\uff0c\\u540c\\u65f6\\uff0c\\u5bf9\\u5e38\\u89c1\\u7684\\u80a9\\u9888\\u75be\\u75c5\\u3001\\u8170\\u690e\\u75c5\\u3001\\u5973\\u6027\\u75be\\u75c5\\u9884\\u9632\\u548c\\u7b80\\u5355\\u7684\\u7a74\\u4f4d\\u6309\\u6469\\u5eb7\\u590d\\u624b\\u6cd5\\u8fdb\\u884c\\u8bb2\\u89e3\\u548c\\u6307\\u5bfc\\uff0c\\u901a\\u8fc7\\u6b64\\u6b21\\u8bb2\\u5ea7\\uff0c\\u63d0\\u9ad8\\u4e86\\u5927\\u5bb6\\u5065\\u5eb7\\u610f\\u8bc6\\uff0c\\u666e\\u53ca\\u4e86\\u804c\\u5de5\\u7684\\u6025\\u6551\\u5e38\\u8bc6\\uff0c\\u8ba9\\u804c\\u5de5\\u80fd\\u591f\\u201c\\u4f1a\\u6025\\u6551\\u3001\\u61c2\\u517b\\u751f\\u201d\\uff0c\\u4ee5\\u597d\\u7684\\u8eab\\u4f53\\u72b6\\u6001\\u548c\\u7cbe\\u795e\\u9762\\u8c8c\\u6295\\u5165\\u5230\\u79d1\\u6280\\u521b\\u65b0\\u5de5\\u4f5c\\u4e2d\\u53bb\\u3002<br\\/><\\/p><p><img alt=\\\"\\\" src=\\\"\\/storage\\/allimg\\/190401\\/1-1Z401140522X9.JPG\\\" style=\\\"width: 600px\\\"\\/><img alt=\\\"\\\" src=\\\"\\/storage\\/allimg\\/190401\\/1-1Z401140453643.jpg\\\" style=\\\"width: 600px; height: 790px\\\"\\/><\\/p>\",\"sort\":\"0\",\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\",\"_method\":\"PUT\"}', '2020-05-28 08:17:32', '2020-05-28 08:17:32'),
(115, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 08:17:32', '2020-05-28 08:17:32'),
(116, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5927\\u5e86\\u5206\\u9662\\u7ec4\\u7ec7\\u804c\\u5de5\\u53c2\\u52a0\\u201c\\u6025\\u6551\\u5065\\u5eb7\\u201d\\u4e13\\u9898\\u8bb2\\u5ea7\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:17:39', '2020-05-28 08:17:39'),
(117, 1, 'admin/articles/719/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:17:41', '2020-05-28 08:17:41'),
(118, 1, 'admin/articles/719/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:20:43', '2020-05-28 08:20:43'),
(119, 1, 'admin/articles/719', 'PUT', '1.190.203.218', '{\"key\":\"0\",\"cover\":\"_file_del_\",\"_file_del_\":null,\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\",\"_method\":\"PUT\"}', '2020-05-28 08:21:32', '2020-05-28 08:21:32'),
(120, 1, 'admin/articles/719', 'PUT', '1.190.203.218', '{\"title\":\"\\u5927\\u5e86\\u5206\\u9662\\u7ec4\\u7ec7\\u804c\\u5de5\\u53c2\\u52a0\\u201c\\u6025\\u6551\\u5065\\u5eb7\\u201d\\u4e13\\u9898\\u8bb2\\u5ea7\",\"category_id\":\"16\",\"description\":\"3\\u670821\\u65e5\\uff0c\\u5206\\u9662\\u5de5\\u4f1a\\u9080\\u8bf7\\u4e86\\u9ed1\\u9f99\\u6c5f\\u7701\\u5b89\\u5168\\u5065\\u5eb7\\u6559\\u80b2\\u4e2d\\u5fc3\\u725b\\u5a49\\u8fb0\\u4e3b\\u4efb\\u505a\\u9898\\u4e3a\\u6025\\u6551\\u5065\\u5eb7\\u4e13\\u4e1a\\u77e5\\u8bc6\\u8bb2\\u5ea7\\u3002\\u725b\\u5a49\\u8fb0\\u4e3b\\u4efb\\u8be6\\u7ec6\\u8bb2\\u89e3\\u4e86\\u751f\\u6d3b\\u4e2d\\u7a81\\u53d1\\u75be\\u75c5\\u60c5\\u51b5\\u7684\\u6025\\u6551\\u65b9\\u5f0f\\uff0c\\u5e76\\u793a\\u8303\\u6559\\u5b66\\u4eba\\u5de5\\u547c\\u5438\\u3001\\u5fc3\\u80ba\\u590d\\u82cf\",\"content\":\"<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3\\u670821\\u65e5\\uff0c\\u5206\\u9662\\u5de5\\u4f1a\\u9080\\u8bf7\\u4e86\\u9ed1\\u9f99\\u6c5f\\u7701\\u5b89\\u5168\\u5065\\u5eb7\\u6559\\u80b2\\u4e2d\\u5fc3\\u725b\\u5a49\\u8fb0\\u4e3b\\u4efb\\u505a\\u9898\\u4e3a\\u201c\\u6025\\u6551\\u5065\\u5eb7\\u201d\\u4e13\\u4e1a\\u77e5\\u8bc6\\u8bb2\\u5ea7\\u3002\\u725b\\u5a49\\u8fb0\\u4e3b\\u4efb\\u8be6\\u7ec6\\u8bb2\\u89e3\\u4e86\\u751f\\u6d3b\\u4e2d\\u7a81\\u53d1\\u75be\\u75c5\\u60c5\\u51b5\\u7684\\u6025\\u6551\\u65b9\\u5f0f\\uff0c\\u5e76\\u793a\\u8303\\u6559\\u5b66\\u4eba\\u5de5\\u547c\\u5438\\u3001\\u5fc3\\u80ba\\u590d\\u82cf\\u7b49\\u7684\\u6807\\u51c6\\u64cd\\u4f5c\\uff0c\\u540c\\u65f6\\uff0c\\u5bf9\\u5e38\\u89c1\\u7684\\u80a9\\u9888\\u75be\\u75c5\\u3001\\u8170\\u690e\\u75c5\\u3001\\u5973\\u6027\\u75be\\u75c5\\u9884\\u9632\\u548c\\u7b80\\u5355\\u7684\\u7a74\\u4f4d\\u6309\\u6469\\u5eb7\\u590d\\u624b\\u6cd5\\u8fdb\\u884c\\u8bb2\\u89e3\\u548c\\u6307\\u5bfc\\uff0c\\u901a\\u8fc7\\u6b64\\u6b21\\u8bb2\\u5ea7\\uff0c\\u63d0\\u9ad8\\u4e86\\u5927\\u5bb6\\u5065\\u5eb7\\u610f\\u8bc6\\uff0c\\u666e\\u53ca\\u4e86\\u804c\\u5de5\\u7684\\u6025\\u6551\\u5e38\\u8bc6\\uff0c\\u8ba9\\u804c\\u5de5\\u80fd\\u591f\\u201c\\u4f1a\\u6025\\u6551\\u3001\\u61c2\\u517b\\u751f\\u201d\\uff0c\\u4ee5\\u597d\\u7684\\u8eab\\u4f53\\u72b6\\u6001\\u548c\\u7cbe\\u795e\\u9762\\u8c8c\\u6295\\u5165\\u5230\\u79d1\\u6280\\u521b\\u65b0\\u5de5\\u4f5c\\u4e2d\\u53bb\\u3002<br\\/><\\/p><p><img alt=\\\"\\\" src=\\\"\\/storage\\/allimg\\/190401\\/1-1Z401140522X9.JPG\\\" style=\\\"width: 600px\\\"\\/><img alt=\\\"\\\" src=\\\"\\/storage\\/allimg\\/190401\\/1-1Z401140453643.jpg\\\" style=\\\"width: 600px; height: 790px\\\"\\/><\\/p>\",\"sort\":\"0\",\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\",\"_method\":\"PUT\"}', '2020-05-28 08:21:35', '2020-05-28 08:21:35'),
(121, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 08:21:35', '2020-05-28 08:21:35'),
(122, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5927\\u5e86\\u5206\\u9662\\u7ec4\\u7ec7\\u804c\\u5de5\\u53c2\\u52a0\\u201c\\u6025\\u6551\\u5065\\u5eb7\\u201d\\u4e13\\u9898\\u8bb2\\u5ea7\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:21:40', '2020-05-28 08:21:40'),
(123, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:23:10', '2020-05-28 08:23:10'),
(124, 1, 'admin/categories/2/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:23:23', '2020-05-28 08:23:23'),
(125, 1, 'admin/categories/2/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:24:01', '2020-05-28 08:24:01'),
(126, 1, 'admin/categories/2/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:27:53', '2020-05-28 08:27:53'),
(127, 1, 'admin/categories/2/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:28:10', '2020-05-28 08:28:10'),
(128, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:29:50', '2020-05-28 08:29:50'),
(129, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:30:06', '2020-05-28 08:30:06'),
(130, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:30:52', '2020-05-28 08:30:52'),
(131, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:30:52', '2020-05-28 08:30:52'),
(132, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:30:54', '2020-05-28 08:30:54'),
(133, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:30:57', '2020-05-28 08:30:57'),
(134, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:30:57', '2020-05-28 08:30:57'),
(135, 1, 'admin/categories/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:31:39', '2020-05-28 08:31:39'),
(136, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:31:41', '2020-05-28 08:31:41'),
(137, 1, 'admin/categories/2/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:31:46', '2020-05-28 08:31:46'),
(138, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:31:51', '2020-05-28 08:31:51'),
(139, 1, 'admin/categories/4/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:31:53', '2020-05-28 08:31:53'),
(140, 1, 'admin/categories/4/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:32:14', '2020-05-28 08:32:14'),
(141, 1, 'admin/categories/4', 'PUT', '1.190.203.218', '{\"parent_id\":\"1\",\"title\":\"\\u79d1\\u6280\\u4eba\\u624d\",\"type\":\"article\",\"description\":null,\"order\":\"0\",\"article_id\":null,\"status\":\"on\",\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\",\"_method\":\"PUT\"}', '2020-05-28 08:32:17', '2020-05-28 08:32:17'),
(142, 1, 'admin/categories/4/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:32:17', '2020-05-28 08:32:17'),
(143, 1, 'admin/categories/4', 'PUT', '1.190.203.218', '{\"parent_id\":\"1\",\"title\":\"\\u79d1\\u6280\\u4eba\\u624d\",\"type\":\"article\",\"description\":null,\"order\":\"0\",\"article_id\":null,\"status\":\"on\",\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\",\"_method\":\"PUT\"}', '2020-05-28 08:32:54', '2020-05-28 08:32:54'),
(144, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-05-28 08:32:54', '2020-05-28 08:32:54'),
(145, 1, 'admin/categories/3/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:32:59', '2020-05-28 08:32:59'),
(146, 1, 'admin/categories/3/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:34:27', '2020-05-28 08:34:27'),
(147, 1, 'admin/categories/3/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 08:37:43', '2020-05-28 08:37:43'),
(148, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:37:54', '2020-05-28 08:37:54'),
(149, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:37:58', '2020-05-28 08:37:58'),
(150, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:38:01', '2020-05-28 08:38:01'),
(151, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:44:53', '2020-05-28 08:44:53'),
(152, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u53cb\\u60c5\\u94fe\\u63a5\",\"icon\":\"fa-bars\",\"uri\":null,\"roles\":[null],\"permission\":null,\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\"}', '2020-05-28 08:45:01', '2020-05-28 08:45:01'),
(153, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 08:45:01', '2020-05-28 08:45:01'),
(154, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"parent_id\":\"12\",\"title\":\"\\u53cb\\u60c5\\u94fe\\u63a5\\u5217\\u8868\",\"icon\":\"fa-bars\",\"uri\":\"links\",\"roles\":[null],\"permission\":null,\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\"}', '2020-05-28 08:45:07', '2020-05-28 08:45:07'),
(155, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 08:45:07', '2020-05-28 08:45:07'),
(156, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\",\"_order\":\"[{\\\"id\\\":1},{\\\"id\\\":12,\\\"children\\\":[{\\\"id\\\":13}]},{\\\"id\\\":8,\\\"children\\\":[{\\\"id\\\":9}]},{\\\"id\\\":10,\\\"children\\\":[{\\\"id\\\":11}]},{\\\"id\\\":2,\\\"children\\\":[{\\\"id\\\":3},{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7}]}]\"}', '2020-05-28 08:45:10', '2020-05-28 08:45:10'),
(157, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:45:10', '2020-05-28 08:45:10'),
(158, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 08:45:12', '2020-05-28 08:45:12'),
(159, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:45:14', '2020-05-28 08:45:14'),
(160, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 08:45:14', '2020-05-28 08:45:14'),
(161, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-05-28 08:45:50', '2020-05-28 08:45:50'),
(162, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:45:53', '2020-05-28 08:45:53'),
(163, 1, 'admin/links/create', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:45:57', '2020-05-28 08:45:57'),
(164, 1, 'admin/links', 'POST', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\",\"url\":\"http:\\/\\/www.has.ac.cn\\/\",\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/links\"}', '2020-05-28 08:46:27', '2020-05-28 08:46:27'),
(165, 1, 'admin/links', 'GET', '1.190.203.218', '[]', '2020-05-28 08:46:27', '2020-05-28 08:46:27'),
(166, 1, 'admin/links/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:46:32', '2020-05-28 08:46:32'),
(167, 1, 'admin/links/1', 'PUT', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\",\"url\":\"http:\\/\\/www.has.ac.cn\",\"_token\":\"QaZ1pBby28MyYDXSPVb90D9nfxzhSAwv3dEuDT0B\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/links\"}', '2020-05-28 08:46:36', '2020-05-28 08:46:36'),
(168, 1, 'admin/links', 'GET', '1.190.203.218', '[]', '2020-05-28 08:46:36', '2020-05-28 08:46:36'),
(169, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:46:40', '2020-05-28 08:46:40'),
(170, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:46:42', '2020-05-28 08:46:42'),
(171, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:46:44', '2020-05-28 08:46:44'),
(172, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:47:17', '2020-05-28 08:47:17'),
(173, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:47:20', '2020-05-28 08:47:20'),
(174, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:47:21', '2020-05-28 08:47:21'),
(175, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:47:24', '2020-05-28 08:47:24'),
(176, 1, 'admin/auth/users', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:47:26', '2020-05-28 08:47:26'),
(177, 1, 'admin/auth/roles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:47:28', '2020-05-28 08:47:28'),
(178, 1, 'admin/auth/permissions', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:47:28', '2020-05-28 08:47:28'),
(179, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:47:31', '2020-05-28 08:47:31'),
(180, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:48:00', '2020-05-28 08:48:00'),
(181, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":null,\"category\":{\"id\":\"22\"}}', '2020-05-28 08:48:08', '2020-05-28 08:48:08'),
(182, 1, 'admin/articles/177/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:48:13', '2020-05-28 08:48:13'),
(183, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:57:20', '2020-05-28 08:57:20'),
(184, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 08:57:25', '2020-05-28 08:57:25'),
(185, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 08:58:23', '2020-05-28 08:58:23'),
(186, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 08:58:55', '2020-05-28 08:58:55'),
(187, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"page\":\"2\",\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:59:02', '2020-05-28 08:59:02'),
(188, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"4\"}', '2020-05-28 08:59:04', '2020-05-28 08:59:04'),
(189, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"6\"}', '2020-05-28 08:59:06', '2020-05-28 08:59:06'),
(190, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"8\"}', '2020-05-28 08:59:09', '2020-05-28 08:59:09'),
(191, 1, 'admin/articles/142/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 08:59:12', '2020-05-28 08:59:12'),
(192, 1, 'admin/articles/142/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 09:00:59', '2020-05-28 09:00:59'),
(193, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 09:01:56', '2020-05-28 09:01:56'),
(194, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u5927\\u5e86\\u5206\\u9662\\u53ec\\u5f002012\\u5e74\\u5e74\\u7ec8\\u603b\\u7ed3\\u5927\\u4f1a\",\"category\":{\"id\":null}}', '2020-05-28 09:01:59', '2020-05-28 09:01:59'),
(195, 1, 'admin/articles/203/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 09:02:01', '2020-05-28 09:02:01'),
(196, 1, 'admin/articles/203/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 09:02:03', '2020-05-28 09:02:03'),
(197, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 09:03:21', '2020-05-28 09:03:21'),
(198, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 09:03:24', '2020-05-28 09:03:24'),
(199, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 09:03:55', '2020-05-28 09:03:55'),
(200, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-05-28 09:06:50', '2020-05-28 09:06:50'),
(201, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 09:06:54', '2020-05-28 09:06:54'),
(202, 1, 'admin/articles/1/edit', 'GET', '1.190.203.218', '[]', '2020-05-28 09:07:44', '2020-05-28 09:07:44'),
(203, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 09:08:35', '2020-05-28 09:08:35'),
(204, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"40\"}', '2020-05-28 09:08:50', '2020-05-28 09:08:50'),
(205, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-05-28 09:12:12', '2020-05-28 09:12:12'),
(206, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"3\"}', '2020-05-28 09:12:14', '2020-05-28 09:12:14'),
(207, 1, 'admin', 'GET', '113.0.162.52', '[]', '2020-05-29 05:53:20', '2020-05-29 05:53:20'),
(208, 1, 'admin', 'GET', '113.0.162.52', '[]', '2020-05-29 06:06:43', '2020-05-29 06:06:43'),
(209, 1, 'admin/links', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:07:59', '2020-05-29 06:07:59'),
(210, 1, 'admin', 'GET', '113.0.162.52', '[]', '2020-05-29 06:07:59', '2020-05-29 06:07:59'),
(211, 1, 'admin/links', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:09:11', '2020-05-29 06:09:11'),
(212, 1, 'admin/links/1/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:09:15', '2020-05-29 06:09:15'),
(213, 1, 'admin/links/1', 'PUT', '113.0.162.52', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u96621\",\"url\":\"http:\\/\\/www.has.ac.cn\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/links\"}', '2020-05-29 06:09:17', '2020-05-29 06:09:17'),
(214, 1, 'admin/links', 'GET', '113.0.162.52', '[]', '2020-05-29 06:09:17', '2020-05-29 06:09:17'),
(215, 1, 'admin/links/1/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:09:21', '2020-05-29 06:09:21'),
(216, 1, 'admin/links/1', 'PUT', '113.0.162.52', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\",\"url\":\"http:\\/\\/www.has.ac.cn\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/links\"}', '2020-05-29 06:09:24', '2020-05-29 06:09:24'),
(217, 1, 'admin/links', 'GET', '113.0.162.52', '[]', '2020-05-29 06:09:24', '2020-05-29 06:09:24'),
(218, 1, 'admin/articles', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:09:26', '2020-05-29 06:09:26'),
(219, 1, 'admin/articles', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\",\"page\":\"4\"}', '2020-05-29 06:09:30', '2020-05-29 06:09:30'),
(220, 1, 'admin/articles', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\",\"page\":\"7\"}', '2020-05-29 06:09:33', '2020-05-29 06:09:33'),
(221, 1, 'admin/articles', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\",\"page\":\"9\"}', '2020-05-29 06:09:38', '2020-05-29 06:09:38'),
(222, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:09:55', '2020-05-29 06:09:55'),
(223, 1, 'admin/categories/7/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:10:04', '2020-05-29 06:10:04'),
(224, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:14:11', '2020-05-29 06:14:11'),
(225, 1, 'admin/auth/menu', 'POST', '113.0.162.52', '{\"parent_id\":\"0\",\"title\":\"\\u5e7f\\u544a\\u7ba1\\u7406\",\"icon\":\"fa-bars\",\"uri\":null,\"roles\":[null],\"permission\":null,\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 06:14:27', '2020-05-29 06:14:27'),
(226, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 06:14:27', '2020-05-29 06:14:27'),
(227, 1, 'admin/auth/menu', 'POST', '113.0.162.52', '{\"parent_id\":\"14\",\"title\":\"\\u5e7f\\u544a\\u5217\\u8868\",\"icon\":\"fa-bars\",\"uri\":null,\"roles\":[null],\"permission\":null,\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 06:14:37', '2020-05-29 06:14:37'),
(228, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 06:14:37', '2020-05-29 06:14:37'),
(229, 1, 'admin/auth/menu', 'POST', '113.0.162.52', '{\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\",\"_order\":\"[{\\\"id\\\":1},{\\\"id\\\":14,\\\"children\\\":[{\\\"id\\\":15}]},{\\\"id\\\":12,\\\"children\\\":[{\\\"id\\\":13}]},{\\\"id\\\":8,\\\"children\\\":[{\\\"id\\\":9}]},{\\\"id\\\":10,\\\"children\\\":[{\\\"id\\\":11}]},{\\\"id\\\":2,\\\"children\\\":[{\\\"id\\\":3},{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7}]}]\"}', '2020-05-29 06:14:41', '2020-05-29 06:14:41'),
(230, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:14:41', '2020-05-29 06:14:41'),
(231, 1, 'admin/auth/menu/15/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:14:44', '2020-05-29 06:14:44'),
(232, 1, 'admin/auth/menu/15', 'PUT', '113.0.162.52', '{\"parent_id\":\"14\",\"title\":\"\\u5e7f\\u544a\\u5217\\u8868\",\"icon\":\"fa-bars\",\"uri\":\"adverts\",\"roles\":[null],\"permission\":null,\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-29 06:14:49', '2020-05-29 06:14:49'),
(233, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 06:14:49', '2020-05-29 06:14:49'),
(234, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 06:14:51', '2020-05-29 06:14:51'),
(235, 1, 'admin/adverts', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:14:53', '2020-05-29 06:14:53'),
(236, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 06:14:54', '2020-05-29 06:14:54'),
(237, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 06:16:06', '2020-05-29 06:16:06'),
(238, 1, 'admin/adverts', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:16:09', '2020-05-29 06:16:09'),
(239, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 06:16:10', '2020-05-29 06:16:10'),
(240, 1, 'admin/adverts', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:16:13', '2020-05-29 06:16:13'),
(241, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 06:16:13', '2020-05-29 06:16:13'),
(242, 1, 'admin/links', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:16:20', '2020-05-29 06:16:20'),
(243, 1, 'admin/adverts', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:16:25', '2020-05-29 06:16:25'),
(244, 1, 'admin/links', 'GET', '113.0.162.52', '[]', '2020-05-29 06:16:25', '2020-05-29 06:16:25'),
(245, 1, 'admin/adverts', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:16:43', '2020-05-29 06:16:43'),
(246, 1, 'admin/adverts', 'GET', '113.0.162.52', '[]', '2020-05-29 06:18:05', '2020-05-29 06:18:05'),
(247, 1, 'admin/adverts', 'GET', '113.0.162.52', '[]', '2020-05-29 06:18:07', '2020-05-29 06:18:07'),
(248, 1, 'admin/adverts', 'GET', '113.0.162.52', '[]', '2020-05-29 06:20:41', '2020-05-29 06:20:41'),
(249, 1, 'admin/adverts/create', 'GET', '113.0.162.52', '[]', '2020-05-29 06:20:43', '2020-05-29 06:20:43'),
(250, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 06:20:58', '2020-05-29 06:20:58'),
(251, 1, 'admin/categories', 'POST', '113.0.162.52', '{\"parent_id\":\"0\",\"title\":\"\\u6587\\u7ae0\\u5206\\u7c7b\",\"type\":\"article\",\"description\":null,\"order\":\"0\",\"status\":\"on\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 06:21:37', '2020-05-29 06:21:37'),
(252, 1, 'admin/categories', 'GET', '113.0.162.52', '[]', '2020-05-29 06:21:37', '2020-05-29 06:21:37'),
(253, 1, 'admin/categories', 'POST', '113.0.162.52', '{\"parent_id\":\"0\",\"title\":\"\\u6587\\u7ae0\\u5206\\u7c7b\",\"type\":\"article\",\"description\":null,\"order\":\"0\",\"status\":\"on\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 06:22:14', '2020-05-29 06:22:14'),
(254, 1, 'admin/categories', 'GET', '113.0.162.52', '[]', '2020-05-29 06:22:14', '2020-05-29 06:22:14'),
(255, 1, 'admin/categories', 'POST', '113.0.162.52', '{\"parent_id\":\"0\",\"title\":\"\\u5e7f\\u544a\",\"type\":\"advert\",\"description\":null,\"order\":\"0\",\"status\":\"on\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 06:22:33', '2020-05-29 06:22:33'),
(256, 1, 'admin/categories', 'GET', '113.0.162.52', '[]', '2020-05-29 06:22:33', '2020-05-29 06:22:33'),
(257, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:03:46', '2020-05-29 07:03:46'),
(258, 1, 'admin/categories/25', 'DELETE', '113.0.162.52', '{\"_method\":\"delete\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 07:04:44', '2020-05-29 07:04:44'),
(259, 1, 'admin/categories', 'GET', '113.0.162.52', '[]', '2020-05-29 07:04:51', '2020-05-29 07:04:51'),
(260, 1, 'admin/categories/25', 'DELETE', '113.0.162.52', '{\"_method\":\"delete\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 07:05:01', '2020-05-29 07:05:01'),
(261, 1, 'admin/categories', 'GET', '113.0.162.52', '[]', '2020-05-29 07:07:03', '2020-05-29 07:07:03'),
(262, 1, 'admin/categories/25', 'DELETE', '113.0.162.52', '{\"_method\":\"delete\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 07:07:10', '2020-05-29 07:07:10'),
(263, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:10', '2020-05-29 07:07:10'),
(264, 1, 'admin/categories/26', 'DELETE', '113.0.162.52', '{\"_method\":\"delete\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 07:07:13', '2020-05-29 07:07:13'),
(265, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:13', '2020-05-29 07:07:13'),
(266, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:34', '2020-05-29 07:07:34'),
(267, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:35', '2020-05-29 07:07:35'),
(268, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:38', '2020-05-29 07:07:38'),
(269, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:40', '2020-05-29 07:07:40'),
(270, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:40', '2020-05-29 07:07:40'),
(271, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:40', '2020-05-29 07:07:40'),
(272, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:41', '2020-05-29 07:07:41'),
(273, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:41', '2020-05-29 07:07:41'),
(274, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:41', '2020-05-29 07:07:41'),
(275, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:42', '2020-05-29 07:07:42'),
(276, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:42', '2020-05-29 07:07:42'),
(277, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:07:42', '2020-05-29 07:07:42'),
(278, 1, 'admin/categories', 'POST', '113.0.162.52', '{\"parent_id\":\"0\",\"title\":\"\\u9996\\u9875\\u9876\\u90e8\\u5e7f\\u544a\",\"type\":\"advert\",\"description\":null,\"order\":\"0\",\"status\":\"on\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\"}', '2020-05-29 07:12:15', '2020-05-29 07:12:15'),
(279, 1, 'admin/categories', 'GET', '113.0.162.52', '[]', '2020-05-29 07:12:15', '2020-05-29 07:12:15'),
(280, 1, 'admin/adverts', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 07:12:17', '2020-05-29 07:12:17'),
(281, 1, 'admin/adverts/create', 'GET', '113.0.162.52', '[]', '2020-05-29 07:12:19', '2020-05-29 07:12:19'),
(282, 1, 'admin/adverts', 'POST', '113.0.162.52', '{\"title\":\"\\u9996\\u9875\\u9876\\u90e8\\u5e7f\\u544a\",\"category_id\":\"27\",\"url\":null,\"sort\":\"1\",\"_token\":\"56AtNUoOtMw7BT0vYBqf7xBotQUhTyA5BhTBkuMS\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/adverts\"}', '2020-05-29 07:12:56', '2020-05-29 07:12:56'),
(283, 1, 'admin/adverts', 'GET', '113.0.162.52', '[]', '2020-05-29 07:12:56', '2020-05-29 07:12:56'),
(284, 1, 'admin/adverts/1/edit', 'GET', '113.0.162.52', '[]', '2020-05-29 07:13:02', '2020-05-29 07:13:02'),
(285, 1, 'admin', 'GET', '113.0.162.52', '[]', '2020-05-29 09:13:45', '2020-05-29 09:13:45'),
(286, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:14:09', '2020-05-29 09:14:09'),
(287, 1, 'admin/auth/menu/14/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:14:16', '2020-05-29 09:14:16'),
(288, 1, 'admin/auth/menu/14', 'PUT', '113.0.162.52', '{\"parent_id\":\"0\",\"title\":\"\\u5e7f\\u544a\\u7ba1\\u7406\",\"icon\":\"fa-500px\",\"uri\":null,\"roles\":[null],\"permission\":null,\"_token\":\"TremzAgwSTwtETdAb1QNtbsVlldMAiuaspAVv2wO\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-29 09:14:23', '2020-05-29 09:14:23'),
(289, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:14:23', '2020-05-29 09:14:23'),
(290, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:14:24', '2020-05-29 09:14:24'),
(291, 1, 'admin/auth/menu/12/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:14:31', '2020-05-29 09:14:31'),
(292, 1, 'admin/auth/menu/12', 'PUT', '113.0.162.52', '{\"parent_id\":\"0\",\"title\":\"\\u53cb\\u60c5\\u94fe\\u63a5\",\"icon\":\"fa-amazon\",\"uri\":null,\"roles\":[null],\"permission\":null,\"_token\":\"TremzAgwSTwtETdAb1QNtbsVlldMAiuaspAVv2wO\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-29 09:14:37', '2020-05-29 09:14:37'),
(293, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:14:37', '2020-05-29 09:14:37'),
(294, 1, 'admin/auth/menu/8/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:14:41', '2020-05-29 09:14:41'),
(295, 1, 'admin/auth/menu/8', 'PUT', '113.0.162.52', '{\"parent_id\":\"0\",\"title\":\"\\u8d44\\u8baf\\u7ba1\\u7406\",\"icon\":\"fa-bank\",\"uri\":\"articles\",\"roles\":[null],\"permission\":null,\"_token\":\"TremzAgwSTwtETdAb1QNtbsVlldMAiuaspAVv2wO\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-29 09:15:00', '2020-05-29 09:15:00'),
(296, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:15:00', '2020-05-29 09:15:00'),
(297, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:15:01', '2020-05-29 09:15:01'),
(298, 1, 'admin/auth/menu/15/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:15:17', '2020-05-29 09:15:17');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(299, 1, 'admin/auth/menu/15', 'PUT', '113.0.162.52', '{\"parent_id\":\"14\",\"title\":\"\\u5e7f\\u544a\\u5217\\u8868\",\"icon\":\"fa-500px\",\"uri\":\"adverts\",\"roles\":[null],\"permission\":null,\"_token\":\"TremzAgwSTwtETdAb1QNtbsVlldMAiuaspAVv2wO\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-29 09:15:32', '2020-05-29 09:15:32'),
(300, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:15:33', '2020-05-29 09:15:33'),
(301, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:15:34', '2020-05-29 09:15:34'),
(302, 1, 'admin/auth/menu/13/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:15:41', '2020-05-29 09:15:41'),
(303, 1, 'admin/auth/menu/13', 'PUT', '113.0.162.52', '{\"parent_id\":\"12\",\"title\":\"\\u53cb\\u60c5\\u94fe\\u63a5\\u5217\\u8868\",\"icon\":\"fa-at\",\"uri\":\"links\",\"roles\":[null],\"permission\":null,\"_token\":\"TremzAgwSTwtETdAb1QNtbsVlldMAiuaspAVv2wO\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-29 09:15:48', '2020-05-29 09:15:48'),
(304, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:15:48', '2020-05-29 09:15:48'),
(305, 1, 'admin/auth/menu/9/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:15:52', '2020-05-29 09:15:52'),
(306, 1, 'admin/auth/menu/9', 'PUT', '113.0.162.52', '{\"parent_id\":\"8\",\"title\":\"\\u8d44\\u8baf\\u5217\\u8868\",\"icon\":\"fa-book\",\"uri\":\"articles\",\"roles\":[null],\"permission\":null,\"_token\":\"TremzAgwSTwtETdAb1QNtbsVlldMAiuaspAVv2wO\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/dqb.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-05-29 09:16:23', '2020-05-29 09:16:23'),
(307, 1, 'admin/auth/menu', 'GET', '113.0.162.52', '[]', '2020-05-29 09:16:23', '2020-05-29 09:16:23'),
(308, 1, 'admin/auth/menu/10/edit', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:16:26', '2020-05-29 09:16:26'),
(309, 1, 'admin/auth/menu/10/edit', 'GET', '113.0.162.52', '[]', '2020-05-29 09:16:48', '2020-05-29 09:16:48'),
(310, 1, 'admin/auth/permissions', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-05-29 09:16:57', '2020-05-29 09:16:57'),
(311, 1, 'admin', 'GET', '113.0.162.52', '[]', '2020-06-01 01:12:22', '2020-06-01 01:12:22'),
(312, 1, 'admin/adverts', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-06-01 01:12:26', '2020-06-01 01:12:26'),
(313, 1, 'admin/categories', 'GET', '113.0.162.52', '{\"_pjax\":\"#pjax-container\"}', '2020-06-01 01:12:33', '2020-06-01 01:12:33'),
(314, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"page\":\"3\"}', '2020-06-02 00:58:43', '2020-06-02 00:58:43'),
(315, 1, 'admin', 'GET', '1.190.203.218', '[]', '2020-06-02 01:18:53', '2020-06-02 01:18:53'),
(316, 1, 'admin', 'GET', '1.190.203.218', '[]', '2020-06-02 01:41:52', '2020-06-02 01:41:52'),
(317, 1, 'admin', 'GET', '1.190.203.218', '[]', '2020-06-02 01:41:53', '2020-06-02 01:41:53'),
(318, 1, 'admin/adverts', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:41:55', '2020-06-02 01:41:55'),
(319, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:41:56', '2020-06-02 01:41:56'),
(320, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:41:58', '2020-06-02 01:41:58'),
(321, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:41:59', '2020-06-02 01:41:59'),
(322, 1, 'admin/auth/users', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:42:01', '2020-06-02 01:42:01'),
(323, 1, 'admin/auth/roles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:42:02', '2020-06-02 01:42:02'),
(324, 1, 'admin/auth/permissions', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:42:03', '2020-06-02 01:42:03'),
(325, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:42:04', '2020-06-02 01:42:04'),
(326, 1, 'admin', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:42:06', '2020-06-02 01:42:06'),
(327, 1, 'admin', 'GET', '1.190.203.218', '[]', '2020-06-02 01:42:07', '2020-06-02 01:42:07'),
(328, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:46:08', '2020-06-02 01:46:08'),
(329, 1, 'admin/adverts', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:46:10', '2020-06-02 01:46:10'),
(330, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:46:55', '2020-06-02 01:46:55'),
(331, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-06-02 01:52:12', '2020-06-02 01:52:12'),
(332, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:52:28', '2020-06-02 01:52:28'),
(333, 1, 'admin/config/create', 'GET', '1.190.203.218', '[]', '2020-06-02 01:57:33', '2020-06-02 01:57:33'),
(334, 1, 'admin/config/create', 'GET', '1.190.203.218', '[]', '2020-06-02 01:57:51', '2020-06-02 01:57:51'),
(335, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:57:54', '2020-06-02 01:57:54'),
(336, 1, 'admin/auth/menu/16/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:57:56', '2020-06-02 01:57:56'),
(337, 1, 'admin/auth/menu/16', 'PUT', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u914d\\u7f6e\\u9879\",\"icon\":\"fa-toggle-on\",\"uri\":\"config\",\"roles\":[null],\"permission\":null,\"_token\":\"kM2vwE1RRyfWAvsLqlpjx1uyxanM4Q2mrNxvVr71\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/auth\\/menu\"}', '2020-06-02 01:58:04', '2020-06-02 01:58:04'),
(338, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-06-02 01:58:04', '2020-06-02 01:58:04'),
(339, 1, 'admin/config', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:58:06', '2020-06-02 01:58:06'),
(340, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:58:08', '2020-06-02 01:58:08'),
(341, 1, 'admin/auth/menu', 'POST', '1.190.203.218', '{\"_token\":\"kM2vwE1RRyfWAvsLqlpjx1uyxanM4Q2mrNxvVr71\",\"_order\":\"[{\\\"id\\\":1},{\\\"id\\\":14,\\\"children\\\":[{\\\"id\\\":15}]},{\\\"id\\\":12,\\\"children\\\":[{\\\"id\\\":13}]},{\\\"id\\\":8,\\\"children\\\":[{\\\"id\\\":9}]},{\\\"id\\\":10,\\\"children\\\":[{\\\"id\\\":11}]},{\\\"id\\\":2,\\\"children\\\":[{\\\"id\\\":16},{\\\"id\\\":3},{\\\"id\\\":4},{\\\"id\\\":5},{\\\"id\\\":6},{\\\"id\\\":7}]}]\"}', '2020-06-02 01:58:11', '2020-06-02 01:58:11'),
(342, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:58:11', '2020-06-02 01:58:11'),
(343, 1, 'admin/auth/menu', 'GET', '1.190.203.218', '[]', '2020-06-02 01:58:12', '2020-06-02 01:58:12'),
(344, 1, 'admin/config', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 01:58:14', '2020-06-02 01:58:14'),
(345, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-06-02 02:13:22', '2020-06-02 02:13:22'),
(346, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:13:25', '2020-06-02 02:13:25'),
(347, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"13\"}', '2020-06-02 02:13:36', '2020-06-02 02:13:36'),
(348, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"5\"}', '2020-06-02 02:13:38', '2020-06-02 02:13:38'),
(349, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"2\"}', '2020-06-02 02:13:41', '2020-06-02 02:13:41'),
(350, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"1\"}', '2020-06-02 02:13:45', '2020-06-02 02:13:45'),
(351, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"page\":\"1\"}', '2020-06-02 02:16:13', '2020-06-02 02:16:13'),
(352, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"page\":\"1\"}', '2020-06-02 02:16:14', '2020-06-02 02:16:14'),
(353, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:16:33', '2020-06-02 02:16:33'),
(354, 1, 'admin/categories/2/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:16:36', '2020-06-02 02:16:36'),
(355, 1, 'admin/categories/2/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 02:16:54', '2020-06-02 02:16:54'),
(356, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:16:57', '2020-06-02 02:16:57'),
(357, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 02:16:58', '2020-06-02 02:16:58'),
(358, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 02:22:25', '2020-06-02 02:22:25'),
(359, 1, 'admin/articles/249/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:22:38', '2020-06-02 02:22:38'),
(360, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:22:47', '2020-06-02 02:22:47'),
(361, 1, 'admin/articles/253/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:22:51', '2020-06-02 02:22:51'),
(362, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:22:54', '2020-06-02 02:22:54'),
(363, 1, 'admin/articles/251/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:22:56', '2020-06-02 02:22:56'),
(364, 1, 'admin/articles/251/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 02:24:59', '2020-06-02 02:24:59'),
(365, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:25:13', '2020-06-02 02:25:13'),
(366, 1, 'admin/articles/249/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:25:16', '2020-06-02 02:25:16'),
(367, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:25:19', '2020-06-02 02:25:19'),
(368, 1, 'admin/articles/250/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:25:21', '2020-06-02 02:25:21'),
(369, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:25:37', '2020-06-02 02:25:37'),
(370, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 02:25:38', '2020-06-02 02:25:38'),
(371, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:25:58', '2020-06-02 02:25:58'),
(372, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 02:27:01', '2020-06-02 02:27:01'),
(373, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 02:27:03', '2020-06-02 02:27:03'),
(374, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 02:43:39', '2020-06-02 02:43:39'),
(375, 1, 'admin/adverts', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:09:57', '2020-06-02 03:09:57'),
(376, 1, 'admin/adverts', 'GET', '1.190.203.218', '[]', '2020-06-02 03:11:55', '2020-06-02 03:11:55'),
(377, 1, 'admin/adverts/create', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:11:56', '2020-06-02 03:11:56'),
(378, 1, 'admin/adverts/create', 'GET', '1.190.203.218', '[]', '2020-06-02 03:12:21', '2020-06-02 03:12:21'),
(379, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:13:02', '2020-06-02 03:13:02'),
(380, 1, 'admin/categories', 'POST', '1.190.203.218', '{\"parent_id\":\"0\",\"title\":\"\\u9996\\u9875\\u5e7f\\u544a\\u4f4d\",\"type\":\"advert\",\"description\":\"\\u9996\\u9875\\u5e7f\\u544a\\u4f4d\",\"order\":\"0\",\"status\":\"on\",\"_token\":\"UmgnLFvG2OCTuSRoTVcWv4lUdovKz6N8LVDgomkh\"}', '2020-06-02 03:13:54', '2020-06-02 03:13:54'),
(381, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-06-02 03:13:54', '2020-06-02 03:13:54'),
(382, 1, 'admin/categories', 'GET', '1.190.203.218', '[]', '2020-06-02 03:13:57', '2020-06-02 03:13:57'),
(383, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:18:22', '2020-06-02 03:18:22'),
(384, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:18:29', '2020-06-02 03:18:29'),
(385, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\",\"category_id\":null,\"description\":null,\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"UmgnLFvG2OCTuSRoTVcWv4lUdovKz6N8LVDgomkh\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-02 03:19:16', '2020-06-02 03:19:16'),
(386, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 03:19:16', '2020-06-02 03:19:16'),
(387, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:20:38', '2020-06-02 03:20:38'),
(388, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:20:55', '2020-06-02 03:20:55'),
(389, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"2\"}', '2020-06-02 03:21:00', '2020-06-02 03:21:00'),
(390, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"14\"}', '2020-06-02 03:21:03', '2020-06-02 03:21:03'),
(391, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"13\"}', '2020-06-02 03:21:05', '2020-06-02 03:21:05'),
(392, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"9\"}', '2020-06-02 03:21:08', '2020-06-02 03:21:08'),
(393, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"5\"}', '2020-06-02 03:21:12', '2020-06-02 03:21:12'),
(394, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"6\"}', '2020-06-02 03:21:20', '2020-06-02 03:21:20'),
(395, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"7\"}', '2020-06-02 03:21:24', '2020-06-02 03:21:24'),
(396, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"8\"}', '2020-06-02 03:21:27', '2020-06-02 03:21:27'),
(397, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"9\"}', '2020-06-02 03:21:31', '2020-06-02 03:21:31'),
(398, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"10\"}', '2020-06-02 03:21:36', '2020-06-02 03:21:36'),
(399, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"11\"}', '2020-06-02 03:21:40', '2020-06-02 03:21:40'),
(400, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"12\"}', '2020-06-02 03:21:44', '2020-06-02 03:21:44'),
(401, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"13\"}', '2020-06-02 03:21:47', '2020-06-02 03:21:47'),
(402, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"14\"}', '2020-06-02 03:21:49', '2020-06-02 03:21:49'),
(403, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"13\"}', '2020-06-02 03:21:51', '2020-06-02 03:21:51'),
(404, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"12\"}', '2020-06-02 03:22:07', '2020-06-02 03:22:07'),
(405, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"1\"}', '2020-06-02 03:22:09', '2020-06-02 03:22:09'),
(406, 1, 'admin/articles/257/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:22:14', '2020-06-02 03:22:14'),
(407, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:30:45', '2020-06-02 03:30:45'),
(408, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:34:13', '2020-06-02 03:34:13'),
(409, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:40:09', '2020-06-02 03:40:09'),
(410, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:45:00', '2020-06-02 03:45:00'),
(411, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:45:03', '2020-06-02 03:45:03'),
(412, 1, 'admin/articles/258/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:45:08', '2020-06-02 03:45:08'),
(413, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 03:45:14', '2020-06-02 03:45:14'),
(414, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u65b0\\u578b\\u7164\\u5316\\u5de5\\u4e94\\u8def\\u5f84\\uff1a\\u8c01\\u80fd\\u8d70\\u5f97\\u66f4\\u8fdc\\uff1f\",\"category\":{\"id\":null}}', '2020-06-02 04:10:12', '2020-06-02 04:10:12'),
(415, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u65b0\\u578b\\u7164\\u5316\\u5de5\\u4e94\\u8def\\u5f84\\uff1a\\u8c01\\u80fd\\u8d70\\u5f97\\u66f4\\u8fdc\\uff1f\",\"category\":{\"id\":null}}', '2020-06-02 05:20:48', '2020-06-02 05:20:48'),
(416, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 05:20:50', '2020-06-02 05:20:50'),
(417, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"14\"}', '2020-06-02 05:20:53', '2020-06-02 05:20:53'),
(418, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"10\"}', '2020-06-02 05:20:55', '2020-06-02 05:20:55'),
(419, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:18:52', '2020-06-02 06:18:52'),
(420, 1, 'admin/articles/257/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:18:57', '2020-06-02 06:18:57'),
(421, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 06:19:25', '2020-06-02 06:19:25'),
(422, 1, 'admin/articles/253/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:19:29', '2020-06-02 06:19:29'),
(423, 1, 'admin/articles/257', 'PUT', '1.190.203.218', '{\"title\":\"\\u9886\\u5bfc\\u73ed\\u5b50\",\"category_id\":null,\"description\":null,\"content\":\"<p>&nbsp;<\\/p><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\"><tbody><tr><td><img alt=\\\"\\\" src=\\\"\\/uploads\\/allimg\\/130826\\/1-130R613423TS.JPG\\\" style=\\\"height: 320px; width: 500px\\\"\\/><\\/td><td style=\\\"width: 5px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><td style=\\\"width: 200px; line-height: 24px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><\\/tr><\\/tbody><\\/table><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\"><tbody><tr><td colspan=\\\"3\\\" style=\\\"line-height: 24px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<br\\/><span style=\\\"font-family: courier new, courier, monospace\\\"><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\\\"font-size: 26px\\\"><strong>\\u5f90 \\u6653 \\u79cb<\\/strong><\\/span><br\\/><br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u4e2d\\u5171\\u515a\\u5458<br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u9662\\u957f\\u3001\\u515a\\u59d4\\u4e66\\u8bb0<br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\u7814\\u7a76\\u5458\\u7ea7\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08<\\/span><\\/span><br\\/>\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><\\/tr><\\/tbody><\\/table><p>&nbsp;<\\/p><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\"><tbody><tr><td><img alt=\\\"\\\" src=\\\"\\/uploads\\/allimg\\/130826\\/1-130R61403405M.JPG\\\" style=\\\"height: 320px; width: 500px\\\"\\/><\\/td><td style=\\\"width: 5px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><td style=\\\"width: 200px; line-height: 24px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><\\/tr><\\/tbody><\\/table><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\"><tbody><tr><td colspan=\\\"3\\\" style=\\\"line-height: 24px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<br\\/><span style=\\\"font-family: courier new, courier, monospace\\\"><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\\\"font-size: 26px\\\"><strong>\\u5173 \\u6625 \\u73b2<\\/strong><\\/span><br\\/><br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u4e2d\\u5171\\u515a\\u5458<br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458<br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\u9ad8\\u7ea7\\u4f1a\\u8ba1\\u5e08<\\/span><\\/span><br\\/>\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><\\/tr><\\/tbody><\\/table><p>&nbsp;<br\\/><\\/p><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\"><tbody><tr><td><img alt=\\\"\\\" src=\\\"\\/uploads\\/allimg\\/191220\\/1-19122011363R19.jpg\\\" style=\\\"height: 398px; width: 500px;\\\"\\/><\\/td><td style=\\\"width: 5px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><td style=\\\"width: 200px; line-height: 24px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><\\/tr><\\/tbody><\\/table><table border=\\\"0\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" width=\\\"100%\\\"><tbody><tr><td colspan=\\\"3\\\" style=\\\"line-height: 24px\\\">\\r\\n\\t\\t\\t\\t&nbsp;<br\\/><span style=\\\"font-family: courier new, courier, monospace\\\"><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\\\"font-size: 26px\\\"><strong>\\u5218&nbsp; &nbsp; \\u4f1f<\\/strong><\\/span><br\\/><br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u4e2d\\u5171\\u515a\\u5458<br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458<br\\/>\\r\\n\\t\\t\\t\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\u526f\\u7814\\u7a76\\u5458<\\/span><\\/span><br\\/>\\r\\n\\t\\t\\t\\t&nbsp;<\\/td><\\/tr><\\/tbody><\\/table><p>&nbsp;<br\\/><\\/p>\",\"sort\":\"0\",\"_token\":\"UmgnLFvG2OCTuSRoTVcWv4lUdovKz6N8LVDgomkh\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-02 06:20:10', '2020-06-02 06:20:10'),
(424, 1, 'admin/articles/257/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 06:20:11', '2020-06-02 06:20:11'),
(425, 1, 'admin/articles/253/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 06:21:21', '2020-06-02 06:21:21'),
(426, 1, 'admin/articles/257/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 06:21:25', '2020-06-02 06:21:25'),
(427, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:22:23', '2020-06-02 06:22:23'),
(428, 1, 'admin/articles/create', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:22:25', '2020-06-02 06:22:25'),
(429, 1, 'admin/config', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:25:38', '2020-06-02 06:25:38'),
(430, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:25:44', '2020-06-02 06:25:44'),
(431, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:45:39', '2020-06-02 06:45:39'),
(432, 1, 'admin/articles/253/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 06:46:30', '2020-06-02 06:46:30'),
(433, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:51:15', '2020-06-02 06:51:15'),
(434, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u9662\\u6240\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"UmgnLFvG2OCTuSRoTVcWv4lUdovKz6N8LVDgomkh\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-02 06:51:34', '2020-06-02 06:51:34'),
(435, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 06:51:34', '2020-06-02 06:51:34'),
(436, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u9662\\u6240\\u7b80\\u4ecb1\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"UmgnLFvG2OCTuSRoTVcWv4lUdovKz6N8LVDgomkh\",\"_method\":\"PUT\"}', '2020-06-02 06:51:41', '2020-06-02 06:51:41'),
(437, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 06:51:41', '2020-06-02 06:51:41'),
(438, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 06:52:12', '2020-06-02 06:52:12'),
(439, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 06:52:14', '2020-06-02 06:52:14');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(440, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u9662\\u6240\\u7b80\\u4ecb1\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"UmgnLFvG2OCTuSRoTVcWv4lUdovKz6N8LVDgomkh\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-02 06:55:03', '2020-06-02 06:55:03'),
(441, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-02 06:55:04', '2020-06-02 06:55:04'),
(442, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u9662\\u6240\\u7b80\\u4ecb1\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"UmgnLFvG2OCTuSRoTVcWv4lUdovKz6N8LVDgomkh\",\"_method\":\"PUT\"}', '2020-06-02 06:55:19', '2020-06-02 06:55:19'),
(443, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-02 06:55:19', '2020-06-02 06:55:19'),
(444, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 07:09:12', '2020-06-02 07:09:12'),
(445, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 07:34:30', '2020-06-02 07:34:30'),
(446, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"page\":\"2\"}', '2020-06-02 07:34:35', '2020-06-02 07:34:35'),
(447, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":null,\"category\":{\"id\":\"19\"}}', '2020-06-02 07:34:44', '2020-06-02 07:34:44'),
(448, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 08:00:16', '2020-06-02 08:00:16'),
(449, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 08:00:21', '2020-06-02 08:00:21'),
(450, 1, 'admin/categories', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-02 08:00:25', '2020-06-02 08:00:25'),
(451, 1, 'admin', 'GET', '112.102.243.66', '[]', '2020-06-03 01:58:09', '2020-06-03 01:58:09'),
(452, 1, 'admin/links', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 01:58:13', '2020-06-03 01:58:13'),
(453, 1, 'admin/articles', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 01:58:15', '2020-06-03 01:58:15'),
(454, 1, 'admin/categories', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 01:58:21', '2020-06-03 01:58:21'),
(455, 1, 'admin/adverts', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:30:31', '2020-06-03 02:30:31'),
(456, 1, 'admin/adverts/create', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:30:33', '2020-06-03 02:30:33'),
(457, 1, 'admin/adverts', 'POST', '112.102.243.66', '{\"title\":\"\\u5e7f\\u544a1\",\"category_id\":\"22\",\"url\":null,\"sort\":\"1\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/adverts\"}', '2020-06-03 02:31:56', '2020-06-03 02:31:56'),
(458, 1, 'admin/adverts', 'GET', '112.102.243.66', '[]', '2020-06-03 02:31:56', '2020-06-03 02:31:56'),
(459, 1, 'admin/adverts/1/edit', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:32:29', '2020-06-03 02:32:29'),
(460, 1, 'admin/adverts/1', 'PUT', '112.102.243.66', '{\"title\":\"\\u5e7f\\u544a1\",\"category_id\":\"22\",\"url\":null,\"sort\":\"1\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/adverts\"}', '2020-06-03 02:32:42', '2020-06-03 02:32:42'),
(461, 1, 'admin/adverts', 'GET', '112.102.243.66', '[]', '2020-06-03 02:32:42', '2020-06-03 02:32:42'),
(462, 1, 'admin/articles', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:36:04', '2020-06-03 02:36:04'),
(463, 1, 'admin/articles/create', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:36:06', '2020-06-03 02:36:06'),
(464, 1, 'admin/articles', 'POST', '112.102.243.66', '{\"title\":\"\\u5f90 \\u6653 \\u79cb\",\"category_id\":\"4\",\"description\":\"\\u4e2d\\u5171\\u515a\\u5458\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u9662\\u957f\\u3001\\u515a\\u59d4\\u4e66\\u8bb0\\r\\n\\u7814\\u7a76\\u5458\\u7ea7\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08\",\"content\":\"<p><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u4e2d\\u5171\\u515a\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u9662\\u957f\\u3001\\u515a\\u59d4\\u4e66\\u8bb0<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u7814\\u7a76\\u5458\\u7ea7\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 02:37:21', '2020-06-03 02:37:21'),
(465, 1, 'admin/articles/create', 'GET', '112.102.243.66', '[]', '2020-06-03 02:37:22', '2020-06-03 02:37:22'),
(466, 1, 'admin/articles', 'POST', '112.102.243.66', '{\"title\":\"\\u5f90 \\u6653 \\u79cb\",\"category_id\":\"4\",\"description\":\"\\u4e2d\\u5171\\u515a\\u5458\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u9662\\u957f\\u3001\\u515a\\u59d4\\u4e66\\u8bb0\\r\\n\\u7814\\u7a76\\u5458\\u7ea7\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08\",\"content\":\"<p><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u4e2d\\u5171\\u515a\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u9662\\u957f\\u3001\\u515a\\u59d4\\u4e66\\u8bb0<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u7814\\u7a76\\u5458\\u7ea7\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\"}', '2020-06-03 02:40:08', '2020-06-03 02:40:08'),
(467, 1, 'admin/articles', 'GET', '112.102.243.66', '[]', '2020-06-03 02:40:08', '2020-06-03 02:40:08'),
(468, 1, 'admin/articles/create', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:40:42', '2020-06-03 02:40:42'),
(469, 1, 'admin/articles', 'POST', '112.102.243.66', '{\"title\":\"\\u5173 \\u6625 \\u73b2\",\"category_id\":\"4\",\"description\":\"\\u4e2d\\u5171\\u515a\\u5458\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458\\r\\n\\u9ad8\\u7ea7\\u4f1a\\u8ba1\\u5e08\",\"content\":\"<p><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u4e2d\\u5171\\u515a\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ad8\\u7ea7\\u4f1a\\u8ba1\\u5e08<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 02:41:37', '2020-06-03 02:41:37'),
(470, 1, 'admin/articles', 'GET', '112.102.243.66', '[]', '2020-06-03 02:41:37', '2020-06-03 02:41:37'),
(471, 1, 'admin/articles/create', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:41:41', '2020-06-03 02:41:41'),
(472, 1, 'admin/articles', 'POST', '112.102.243.66', '{\"title\":\"\\u5218 \\u4f1f\",\"category_id\":\"4\",\"description\":\"\\u4e2d\\u5171\\u515a\\u5458\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458\\r\\n\\u526f\\u7814\\u7a76\\u5458\",\"content\":\"<p><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u4e2d\\u5171\\u515a\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u526f\\u7814\\u7a76\\u5458<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 02:43:38', '2020-06-03 02:43:38'),
(473, 1, 'admin/articles', 'GET', '112.102.243.66', '[]', '2020-06-03 02:43:38', '2020-06-03 02:43:38'),
(474, 1, 'admin/categories', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:44:12', '2020-06-03 02:44:12'),
(475, 1, 'admin/categories/4/edit', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:44:14', '2020-06-03 02:44:14'),
(476, 1, 'admin/categories/4', 'PUT', '112.102.243.66', '{\"parent_id\":\"1\",\"title\":\"\\u9886\\u5bfc\\u73ed\\u5b50\",\"type\":\"article\",\"description\":null,\"order\":\"0\",\"article_id\":\"257\",\"status\":\"on\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/categories\"}', '2020-06-03 02:44:18', '2020-06-03 02:44:18'),
(477, 1, 'admin/categories', 'GET', '112.102.243.66', '[]', '2020-06-03 02:44:18', '2020-06-03 02:44:18'),
(478, 1, 'admin/articles', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:45:28', '2020-06-03 02:45:28'),
(479, 1, 'admin/_handle_action_', 'POST', '112.102.243.66', '{\"_key\":\"257\",\"_model\":\"App_Models_Article\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\",\"_action\":\"Encore_Admin_Grid_Actions_Delete\",\"_input\":\"true\"}', '2020-06-03 02:45:34', '2020-06-03 02:45:34'),
(480, 1, 'admin/articles', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:45:34', '2020-06-03 02:45:34'),
(481, 1, 'admin/categories', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 02:46:08', '2020-06-03 02:46:08'),
(482, 1, 'admin/articles', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 03:25:20', '2020-06-03 03:25:20'),
(483, 1, 'admin/articles/268/edit', 'GET', '112.102.243.66', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 03:25:23', '2020-06-03 03:25:23'),
(484, 1, 'admin/articles/268', 'PUT', '112.102.243.66', '{\"title\":\"\\u5218 \\u4f1f\",\"category_id\":\"4\",\"description\":\"\\u4e2d\\u5171\\u515a\\u5458\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458\\r\\n\\u526f\\u7814\\u7a76\\u5458\",\"content\":\"<p><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u4e2d\\u5171\\u515a\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u526f\\u7814\\u7a76\\u5458<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"xDXLaB8YLrwXCrXT6HXVh8O8mb0MJ9DR7wzvqFHy\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 03:25:28', '2020-06-03 03:25:28'),
(485, 1, 'admin/articles', 'GET', '112.102.243.66', '[]', '2020-06-03 03:25:29', '2020-06-03 03:25:29'),
(486, 1, 'admin', 'GET', '1.190.203.218', '[]', '2020-06-03 03:43:59', '2020-06-03 03:43:59'),
(487, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 03:45:23', '2020-06-03 03:45:23'),
(488, 1, 'admin/articles/create', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 03:45:26', '2020-06-03 03:45:26'),
(489, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 07:45:43', '2020-06-03 07:45:43'),
(490, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 08:16:07', '2020-06-03 08:16:07'),
(491, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 08:32:05', '2020-06-03 08:32:05'),
(492, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u9662\\u6240\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:00:06', '2020-06-03 09:00:06'),
(493, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-03 09:00:06', '2020-06-03 09:00:06'),
(494, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u9662\\u6240\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\"}', '2020-06-03 09:02:21', '2020-06-03 09:02:21'),
(495, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-03 09:02:21', '2020-06-03 09:02:21');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(496, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\"}', '2020-06-03 09:02:37', '2020-06-03 09:02:37'),
(497, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:02:37', '2020-06-03 09:02:37'),
(498, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:03:13', '2020-06-03 09:03:13'),
(499, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:03:20', '2020-06-03 09:03:20'),
(500, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:03:21', '2020-06-03 09:03:21'),
(501, 1, 'admin/articles/268/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:04:45', '2020-06-03 09:04:45'),
(502, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:05:58', '2020-06-03 09:05:58'),
(503, 1, 'admin/articles/265/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:06:27', '2020-06-03 09:06:27'),
(504, 1, 'admin/articles/265', 'PUT', '1.190.203.218', '{\"title\":\"\\u63a7\\u5236\\u5b9e\\u9a8c\\u5ba4\",\"category_id\":\"17\",\"description\":null,\"content\":\"<h1 style=\\\"text-align: center;\\\"><span style=\\\"font-size: 22px;\\\">\\u63a7\\u5236\\u5b9e\\u9a8c\\u5ba4\\u7b80\\u4ecb<\\/span><\\/h1><p><strong><span style=\\\"font-size: 20px;\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u63a7\\u5236\\u5b9e\\u9a8c\\u5ba4\\u4e3b\\u8981\\u8fdb\\u884c<\\/span><\\/strong><strong><span style=\\\"font-size: 20px;\\\">\\u7535\\u6c14\\u8bbe\\u8ba1\\u3001\\u81ea\\u63a7\\u8bbe\\u8ba1\\u3001\\u4eea\\u8868\\u5b89\\u88c5\\u8c03\\u8bd5\\u53ca\\u63a7\\u5236\\u7cfb\\u7edf\\u7684\\u8bbe\\u8ba1\\u548c\\u7f16\\u5236\\u5de5\\u4f5c\\uff0c\\u5de5\\u4f5c\\u4e2d\\u5584\\u4e8e\\u63d0\\u51fa\\u6539\\u8fdb\\u63aa\\u65bd\\uff0c\\u89e3\\u51b3\\u9879\\u76ee\\u4e2d\\u9047\\u5230\\u7684\\u5173\\u952e\\u6027\\u7684\\u6280\\u672f\\u96be\\u9898\\u3002<\\/span><\\/strong><br\\/><strong><span style=\\\"font-size: 20px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<\\/span><\\/strong><strong><span style=\\\"font-size: 20px;\\\">\\u63a7\\u5236\\u5b9e\\u9a8c\\u5ba4<\\/span><\\/strong><strong><span style=\\\"font-size: 20px;\\\">\\u53c2\\u4e0e\\u7814\\u5236\\u5efa\\u8bbe\\u7684\\u56fd\\u5bb6\\u7ea7\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee\\u300a\\u5de5\\u4e1a\\u5316\\u5c01\\u95ed\\u73af\\u5f0f\\u6cbc\\u6c14\\u3001\\u53d1\\u7535\\u7cfb\\u7edf\\u300b\\u4ee5\\u53ca\\u7701\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee\\u300a\\u52a0\\u62ff\\u5927\\u76f4\\u8d2e\\u70ed\\u592a\\u9633\\u80fd\\u6280\\u672f\\u300b\\u63d0\\u5347\\u4e86\\u6211\\u7701\\u9ad8\\u5bd2\\u5730\\u533a\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u548c\\u5149\\u4f0f\\u53d1\\u9175\\u6e29\\u5ba4\\u63a7\\u5236\\u9886\\u57df\\u5728\\u56fd\\u9645\\u4e0a\\u7684\\u77e5\\u540d\\u5ea6\\uff0c\\u8be5\\u9879\\u76ee\\u5f97\\u5230\\u4e86\\u52a0\\u62ff\\u5927\\u963f\\u5c14\\u4f2f\\u5854\\u7814\\u7a76\\u9662\\u4e1a\\u5185\\u4e13\\u5bb6\\u7684\\u4e00\\u81f4\\u597d\\u8bc4\\u3002<\\/span><\\/strong><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:06:33', '2020-06-03 09:06:33'),
(505, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:06:34', '2020-06-03 09:06:34'),
(506, 1, 'admin/articles/264/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:06:55', '2020-06-03 09:06:55'),
(507, 1, 'admin/articles/264', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u5fae\\u751f\\u7269\\u7814\\u7a76\\u5ba4\",\"category_id\":\"16\",\"description\":null,\"content\":\"<p><strong><span style=\\\"font-size: 20px\\\"><span style=\\\"font-size: 22px\\\">\\u80fd\\u6e90\\u5fae\\u751f\\u7269\\u7814\\u7a76\\u5ba4\\u7b80\\u4ecb<\\/span><\\/span><br\\/>\\r\\n\\t&nbsp;<\\/strong><\\/p><p><strong><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u80fd\\u6e90\\u5fae\\u751f\\u7269\\u7814\\u7a76\\u5ba4\\u81f4\\u529b\\u4e8e\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u6280\\u672f\\u548c\\u751f\\u7269\\u5de5\\u7a0b\\u4e09\\u5927\\u5b66\\u79d1\\u4ea4\\u53c9\\u9886\\u57df\\u7684\\u5e94\\u7528\\u57fa\\u7840\\u7814\\u7a76\\u3002\\u4e3b\\u8981\\u7814\\u7a76\\u65b9\\u5411\\u662f\\uff1a<br\\/>\\r\\n\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1\\u3001\\u755c\\u79bd\\u7caa\\u4fbf\\u8d44\\u6e90\\u5316\\u6280\\u672f\\uff1b<br\\/>\\r\\n\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2\\u3001\\u79f8\\u79c6\\u8d44\\u6e90\\u5316\\u6280\\u672f\\u3002<\\/span><br\\/><br\\/>\\r\\n\\t&nbsp;<\\/strong><\\/p><p><br\\/><strong><img alt=\\\"\\\" src=\\\"\\/uploads\\/allimg\\/130808\\/1-130PQ00H9120.JPG\\\" style=\\\"width: 516px; height: 343px\\\"\\/><br\\/>\\r\\n\\t&nbsp;<\\/strong><\\/p><p><strong><span style=\\\"font-size: 20px\\\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<\\/span><\\/strong><strong><span style=\\\"font-size: 20px\\\">\\u8fd1\\u5e74\\u6765\\uff0c<\\/span><\\/strong><strong><span style=\\\"font-size: 20px;\\\">\\u80fd\\u6e90\\u5fae\\u751f\\u7269\\u7814\\u7a76\\u5ba4<\\/span><\\/strong><strong><span style=\\\"font-size: 20px\\\">\\u627f\\u62c5\\u56fd\\u5bb6\\u7ea7\\u3001\\u7701\\u5e02\\u7ea7\\u3001\\u9662\\u57fa\\u91d1\\u9879\\u76ee20\\u4f59\\u9879\\uff0c\\u591a\\u9879\\u6210\\u679c\\u83b7\\u5956\\u3002\\u5176\\u4e2d\\u755c\\u79bd\\u7caa\\u4fbf\\u9ad8\\u6e29\\u538c\\u6c27\\u6d88\\u5316\\u6280\\u672f\\u4e0e\\u725b\\u7caa\\u6cbc\\u6db2\\u79f8\\u79c6\\u8054\\u7528\\u6280\\u672f\\u662f\\u6211\\u56fd\\u552f\\u4e00\\u6210\\u529f\\u5e94\\u7528\\u4e8e\\u9ad8\\u5bd2\\u5730\\u533a\\u8fde\\u7eed\\u4f5c\\u4e1a\\u7684\\u6280\\u672f\\uff0c\\u5e76\\u53d6\\u5f97\\u4e86\\u663e\\u8457\\u7684\\u793e\\u4f1a\\u6548\\u76ca\\u3002<\\/span><\\/strong><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:07:13', '2020-06-03 09:07:13'),
(508, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:07:13', '2020-06-03 09:07:13'),
(509, 1, 'admin/articles/263/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:07:15', '2020-06-03 09:07:15'),
(510, 1, 'admin/articles/263', 'PUT', '1.190.203.218', '{\"title\":\"\\u751f\\u7269\\u8d28\\u80fd\\u6e90\\u5b9e\\u9a8c\\u5ba4\",\"category_id\":\"15\",\"description\":null,\"content\":\"<p><strong><span style=\\\"font-size: 22px\\\">\\u751f\\u7269\\u8d28\\u80fd\\u6e90\\u5b9e\\u9a8c\\u5ba4\\u7b80\\u4ecb<\\/span><\\/strong><\\/p><p><strong><span style=\\\"font-size: 20px\\\">&nbsp;<br\\/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u751f\\u7269\\u8d28\\u80fd\\u6e90\\u5b9e\\u9a8c\\u5ba4\\u4e3b\\u8981\\u4ece\\u4e8b\\u5bd2\\u533a\\u6cbc\\u6c14\\u5de5\\u7a0b\\u3001\\u56fa\\u4f53\\u5e9f\\u5f03\\u7269\\u5229\\u7528\\u3001\\u519c\\u6751\\u751f\\u7269\\u8d28\\u8d44\\u6e90\\u3001\\u538c\\u6c27\\u5fae\\u751f\\u7269\\u673a\\u7406\\u3001\\u538c\\u6c27\\u6d88\\u5316\\u6280\\u672f\\u4ee5\\u53ca\\u519c\\u6751\\u8d44\\u6e90\\u4e0e\\u73af\\u5883\\u7efc\\u5408\\u7814\\u7a76\\u4e0e\\u5f00\\u53d1\\u7b49\\u5de5\\u4f5c\\uff0c\\u6d89\\u53ca\\u5fae\\u751f\\u7269\\u5b66\\u3001\\u751f\\u7269\\u5316\\u5b66\\u4e0e\\u5206\\u5b50\\u751f\\u7269\\u5b66\\u3001\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u80fd\\u6e90\\u5de5\\u7a0b\\u3001\\u519c\\u4e1a\\u8d44\\u6e90\\u4e0e\\u73af\\u5883\\u7b49\\u5b66\\u79d1\\u3002\\u62e5\\u6709\\u5148\\u8fdb\\u79d1\\u7814\\u4eea\\u5668\\u8bbe\\u590740\\u4f59\\u53f0\\uff0c\\u5177\\u6709\\u8f83\\u5b8c\\u5907\\u7684\\u7814\\u7a76\\u5e73\\u53f0\\u548c\\u5b9e\\u9a8c\\u6761\\u4ef6\\u3002\\u5b9e\\u9a8c\\u5ba4\\u5df2\\u627f\\u62c5\\u548c\\u5728\\u7814\\u7684\\u6709\\u56fd\\u5bb6\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u4e13\\u9879\\u8bfe\\u9898\\u3001\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u8ba1\\u5212\\u3001\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u5b66\\u7814\\u7a76\\u57fa\\u91d1\\u3001\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\u9752\\u5e74\\u521b\\u65b0\\u57fa\\u91d1\\u7b49\\u5341\\u4f59\\u9879\\u8bfe\\u9898\\u3002\\u5df2\\u7ecf\\u5728\\u9ad8\\u6e29\\u538c\\u6c27\\u6d88\\u5316\\u6280\\u672f\\u3001\\u5bd2\\u533a\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\u7814\\u7a76\\u7b49\\u5bd2\\u533a\\u751f\\u7269\\u8d28\\u8d44\\u6e90\\u80fd\\u6e90\\u5316\\u5229\\u7528\\u6280\\u672f\\u65b9\\u9762\\u53d6\\u5f97\\u4e86\\u7a81\\u7834\\u6027\\u7814\\u7a76\\u8fdb\\u5c55\\uff1b\\u53e6\\u5916\\u8fd8\\u5f00\\u5c55\\u4e86\\u9ad8\\u6548\\u4ea7\\u7532\\u70f7\\u83cc\\u7684\\u5206\\u5b50\\u751f\\u7269\\u5b66\\u3001\\u6cbc\\u6db2\\u9ad8\\u6548\\u56de\\u7528\\u3001\\u538c\\u6c27\\u83cc\\u5f71\\u54cd\\u56e0\\u7d20\\u7b49\\u7814\\u7a76\\uff0c\\u4e3a\\u5728\\u6211\\u56fd\\u5bd2\\u533a\\u5174\\u5efa\\u5927\\u578b\\u6cbc\\u6c14\\u5de5\\u7a0b\\u5960\\u5b9a\\u4e86\\u7406\\u8bba\\u53ca\\u6280\\u672f\\u57fa\\u7840\\u3002\\u76ee\\u524d\\u5df2\\u53d1\\u8868\\u7814\\u7a76\\u8bba\\u658710\\u4f59\\u7bc7\\uff0c\\u7533\\u62a5\\u4e13\\u522910\\u9879\\u3002<\\/span><\\/strong><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:07:22', '2020-06-03 09:07:22'),
(511, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:07:22', '2020-06-03 09:07:22'),
(512, 1, 'admin/articles/262/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:07:25', '2020-06-03 09:07:25'),
(513, 1, 'admin/articles/262', 'PUT', '1.190.203.218', '{\"title\":\"\\u8282\\u80fd\\u6280\\u672f\\u7814\\u7a76\\u5ba4\",\"category_id\":\"14\",\"description\":null,\"content\":\"<p><strong><span style=\\\"font-size: 22px\\\">\\u8282\\u80fd\\u6280\\u672f\\u7814\\u7a76\\u5ba4\\u7b80\\u4ecb<\\/span><\\/strong><br\\/>\\r\\n\\t&nbsp;<\\/p><p><strong><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u8282\\u80fd\\u6280\\u672f\\u7814\\u7a76\\u5ba4\\u5148\\u540e\\u627f\\u62c5\\u548c\\u53c2\\u4e0e\\u627f\\u62c5\\u5b8c\\u6210\\u4e86\\u56fd\\u5bb6\\u201c\\u4e5d\\u4e94\\u201d\\u91cd\\u70b9\\u79d1\\u6280\\u653b\\u5173\\u8ba1\\u5212\\u9879\\u76ee\\uff0c\\u56fd\\u5bb6\\u201c\\u5341\\u4e94\\u201d\\u91cd\\u70b9\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee\\uff0c\\u83b7\\u5f97\\u4e86\\u56fd\\u5bb6\\u7ea7\\u3001\\u7701\\u7ea7\\u79d1\\u7814\\u6210\\u679c20\\u591a\\u9879\\u3002\\u83b7\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u5956\\u4e00\\u9879\\u3002\\u83b7\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u5956\\u4e00\\u9879\\u3001\\u83b7\\u5f97\\u4e86\\u5168\\u56fd\\u77f3\\u6cb9\\u5316\\u5de5\\u7cfb\\u7edf\\u4e8c\\u7b49\\u5956\\u4e00\\u9879\\uff0c\\u83b7\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u4e00\\u9879\\u5956\\u7b49\\u3002<br\\/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662<\\/span><\\/strong><strong><span style=\\\"font-size: 20px;\\\">\\u8282\\u80fd\\u6280\\u672f\\u7814\\u7a76\\u5ba4<\\/span><\\/strong><strong><span style=\\\"font-size: 20px\\\">\\u79c9\\u627f\\u201c\\u5d07\\u5c1a\\u79d1\\u5b66\\uff0c\\u6c42\\u5b9e\\u521b\\u65b0\\u201d\\u7684\\u6307\\u5bfc\\u65b9\\u9488,\\u5177\\u6709\\u4eba\\u5458\\u7d20\\u8d28\\u9ad8\\u3001\\u4eea\\u5668\\u79cd\\u7c7b\\u9f50\\u5168\\u3001\\u6d4b\\u8bd5\\u624b\\u6bb5\\u6807\\u51c6\\u53ef\\u9760\\u548c\\u53ef\\u8fbe\\u5230\\u6d4b\\u8bd5\\u8981\\u6c42\\u7684\\u5de5\\u4f5c\\u73af\\u5883\\u7b49\\u7279\\u70b9\\u3002<br\\/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\\/span><\\/strong><\\/p><p>\\r\\n\\t&nbsp;<\\/p><p>&nbsp;<\\/p><p><img alt=\\\"\\\" src=\\\"\\/uploads\\/allimg\\/130802\\/1-130P21041315P.jpg\\\" style=\\\"width: 562px; height: 398px\\\"\\/><\\/p><p>&nbsp;<\\/p><p>\\r\\n\\t&nbsp;<\\/p><p>&nbsp;<\\/p><p>\\r\\n\\t&nbsp;<\\/p><p>&nbsp;<br\\/><\\/p><p>\\r\\n\\t&nbsp;<\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:07:33', '2020-06-03 09:07:33'),
(514, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:07:33', '2020-06-03 09:07:33'),
(515, 1, 'admin/articles/261/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:07:36', '2020-06-03 09:07:36'),
(516, 1, 'admin/articles/261', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u5316\\u5b66\\u7814\\u7a76\\u5ba4\",\"category_id\":\"13\",\"description\":null,\"content\":\"<p><strong><span style=\\\"font-size: 22px\\\">\\u80fd\\u6e90\\u5316\\u5b66\\u7814\\u7a76\\u5ba4\\u7b80\\u4ecb<\\/span><\\/strong><\\/p><p><strong><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u80fd\\u6e90\\u5316\\u5b66\\u7814\\u7a76\\u5ba4\\u4e3b\\u8981\\u4ece\\u4e8b\\u5e38\\u89c4\\u80fd\\u6e90\\u3001\\u975e\\u5e38\\u89c4\\u80fd\\u6e90\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u53ca\\u6e05\\u6d01\\u80fd\\u6e90\\u6280\\u672f\\u7684\\u7814\\u7a76\\uff0c\\u7814\\u7a76\\u8303\\u56f4\\u6d89\\u53ca\\u77f3\\u6cb9\\u5316\\u5de5\\u3001\\u7164\\u5316\\u5de5\\u3001\\u751f\\u7269\\u5316\\u5de5\\u548c\\u71c3\\u6599\\u5316\\u5de5\\u7b49\\u9886\\u57df\\u3002\\u8fd1\\u4e09\\u5e74\\uff0c\\u5148\\u540e\\u627f\\u62c5\\u7701\\u7ea7\\u3001\\u5e02\\uff08\\u5730\\uff09\\u7ea7\\u5404\\u7c7b\\u79d1\\u6280\\u5f00\\u53d1\\u9879\\u76ee10\\u4f59\\u9879\\uff0c\\u53d6\\u5f97\\u4e86\\u4e00\\u6279\\u8fbe\\u5230\\u56fd\\u5185\\u5148\\u8fdb\\u6c34\\u5e73\\u7684\\u6807\\u5fd7\\u6027\\u6210\\u679c\\u3002\\u76ee\\u524d\\uff0c\\u8be5\\u7814\\u7a76\\u5ba4\\u5728\\u79d1\\u7814\\u9886\\u57df\\u5df2\\u521d\\u6b65\\u5f62\\u6210\\u56db\\u6761\\u6280\\u672f\\u5f00\\u53d1\\u94fe\\u6761\\uff0c\\u5373\\uff1a\\u9875\\u5ca9\\u6cb9\\u52a0\\u6c22\\u63d0\\u8d28\\u8f6c\\u5316\\u6280\\u672f\\uff1b\\u9875\\u5ca9\\u6cb9\\u5236\\u53d6\\u6cb9\\u7802\\u5206\\u79bb\\u5242\\u6280\\u672f\\uff1b\\u7164\\u4e0e\\u5e9f\\u5f03\\u6709\\u673a\\u5236\\u54c1\\u5171\\u7126\\u5316\\u6280\\u672f\\uff1b\\u6728\\u7126\\u6cb9\\u52a0\\u6c22\\u63d0\\u8d28\\u8f6c\\u5316\\u6280\\u672f\\u3002<br\\/>\\r\\n\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u80fd\\u6e90\\u5316\\u5b66\\u7814\\u7a76\\u5ba4\\u7ecf\\u8fc7\\u591a\\u5e74\\u7684\\u5b9e\\u8df5\\uff0c\\u9010\\u6b65\\u5f62\\u6210\\u4e00\\u652f\\u7ed3\\u6784\\u5408\\u7406\\u3001\\u81ea\\u4e3b\\u7814\\u53d1\\u80fd\\u529b\\u5f3a\\u7684\\u521b\\u65b0\\u578b\\u79d1\\u7814\\u68af\\u961f\\u3002\\u4e0e\\u4e2d\\u79d1\\u9662\\u5927\\u8fde\\u7269\\u5316\\u6240\\u3001\\u5927\\u5e86\\u77f3\\u5316\\u7814\\u7a76\\u9662\\u3001\\u5927\\u8fde\\u7406\\u5de5\\u5927\\u5b66\\u3001\\u54c8\\u5c14\\u6ee8\\u5de5\\u4e1a\\u5927\\u5b66\\u7b49\\u591a\\u5bb6\\u79d1\\u7814\\u9662\\u6240\\u548c\\u9ad8\\u6821\\u5728\\u57fa\\u7840\\u7814\\u7a76\\u3001\\u4fe1\\u606f\\u4ea4\\u6d41\\u3001\\u8d44\\u6e90\\u5171\\u4eab\\u7b49\\u65b9\\u9762\\u5efa\\u7acb\\u4e86\\u826f\\u597d\\u7684\\u79d1\\u7814\\u4e92\\u8054\\u5173\\u7cfb\\u3002<\\/span><br\\/><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u7814\\u7a76\\u5ba4\\u4e3b\\u4efb\\u4ecb\\u7ecd\\uff1a<br\\/>\\r\\n\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u9648\\u677e\\uff0c1969\\u5e74\\u51fa\\u751f\\uff0c\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08\\uff0c\\u73b0\\u4efb\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u80fd\\u6e90\\u5316\\u5b66\\u7814\\u7a76\\u5ba4\\u4e3b\\u4efb\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u80fd\\u8bc4\\u4f30\\u5ba1\\u67e5\\u4e2d\\u5fc3\\u5316\\u5de5\\u4e13\\u5bb6\\uff0c\\u9ed1\\u9f99\\u6c5f\\u79d1\\u6280\\u5927\\u5b66\\u6821\\u5916\\u7814\\u7a76\\u751f\\u5bfc\\u5e08\\u3002\\u4e3b\\u8981\\u4ece\\u4e8b\\u80fd\\u6e90\\u5316\\u5b66\\u9886\\u57df\\u524d\\u6cbf\\u6280\\u672f\\u7684\\u7814\\u7a76\\uff0c\\u7814\\u7a76\\u8303\\u56f4\\u5305\\u62ec\\uff1a\\u5e38\\u89c4\\u3001\\u975e\\u5e38\\u89c4\\u80fd\\u6e90\\u7684\\u52a0\\u5de5\\u5de5\\u827a\\u548c\\u5de5\\u7a0b\\u7684\\u7814\\u7a76\\uff1b\\u9ad8\\u786b\\u9ad8\\u9178\\u539f\\u6cb9\\u3001\\u7a20\\u6cb9\\u7684\\u6539\\u8d28\\u53ca\\u8f6c\\u5316\\u5de5\\u827a\\u7684\\u7814\\u7a76\\u3002\\u5176\\u6210\\u679c\\u5728\\u77f3\\u6cb9\\u5316\\u5de5\\u3001\\u7164\\u5316\\u5de5\\u3001\\u6cb9\\u9875\\u5ca9\\u8d44\\u6e90\\u7efc\\u5408\\u5229\\u7528\\u7b49\\u65b9\\u9762\\u5177\\u6709\\u8f83\\u9ad8\\u7406\\u8bba\\u6307\\u5bfc\\u610f\\u4e49\\u548c\\u5b9e\\u7528\\u4ef7\\u503c\\u3002<\\/span><\\/strong><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:07:42', '2020-06-03 09:07:42'),
(517, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:07:42', '2020-06-03 09:07:42'),
(518, 1, 'admin/articles/260/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:07:45', '2020-06-03 09:07:45'),
(519, 1, 'admin/articles/260', 'PUT', '1.190.203.218', '{\"title\":\"\\u73af\\u5883\\u79d1\\u5b66\\u7814\\u7a76\\u5ba4\",\"category_id\":\"12\",\"description\":null,\"content\":\"<p><span style=\\\"font-size: 22px\\\"><strong>\\u73af\\u5883\\u79d1\\u5b66\\u7814\\u7a76\\u5ba4\\u7b80\\u4ecb<\\/strong><\\/span><\\/p><p>&nbsp;<\\/p><p><span style=\\\"font-size:22px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>\\u73af\\u5883\\u79d1\\u5b66\\u7814\\u7a76\\u5ba4\\u4e00\\u76f4\\u81f4\\u529b\\u4e8e\\u8282\\u80fd\\u51cf\\u6392\\u6280\\u672f\\u548c\\u5ba4\\u5185\\u73af\\u5883\\u6c61\\u67d3\\u5206\\u6790\\u65b9\\u9762\\u7684\\u7814\\u7a76\\u5de5\\u4f5c\\u3002\\u4e3b\\u8981\\u4ece\\u4e8b\\u751f\\u7269\\u6cd5\\u5904\\u7406\\u751f\\u6d3b\\u3001\\u5de5\\u4e1a\\u6c61\\u6c34\\u548c\\u5ba4\\u5185\\u7a7a\\u6c14\\u4e2d\\u6c61\\u67d3\\u7269\\u7684\\u6e90\\u89e3\\u6790\\u53ca\\u6cbb\\u7406\\u7814\\u7a76\\u3002<\\/strong><br\\/>\\r\\n\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>\\u73af\\u5883\\u79d1\\u5b66\\u7814\\u7a76\\u5ba4\\u66fe\\u5b8c\\u6210\\u8fc7\\u591a\\u9879\\u7701\\u90e8\\u7ea7\\u79d1\\u7814\\u9879\\u76ee\\uff0c\\u5982\\uff1a\\u300a\\u5965\\u91cc\\u6cb9\\u8131\\u786b\\u6280\\u672f\\u7814\\u5236\\u53ca\\u5e94\\u7528<\\/strong>&nbsp;<strong>\\u300b\\u3001\\u300a\\u71c3\\u7164\\u9505\\u7089\\u50ac\\u5316\\u8131\\u786b\\u6280\\u672f\\u7814\\u7a76\\u300b\\u548c\\u300a\\u5de5\\u4e1a\\u71c3\\u7164\\u9505\\u7089\\u70df\\u6c14\\u51c0\\u5316\\u6280\\u672f<\\/strong>&nbsp;<strong>\\u300b\\u7b49\\u9879\\u76ee\\uff0c\\u4e3a\\u6211\\u56fd\\u56fa\\u5b9a\\u6c61\\u67d3\\u6e90\\u51cf\\u6392\\u63d0\\u4f9b\\u65b0\\u6280\\u672f<\\/strong><strong>,<\\/strong><strong>\\u5e76\\u5206\\u522b\\u83b7\\u5f97\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u4e00\\u7b49\\u5956<\\/strong><strong>1<\\/strong><strong>\\u9879\\u3001\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u5de5\\u4e1a\\u79d1\\u6280\\u8fdb\\u6b65\\u7c7b\\u4e8c\\u7b49\\u5956<\\/strong><strong>1<\\/strong><strong>\\u9879\\u3002\\u8fd8\\u5b8c\\u6210\\u4e86\\u57fa\\u4e8e\\u5e9f\\u78b3\\u6e90\\u7684\\u4ea7\\u6cb9\\u5fae\\u85fb\\u63d0\\u53d6\\u751f\\u7269\\u6cb9\\u8102\\u6280\\u672f\\uff0c\\u65e2\\u89e3\\u51b3\\u6c61\\u6c34\\u6392\\u653e\\u95ee\\u9898\\uff0c\\u53c8\\u63d0\\u4f9b\\u751f\\u7269\\u80fd\\u6e90\\uff0c\\u4e3a\\u6392\\u6c61\\u7efc\\u5408\\u5229\\u7528\\u50a8\\u5907\\u4e86\\u57fa\\u7840\\u6280\\u672f\\u3002\\u7814\\u7a76\\u5ba4\\u6b63\\u5728\\u53c2\\u4e0e\\u7f16\\u5236\\u56fd\\u5bb6\\u884c\\u4e1a\\u6807\\u51c6\\u300a\\u4f4f\\u5b85\\u5efa\\u7b51\\u5ba4\\u5185\\u88c5\\u4fee\\u6c61\\u67d3\\u63a7\\u5236\\u6280\\u672f\\u89c4\\u7a0b\\u300b\\uff0c\\u5e76\\u627f\\u62c5\\u5ba4\\u5185\\u73af\\u5883\\u76f8\\u5173\\u8bfe\\u9898\\u4e24\\u9879\\u3002<\\/strong><br\\/>\\r\\n\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>\\u73af\\u5883\\u79d1\\u5b66\\u7814\\u7a76\\u5ba4\\u4e0b\\u8bbe\\u751f\\u7269\\u73af\\u5883\\u5b9e\\u9a8c\\u5ba4\\u3001\\u5ba4\\u5185\\u73af\\u5883\\u5b9e\\u9a8c\\u5ba4\\u3001\\u4e73\\u5316\\u5b9e\\u9a8c\\u5ba4\\u7b49\\uff0c\\u5177\\u6709\\u8f83\\u4e3a\\u5b8c\\u5907\\u7684\\u5206\\u6790\\u6d4b\\u8bd5\\u4eea\\u5668\\u8bbe\\u5907\\uff0c\\u5982\\u70ed\\u8131\\u9644\\u4eea\\uff0c\\u7c89\\u5c18\\u68c0\\u6d4b\\u4eea\\uff0c\\u81ed\\u6c27\\u68c0\\u6d4b\\u4eea\\uff0c\\u7532\\u919b\\u4fbf\\u643a\\u68c0\\u6d4b\\u4eea\\uff0c<\\/strong><strong>TVOC<\\/strong><strong>\\u4fbf\\u643a\\u68c0\\u6d4b\\u4eea\\uff0c\\u6d4b\\u6c21\\u4eea\\uff0c<\\/strong><strong>1m<sup>3<\\/sup><\\/strong><strong>\\u73af\\u5883\\u6c14\\u5019\\u7bb1\\u7b49\\u3002\\u540c\\u65f6\\uff0c\\u7814\\u7a76\\u5ba4\\u6210\\u5458\\u4e13\\u4e1a\\u4e92\\u8865\\uff0c\\u9ad8\\u4e2d\\u521d\\u7ea7\\u5206\\u5e03\\u5408\\u7406\\uff0c\\u5e76\\u62e5\\u6709\\u591a\\u5e74\\u7684\\u5b9e\\u9a8c\\u5ba4\\u5de5\\u4f5c\\u7ecf\\u9a8c\\uff0c\\u53ef\\u4ee5\\u5904\\u7406\\u5404\\u79cd\\u73af\\u5883\\u3001\\u8282\\u80fd\\u5b9e\\u9a8c\\uff0c\\u79d1\\u7814\\u5b9e\\u529b\\u8f83\\u5f3a\\u3002<\\/strong><br\\/>\\r\\n\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>\\u7814\\u7a76\\u5ba4\\u4e3b\\u4efb\\u4ecb\\u7ecd\\uff1a<\\/strong><br\\/>\\r\\n\\t&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>\\u738b\\u5fd7\\u6210\\uff0c<\\/strong><strong>1973<\\/strong><strong>\\u5e74\\u51fa\\u751f\\uff0c\\u5b66\\u58eb\\uff0c\\u7814\\u7a76\\u5458\\u7ea7\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08\\uff0c\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u540e\\u5907\\u5e26\\u5934\\u4eba\\uff0c\\u7701\\u7ea7\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u6210\\u5458\\uff0c\\u517c\\u4efb\\uff1a\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u5b66\\u4f1a\\u5e38\\u52a1\\u7406\\u4e8b\\u3001\\u7701\\u5316\\u5b66\\u4f1a\\u7406\\u4e8b\\u3002\\u4ece\\u4e8b\\u65b0\\u578b\\u9187\\u919a\\u71c3\\u6599\\u50ac\\u5316\\u5242\\u548c\\u4e73\\u5316\\u71c3\\u6599\\u50ac\\u5316\\u5242\\u53ca\\u5408\\u6210\\u5de5\\u827a\\u7814\\u7a76\\uff0c\\u4ee5\\u53ca\\u5ba4\\u5185\\u7a7a\\u6c14\\u6c61\\u67d3\\u7814\\u7a76\\u5de5\\u4f5c\\u3002\\u4e3b\\u6301\\u548c\\u4e3b\\u7814\\u79d1\\u7814\\u8bfe\\u9898<\\/strong><strong>22<\\/strong><strong>\\u9879\\uff0c\\u5176\\u4e2d\\u5305\\u62ec\\u56fd\\u5bb6\\u653b\\u5173\\u8ba1\\u5212\\u9879\\u76ee<\\/strong><strong>3<\\/strong><strong>\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d1\\u9879\\u76ee<\\/strong><strong>1<\\/strong><strong>\\u9879\\uff0c\\u56fd\\u5bb6\\u653f\\u5e9c\\u95f4\\u56fd\\u9645\\u5408\\u4f5c\\u9879\\u76ee<\\/strong><strong>1<\\/strong><strong>\\u9879\\uff0c\\u7701\\u653b\\u5173\\u8ba1\\u5212\\u9879\\u76ee<\\/strong><strong>6<\\/strong><strong>\\u9879\\u3002\\u83b7\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u5956<\\/strong><strong>1<\\/strong><strong>\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u5956<\\/strong><strong>2<\\/strong><strong>\\u9879\\uff0c\\u4e09\\u7b49\\u5956<\\/strong><strong>1<\\/strong><strong>\\u9879\\uff0c\\u56fd\\u5bb6\\u77f3\\u5316\\u534f\\u4f1a\\u79d1\\u6280\\u4e8c\\u7b49\\u5956<\\/strong><strong>1<\\/strong><strong>\\u9879\\uff0c\\u53d1\\u8868\\u5b66\\u672f\\u8bba\\u6587<\\/strong><strong>11<\\/strong><strong>\\u7bc7\\u3002<\\/strong><\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:07:51', '2020-06-03 09:07:51'),
(520, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:07:51', '2020-06-03 09:07:51'),
(521, 1, 'admin/articles/259/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:07:54', '2020-06-03 09:07:54'),
(522, 1, 'admin/articles/259', 'PUT', '1.190.203.218', '{\"title\":\"\\u673a\\u6784\\u8bbe\\u7f6e\",\"category_id\":\"11\",\"description\":null,\"content\":\"<p>&nbsp;<\\/p><h1 style=\\\"text-align: center\\\"><strong><span style=\\\"font-size: 20px\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7ec4\\u7ec7\\u7ed3\\u6784<\\/span><\\/strong><\\/h1><h2>\\r\\n\\t&nbsp;<\\/h2><h1><span style=\\\"font-size: 20px\\\">1\\u3001\\u79d1\\u7814\\u5f00\\u53d1\\u90e8\\u95e8<\\/span><\\/h1><p><span style=\\\"font-size: 20px\\\"><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span>\\u73af\\u5883\\u79d1\\u5b66\\u7814\\u7a76\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u80fd\\u6e90\\u5316\\u5b66\\u7814\\u7a76\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px;\\\"><strong>&nbsp; &nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px;\\\">\\u80fd\\u6e90\\u5fae\\u751f\\u7269\\u7814\\u7a76\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u8282\\u80fd\\u6280\\u672f\\u7814\\u7a76\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u751f\\u7269\\u8d28\\u80fd\\u6e90\\u5b9e\\u9a8c\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u63a7\\u5236\\u5b9e\\u9a8c\\u5ba4<\\/span><\\/p><h1><span style=\\\"font-size: 20px\\\">2\\u3001\\u884c\\u653f\\u7ba1\\u7406\\u90e8\\u95e8<\\/span><\\/h1><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u79d1\\u7814\\u7ba1\\u7406\\u529e\\u516c\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u7efc\\u5408\\u7ba1\\u7406\\u529e\\u516c\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u8d22\\u52a1\\u7ba1\\u7406\\u529e\\u516c\\u5ba4<\\/span><\\/p><h1><span style=\\\"font-size: 20px\\\">3\\u3001<\\/span><span style=\\\"font-size: 20px\\\">\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f<\\/span><\\/h1><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u80fd\\u6e90\\u5316\\u5b66<\\/span><\\/p><h1><span style=\\\"font-size: 20px\\\">4\\u3001\\u7701\\u91cd\\u70b9\\u5ba4\\u9a8c\\u5ba4<\\/span><\\/h1><p style=\\\"margin-top: 0px; margin-bottom: 0px\\\"><strong><span style=\\\"font-size: 28px\\\">&nbsp;&nbsp;&nbsp; \\u00b7<\\/span><\\/strong><span style=\\\"font-size: 20px\\\"><span style=\\\"font-family: \\u5b8b\\u4f53\\\">\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4<\\/span><\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:08:00', '2020-06-03 09:08:00'),
(523, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:08:00', '2020-06-03 09:08:00'),
(524, 1, 'admin/articles/258/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:08:03', '2020-06-03 09:08:03'),
(525, 1, 'admin/articles/258', 'PUT', '1.190.203.218', '{\"title\":\"\\u8054\\u7cfb\\u6211\\u4eec\",\"category_id\":\"10\",\"description\":null,\"content\":\"<h1><span style=\\\"font-size: 20px\\\">\\u90ae\\u7bb1\\uff1a<a href=\\\"mailto:lifuqihappy@163.com\\\">hljnyfh@163.com<\\/a>&nbsp;&nbsp;&nbsp;<a href=\\\"mailto:hljnyhj@163.com\\\">hljnyhj@163.com<\\/a><\\/span><\\/h1><h1><span style=\\\"font-size: 20px\\\">\\u7535\\u8bdd\\uff1a0451-88071351&nbsp;&nbsp; 0451-82387268<\\/span><\\/h1>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:08:08', '2020-06-03 09:08:08'),
(526, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:08:09', '2020-06-03 09:08:09'),
(527, 1, 'admin/articles/254/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:08:12', '2020-06-03 09:08:12'),
(528, 1, 'admin/articles/254', 'PUT', '1.190.203.218', '{\"title\":\"\\u7b80\\u4ecb\",\"category_id\":\"1\",\"description\":null,\"content\":\"<p>&nbsp;<\\/p><h1 style=\\\"text-align: center\\\"><strong><span style=\\\"font-size: 20px\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff08\\u5b75\\u5316\\u4e2d\\u5fc3\\uff09\\u7ec4\\u7ec7\\u7ed3\\u6784<\\/span><\\/strong><\\/h1><h2>\\r\\n\\t&nbsp;<\\/h2><h1><span style=\\\"font-size: 20px\\\">1\\u3001\\u79d1\\u7814\\u5f00\\u53d1\\u90e8\\u95e8<\\/span><\\/h1><p><span style=\\\"font-size: 20px\\\"><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span>\\u73af\\u5883\\u79d1\\u5b66\\u4e0e\\u8282\\u80fd\\u6280\\u672f\\u7814\\u7a76\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\">&nbsp; &nbsp;&nbsp;<strong>\\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u80fd\\u6e90\\u5316\\u5b66\\u7814\\u7a76\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\">&nbsp; &nbsp;<strong>&nbsp;\\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u6cb9\\u54c1\\u52a9\\u5242\\u7814\\u53d1\\u4e2d\\u5fc3<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\">&nbsp; &nbsp;&nbsp;<strong>\\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u63a7\\u5236\\u5b9e\\u9a8c\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\">&nbsp; &nbsp;&nbsp;<strong>\\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u751f\\u7269\\u8d28\\u80fd\\u6e90\\u5b9e\\u9a8c\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\">&nbsp; &nbsp;&nbsp;<strong>\\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u5bd2\\u533a\\u751f\\u7269\\u8d28\\u80fd\\u6e90\\u57fa\\u5730<\\/span><\\/p><h1><span style=\\\"font-size: 20px\\\">2\\u3001\\u884c\\u653f\\u7ba1\\u7406\\u90e8\\u95e8<\\/span><\\/h1><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u79d1\\u7814\\u4e0e\\u4ea7\\u4e1a\\u5316\\u529e\\u516c\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\">&nbsp; &nbsp;&nbsp;<strong>\\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u7efc\\u5408\\u7ba1\\u7406\\u529e\\u516c\\u5ba4<\\/span><\\/p><p><span style=\\\"font-size: 28px\\\">&nbsp; &nbsp;&nbsp;<strong>\\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u8d22\\u52a1\\u7ba1\\u7406\\u529e\\u516c\\u5ba4<\\/span><\\/p><h1><span style=\\\"font-size: 20px\\\">3\\u3001<\\/span><span style=\\\"font-size: 20px\\\">\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f<\\/span><\\/h1><p><span style=\\\"font-size: 28px\\\"><strong>&nbsp;&nbsp;&nbsp; \\u00b7<\\/strong><\\/span><span style=\\\"font-size: 20px\\\">\\u80fd\\u6e90\\u5316\\u5b66<\\/span><\\/p><h1><span style=\\\"font-size: 20px\\\">4\\u3001\\u7701\\u91cd\\u70b9\\u5ba4\\u9a8c\\u5ba4<\\/span><\\/h1><p style=\\\"margin-top: 0px; margin-bottom: 0px\\\"><strong><span style=\\\"font-size: 28px\\\">&nbsp;&nbsp;&nbsp; \\u00b7<\\/span><\\/strong><span style=\\\"font-size: 20px\\\"><span style=\\\"font-family: \\u5b8b\\u4f53\\\">\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4<\\/span><\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:08:18', '2020-06-03 09:08:18'),
(529, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:08:18', '2020-06-03 09:08:18'),
(530, 1, 'admin/articles/256/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:08:22', '2020-06-03 09:08:22'),
(531, 1, 'admin/articles/256', 'PUT', '1.190.203.218', '{\"title\":\"\\u5386\\u53f2\\u6cbf\\u9769\",\"category_id\":\"3\",\"description\":null,\"content\":\"<h1><span style=\\\"font-size: 22px\\\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6210\\u7acb\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\uff0c\\u5355\\u4f4d\\u6027\\u8d28\\u4e3a\\u516c\\u76ca\\u4e09\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u6280\\u672f\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c2006\\u5e74\\u5355\\u4f4d\\u6027\\u8d28\\u8f6c\\u53d8\\u4e3a\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\uff0c2010\\u5e74\\u96b6\\u5c5e\\u5173\\u7cfb\\u7531\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u6280\\u672f\\u5385\\u53d8\\u66f4\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c2013\\u5e743\\u6708\\u4e0e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u5b75\\u5316\\u4e2d\\u5fc3\\u5408\\u5e76\\u3002<\\/strong><\\/span><\\/h1><p>&nbsp;<\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:08:28', '2020-06-03 09:08:28'),
(532, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:08:28', '2020-06-03 09:08:28'),
(533, 1, 'admin/articles/249/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:10:37', '2020-06-03 09:10:37');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(534, 1, 'admin/articles/249', 'PUT', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u515a\\u59d4\\u7ec4\\u7ec7\\u5168\\u4f53\\u515a\\u5458\\u548c\\u90e8\\u5206\\u515a\\u5916\\u4eba\\u58eb\\u53c2\\u89c2\\u5317\\u5927\\u8352\\u535a\\u7269\\u9986\",\"category_id\":\"7\",\"description\":\"\\u4e3a\\u8fdb\\u4e00\\u6b65\\u6df1\\u5165\\u5f00\\u5c55\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\u3001\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\u4e3b\\u9898\\u6559\\u80b2\\u6d3b\\u52a8\\uff0c7\\u67084\\u65e5\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u515a\\u59d4\\u7ec4\\u7ec7\\u5168\\u4f53\\u515a\\u5458\\u548c\\u90e8\\u5206\\u515a\\u5916\\u4eba\\u58eb\\u53c2\\u89c2\\u5317\\u5927\\u8352\\u535a\\u7269\\u9986\\uff0c\\u5b66\\u4e60\\u8df5\\u884c\\u201c\\u8270\\u82e6\\u594b\\u6597\\u3001\\u52c7\\u4e8e\\u5f00\\u62d3\\u3001\\u987e\\u5168\",\"content\":\"<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\\\"font-size:16px;\\\">\\u4e3a\\u8fdb\\u4e00\\u6b65\\u6df1\\u5165\\u5f00\\u5c55\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\u3001\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\u4e3b\\u9898\\u6559\\u80b2\\u6d3b\\u52a8\\uff0c7\\u67084\\u65e5\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u515a\\u59d4\\u7ec4\\u7ec7\\u5168\\u4f53\\u515a\\u5458\\u548c\\u90e8\\u5206\\u515a\\u5916\\u4eba\\u58eb\\u53c2\\u89c2\\u5317\\u5927\\u8352\\u535a\\u7269\\u9986\\uff0c\\u5b66\\u4e60\\u8df5\\u884c\\u201c\\u8270\\u82e6\\u594b\\u6597\\u3001\\u52c7\\u4e8e\\u5f00\\u62d3\\u3001\\u987e\\u5168\\u5927\\u5c40\\u3001\\u65e0\\u79c1\\u5949\\u732e\\u201d\\u7684\\u5317\\u5927\\u8352\\u7cbe\\u795e\\u3002<br\\/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\u901a\\u8fc7\\u6b64\\u6b21\\u53c2\\u89c2\\u5b66\\u4e60\\uff0c\\u5927\\u5bb6\\u90fd\\u6df1\\u523b\\u4f53\\u4f1a\\u5230\\u51e0\\u4ee3\\u5317\\u5927\\u8352\\u4eba\\u732e\\u9752\\u6625\\u3001\\u732e\\u7ec8\\u8eab\\u7684\\u65e0\\u79c1\\u4f1f\\u5927\\uff0c\\u5927\\u5bb6\\u7eb7\\u7eb7\\u8868\\u793a\\u672c\\u6b21\\u6d3b\\u52a8\\u4e0d\\u4ec5\\u662f\\u4e00\\u6b21\\u5b66\\u4e60\\u6559\\u80b2\\uff0c\\u66f4\\u662f\\u4e00\\u6b21\\u6df1\\u523b\\u7684\\u7cbe\\u795e\\u6d17\\u793c\\uff0c\\u5e94\\u94ed\\u8bb0\\u5386\\u53f2\\uff0c\\u5728\\u4eca\\u540e\\u5de5\\u4f5c\\u751f\\u6d3b\\u4e2d\\u7ee7\\u7eed\\u5f18\\u626c\\u5317\\u5927\\u8352\\u7cbe\\u795e\\uff0c\\u521d\\u5fc3\\u4e0d\\u6539\\uff0c\\u6562\\u62c5\\u5f53\\u3001\\u987e\\u5927\\u5c40\\u3001\\u4e50\\u4e8e\\u5949\\u732e\\u3001\\u594b\\u52c7\\u5411\\u524d\\uff01<\\/span><br\\/><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles\"}', '2020-06-03 09:10:42', '2020-06-03 09:10:42'),
(535, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:10:43', '2020-06-03 09:10:43'),
(536, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"page\":\"2\",\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:10:45', '2020-06-03 09:10:45'),
(537, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u8f66\\u7528\",\"category\":{\"id\":null}}', '2020-06-03 09:11:16', '2020-06-03 09:11:16'),
(538, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u8f66\\u7528\\u7532\\u9187\",\"category\":{\"id\":null}}', '2020-06-03 09:11:21', '2020-06-03 09:11:21'),
(539, 1, 'admin/articles/12/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:11:26', '2020-06-03 09:11:26'),
(540, 1, 'admin/articles/12', 'PUT', '1.190.203.218', '{\"title\":\"M15\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u590d\\u5408\\u6dfb\\u52a0\\u5242\",\"category_id\":\"19\",\"description\":\"\\u300aM15\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u590d\\u5408\\u6dfb\\u52a0\\u5242\\u300b\\u662f\\u542b\\u6709\\u8f9b\\u70f7\\u503c\\u589e\\u5f3a\\u5242\\u3001\\u52a8\\u529b\\u589e\\u5f3a\\u5242\\u3001\\u91d1\\u5c5e\\u8150\\u8680\\u6291\\u5236\\u5242\\u3001\\u6a61\\u80f6\\u6eb6\\u80c0\\u6291\\u5236\\u5242\\u3001\\u52a9\\u71c3\\u5242\\u548c\\u52a9\\u6eb6\\u5242\\u7684\\u590d\\u5408\\u6dfb\\u52a0\\u5242\\u3002\\u901a\\u8fc7\\u4e92\\u914d\\u6027\\u8bd5\\u9a8c\\u3001\\u6eb6\\u89e3\\u6027\\u8bd5\\u9a8c\\u3001\\u8f9b\\u70f7\\u503c\\u52a0\\u548c\\u6027\\u548c\",\"content\":\"<p><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u300aM15\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u590d\\u5408\\u6dfb\\u52a0\\u5242\\u300b\\u662f\\u542b\\u6709\\u8f9b\\u70f7\\u503c\\u589e\\u5f3a\\u5242\\u3001\\u52a8\\u529b\\u589e\\u5f3a\\u5242\\u3001\\u91d1\\u5c5e\\u8150\\u8680\\u6291\\u5236\\u5242\\u3001\\u6a61\\u80f6\\u6eb6\\u80c0\\u6291\\u5236\\u5242\\u3001\\u52a9\\u71c3\\u5242\\u548c\\u52a9\\u6eb6\\u5242\\u7684\\u590d\\u5408\\u6dfb\\u52a0\\u5242\\u3002\\u901a\\u8fc7\\u4e92\\u914d\\u6027\\u8bd5\\u9a8c\\u3001\\u6eb6\\u89e3\\u6027\\u8bd5\\u9a8c\\u3001\\u8f9b\\u70f7\\u503c\\u52a0\\u548c\\u6027\\u548c\\u8c03\\u548c\\u6b63\\u6548\\u5e94\\u8bd5\\u9a8c\\uff0c\\u89e3\\u51b3\\u4e86\\u6dfb\\u52a0\\u5242\\u590d\\u5408\\u540e\\u4ea7\\u751f\\u7684\\u8f83\\u5927\\u4e92\\u6270\\u6027\\u53ca\\u7ecf\\u6d4e\\u6027\\u7b49\\u95ee\\u9898\\uff0c\\u6700\\u7ec8\\u5f97\\u51fa\\u6dfb\\u52a0\\u5242\\u7684\\u6700\\u4f73\\u914d\\u6bd4\\uff0c\\u5e76\\u5bf9\\u6dfb\\u52a0\\u5242\\u5404\\u9879\\u6307\\u6807\\u8fdb\\u884c\\u68c0\\u6d4b\\uff0c\\u68c0\\u6d4b\\u7ed3\\u679c\\u5747\\u7b26\\u5408\\u6807\\u51c6\\u3002\\u8be5\\u6dfb\\u52a0\\u5242\\u6709\\u6548\\u89e3\\u51b3\\u548c\\u63a7\\u5236\\u4e86M15\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\uff1a\\u4f4e\\u6e29\\u542f\\u52a8\\u96be\\u3001\\u9ad8\\u6e29\\u6c14\\u963b\\u5927\\u3001\\u52a8\\u529b\\u4e0d\\u8db3\\u3001\\u8150\\u8680\\u6eb6\\u80c0\\u7b49\\u95ee\\u9898\\u3002\\u4f7fM15\\u7532\\u9187\\u6c7d\\u6cb9\\u957f\\u671f\\u5904\\u4e8e\\u7a33\\u5b9a\\u72b6\\u6001\\uff0c\\u4e0d\\u6613\\u5206\\u5c42\\uff0c\\u89e3\\u51b3\\u4e86\\u6c7d\\u6cb9\\u4e0e\\u7532\\u9187\\u4e92\\u6eb6\\u6027\\u5dee\\u7684\\u95ee\\u9898\\u3002\\u5e76\\u4e14\\u53ef\\u4ee5\\u663e\\u8457\\u63d0\\u9ad8\\u6cb9\\u54c1\\u7684\\u8f9b\\u70f7\\u503c\\u548c\\u52a8\\u529b\\u6027\\u80fd\\uff0c\\u540c\\u65f6\\u4f7f\\u7528\\u8be5\\u6dfb\\u52a0\\u5242\\u8c03\\u548c\\u7684M15\\u7532\\u9187\\u6c7d\\u6cb9\\uff0c\\u4e0d\\u9700\\u6539\\u53d8\\u53d1\\u52a8\\u673a\\u7684\\u7ed3\\u6784\\u3002\\u8be5\\u6dfb\\u52a0\\u5242\\u901a\\u8fc7\\u5de5\\u4e1a\\u5e94\\u7528\\u53ca\\u6027\\u80fd\\u8003\\u6838\\uff0c\\u7ecf\\u9ed1\\u9f99\\u6c5f\\u7701\\u7cbe\\u7ec6\\u5316\\u5de5\\u4ea7\\u54c1\\u8d28\\u91cf\\u76d1\\u7763\\u68c0\\u9a8c\\u7ad9\\u68c0\\u9a8c\\u5408\\u683c\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E8%BD%A6%E7%94%A8%E7%94%B2%E9%86%87&category%5Bid%5D=\"}', '2020-06-03 09:11:34', '2020-06-03 09:11:34'),
(541, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u8f66\\u7528\\u7532\\u9187\",\"category\":{\"id\":null}}', '2020-06-03 09:11:34', '2020-06-03 09:11:34'),
(542, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5de5\\u5382\\u5316\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:11:51', '2020-06-03 09:11:51'),
(543, 1, 'admin/articles/9/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:11:54', '2020-06-03 09:11:54'),
(544, 1, 'admin/articles/9', 'PUT', '1.190.203.218', '{\"title\":\"\\u5de5\\u5382\\u5316\\u538c\\u6c27\\u6cbc\\u6c14\\u53d1\\u7535\\u63a7\\u5236\\u7cfb\\u7edf\\u4eff\\u771f\\u5e73\\u53f0\\u7684\\u5f00\\u53d1\\u7814\\u7a76\",\"category_id\":\"19\",\"description\":\"\\u5de5\\u5382\\u5316\\u538c\\u6c27\\u6cbc\\u6c14\\u53d1\\u7535\\u63a7\\u5236\\u7cfb\\u7edf\\u4eff\\u771f\\u5e73\\u53f0\\u4ee5\\u52a0\\u62ff\\u5927\\u963f\\u5c14\\u4f2f\\u5854\\u7814\\u7a76\\u9662\\u96c6\\u6210\\u7caa\\u4fbf\\u7efc\\u5408\\u5229\\u7528\\u7cfb\\u7edf\\uff08IMUS\\uff09\\u8bbe\\u8ba1\\u5de5\\u827a\\u4e3a\\u57fa\\u7840\\uff0c\\u9488\\u5bf9\\u5de5\\u4e1a\\u5316\\u6cbc\\u6c14\\u53d1\\u7535\\u8fc7\\u7a0b\\u4e2d\\uff0c\\u538c\\u6c27\\u53d1\\u9175\\u5de5\\u827a\\u8fc7\\u7a0b\\u81ea\\u52a8\\u63a7\\u5236\\u7684\\u590d\\u6742\\u6027\\u548c\\u591a\\u6837\",\"content\":\"<p><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u201c\\u5de5\\u5382\\u5316\\u538c\\u6c27\\u6cbc\\u6c14\\u53d1\\u7535\\u63a7\\u5236\\u7cfb\\u7edf\\u4eff\\u771f\\u5e73\\u53f0\\u201d\\u4ee5\\u52a0\\u62ff\\u5927\\u963f\\u5c14\\u4f2f\\u5854\\u7814\\u7a76\\u9662\\u201c\\u96c6\\u6210\\u7caa\\u4fbf\\u7efc\\u5408\\u5229\\u7528\\u7cfb\\u7edf\\uff08IMUS\\uff09\\u201d\\u8bbe\\u8ba1\\u5de5\\u827a\\u4e3a\\u57fa\\u7840\\uff0c\\u9488\\u5bf9\\u5de5\\u4e1a\\u5316\\u6cbc\\u6c14\\u53d1\\u7535\\u8fc7\\u7a0b\\u4e2d\\uff0c\\u538c\\u6c27\\u53d1\\u9175\\u5de5\\u827a\\u8fc7\\u7a0b\\u81ea\\u52a8\\u63a7\\u5236\\u7684\\u590d\\u6742\\u6027\\u548c\\u591a\\u6837\\u6027\\uff0c\\u5efa\\u7acb\\u4e00\\u5957\\u9002\\u7528\\u4e8e\\u5de5\\u4e1a\\u5316\\u6cbc\\u6c14\\u53d1\\u7535\\u63a7\\u5236\\u7cfb\\u7edf\\u7684\\u538c\\u6c27\\u53d1\\u9175\\u8fc7\\u7a0b\\u4eff\\u771f\\u5e73\\u53f0\\u7cfb\\u7edf\\u3002\\u901a\\u8fc7\\u4eff\\u771f\\u5e73\\u53f0\\u7cfb\\u7edf\\u53ef\\u5728\\u5b9e\\u9a8c\\u5ba4\\u5185\\u5b9e\\u73b0\\u5b9e\\u9645\\u751f\\u4ea7\\u4e2d\\u5f88\\u96be\\u83b7\\u5f97\\u7684\\u6280\\u672f\\u6570\\u636e,\\u5e76\\u5bf9\\u5f00\\u53d1\\u9879\\u76ee\\u8fdb\\u884c\\u9884\\u8bc4\\u4f30\\uff0c\\u53ef\\u7f29\\u77ed\\u9879\\u76ee\\u5f00\\u53d1\\u5468\\u671f\\u3001\\u8282\\u7ea6\\u8bd5\\u9a8c\\u548c\\u8bbe\\u8ba1\\u8d39\\u7528\\u3001\\u964d\\u4f4e\\u5f00\\u53d1\\u98ce\\u9669\\u3002<\\/span><\\/p><p><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u5728\\u8bbe\\u8ba1\\u8fc7\\u7a0b\\u4e2d\\uff0c\\u5c06\\u9488\\u5bf9\\u751f\\u7269\\u53d1\\u9175\\u8fc7\\u7a0b\\u7684\\u65f6\\u53d8\\u6027\\u3001\\u975e\\u7ebf\\u6027\\u4ee5\\u53ca\\u63a7\\u5236\\u8fc7\\u7a0b\\u7684\\u590d\\u6742\\u6027\\uff0c\\u5e94\\u7528\\u5de5\\u5177\\u8f6f\\u4ef6\\u548c\\u6570\\u5b66\\u8ba1\\u7b97\\u65b9\\u6cd5\\u8fdb\\u884c\\u4eff\\u771f\\u5e73\\u53f0\\u7684\\u5f00\\u53d1\\uff0c\\u9879\\u76ee\\u91c7\\u7528LabVIEW\\u548cMATLAB\\u8bed\\u8a00\\u76f8\\u7ed3\\u5408\\u8fdb\\u884c\\u7cfb\\u7edf\\u8bbe\\u8ba1\\uff1b\\u4f9d\\u636e\\u751f\\u4ea7\\u8fc7\\u7a0b\\u4e0d\\u540c\\u63a7\\u5236\\u8282\\u70b9\\uff08\\u8fdb\\u51fa\\u6599\\u7684\\u60c5\\u51b5\\u3001\\u538b\\u529b\\u63a7\\u5236\\u3001\\u4ea7\\u6c14\\u7387\\u3001\\u6e29\\u5ea6\\u3001\\u5e95\\u7269\\u6d53\\u5ea6\\u3001\\u53d1\\u9175\\u53ca\\u6405\\u62cc\\u65f6\\u95f4\\u7b49\\uff09\\u7684\\u6280\\u672f\\u53c2\\u6570\\u8fdb\\u884c\\u66f2\\u7ebf\\u6a21\\u62df\\u4eff\\u771f\\uff0c\\u5e76\\u8bbe\\u8ba1\\u63a7\\u5236\\u6570\\u5b66\\u6a21\\u578b\\uff0c\\u5efa\\u7acb\\u5de5\\u5382\\u5316\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u6cbc\\u6c14\\u53d1\\u7535\\u8fc7\\u7a0b\\u63a7\\u5236\\u4eff\\u771f\\u5e73\\u53f0\\u3002\\u4eff\\u771f\\u5e73\\u53f0\\u901a\\u8fc7\\u5df2\\u77e5\\u7684\\u53c2\\u6570\\uff08\\u53d1\\u9175\\u6599\\u6db2\\u7684\\u4ea7\\u91cf\\u3001\\u73af\\u5883\\u6e29\\u5ea6\\u7684\\u53d8\\u5316\\u7b49\\uff09\\u8fdb\\u884c\\u6cbc\\u6c14\\u53d1\\u7535\\u88c5\\u7f6e\\u7684\\u53d1\\u9175\\u7f50\\u4f53\\u3001\\u53d1\\u7535\\u673a\\u7b49\\u4e3b\\u8981\\u8bbe\\u5907\\u7684\\u8bbe\\u8ba1\\u53c2\\u6570\\u8fdb\\u884c\\u9884\\u4f30\\u4eff\\u771f\\uff0c\\u4e3a\\u65b0\\u5efa\\u201c\\u5de5\\u5382\\u5316\\u538c\\u6c27\\u6cbc\\u6c14\\u53d1\\u7535\\u88c5\\u7f6e\\u201d\\u5efa\\u8bbe\\u63d0\\u4f9b\\u53c2\\u6570\\u4eff\\u771f\\u6a21\\u62df\\uff1b\\u901a\\u8fc7\\u4fee\\u6539\\u63a7\\u5236\\u8fc7\\u7a0b\\u7684\\u53c2\\u6570\\uff08\\u6e29\\u5ea6\\u3001\\u538b\\u529b\\u3001\\u5e95\\u7269\\u6d41\\u91cf\\u3001PH\\u503c\\u53d8\\u5316\\u3001\\u5e95\\u7269\\u6d53\\u5ea6\\u3001\\u53d1\\u9175\\u65f6\\u95f4\\u3001\\u6405\\u62cc\\u65f6\\u95f4\\u7b49\\uff09\\uff0c\\u5b9e\\u73b0\\u6cbc\\u6c14\\u4ea7\\u6c14\\u91cf\\u548c\\u4ea7\\u6c14\\u8d28\\u91cf\\u7684\\u53d8\\u5316\\u60c5\\u51b5\\u6a21\\u62df\\uff0c\\u63d0\\u4f9b\\u4ea7\\u6c14\\u91cf\\u53d8\\u5316\\u8fc7\\u7a0b\\u63a7\\u5236\\u4fee\\u6539\\u65b9\\u6848\\u3002<\\/span><\\/p><p><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u8be5\\u5e73\\u53f0\\u7cfb\\u7edf\\u4e00\\u65b9\\u9762\\u5b83\\u53ef\\u4ee5\\u4f9b\\u7814\\u7a76\\u8005\\u548c\\u5efa\\u8bbe\\u8005\\u5728\\u5206\\u6790\\u548c\\u6bd4\\u8f83\\u5404\\u79cd\\u63a7\\u5236\\u7b56\\u7565\\u548c\\u8bca\\u65ad\\u65b9\\u6cd5\\u65f6\\u4f7f\\u7528\\uff1b\\u53e6\\u4e00\\u65b9\\u9762\\u53ef\\u4ee5\\u6839\\u636e\\u793a\\u8303\\u5de5\\u7a0b\\u4e2d\\u53d6\\u5f97\\u7684\\u65b0\\u6210\\u679c\\u3001\\u6570\\u636e\\u3001\\u53d1\\u73b0\\u4ee5\\u53ca\\u65b0\\u5de5\\u827a\\u4e0d\\u65ad\\u5b8c\\u5584\\u6570\\u636e\\u5e73\\u53f0\\uff0c\\u4e3a\\u5de5\\u827a\\u8bbe\\u8ba1\\u63d0\\u4f9b\\u5e2e\\u52a9\\uff0c\\u4ee5\\u9002\\u5e94\\u65b0\\u7684\\u5de5\\u4e1a\\u9700\\u6c42\\u3002<\\/span><\\/p><p><span style=\\\"font-size: 20px\\\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \\u8be5\\u4eff\\u771f\\u5e73\\u53f0\\u7cfb\\u7edf\\u91c7\\u7528\\u56fd\\u5916\\u5148\\u8fdb\\u7684\\u6280\\u672f\\u5de5\\u827a\\u8fdb\\u884c\\u8bbe\\u8ba1\\uff0c\\u9488\\u5bf9\\u4e8e\\u5de5\\u5382\\u5316\\u538c\\u6c27\\u6cbc\\u6c14\\u53d1\\u7535\\u88c5\\u7f6e\\u8fdb\\u884c\\u8bbe\\u8ba1\\uff0c\\u5177\\u6709\\u9ad8\\u6548\\u7684\\u70ed\\u7535\\u8054\\u7528\\u70ed\\u56de\\u6536\\u5de5\\u827a\\uff0c\\u4e0d\\u6d88\\u8017\\u65b0\\u7684\\u5316\\u77f3\\u80fd\\u6e90\\uff0c\\u5c24\\u5176\\u9002\\u5408\\u9ad8\\u5bd2\\u5730\\u533a\\u8fdb\\u884c\\uff0c\\u5de5\\u827a\\u6c34\\u5e73\\u5904\\u4e8e\\u56fd\\u9645\\u5148\\u8fdb\\u6c34\\u5e73\\uff0c\\u5f00\\u53d1\\u5b8c\\u6210\\u540e\\u5c06\\u5bf9\\u56fd\\u5185\\u7684\\u5de5\\u5382\\u5316\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\u5efa\\u8bae\\u63d0\\u4f9b\\u501f\\u9274\\u4f9d\\u636e\\u3002\\u63a7\\u5236\\u7cfb\\u7edf\\u5728\\u751f\\u4ea7\\u8fc7\\u7a0b\\u4e2d\\uff0c\\u4e0d\\u4ea7\\u751f\\u4e8c\\u6b21\\u6c61\\u67d3\\uff0c\\u8fdb\\u51fa\\u6599\\u8fde\\u7eed\\u5316\\uff0c\\u63a7\\u5236\\u5355\\u5143\\u6a21\\u5757\\u5316\\uff0c\\u91c7\\u7528\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u5de5\\u827a\\uff0c\\u4ea7\\u6c14\\u7387\\u9ad8\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E5%B7%A5%E5%8E%82%E5%8C%96&category%5Bid%5D=\"}', '2020-06-03 09:12:06', '2020-06-03 09:12:06'),
(545, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5de5\\u5382\\u5316\",\"category\":{\"id\":null}}', '2020-06-03 09:12:06', '2020-06-03 09:12:06'),
(546, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u6280\\u672f\\u7279\\u70b9\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:12:19', '2020-06-03 09:12:19'),
(547, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u50ac\\u5316\\u5242\",\"category\":{\"id\":null}}', '2020-06-03 09:12:28', '2020-06-03 09:12:28'),
(548, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:12:31', '2020-06-03 09:12:31'),
(549, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u50ac\\u5316\\u5242\",\"category\":{\"id\":null}}', '2020-06-03 09:12:36', '2020-06-03 09:12:36'),
(550, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u90e8\\u5206\\u79d1\\u6280\\u6210\\u679c\\u6c47\\u7f16\\u76ee\\u5f55\",\"category\":{\"id\":null}}', '2020-06-03 09:12:47', '2020-06-03 09:12:47'),
(551, 1, 'admin/articles/147/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:12:49', '2020-06-03 09:12:49');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(552, 1, 'admin/articles/147', 'PUT', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662<\\/br>\\u90e8\\u5206\\u79d1\\u6280\\u6210\\u679c\\u6c47\\u7f16\\u76ee\\u5f55\\uff082008-2015\\uff09\",\"category_id\":\"19\",\"description\":\"\\u5e8f\\u53f7 \\u6210\\u679c\\u540d\\u79f0 \\u9274\\u5b9a\\u65f6\\u95f4 1 \\u6cb9\\u9875\\u5ca9\\u4f4e\\u6e29\\u70ed\\u89e3\\u6761\\u4ef6\\u5bf9\\u9875\\u5ca9\\u6cb9\\u6027\\u8d28\\u7684\\u5f71\\u54cd\\u7814\\u7a76 2015 2 \\u7164\\u4e0e\\u5e9f\\u5f03\\u6709\\u673a\\u5236\\u54c1\\u5171\\u7126\\u5316\\u6280\\u672f\\u5f00\\u53d1\\u4e0e\\u5e94\\u7528 2015 3 M25\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u5e94\\u7528\\u6280\\u672f\\u7814\\u7a76 2015 4 \\u5bd2\\u533a\\u519c\\u4e1a\\u56fa\\u4f53\\u5e9f\\u5f03\\u7269\\u9ad8\",\"content\":\"<table border=\\\"2\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:600px;\\\" width=\\\"452\\\"><colgroup><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><\\/colgroup><tbody><tr height=\\\"51\\\"><td height=\\\"51\\\" style=\\\"height: 51px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5e8f\\u53f7<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6210\\u679c\\u540d\\u79f0<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u9274\\u5b9a\\u65f6\\u95f4<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">1<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cb9\\u9875\\u5ca9\\u4f4e\\u6e29\\u70ed\\u89e3\\u6761\\u4ef6\\u5bf9\\u9875\\u5ca9\\u6cb9\\u6027\\u8d28\\u7684\\u5f71\\u54cd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u7164\\u4e0e\\u5e9f\\u5f03\\u6709\\u673a\\u5236\\u54c1\\u5171\\u7126\\u5316\\u6280\\u672f\\u5f00\\u53d1\\u4e0e\\u5e94\\u7528<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">3<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">M25\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u5e94\\u7528\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">4<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5bd2\\u533a\\u519c\\u4e1a\\u56fa\\u4f53\\u5e9f\\u5f03\\u7269\\u9ad8\\u503c\\u5316\\u5229\\u7528\\u5173\\u952e\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">5<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u91cd\\u8d28\\u6cb9\\u4e73\\u5316\\u5242\\u53ca\\u4e73\\u5316\\u65b9\\u5f0f\\u7684\\u4f18\\u5316\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">6<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4e73\\u5316\\u67f4\\u6cb9\\u63d0\\u9ad8\\u71c3\\u70e7\\u6548\\u7387\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">7<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4e00\\u79cd\\u4eb2\\u6c34\\u6027\\u65e0\\u7eba\\u5e03\\u7684\\u5236\\u5907\\u65b9\\u6cd5\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">8<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6c34\\u5305\\u6cb9\\u578b\\u4e73\\u5316\\u91cd\\u6cb9\\u7684\\u7a33\\u5b9a\\u6027\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">9<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u592a\\u9633\\u80fd\\u7b49\\u6e05\\u6d01\\u80fd\\u6e90\\u66ff\\u4ee3\\u5c0f\\u578b\\u71c3\\u7164\\u9505\\u7089\\u5efa\\u7b51\\u91c7\\u6696\\u7684\\u5173\\u952e\\u6280\\u672f\\u7814\\u7a76\\u53ca\\u793a\\u8303<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">10<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u592a\\u9633\\u80fd\\u7a7a\\u6c14\\u91c7\\u6696\\u667a\\u80fd\\u63a7\\u5236\\u88c5\\u7f6e\\u7684\\u5e94\\u7528\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">11<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u57fa\\u4e8e\\u201c\\u4e00\\u6751\\u4e00\\u5382\\u201d\\u751f\\u7269\\u8d28\\u52a0\\u5de5\\u548c\\u6e05\\u6d01\\u5229\\u7528\\u7684\\u5bd2\\u533a\\u201c\\u65e0\\u7164\\u751f\\u6001\\u6751\\u201d\\u5e94\\u7528\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">12<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4e2d\\u8bd5\\u6cbc\\u6c14\\u53d1\\u9175\\u7cfb\\u7edf\\u8282\\u80fd\\u63a7\\u5236\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">13<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u57fa\\u4e8eZigBee\\u548cWLAN\\u6280\\u672f\\u7684\\u4e2d\\u8bd5\\u6cbc\\u6c14\\u53d1\\u9175\\u76d1\\u6d4b\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">14<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cbc\\u6db2\\u56de\\u6d41\\u55b7\\u6dcb\\u5bf9\\u79f8\\u79c6\\u6cbc\\u6c14\\u4ea7\\u91cf\\u7684\\u5f71\\u54cd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">15<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u9178\\u9884\\u5904\\u7406\\u7389\\u7c73\\u79f8\\u79c6\\u4e0e\\u5976\\u725b\\u7caa\\u4fbf\\u6df7\\u5408\\u538c\\u6c27\\u6d88\\u5316\\u5de5\\u827a\\u4f18\\u5316\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">16<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4e09\\u5854\\u53d8\\u538b\\u5438\\u9644\\u6cbc\\u6c14\\u63d0\\u7eaf\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">17<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cbc\\u6db2\\u8d85\\u6ee4\\u819c\\u5206\\u79bb\\u6d53\\u7f29\\u65b9\\u6cd5\\u4f18\\u5316\\u53ca\\u819c\\u518d\\u751f\\u673a\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">18<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6db2\\u76f8\\u8272\\u8c31\\u6cd5\\u5206\\u6790\\u9e21\\u7caa\\u4e2d\\u6b8b\\u7559\\u56db\\u73af\\u7d20\\u7c7b\\u6297\\u751f\\u7d20\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">19<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u8c03\\u548c\\u56fd\\u2164\\u6807\\u51c6\\u8f66\\u7528\\u6c7d\\u6cb9\\u7684\\u6297\\u7206\\u5242\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">20<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u592a\\u9633\\u80fd\\u7a7a\\u6c14\\u91c7\\u6696\\u7cfb\\u7edf\\u7684\\u4f18\\u5316\\u63a7\\u5236\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">21<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u9875\\u5ca9\\u6cb9\\u52a0\\u6c22\\u7cbe\\u5236-\\u5ef6\\u8fdf\\u7126\\u5316\\u7ec4\\u5408\\u5de5\\u827a\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">22<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cbc\\u6c14\\u5de5\\u7a0b\\u8fdb\\u6599\\u56fa\\u542b\\u91cf\\u5728\\u7ebf\\u76d1\\u6d4b\\u65b9\\u6cd5\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">23<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u8f7b\\u8d28\\u6728\\u7126\\u6cb9\\u52a0\\u6c22\\u63d0\\u8d28\\u8f6c\\u5316\\u8fd0\\u8f93\\u71c3\\u6599\\u6cb9\\u8c03\\u548c\\u7ec4\\u5206\\u7684\\u5de5\\u827a\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">24<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5bd2\\u5730\\u6cbc\\u6c14\\u53d1\\u7535\\u673a\\u4f59\\u70ed\\u56de\\u6536\\u4eff\\u771f\\u4f18\\u5316\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">25<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u79f8\\u79c6\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fc7\\u7a0b\\u5173\\u952e\\u6280\\u672f\\u53c2\\u6570\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">26<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cbc\\u6db2\\u9ad8\\u6548\\u56de\\u7528\\u53ca\\u7efc\\u5408\\u5904\\u7406\\u5de5\\u827a\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">27<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cbc\\u6db2\\u56de\\u6d41\\u5bf9\\u725b\\u7caa\\u538c\\u6c27\\u53d1\\u9175\\u6cbc\\u6c14\\u4ea7\\u91cf\\u7684\\u5f71\\u54cd\\u53ca\\u673a\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">28<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u538c\\u6c27\\u53d1\\u9175\\u53cd\\u5e94\\u5668\\u6e29\\u5ea6\\u76d1\\u63a7\\u53ca\\u8865\\u507f\\u7cfb\\u7edf\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">29<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u590d\\u5408\\u8c03\\u8282\\u5242\\uff08\\u6da6\\u6ed1\\u6027\\u80fd\\uff09\\u4e2d\\u8bd5\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">30<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5229\\u7528\\u70bc\\u538290#\\u6c7d\\u6cb9\\u751f\\u4ea7\\u56fd\\u2163\\u6807\\u51c693#\\u6c7d\\u6cb9\\u7684\\u590d\\u5408\\u6dfb\\u52a0\\u5242\\u5e94\\u7528<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">31<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4ea7\\u6cb9\\u5fae\\u85fb\\u7684\\u4e00\\u4f53\\u5f0f\\u57f9\\u517b\\u53ca\\u67f4\\u6cb9\\u63d0\\u53d6\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">32<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4ece\\u5e9f\\u6e90\\u57f9\\u517b\\u7684\\u4ea7\\u6cb9\\u5fae\\u85fb\\u4e2d\\u63d0\\u53d6\\u751f\\u7269\\u67f4\\u6cb9\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">33<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u7532\\u9187\\u4e73\\u5316\\u67f4\\u6cb9\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">34<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5229\\u7528\\u9875\\u5ca9\\u6cb9\\u5236\\u53d6\\u6cb9\\u7802\\u5206\\u79bb\\u5242\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">35<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5168\\u998f\\u5206\\u9875\\u5ca9\\u6cb9\\u6539\\u8d28\\u8f6c\\u5316\\u8f7b\\u8d28\\u8fd0\\u8f93\\u71c3\\u6599\\u5de5\\u827a\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">36<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u819c\\u751f\\u7269\\u53cd\\u5e94\\u5668\\u4e2d\\u6539\\u6027\\u590d\\u5408\\u819c\\u7684\\u5236\\u5907\\u4e0e\\u6027\\u80fd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">37<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u8f66\\u7528\\u6c7d\\u6cb9\\u590d\\u5408\\u8c03\\u8282\\u5242\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">38<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cb9\\u9875\\u5ca9\\u4e2d\\u6709\\u673a\\u8d28\\u7684\\u5206\\u79bb\\u548c\\u5206\\u6790<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">39<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u53d1\\u9175\\u539f\\u6599\\u6c34\\u89e3\\u7387\\u5bf9\\u63d0\\u9ad8CSTR\\u53cd\\u5e94\\u5668\\u4ea7\\u6c14\\u7387\\u7684\\u673a\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">40<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5bd2\\u533a\\u725b\\u7caa\\u4e24\\u7ea7\\u538c\\u6c27\\u9ad8\\u6548\\u53d1\\u9175\\u5de5\\u827a\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">41<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4e0d\\u540c\\u6405\\u62cc\\u65b9\\u5f0f\\u5bf9\\u53cd\\u5e94\\u5668\\u4e0a\\u5c42\\u6d6e\\u6e23\\u5f71\\u54cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u4ea7\\u6c14\\u7387\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">42<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fc7\\u7a0b\\u4e2d\\u6cbc\\u6c14\\u51c0\\u5316\\u7cfb\\u7edf\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">43<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u57fa\\u4e8e\\u6df7\\u5408\\u6a21\\u578b\\u7684\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fc7\\u7a0b\\u53c2\\u91cf\\u76d1\\u6d4b<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">44<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u73af\\u6c27\\u6811\\u8102\\u56fa\\u5316\\u7a0b\\u5ea6\\u5728\\u7ebf\\u76d1\\u6d4b\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">45<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cbc\\u6c14\\u5de5\\u7a0b\\u65e0\\u7ebf\\u7f51\\u7edc\\u5316\\u7cfb\\u7edf\\u63a7\\u5236\\u4e0e\\u65b9\\u6cd5\\u8bbe\\u8ba1<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">46<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5de5\\u4e1a\\u5316\\u5c01\\u95ed\\u73af\\u5f0f\\u6cbc\\u6c14\\u3001\\u53d1\\u7535\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">47<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u96c6\\u6210\\u725b\\u7caa\\u4fbf\\u7efc\\u5408\\u5229\\u7528\\u7cfb\\u7edf\\uff08IMUS\\uff09\\u793a\\u8303\\u5de5\\u7a0b<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">48<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u751f\\u7269\\u8d28\\u8d44\\u6e90\\u7efc\\u5408\\u5229\\u7528\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">49<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u538c\\u6c27\\u6d88\\u5316\\u8fc7\\u7a0b\\u4e2d\\u53d1\\u9175\\u539f\\u6599\\u7684\\u4e0d\\u540c\\u6ede\\u7559\\u65f6\\u95f4\\u5bf9\\u53d1\\u9175\\u8fc7\\u7a0b\\u7684\\u5f71\\u54cd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">50<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u538c\\u6c27\\u53d1\\u9175\\u5de5\\u827a\\u8fc7\\u7a0b\\u4eff\\u771f\\u7cfb\\u7edf\\u7684\\u7814\\u5236<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">51<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u725b\\u7caa\\u78b1\\u6cd5\\u4e0e\\u751f\\u7269\\u6cd5\\u8054\\u5408\\u9884\\u5904\\u7406\\u65b9\\u6cd5\\u53ca\\u673a\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">52<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u7269\\u7406\\u53c2\\u6570\\u5bf9\\u63d0\\u9ad8\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u6027\\u80fd\\u5f71\\u54cd\\u673a\\u7406\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">53<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u63a5\\u79cd\\u7269\\u5bf9\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u6d88\\u5316\\u8fc7\\u7a0b\\u7684\\u5f71\\u54cd\\u673a\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">54<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5927\\u63ba\\u91cf\\u7532\\u9187\\u6c7d\\u6cb9\\u50ac\\u5316\\u71c3\\u70e7\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">55<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u6cb9\\u9875\\u5ca9\\u5206\\u5e03\\u53ca\\u542b\\u6cb9\\u7387\\u5206\\u6790\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">56<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5168\\u998f\\u5206\\u9875\\u5ca9\\u6cb9\\u6539\\u8d28\\u8f6c\\u5316\\u8f7b\\u8d28\\u8fd0\\u8f93\\u71c3\\u6599\\u5de5\\u827a\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">57<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">M15\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u590d\\u5408\\u6dfb\\u52a0\\u5242<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">58<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u52a0\\u62ff\\u5927\\u76f4\\u8d2e\\u70ed\\u592a\\u9633\\u80fd\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">59<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u03b3-\\u5c04\\u7ebf\\u8f90\\u7167\\u5bf9\\u725b\\u7caa\\u538c\\u6c27\\u6d88\\u5316\\u8fc7\\u7a0b\\u5f71\\u54cd\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">60<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u6d88\\u5316\\u52a8\\u529b\\u5b66\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">61<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5976\\u725b\\u573a\\u7caa\\u6c61\\u6c34\\u7efc\\u5408\\u5904\\u7406\\u5de5\\u827a\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">62<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u76f4\\u8d2e\\u70ed\\u592a\\u9633\\u80fd\\u6280\\u672f\\uff08DHS\\uff09\\u793a\\u8303\\u6e29\\u5ba4<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">63<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">M20\\u7532\\u9187\\u6c7d\\u6cb9\\u5de5\\u4e1a\\u5e94\\u7528\\u53ca\\u6027\\u80fd\\u8003\\u6838<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"19\\\"><td height=\\\"19\\\" style=\\\"height: 19px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">64<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u5de5\\u4e1a\\u71c3\\u7164\\u9505\\u7089\\u70df\\u6c14\\u51c0\\u5316\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">65<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u8910\\u7164\\u4f4e\\u6e29\\u50ac\\u5316\\u5236\\u6cb9\\u6c14\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">66<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u71c3\\u7164\\u9505\\u7089\\u50ac\\u5316\\u8131\\u786b\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">67<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u70df\\u6c14\\u4e2d\\u4e8c\\u6c27\\u5316\\u786b\\u50ac\\u5316\\u56fa\\u786b\\u6027\\u80fd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">68<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cb9\\u6c14\\u5206\\u79bb\\u7cfb\\u7edf\\u7684\\u7814\\u7a76\\u79d1\\u6280\\u6210\\u679c<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">69<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4e2d\\u56fd\\u52a0\\u62ff\\u5927\\u6cb9\\u7802\\u70bc\\u5236\\u6280\\u672f\\u5408\\u4f5c\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2011<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">70<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u673a\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2009<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">71<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cbc\\u6c14\\u751f\\u7269\\u8131\\u786b\\u673a\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2009<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">72<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u725b\\u7caa\\u538c\\u6c27\\u53d1\\u9175\\u5de5\\u827a\\u5173\\u952e\\u6280\\u672f\\u53c2\\u6570\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2009<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">73<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u6cbc\\u6c14\\u8131\\u786b\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2009<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">74<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u9ad8\\u5bd2\\u5730\\u533a\\u725b\\u7caa\\u9ad8\\u6e29\\u53d1\\u9175\\u5de5\\u827a\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2009<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">75<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u4ee5\\u6cbc\\u6c14\\u4e3a\\u7ebd\\u5e26\\u7684\\u751f\\u6001\\u519c\\u573a\\u6a21\\u5f0f\\u53ca\\u7ecf\\u6d4e\\u8bc4\\u4ef7\\u4f53\\u7cfb<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2008<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">76<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u7701\\u5c5e\\u79d1\\u7814\\u673a\\u6784\\u79d1\\u6280\\u5b75\\u5316\\u5668\\u5efa\\u8bbe<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2008<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 45px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">77<\\/span><\\/td><td style=\\\"width: 332px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\u9662\\u5c5e\\u79d1\\u7814\\u673a\\u6784\\u79d1\\u6280\\u5b75\\u5316\\u5668\\u5efa\\u8bbe\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"width: 76px; text-align: center;\\\"><span style=\\\"font-size:16px;\\\">2008<\\/span><\\/td><\\/tr><\\/tbody><\\/table><p><br\\/><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E9%83%A8%E5%88%86%E7%A7%91%E6%8A%80%E6%88%90%E6%9E%9C%E6%B1%87%E7%BC%96%E7%9B%AE%E5%BD%95&category%5Bid%5D=\"}', '2020-06-03 09:12:57', '2020-06-03 09:12:57'),
(553, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u90e8\\u5206\\u79d1\\u6280\\u6210\\u679c\\u6c47\\u7f16\\u76ee\\u5f55\",\"category\":{\"id\":null}}', '2020-06-03 09:12:57', '2020-06-03 09:12:57'),
(554, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5927\\u63ba\\u91cf\\u7532\\u9187\\u6c7d\\u6cb9\\u50ac\\u5316\\u71c3\\u70e7\\u6280\\u672f\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:13:33', '2020-06-03 09:13:33'),
(555, 1, 'admin/articles/13/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:13:35', '2020-06-03 09:13:35'),
(556, 1, 'admin/articles/13', 'PUT', '1.190.203.218', '{\"title\":\"\\u5927\\u63ba\\u91cf\\u7532\\u9187\\u6c7d\\u6cb9\\u50ac\\u5316\\u71c3\\u70e7\\u6280\\u672f\",\"category_id\":\"19\",\"description\":\"\\u6280\\u672f\\u7279\\u70b9: \\u50ac\\u5316\\u5242\\u5305\\u62ec\\u80fd\\u91cf\\u53ca\\u8f9b\\u70f7\\u503c\\u589e\\u5f3a\\u7ec4\\u4efd\\uff0c\\u81ea\\u6eb6\\u5408\\u7ec4\\u4efd\\u3001\\u5c3e\\u6c14\\u51c0\\u5316\\u7ec4\\u4efd\\u7b49\\u3002 M45\\u7532\\u9187\\u6c7d\\u6cb9\\u5408\\u6210\\u5de5\\u827a\\u7814\\u7a76\\uff0c\\u91c7\\u7528\\u5316\\u5b66\\u81ea\\u6eb6\\u5408\\u6280\\u672f\\uff0c\\u7532\\u9187\\u3001\\u50ac\\u5316\\u5242\\u3001\\u6c7d\\u6cb9\\u4e09\\u79cd\\u7269\\u8d28\\u4e0d\\u9700\\u8981\\u6405\\u62cc\\uff0c\\u5373\\u53ef\\u76f8\\u4e92\\u6eb6\",\"content\":\"<p><span style=\\\"font-size: 20px\\\">\\u6280\\u672f\\u7279\\u70b9:<\\/span><\\/p><p><span style=\\\"font-size: 20px\\\">1\\u3001\\u50ac\\u5316\\u5242\\u5305\\u62ec\\u80fd\\u91cf\\u53ca\\u8f9b\\u70f7\\u503c\\u589e\\u5f3a\\u7ec4\\u4efd\\uff0c\\u81ea\\u6eb6\\u5408\\u7ec4\\u4efd\\u3001\\u5c3e\\u6c14\\u51c0\\u5316\\u7ec4\\u4efd\\u7b49\\u3002<\\/span><\\/p><p><span style=\\\"font-size: 20px\\\">2\\u3001M45\\u7532\\u9187\\u6c7d\\u6cb9\\u5408\\u6210\\u5de5\\u827a\\u7814\\u7a76\\uff0c\\u91c7\\u7528\\u5316\\u5b66\\u81ea\\u6eb6\\u5408\\u6280\\u672f\\uff0c\\u7532\\u9187\\u3001\\u50ac\\u5316\\u5242\\u3001\\u6c7d\\u6cb9\\u4e09\\u79cd\\u7269\\u8d28\\u4e0d\\u9700\\u8981\\u6405\\u62cc\\uff0c\\u5373\\u53ef\\u76f8\\u4e92\\u6eb6\\u5408\\uff0c\\u589e\\u52a0\\u71c3\\u6599\\u7684\\u7a33\\u5b9a\\u6027\\u3002<\\/span><span style=\\\"font-size: 20px\\\">\\u4e0e\\u7eaf\\u6c7d\\u6cb9\\u53ca\\u4e59\\u9187\\u6c7d\\u6cb9\\u4e92\\u6eb6\\u6027\\u4f18\\u826f\\u3002<\\/span><\\/p><p><span style=\\\"font-size: 20px\\\">3\\u3001\\u4e0d\\u6539\\u52a8\\u53d1\\u52a8\\u673a\\u4f9b\\u6cb9\\u7cfb\\u7edf\\uff0c\\u53d1\\u52a8\\u673a\\u6b63\\u5e38\\u8fd0\\u884c\\u3002<\\/span><\\/p><p><span style=\\\"font-size: 20px\\\">4\\u3001\\u9ad8\\u3001\\u4f4e\\u6e29\\u542f\\u52a8\\u6b63\\u5e38,\\u65e0\\u4f4e\\u6e29\\u542f\\u52a8\\u56f0\\u96be,\\u9ad8\\u6e29\\u6c14\\u963b\\u73b0\\u8c61\\u3002<\\/span><\\/p><p><span style=\\\"font-size: 20px\\\">5\\u3001\\u53d1\\u52a8\\u673a\\u52a8\\u529b\\u6027\\u80fd\\u4e0e\\u4f7f\\u752893#\\u6c7d\\u6cb9\\u76f8\\u5f53\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E5%A4%A7%E6%8E%BA%E9%87%8F%E7%94%B2%E9%86%87%E6%B1%BD%E6%B2%B9%E5%82%AC%E5%8C%96%E7%87%83%E7%83%A7%E6%8A%80%E6%9C%AF&category%5Bid%5D=\"}', '2020-06-03 09:13:41', '2020-06-03 09:13:41'),
(557, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5927\\u63ba\\u91cf\\u7532\\u9187\\u6c7d\\u6cb9\\u50ac\\u5316\\u71c3\\u70e7\\u6280\\u672f\",\"category\":{\"id\":null}}', '2020-06-03 09:13:41', '2020-06-03 09:13:41'),
(558, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662 \\u8bba\\u6587\\u76ee\\u5f55\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:14:04', '2020-06-03 09:14:04'),
(559, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"2012-2015\",\"category\":{\"id\":null}}', '2020-06-03 09:14:12', '2020-06-03 09:14:12'),
(560, 1, 'admin/articles/149/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:14:14', '2020-06-03 09:14:14');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(561, 1, 'admin/articles/149', 'PUT', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662<\\/br>\\u8bba\\u6587\\u76ee\\u5f55\\uff082012-2015\\uff09\",\"category_id\":\"21\",\"description\":\"\\u5e8f\\u53f7 \\u6587\\u7ae0\\u540d\\u79f0 \\u7c7b\\u522b \\u671f\\u520a\\u540d \\u4f5c\\u8005 \\u53d1\\u8868\\u65f6\\u95f4 1 \\u6cbc\\u6c14\\u8131\\u78b3\\u63d0\\u7eaf\\u6280\\u672f\\u7814\\u7a76\\u8fdb\\u5c55 \\u4e00\\u822c \\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66 \\u6f58\\u826f;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;\\u738b\\u6b23;\\u5218\\u4f1f; 2015 2 \\u4f9d\\u5170\\u6cb9\\u9875\\u5ca9\\u9010\\u7ea7\\u6c27\\u5316\\/\\u8403\\u53d6\\u53ca\\u5176\\u4ea7\\u7269\\u7684\\u7ea2\\u5916\\u5206\\u6790 \\u4e00\\u822c \\u9ed1\\u9f99\",\"content\":\"<table border=\\\"2\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:600px;\\\" width=\\\"536\\\"><colgroup><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col span=\\\"2\\\" style=\\\"text-align: center;\\\"\\/><\\/colgroup><tbody><tr height=\\\"58\\\"><td height=\\\"58\\\" style=\\\"height: 58px; width: 39px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e8f\\u53f7<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6587\\u7ae0\\u540d\\u79f0<\\/span><\\/td><td style=\\\"width: 77px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7c7b\\u522b<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u671f\\u520a\\u540d<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4f5c\\u8005<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u8868\\u65f6\\u95f4<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">1<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u8131\\u78b3\\u63d0\\u7eaf\\u6280\\u672f\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6f58\\u826f;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;\\u738b\\u6b23;\\u5218\\u4f1f;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4f9d\\u5170\\u6cb9\\u9875\\u5ca9\\u9010\\u7ea7\\u6c27\\u5316\\/\\u8403\\u53d6\\u53ca\\u5176\\u4ea7\\u7269\\u7684\\u7ea2\\u5916\\u5206\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u6280\\u5927\\u5b66\\u5b66\\u62a5<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5434\\u9e4f;\\u5f20\\u661f\\u5b87;\\u5468\\u626c;\\u89e3\\u4e3d\\u840d;\\u6731\\u79c0\\u680b;\\u5b8b\\u5fae\\u5a1c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">3<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5fae\\u7c73\\u7a00\\u571f\\u7c89\\u4f53\\u8868\\u9762\\u6539\\u6027\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5510\\u8bd7\\u6d0b;\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u674e\\u5065;\\u9648\\u5e86\\u6d77;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">4<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bd2\\u5730\\u300aM25\\u8f66\\u7528\\u7164\\u57fa\\u7532\\u9187\\u6c7d\\u6cb9\\u300b\\u4f01\\u4e1a\\u6807\\u51c6<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5de5\\u7ba1\\u7406<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5510\\u8bd7\\u6d0b;\\u5218\\u5ca9;\\u5218\\u7ef4;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">5<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bd2\\u5730M25\\u8f66\\u7528(\\u7164\\u57fa)\\u7532\\u9187\\u6c7d\\u6cb9\\u6027\\u80fd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5510\\u8bd7\\u6d0b;\\u5218\\u5ca9;\\u674e\\u5065;\\u9648\\u5e86\\u6d77;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">6<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9875\\u5ca9\\u6cb9\\u6df1\\u52a0\\u5de5\\u4ea7\\u4e1a\\u53d1\\u5c55\\u8bc4\\u8ff0<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">7<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6c34\\u5305\\u6cb9\\u578b\\u4e73\\u5316\\u91cd\\u6cb9\\u7684\\u5236\\u5907\\u6761\\u4ef6\\u53ca\\u7a33\\u5b9a\\u6027\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u73a5;\\u5f20\\u5b87;\\u9a6c\\u5b81;\\u738b\\u5fd7\\u6210;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">8<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u57fa\\u4e8eZigBee\\u548cWLAN\\u6280\\u672f\\u7684\\u538c\\u6c27\\u53d1\\u9175\\u4e2d\\u8bd5\\u76d1\\u63a7\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u738b\\u94a2;\\u738b\\u7389\\u9e4f;\\u5468\\u95ef;\\u7f57\\u5411\\u4e1c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">9<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cb9\\u9875\\u5ca9\\u629a\\u987a\\u7089\\u4f4e\\u6e29\\u5e72\\u998f\\u7684\\u5f71\\u54cd\\u56e0\\u7d20\\u5206\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5468\\u626c;\\u9648\\u677e;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">10<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u53d1\\u9175\\u8fc7\\u7a0b\\u72b6\\u6001\\u76d1\\u63a7\\u7cfb\\u7edf\\u8bbe\\u8ba1<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u674e\\u798f\\u88ff;\\u738b\\u7389\\u9e4f;\\u5468\\u95ef;\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">11<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5206\\u5b50\\u5370\\u8ff9\\u56fa\\u76f8\\u8403\\u53d6\\u6280\\u672f\\u5728\\u6297\\u751f\\u7d20\\u68c0\\u6d4b\\u4e2d\\u7684\\u5e94\\u7528\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6768\\u5149;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;\\u9646\\u4f73;\\u6f58\\u826f;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">12<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6d45\\u8c08\\u6cbc\\u6db2\\u5904\\u7406\\u4e0e\\u7eb3\\u6ee4\\u819c\\u6280\\u672f<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u4f73;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;\\u5218\\u4f1f;\\u738b\\u6b23;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">13<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9875\\u5ca9\\u6cb9\\u9884\\u5904\\u7406\\u5236\\u53d6\\u52a0\\u6c22\\u539f\\u6599\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">14<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7d2b\\u5916\\u8f90\\u7167\\u63a5\\u679d\\u7532\\u57fa\\u4e19\\u70ef\\u9178\\u5bf9\\u65e0\\u7eba\\u5e03\\u6027\\u80fd\\u5f71\\u54cd\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u4e0e\\u9ecf\\u5408<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u73a5;\\u738b\\u5fd7\\u6210;\\u5f20\\u5b87;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">15<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5728\\u4fc4\\u7f57\\u65af\\u5883\\u5185\\u53d1\\u5c55\\u70bc\\u5316\\u4e00\\u4f53\\u5316\\u9879\\u76ee\\u7684\\u5de5\\u827a\\u8bba\\u8bc1<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">16<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d8\\u6027\\u68af\\u5ea6\\u51dd\\u80f6\\u7535\\u6cf3(DGGE)\\u6280\\u672f\\u5728\\u755c\\u79bd\\u7caa\\u4fbf\\u538c\\u6c27\\u53d1\\u9175\\u6db2\\u4e2d\\u7684\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u82cf\\u5c0f\\u7ea2;\\u90ed\\u5e7f\\u4eae;\\u5218\\u4f1f;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">17<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6db2\\u56de\\u6d41\\u5bf9\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u4ea7\\u6c14\\u6027\\u80fd\\u7684\\u5f71\\u54cd<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u82cf\\u5c0f\\u7ea2;\\u5218\\u4f1f;\\u738b\\u6b23;\\u90ed\\u5e7f\\u4eae;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">18<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79f8\\u79c6\\u538c\\u6c27\\u6d88\\u5316\\u9884\\u5904\\u7406\\u6280\\u672f\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u82cf\\u5c0f\\u7ea2;\\u90ed\\u5e7f\\u4eae;\\u5218\\u4f1f;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">19<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bd2\\u5730\\u6cbc\\u6c14\\u53d1\\u7535\\u673a\\u7ec4\\u4f59\\u70ed\\u56de\\u6536\\u7684\\u63a7\\u5236\\u7b56\\u7565\\u4e0e\\u8bbe\\u8ba1<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u81ea\\u52a8\\u5316\\u6280\\u672f\\u4e0e\\u5e94\\u7528<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;\\u738b\\u5fd7\\u6210;\\u738b\\u7389\\u9e4f;\\u5468\\u95ef;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">20<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u592a\\u9633\\u80fd\\u7a7a\\u6c14\\u91c7\\u6696\\u667a\\u80fd\\u63a7\\u5236\\u7cfb\\u7edf\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u738b\\u7389\\u9e4f;\\u5468\\u95ef;\\u7f57\\u5411\\u4e1c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">21<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6728\\u7126\\u6cb9\\u9884\\u5904\\u7406\\u5236\\u53d6\\u52a0\\u6c22\\u539f\\u6599\\u7684\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">22<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8f7b\\u8d28\\u6728\\u7126\\u6cb9\\u52a0\\u6c22\\u8131\\u6c27\\u7684\\u5f71\\u54cd\\u56e0\\u7d20<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">23<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4eb2\\u6c34\\u6027\\u65e0\\u7eba\\u5e03\\u590d\\u5408\\u819c\\u7684\\u5236\\u5907\\u53ca\\u6027\\u80fd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u4e0e\\u9ecf\\u5408<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u73a5;\\u738b\\u5fd7\\u6210;\\u5f20\\u5b87;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">24<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u300aM25\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u300b\\u4f01\\u4e1a\\u6807\\u51c6\\u89e3\\u8bfb<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u8f89;\\u5510\\u8bd7\\u6d0b;\\u5218\\u7ef4;\\u5218\\u5ca9;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">25<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u56fd\\u9645\\u6807\\u51c6GB 17930-2011\\/XG1-2012\\u300a\\u8f66\\u7528\\u6c7d\\u6cb9\\u300b\\u7684\\u80f6\\u8d28\\u6307\\u6807\\u89e3\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5510\\u8bd7\\u6d0b;\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">26<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9187\\u919a\\u71c3\\u6599\\u5728\\u8f66\\u7528\\u66ff\\u4ee3\\u80fd\\u6e90\\u4e2d\\u7684\\u53d1\\u5c55\\u8d8b\\u52bf<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u6d77\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">27<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8c03\\u548c\\u56fdIV\\u6807\\u51c6\\u8f66\\u7528\\u6c7d\\u6cb9\\u7684\\u6297\\u7206\\u5242\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5510\\u8bd7\\u6d0b;\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">28<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u77f3\\u6cb9\\u4ea7\\u54c1\\u8131\\u786b\\u6280\\u672f\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9a6c\\u5b81;\\u5f20\\u5b87;\\u5f20\\u73a5;\\u738b\\u5fd7\\u6210;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">29<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u751f\\u7269\\u67f4\\u6cb9\\u7684\\u5e94\\u7528\\u524d\\u666f<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9a6c\\u5b81;\\u5f20\\u73a5;\\u5f20\\u5b87;\\u738b\\u5fd7\\u6210;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">30<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u56fd\\u6709\\u5355\\u4f4d\\u79d1\\u6280\\u4eba\\u5458\\u57f9\\u517b\\u7684\\u5b9e\\u8df5\\u4e0e\\u601d\\u8003<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u6d77\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">31<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79d1\\u6280\\u8ba1\\u5212\\u9879\\u76ee\\u5168\\u8fc7\\u7a0b\\u7ba1\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5e06;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">32<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6211\\u56fd\\u79d1\\u6280\\u8ba1\\u5212\\u9879\\u76ee\\u7ba1\\u7406\\u73b0\\u72b6\\u4e0e\\u5bf9\\u7b56\\u5206\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u6d77\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">33<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79d1\\u7814\\u5355\\u4f4d\\u5bf9\\u79d1\\u7814\\u4eea\\u5668\\u8bbe\\u5907\\u7ba1\\u7406\\u65b9\\u6848<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5e06;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">34<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5fae\\u85fb\\u57f9\\u517b\\u6761\\u4ef6\\u4f18\\u5316\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u80fd\\u6e90\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5b87;\\u738b\\u5fd7\\u6210;\\u5f20\\u73a5;\\u9a6c\\u5b81;\\u5468\\u7ea2\\u971e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">35<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u6d6e\\u9009\\u6280\\u672f\\u5206\\u79bb\\u6cb9\\u7802\\u7684\\u5b9e\\u9a8c\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5468\\u626c;\\u9648\\u677e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">36<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u592a\\u9633\\u80fd\\u7a7a\\u6c14\\u96c6\\u70ed\\u63a7\\u5236\\u7cfb\\u7edf\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u80fd\\u6e90\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u9633;\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;\\u738b\\u7389\\u9e4f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">37<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u9175\\u539f\\u6599\\u6c34\\u89e3\\u7387\\u5bf9CSTR\\u53cd\\u5e94\\u5668\\u4ea7\\u6c14\\u7387\\u5f71\\u54cd\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u80fd\\u6e90\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u5218\\u4f1f;\\u5f90\\u6653\\u79cb;\\u8d75\\u5a34;\\u738b\\u7389\\u9e4f;\\u79e6\\u56fd\\u8f89;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">38<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u5de5\\u7a0b\\u5de5\\u827a\\u53c2\\u6570\\u7684\\u4f18\\u5316\\u6a21\\u578b\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u81ea\\u52a8\\u5316\\u6280\\u672f\\u4e0e\\u5e94\\u7528<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;\\u738b\\u7389\\u9e4f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">39<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e0d\\u540c\\u6405\\u62cc\\u65b9\\u5f0f\\u5bf9\\u6d6e\\u6e23\\u5c42\\u5f71\\u54cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u4ea7\\u6c14\\u7387\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u738b\\u7389\\u9e4f;\\u5218\\u4f1f;\\u82cf\\u5c0f\\u7ea2;\\u5f90\\u6653\\u79cb;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">40<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cb9\\u7802\\u5206\\u79bb\\u5242\\u7684\\u5b9e\\u9a8c\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5468\\u626c;\\u9648\\u677e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">41<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79d1\\u7814\\u6210\\u679c\\u8f6c\\u5316\\u4e2d\\u79d1\\u6280\\u7ba1\\u7406\\u90e8\\u95e8\\u4f5c\\u7528\\u7684\\u63a2\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5e06;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">42<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53cd\\u5e94\\u6761\\u4ef6\\u5bf9\\u8f7b\\u8d28\\u9875\\u5ca9\\u6cb9\\u52a0\\u6c22\\u8131\\u6c2e\\u6027\\u80fd\\u7684\\u5f71\\u54cd<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">43<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6211\\u56fd\\u4e2d\\u5c0f\\u4f01\\u4e1a\\u6280\\u672f\\u521b\\u65b0\\u7684\\u73b0\\u72b6\\u53ca\\u5bf9\\u7b56<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u6280\\u4fe1\\u606f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u6d77\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"18\\\"><td height=\\\"18\\\" style=\\\"height: 18px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">44<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5927\\u63ba\\u91cf\\u7532\\u9187\\u6c7d\\u6cb9\\u521d\\u6b65\\u63a2\\u8ba8<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u4e0e\\u9ecf\\u5408<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u5fd7\\u6210;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">45<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5f00\\u53d1\\u5229\\u7528\\u73b0\\u72b6<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5468\\u7ea2\\u971e;\\u738b\\u5fd7\\u6210;\\u9646\\u6d77\\u73b2;\\u5f20\\u5e06;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">46<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8f66\\u7528\\u9187\\u57fa\\u71c3\\u6599\\u53ca\\u5176\\u5e94\\u7528\\u6027\\u80fd\\u8bc4\\u4ef7<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">47<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u89e3\\u8bfb\\u65b0\\u4fee\\u8ba2\\u7684\\u300a\\u79d1\\u5b66\\u4e8b\\u4e1a\\u5355\\u4f4d\\u8d22\\u52a1\\u7ba1\\u7406\\u5236\\u5ea6\\u300b<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5173\\u6625\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">48<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5fae\\u85fb\\u7814\\u7a76\\u8fdb\\u5c55\\u53ca\\u4ea7\\u6cb9\\u7684\\u5f71\\u54cd\\u56e0\\u7d20<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5b87;\\u738b\\u5fd7\\u6210;\\u5f20\\u73a5;\\u5468\\u7ea2\\u971e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">49<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5168\\u998f\\u5206\\u9875\\u5ca9\\u6cb9\\u6539\\u8d28\\u8f6c\\u5316\\u8fd0\\u8f93\\u71c3\\u6599\\u6280\\u672f\\u8fdb\\u5c55\\u53ca\\u5176\\u8bc4\\u4ef7<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">50<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6c7d\\u6cb9\\u542b\\u786b\\u91cf\\u5bf9\\u6392\\u653e\\u7684\\u5f71\\u54cd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5510\\u8bd7\\u6d0b;\\u5218\\u5ca9;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">51<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\u6cbc\\u6c14\\u51c0\\u5316\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5218\\u4f1f;\\u738b\\u6b23;\\u5f90\\u6653\\u79cb;\\u8d75\\u5a34;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">52<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4f7f\\u7528\\u6570\\u5b66\\u65b9\\u6cd5\\u76d1\\u6d4b\\u70ed\\u56fa\\u6811\\u8102\\u56fa\\u5316\\u7a0b\\u5ea6\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79d1\\u6280\\u521b\\u65b0\\u4e0e\\u5e94\\u7528<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5218\\u65ed\\u4e39;\\u79e6\\u56fd\\u8f89;\\u738b\\u7389\\u9e4f;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">53<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\u7684\\u65e0\\u7ebf\\u76d1\\u6d4b\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;\\u738b\\u7389\\u9e4f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">54<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bd2\\u533a\\u725b\\u7caa\\u4e24\\u7ea7\\u538c\\u6c27\\u9ad8\\u6548\\u53d1\\u9175\\u5de5\\u827a\\u53c2\\u6570\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u5218\\u4f1f;\\u8d75\\u5a34;\\u738b\\u7389\\u9e4f;\\u79e6\\u56fd\\u8f89;\\u5218\\u65ed\\u4e39;\\u5f90\\u6653\\u79cb;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">55<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u57fa\\u4e8e\\u6700\\u5c0f\\u4e8c\\u4e58\\u5411\\u91cf\\u673a\\u7684\\u538c\\u6c27\\u53d1\\u9175\\u6cbc\\u6c14\\u4ea7\\u91cf\\u5efa\\u6a21\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u5218\\u4f1f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">56<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6df7\\u5408\\u5efa\\u6a21\\u65b9\\u6cd5\\u7814\\u7a76\\u53ca\\u5176\\u5728\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fc7\\u7a0b\\u4e2d\\u7684\\u76d1\\u6d4b\\u5e94\\u7528<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8303\\u5e86\\u4e3d;\\u79e6\\u56fd\\u8f89;\\u7ae0\\u529b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">57<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">Marathon 5kpro\\u590d\\u7528\\u5668\\u914d\\u7f6e\\u4ecb\\u7ecd<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97e9\\u6d9b;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">58<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ADWR\\u591a\\u666e\\u52d2\\u5929\\u6c14\\u96f7\\u8fbe\\u4f3a\\u670d\\u7cfb\\u7edf\\u6545\\u969c\\u5206\\u6790\\u4e0e\\u5904\\u7406<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97e9\\u6d9b;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">59<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u57fa\\u4e8e\\u5355\\u7247\\u673a\\u7684\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u7f50\\u6e29\\u5ea6\\u63a7\\u5236\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8d75\\u5a34;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">60<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">MTBE\\u7684\\u56fd\\u5185\\u5916\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97a0\\u6625\\u7ea2;\\u5f20\\u4f1f\\u541b;\\u674e\\u798f\\u88ff;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">61<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8910\\u7164\\u70ed\\u6c34\\u5e72\\u71e5\\u6539\\u8d28\\u540e\\u7684\\u6027\\u80fd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u4e0e\\u9ecf\\u5408<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97a0\\u6625\\u7ea2;\\u5f20\\u4f1f\\u541b;\\u738b\\u5fd7\\u6210;\\u674e\\u798f\\u88ff;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">62<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5149\\u50ac\\u5316\\u8fd8\\u539f\\u4e8c\\u6c27\\u5316\\u78b3\\u7684\\u53d1\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97a0\\u6625\\u7ea2;\\u5f20\\u4f1f\\u541b;\\u738b\\u5fd7\\u6210;\\u674e\\u798f\\u88ff;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">63<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">M15\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u590d\\u5408\\u6dfb\\u52a0\\u5242\\u7684\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">64<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bf9\\u6211\\u56fd\\u9187\\u919a\\u71c3\\u6599\\u4ea7\\u4e1a\\u7684\\u53d1\\u5c55\\u601d\\u8def\\u4e0e\\u5bf9\\u7b56\\u63a2\\u8ba8<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u519c\\u673a\\u4f7f\\u7528\\u4e0e\\u7ef4\\u4fee<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5218\\u5ca9;\\u5f20\\u6811\\u534e;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">65<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u81ed\\u6c27\\u52a9\\u71c3\\u6280\\u672f\\u5728\\u67f4\\u6cb9\\u53d1\\u52a8\\u673a\\u4e2d\\u7684\\u5e94\\u7528<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u519c\\u673a\\u4f7f\\u7528\\u4e0e\\u7ef4\\u4fee<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">66<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u86c7\\u7eb9\\u77f3\\u7c89\\u4f53\\u4f5c\\u4e3a\\u673a\\u68b0\\u6469\\u64e6\\u526f\\u78e8\\u635f\\u8868\\u9762\\u81ea\\u4fee\\u590d\\u6dfb\\u52a0\\u5242\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">67<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7126\\u5316\\u5e9f\\u6c34\\u4e2d\\u82ef\\u915a\\u542b\\u91cf\\u7684\\u6d4b\\u5b9a\\u65b9\\u6cd5\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e2d\\u56fd\\u7ed9\\u6c34\\u6392\\u6c34<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5b8f\\u68ee;\\u5468\\u56fd\\u6c5f;\\u5468\\u626c;\\u738b\\u5f66\\u5f6a;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">68<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8f66\\u7528\\u6c7d\\u6cb9\\u590d\\u5408\\u8c03\\u8282\\u5242\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">69<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5173\\u4e8e\\u8f66\\u7528\\u66ff\\u4ee3\\u71c3\\u6599\\u7684\\u53d1\\u5c55\\u72b6\\u51b5\\u4e0e\\u524d\\u666f\\u63a2\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u519c\\u673a\\u4f7f\\u7528\\u4e0e\\u7ef4\\u4fee<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">70<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5185\\u71c3\\u673a\\u66ff\\u4ee3\\u71c3\\u6599\\u7684\\u5c34\\u5c2c\\u5883\\u5730<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u519c\\u673a\\u4f7f\\u7528\\u4e0e\\u7ef4\\u4fee<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">71<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6405\\u62cc\\u65f6\\u95f4\\u5bf9\\u9ad8\\u56fa\\u542b\\u91cf\\u5976\\u725b\\u7caa\\u4fbf\\u9ad8\\u6e29\\u538c\\u6c27\\u6d88\\u5316\\u7684\\u5f71\\u54cd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u80fd\\u6e90\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5218\\u4f1f;\\u738b\\u6b23;\\u5f90\\u6653\\u79cb;\\u79e6\\u56fd\\u8f89;\\u738b\\u7389\\u9e4f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><\\/tbody><\\/table><p><br\\/><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=2012-2015&category%5Bid%5D=\"}', '2020-06-03 09:14:22', '2020-06-03 09:14:22');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(562, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"2012-2015\",\"category\":{\"id\":null}}', '2020-06-03 09:14:22', '2020-06-03 09:14:22'),
(563, 1, 'admin/articles/149/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:15:47', '2020-06-03 09:15:47');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(564, 1, 'admin/articles/149', 'PUT', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662<\\/br>\\u8bba\\u6587\\u76ee\\u5f55\\uff082012-2015\\uff09\",\"category_id\":\"21\",\"description\":\"\\u5e8f\\u53f7 \\u6587\\u7ae0\\u540d\\u79f0 \\u7c7b\\u522b \\u671f\\u520a\\u540d \\u4f5c\\u8005 \\u53d1\\u8868\\u65f6\\u95f4 1 \\u6cbc\\u6c14\\u8131\\u78b3\\u63d0\\u7eaf\\u6280\\u672f\\u7814\\u7a76\\u8fdb\\u5c55 \\u4e00\\u822c \\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66 \\u6f58\\u826f;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;\\u738b\\u6b23;\\u5218\\u4f1f; 2015 2 \\u4f9d\\u5170\\u6cb9\\u9875\\u5ca9\\u9010\\u7ea7\\u6c27\\u5316\\/\\u8403\\u53d6\\u53ca\\u5176\\u4ea7\\u7269\\u7684\\u7ea2\\u5916\\u5206\\u6790 \\u4e00\\u822c \\u9ed1\\u9f99\",\"content\":\"<table border=\\\"2\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:600px;\\\" width=\\\"536\\\"><colgroup><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col span=\\\"2\\\" style=\\\"text-align: center;\\\"\\/><\\/colgroup><tbody><tr height=\\\"58\\\"><td height=\\\"58\\\" style=\\\"height: 58px; width: 39px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e8f\\u53f7<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6587\\u7ae0\\u540d\\u79f0<\\/span><\\/td><td style=\\\"width: 77px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7c7b\\u522b<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u671f\\u520a\\u540d<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4f5c\\u8005<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u8868\\u65f6\\u95f4<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">1<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u8131\\u78b3\\u63d0\\u7eaf\\u6280\\u672f\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6f58\\u826f;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;\\u738b\\u6b23;\\u5218\\u4f1f;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4f9d\\u5170\\u6cb9\\u9875\\u5ca9\\u9010\\u7ea7\\u6c27\\u5316\\/\\u8403\\u53d6\\u53ca\\u5176\\u4ea7\\u7269\\u7684\\u7ea2\\u5916\\u5206\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u6280\\u5927\\u5b66\\u5b66\\u62a5<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5434\\u9e4f;\\u5f20\\u661f\\u5b87;\\u5468\\u626c;\\u89e3\\u4e3d\\u840d;\\u6731\\u79c0\\u680b;\\u5b8b\\u5fae\\u5a1c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">3<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5fae\\u7c73\\u7a00\\u571f\\u7c89\\u4f53\\u8868\\u9762\\u6539\\u6027\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5510\\u8bd7\\u6d0b;\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u674e\\u5065;\\u9648\\u5e86\\u6d77;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">4<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bd2\\u5730\\u300aM25\\u8f66\\u7528\\u7164\\u57fa\\u7532\\u9187\\u6c7d\\u6cb9\\u300b\\u4f01\\u4e1a\\u6807\\u51c6<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5de5\\u7ba1\\u7406<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5510\\u8bd7\\u6d0b;\\u5218\\u5ca9;\\u5218\\u7ef4;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">5<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bd2\\u5730M25\\u8f66\\u7528(\\u7164\\u57fa)\\u7532\\u9187\\u6c7d\\u6cb9\\u6027\\u80fd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5510\\u8bd7\\u6d0b;\\u5218\\u5ca9;\\u674e\\u5065;\\u9648\\u5e86\\u6d77;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">6<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9875\\u5ca9\\u6cb9\\u6df1\\u52a0\\u5de5\\u4ea7\\u4e1a\\u53d1\\u5c55\\u8bc4\\u8ff0<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">7<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6c34\\u5305\\u6cb9\\u578b\\u4e73\\u5316\\u91cd\\u6cb9\\u7684\\u5236\\u5907\\u6761\\u4ef6\\u53ca\\u7a33\\u5b9a\\u6027\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u73a5;\\u5f20\\u5b87;\\u9a6c\\u5b81;\\u738b\\u5fd7\\u6210;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">8<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u57fa\\u4e8eZigBee\\u548cWLAN\\u6280\\u672f\\u7684\\u538c\\u6c27\\u53d1\\u9175\\u4e2d\\u8bd5\\u76d1\\u63a7\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u738b\\u94a2;\\u738b\\u7389\\u9e4f;\\u5468\\u95ef;\\u7f57\\u5411\\u4e1c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">9<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cb9\\u9875\\u5ca9\\u629a\\u987a\\u7089\\u4f4e\\u6e29\\u5e72\\u998f\\u7684\\u5f71\\u54cd\\u56e0\\u7d20\\u5206\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5468\\u626c;\\u9648\\u677e;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">10<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u53d1\\u9175\\u8fc7\\u7a0b\\u72b6\\u6001\\u76d1\\u63a7\\u7cfb\\u7edf\\u8bbe\\u8ba1<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u674e\\u798f\\u88ff;\\u738b\\u7389\\u9e4f;\\u5468\\u95ef;\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">11<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5206\\u5b50\\u5370\\u8ff9\\u56fa\\u76f8\\u8403\\u53d6\\u6280\\u672f\\u5728\\u6297\\u751f\\u7d20\\u68c0\\u6d4b\\u4e2d\\u7684\\u5e94\\u7528\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6768\\u5149;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;\\u9646\\u4f73;\\u6f58\\u826f;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">12<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6d45\\u8c08\\u6cbc\\u6db2\\u5904\\u7406\\u4e0e\\u7eb3\\u6ee4\\u819c\\u6280\\u672f<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u4f73;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;\\u5218\\u4f1f;\\u738b\\u6b23;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">13<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9875\\u5ca9\\u6cb9\\u9884\\u5904\\u7406\\u5236\\u53d6\\u52a0\\u6c22\\u539f\\u6599\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">14<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7d2b\\u5916\\u8f90\\u7167\\u63a5\\u679d\\u7532\\u57fa\\u4e19\\u70ef\\u9178\\u5bf9\\u65e0\\u7eba\\u5e03\\u6027\\u80fd\\u5f71\\u54cd\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u4e0e\\u9ecf\\u5408<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u73a5;\\u738b\\u5fd7\\u6210;\\u5f20\\u5b87;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">15<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5728\\u4fc4\\u7f57\\u65af\\u5883\\u5185\\u53d1\\u5c55\\u70bc\\u5316\\u4e00\\u4f53\\u5316\\u9879\\u76ee\\u7684\\u5de5\\u827a\\u8bba\\u8bc1<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">16<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d8\\u6027\\u68af\\u5ea6\\u51dd\\u80f6\\u7535\\u6cf3(DGGE)\\u6280\\u672f\\u5728\\u755c\\u79bd\\u7caa\\u4fbf\\u538c\\u6c27\\u53d1\\u9175\\u6db2\\u4e2d\\u7684\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u82cf\\u5c0f\\u7ea2;\\u90ed\\u5e7f\\u4eae;\\u5218\\u4f1f;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">17<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6db2\\u56de\\u6d41\\u5bf9\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u4ea7\\u6c14\\u6027\\u80fd\\u7684\\u5f71\\u54cd<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u82cf\\u5c0f\\u7ea2;\\u5218\\u4f1f;\\u738b\\u6b23;\\u90ed\\u5e7f\\u4eae;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">18<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79f8\\u79c6\\u538c\\u6c27\\u6d88\\u5316\\u9884\\u5904\\u7406\\u6280\\u672f\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u82cf\\u5c0f\\u7ea2;\\u90ed\\u5e7f\\u4eae;\\u5218\\u4f1f;\\u5f90\\u6653\\u79cb;\\u9ad8\\u5fb7\\u7389;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">19<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bd2\\u5730\\u6cbc\\u6c14\\u53d1\\u7535\\u673a\\u7ec4\\u4f59\\u70ed\\u56de\\u6536\\u7684\\u63a7\\u5236\\u7b56\\u7565\\u4e0e\\u8bbe\\u8ba1<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u81ea\\u52a8\\u5316\\u6280\\u672f\\u4e0e\\u5e94\\u7528<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;\\u738b\\u5fd7\\u6210;\\u738b\\u7389\\u9e4f;\\u5468\\u95ef;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">20<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u592a\\u9633\\u80fd\\u7a7a\\u6c14\\u91c7\\u6696\\u667a\\u80fd\\u63a7\\u5236\\u7cfb\\u7edf\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u738b\\u7389\\u9e4f;\\u5468\\u95ef;\\u7f57\\u5411\\u4e1c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2015<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">21<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6728\\u7126\\u6cb9\\u9884\\u5904\\u7406\\u5236\\u53d6\\u52a0\\u6c22\\u539f\\u6599\\u7684\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">22<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8f7b\\u8d28\\u6728\\u7126\\u6cb9\\u52a0\\u6c22\\u8131\\u6c27\\u7684\\u5f71\\u54cd\\u56e0\\u7d20<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;\\u738b\\u6653\\u680b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">23<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4eb2\\u6c34\\u6027\\u65e0\\u7eba\\u5e03\\u590d\\u5408\\u819c\\u7684\\u5236\\u5907\\u53ca\\u6027\\u80fd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u4e0e\\u9ecf\\u5408<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u73a5;\\u738b\\u5fd7\\u6210;\\u5f20\\u5b87;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">24<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u300aM25\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u300b\\u4f01\\u4e1a\\u6807\\u51c6\\u89e3\\u8bfb<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u8f89;\\u5510\\u8bd7\\u6d0b;\\u5218\\u7ef4;\\u5218\\u5ca9;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">25<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u56fd\\u9645\\u6807\\u51c6GB 17930-2011\\/XG1-2012\\u300a\\u8f66\\u7528\\u6c7d\\u6cb9\\u300b\\u7684\\u80f6\\u8d28\\u6307\\u6807\\u89e3\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5510\\u8bd7\\u6d0b;\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">26<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9187\\u919a\\u71c3\\u6599\\u5728\\u8f66\\u7528\\u66ff\\u4ee3\\u80fd\\u6e90\\u4e2d\\u7684\\u53d1\\u5c55\\u8d8b\\u52bf<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u6d77\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">27<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8c03\\u548c\\u56fdIV\\u6807\\u51c6\\u8f66\\u7528\\u6c7d\\u6cb9\\u7684\\u6297\\u7206\\u5242\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5510\\u8bd7\\u6d0b;\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">28<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u77f3\\u6cb9\\u4ea7\\u54c1\\u8131\\u786b\\u6280\\u672f\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9a6c\\u5b81;\\u5f20\\u5b87;\\u5f20\\u73a5;\\u738b\\u5fd7\\u6210;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">29<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u751f\\u7269\\u67f4\\u6cb9\\u7684\\u5e94\\u7528\\u524d\\u666f<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9a6c\\u5b81;\\u5f20\\u73a5;\\u5f20\\u5b87;\\u738b\\u5fd7\\u6210;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">30<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u56fd\\u6709\\u5355\\u4f4d\\u79d1\\u6280\\u4eba\\u5458\\u57f9\\u517b\\u7684\\u5b9e\\u8df5\\u4e0e\\u601d\\u8003<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u6d77\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">31<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79d1\\u6280\\u8ba1\\u5212\\u9879\\u76ee\\u5168\\u8fc7\\u7a0b\\u7ba1\\u7406\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5e06;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">32<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6211\\u56fd\\u79d1\\u6280\\u8ba1\\u5212\\u9879\\u76ee\\u7ba1\\u7406\\u73b0\\u72b6\\u4e0e\\u5bf9\\u7b56\\u5206\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u6d77\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">33<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79d1\\u7814\\u5355\\u4f4d\\u5bf9\\u79d1\\u7814\\u4eea\\u5668\\u8bbe\\u5907\\u7ba1\\u7406\\u65b9\\u6848<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5e06;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">34<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5fae\\u85fb\\u57f9\\u517b\\u6761\\u4ef6\\u4f18\\u5316\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u80fd\\u6e90\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5b87;\\u738b\\u5fd7\\u6210;\\u5f20\\u73a5;\\u9a6c\\u5b81;\\u5468\\u7ea2\\u971e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">35<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u6d6e\\u9009\\u6280\\u672f\\u5206\\u79bb\\u6cb9\\u7802\\u7684\\u5b9e\\u9a8c\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5468\\u626c;\\u9648\\u677e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">36<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u592a\\u9633\\u80fd\\u7a7a\\u6c14\\u96c6\\u70ed\\u63a7\\u5236\\u7cfb\\u7edf\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u80fd\\u6e90\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u9633;\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;\\u738b\\u7389\\u9e4f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">37<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u9175\\u539f\\u6599\\u6c34\\u89e3\\u7387\\u5bf9CSTR\\u53cd\\u5e94\\u5668\\u4ea7\\u6c14\\u7387\\u5f71\\u54cd\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u80fd\\u6e90\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u5218\\u4f1f;\\u5f90\\u6653\\u79cb;\\u8d75\\u5a34;\\u738b\\u7389\\u9e4f;\\u79e6\\u56fd\\u8f89;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">38<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u5de5\\u7a0b\\u5de5\\u827a\\u53c2\\u6570\\u7684\\u4f18\\u5316\\u6a21\\u578b\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u81ea\\u52a8\\u5316\\u6280\\u672f\\u4e0e\\u5e94\\u7528<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;\\u738b\\u7389\\u9e4f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"90\\\"><td height=\\\"90\\\" style=\\\"height: 90px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">39<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e0d\\u540c\\u6405\\u62cc\\u65b9\\u5f0f\\u5bf9\\u6d6e\\u6e23\\u5c42\\u5f71\\u54cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u4ea7\\u6c14\\u7387\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u738b\\u7389\\u9e4f;\\u5218\\u4f1f;\\u82cf\\u5c0f\\u7ea2;\\u5f90\\u6653\\u79cb;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2014<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">40<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cb9\\u7802\\u5206\\u79bb\\u5242\\u7684\\u5b9e\\u9a8c\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5468\\u626c;\\u9648\\u677e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">41<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79d1\\u7814\\u6210\\u679c\\u8f6c\\u5316\\u4e2d\\u79d1\\u6280\\u7ba1\\u7406\\u90e8\\u95e8\\u4f5c\\u7528\\u7684\\u63a2\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5e06;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">42<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53cd\\u5e94\\u6761\\u4ef6\\u5bf9\\u8f7b\\u8d28\\u9875\\u5ca9\\u6cb9\\u52a0\\u6c22\\u8131\\u6c2e\\u6027\\u80fd\\u7684\\u5f71\\u54cd<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">43<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6211\\u56fd\\u4e2d\\u5c0f\\u4f01\\u4e1a\\u6280\\u672f\\u521b\\u65b0\\u7684\\u73b0\\u72b6\\u53ca\\u5bf9\\u7b56<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u6280\\u4fe1\\u606f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9646\\u6d77\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"18\\\"><td height=\\\"18\\\" style=\\\"height: 18px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">44<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5927\\u63ba\\u91cf\\u7532\\u9187\\u6c7d\\u6cb9\\u521d\\u6b65\\u63a2\\u8ba8<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u4e0e\\u9ecf\\u5408<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u5fd7\\u6210;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">45<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5f00\\u53d1\\u5229\\u7528\\u73b0\\u72b6<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5468\\u7ea2\\u971e;\\u738b\\u5fd7\\u6210;\\u9646\\u6d77\\u73b2;\\u5f20\\u5e06;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">46<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8f66\\u7528\\u9187\\u57fa\\u71c3\\u6599\\u53ca\\u5176\\u5e94\\u7528\\u6027\\u80fd\\u8bc4\\u4ef7<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">47<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u89e3\\u8bfb\\u65b0\\u4fee\\u8ba2\\u7684\\u300a\\u79d1\\u5b66\\u4e8b\\u4e1a\\u5355\\u4f4d\\u8d22\\u52a1\\u7ba1\\u7406\\u5236\\u5ea6\\u300b<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5173\\u6625\\u73b2;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">48<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5fae\\u85fb\\u7814\\u7a76\\u8fdb\\u5c55\\u53ca\\u4ea7\\u6cb9\\u7684\\u5f71\\u54cd\\u56e0\\u7d20<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5b87;\\u738b\\u5fd7\\u6210;\\u5f20\\u73a5;\\u5468\\u7ea2\\u971e;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">49<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5168\\u998f\\u5206\\u9875\\u5ca9\\u6cb9\\u6539\\u8d28\\u8f6c\\u5316\\u8fd0\\u8f93\\u71c3\\u6599\\u6280\\u672f\\u8fdb\\u5c55\\u53ca\\u5176\\u8bc4\\u4ef7<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9648\\u677e;\\u5468\\u626c;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">50<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6c7d\\u6cb9\\u542b\\u786b\\u91cf\\u5bf9\\u6392\\u653e\\u7684\\u5f71\\u54cd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5510\\u8bd7\\u6d0b;\\u5218\\u5ca9;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">51<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\u6cbc\\u6c14\\u51c0\\u5316\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5218\\u4f1f;\\u738b\\u6b23;\\u5f90\\u6653\\u79cb;\\u8d75\\u5a34;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">52<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4f7f\\u7528\\u6570\\u5b66\\u65b9\\u6cd5\\u76d1\\u6d4b\\u70ed\\u56fa\\u6811\\u8102\\u56fa\\u5316\\u7a0b\\u5ea6\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79d1\\u6280\\u521b\\u65b0\\u4e0e\\u5e94\\u7528<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5218\\u65ed\\u4e39;\\u79e6\\u56fd\\u8f89;\\u738b\\u7389\\u9e4f;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">53<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\u7684\\u65e0\\u7ebf\\u76d1\\u6d4b\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u7f57\\u5411\\u4e1c;\\u738b\\u7389\\u9e4f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">54<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bd2\\u533a\\u725b\\u7caa\\u4e24\\u7ea7\\u538c\\u6c27\\u9ad8\\u6548\\u53d1\\u9175\\u5de5\\u827a\\u53c2\\u6570\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u738b\\u6b23;\\u5218\\u4f1f;\\u8d75\\u5a34;\\u738b\\u7389\\u9e4f;\\u79e6\\u56fd\\u8f89;\\u5218\\u65ed\\u4e39;\\u5f90\\u6653\\u79cb;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">55<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u57fa\\u4e8e\\u6700\\u5c0f\\u4e8c\\u4e58\\u5411\\u91cf\\u673a\\u7684\\u538c\\u6c27\\u53d1\\u9175\\u6cbc\\u6c14\\u4ea7\\u91cf\\u5efa\\u6a21\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u79e6\\u56fd\\u8f89;\\u5218\\u4f1f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">56<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6df7\\u5408\\u5efa\\u6a21\\u65b9\\u6cd5\\u7814\\u7a76\\u53ca\\u5176\\u5728\\u725b\\u7caa\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fc7\\u7a0b\\u4e2d\\u7684\\u76d1\\u6d4b\\u5e94\\u7528<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8303\\u5e86\\u4e3d;\\u79e6\\u56fd\\u8f89;\\u7ae0\\u529b;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">57<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">Marathon 5kpro\\u590d\\u7528\\u5668\\u914d\\u7f6e\\u4ecb\\u7ecd<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97e9\\u6d9b;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">58<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ADWR\\u591a\\u666e\\u52d2\\u5929\\u6c14\\u96f7\\u8fbe\\u4f3a\\u670d\\u7cfb\\u7edf\\u6545\\u969c\\u5206\\u6790\\u4e0e\\u5904\\u7406<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97e9\\u6d9b;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"36\\\"><td height=\\\"36\\\" style=\\\"height: 36px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">59<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u57fa\\u4e8e\\u5355\\u7247\\u673a\\u7684\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u7f50\\u6e29\\u5ea6\\u63a7\\u5236\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8d75\\u5a34;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2013<\\/span><\\/td><\\/tr><tr height=\\\"54\\\"><td height=\\\"54\\\" style=\\\"height: 55px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">60<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">MTBE\\u7684\\u56fd\\u5185\\u5916\\u7814\\u7a76\\u8fdb\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97a0\\u6625\\u7ea2;\\u5f20\\u4f1f\\u541b;\\u674e\\u798f\\u88ff;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">61<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8910\\u7164\\u70ed\\u6c34\\u5e72\\u71e5\\u6539\\u8d28\\u540e\\u7684\\u6027\\u80fd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u4e0e\\u9ecf\\u5408<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97a0\\u6625\\u7ea2;\\u5f20\\u4f1f\\u541b;\\u738b\\u5fd7\\u6210;\\u674e\\u798f\\u88ff;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">62<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5149\\u50ac\\u5316\\u8fd8\\u539f\\u4e8c\\u6c27\\u5316\\u78b3\\u7684\\u53d1\\u5c55<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u9ed1\\u9f99\\u6c5f\\u79d1\\u5b66<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u97a0\\u6625\\u7ea2;\\u5f20\\u4f1f\\u541b;\\u738b\\u5fd7\\u6210;\\u674e\\u798f\\u88ff;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">63<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">M15\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u590d\\u5408\\u6dfb\\u52a0\\u5242\\u7684\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">64<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5bf9\\u6211\\u56fd\\u9187\\u919a\\u71c3\\u6599\\u4ea7\\u4e1a\\u7684\\u53d1\\u5c55\\u601d\\u8def\\u4e0e\\u5bf9\\u7b56\\u63a2\\u8ba8<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u519c\\u673a\\u4f7f\\u7528\\u4e0e\\u7ef4\\u4fee<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5218\\u5ca9;\\u5f20\\u6811\\u534e;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">65<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u81ed\\u6c27\\u52a9\\u71c3\\u6280\\u672f\\u5728\\u67f4\\u6cb9\\u53d1\\u52a8\\u673a\\u4e2d\\u7684\\u5e94\\u7528<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u519c\\u673a\\u4f7f\\u7528\\u4e0e\\u7ef4\\u4fee<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">66<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u86c7\\u7eb9\\u77f3\\u7c89\\u4f53\\u4f5c\\u4e3a\\u673a\\u68b0\\u6469\\u64e6\\u526f\\u78e8\\u635f\\u8868\\u9762\\u81ea\\u4fee\\u590d\\u6dfb\\u52a0\\u5242\\u7684\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">67<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7126\\u5316\\u5e9f\\u6c34\\u4e2d\\u82ef\\u915a\\u542b\\u91cf\\u7684\\u6d4b\\u5b9a\\u65b9\\u6cd5\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e2d\\u56fd\\u7ed9\\u6c34\\u6392\\u6c34<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u5b8f\\u68ee;\\u5468\\u56fd\\u6c5f;\\u5468\\u626c;\\u738b\\u5f66\\u5f6a;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">68<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8f66\\u7528\\u6c7d\\u6cb9\\u590d\\u5408\\u8c03\\u8282\\u5242\\u6280\\u672f\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6838\\u5fc3<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5316\\u5b66\\u5de5\\u7a0b\\u5e08<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">69<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5173\\u4e8e\\u8f66\\u7528\\u66ff\\u4ee3\\u71c3\\u6599\\u7684\\u53d1\\u5c55\\u72b6\\u51b5\\u4e0e\\u524d\\u666f\\u63a2\\u6790<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u519c\\u673a\\u4f7f\\u7528\\u4e0e\\u7ef4\\u4fee<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"72\\\"><td height=\\\"72\\\" style=\\\"height: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">70<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5185\\u71c3\\u673a\\u66ff\\u4ee3\\u71c3\\u6599\\u7684\\u5c34\\u5c2c\\u5883\\u5730<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u519c\\u673a\\u4f7f\\u7528\\u4e0e\\u7ef4\\u4fee<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5f20\\u6811\\u534e;\\u5218\\u5ca9;\\u5510\\u8bd7\\u6d0b;\\u674e\\u5065;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><tr height=\\\"108\\\"><td height=\\\"108\\\" style=\\\"height: 108px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">71<\\/span><\\/td><td style=\\\"width: 179px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6405\\u62cc\\u65f6\\u95f4\\u5bf9\\u9ad8\\u56fa\\u542b\\u91cf\\u5976\\u725b\\u7caa\\u4fbf\\u9ad8\\u6e29\\u538c\\u6c27\\u6d88\\u5316\\u7684\\u5f71\\u54cd\\u7814\\u7a76<\\/span><\\/td><td style=\\\"text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u822c<\\/span><\\/td><td style=\\\"width: 99px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e94\\u7528\\u80fd\\u6e90\\u6280\\u672f<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5218\\u4f1f;\\u738b\\u6b23;\\u5f90\\u6653\\u79cb;\\u79e6\\u56fd\\u8f89;\\u738b\\u7389\\u9e4f;\\u5218\\u65ed\\u4e39;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2012<\\/span><\\/td><\\/tr><\\/tbody><\\/table><p><br\\/><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=2012-2015&category%5Bid%5D=\"}', '2020-06-03 09:15:55', '2020-06-03 09:15:55');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(565, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"2012-2015\",\"category\":{\"id\":null}}', '2020-06-03 09:15:55', '2020-06-03 09:15:55'),
(566, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"2008-2015\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:16:05', '2020-06-03 09:16:05'),
(567, 1, 'admin/articles/148/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:16:07', '2020-06-03 09:16:07'),
(568, 1, 'admin/articles/148', 'PUT', '1.190.203.218', '{\"title\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662<\\/br>\\u4e13\\u5229\\u76ee\\u5f55\\uff082008-2015\\uff09\",\"category_id\":\"21\",\"description\":\"\\u5e8f\\u53f7 \\u4e13\\u5229\\u540d\\u79f0 \\u4e13\\u5229\\u53f7 \\u7c7b\\u578b 1 \\u5229\\u7528\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf\\u5bf9\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u76d1\\u6d4b\\u7684\\u65b9\\u6cd5 ZL201310364454.2 \\u53d1\\u660e\\u4e13\\u5229 2 \\u4e00\\u79cd\\u57fa\\u4e8e\\u6cbc\\u6c14\\u53d1\\u7535\\u7684\\u4f59\\u70ed\\u56de\\u6536\\u5229\\u7528\\u7cfb\\u7edf ZL201310\",\"content\":\"<table border=\\\"2\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width:600px;\\\" width=\\\"474\\\"><colgroup><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><col style=\\\"text-align: center;\\\"\\/><\\/colgroup><tbody><tr height=\\\"43\\\"><td height=\\\"43\\\" style=\\\"height: 43px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5e8f\\u53f7<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e13\\u5229\\u540d\\u79f0<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e13\\u5229\\u53f7<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7c7b\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"77\\\"><td height=\\\"77\\\" style=\\\"height: 77px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">1<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5229\\u7528\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf\\u5bf9\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u76d1\\u6d4b\\u7684\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310364454.2<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">2<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u57fa\\u4e8e\\u6cbc\\u6c14\\u53d1\\u7535\\u7684\\u4f59\\u70ed\\u56de\\u6536\\u5229\\u7528\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310674344.6<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">3<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u8f66\\u7528\\u71c3\\u6599\\u6cb9\\u6297\\u6c34\\u590d\\u5408\\u6dfb\\u52a0\\u5242<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201410445460.5<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">4<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u542b\\u8d85\\u7ec6\\u7a00\\u571f\\u7c89\\u4f53\\u6da6\\u6ed1\\u6cb9\\u6dfb\\u52a0\\u5242<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310631999.5<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">5<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8f66\\u7528\\u6c7d\\u6cb9\\u590d\\u5408\\u8c03\\u8282\\u5242<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310140441.7<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">6<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u6709\\u673a\\u65e0\\u7070\\u7c7bM15\\u8f66\\u7528\\u7532\\u9187\\u6c7d\\u6cb9\\u590d\\u5408\\u6dfb\\u52a0\\u5242<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201210258097.7<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">7<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u91c7\\u7528\\u5168\\u998f\\u5206\\u9875\\u5ca9\\u6cb9\\u751f\\u4ea7\\u4f4e\\u786b\\u4f4e\\u51dd\\u67f4\\u6cb9\\u7684\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310484593.9<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">8<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6cbc\\u6c14\\u65cb\\u8f6c\\u51b7\\u51dd\\u7684\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310381690.5<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">9<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6405\\u62cc\\u7834\\u58f3\\u4e8e\\u4e00\\u4f53\\u7684\\u53d1\\u9175\\u53cd\\u5e94\\u5668<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310367177<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"58\\\"><td height=\\\"58\\\" style=\\\"height: 58px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">10<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6539\\u6027\\u805a\\u5bf9\\u82ef\\u4e8c\\u7532\\u9178\\u4e59\\u4e8c\\u9187\\u916f\\u65e0\\u7eba\\u5e03\\u590d\\u5408\\u819c\\u7684\\u5236\\u5907\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310484592.4<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">11<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7532\\u9187\\u4e73\\u5316\\u67f4\\u6cb9\\u53ca\\u5176\\u5236\\u5907\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201410091283.5<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">12<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u5229\\u7528\\u5564\\u9152\\u5382\\u6c61\\u6c34\\u57f9\\u517b\\u4ea7\\u6cb9\\u5fae\\u85fb\\u7684\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201310625139.0<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">13<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u57fa\\u4e8e\\u6cbc\\u6c14\\u53d1\\u7535\\u7684\\u4f59\\u70ed\\u56de\\u6536\\u5229\\u7528\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310674345<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">14<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6e29\\u5ea6\\u81ea\\u63a7\\u98ce\\u529b\\u5236\\u70ed\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310692604<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"77\\\"><td height=\\\"77\\\" style=\\\"height: 77px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">15<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u73af\\u6c27\\u6811\\u8102\\u56fa\\u5316\\u7a0b\\u5ea6\\u5728\\u7ebf\\u76d1\\u63a7\\u7cfb\\u7edf\\u53ca\\u91c7\\u7528\\u8be5\\u7cfb\\u7edf\\u5bf9\\u73af\\u6c27\\u6811\\u8102\\u56fa\\u5316\\u7a0b\\u5ea6\\u76d1\\u63a7\\u7684\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310511396<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">16<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u592a\\u9633\\u80fd\\u96c6\\u70ed\\u63a7\\u5236\\u7cfb\\u7edf\\u53ca\\u5176\\u96c6\\u70ed\\u63a7\\u5236\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310421572<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">17<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53ef\\u6d4b\\u5b9a\\u51fa\\u6599\\u4f4d\\u7f6e\\u7684CSTR\\u53cd\\u5e94\\u5668<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310470071<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"77\\\"><td height=\\\"77\\\" style=\\\"height: 77px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">18<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5229\\u7528\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf\\u5bf9\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u76d1\\u6d4b\\u7684\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310364454<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">19<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u538c\\u6c27\\u53d1\\u9175\\u5206\\u6bb5\\u63a7\\u6e29\\u7cfb\\u7edf\\u53ca\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310364456<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">20<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6cbc\\u6c14\\u65cb\\u8f6c\\u51b7\\u51dd\\u7684\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310381691<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">21<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6405\\u62cc\\u7834\\u58f3\\u4e8e\\u4e00\\u4f53\\u7684\\u53d1\\u9175\\u53cd\\u5e94\\u5668\\u53ca\\u6405\\u62cc\\u7834\\u58f3\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201310367177<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">22<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8054\\u5408\\u4f7f\\u7528\\u7684\\u538c\\u6c27\\u53d1\\u9175\\u53cd\\u5e94\\u5668<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201210338447<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"58\\\"><td height=\\\"58\\\" style=\\\"height: 58px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">23<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u538c\\u6c27\\u53d1\\u9175\\u7f50\\u4f53\\u6cbc\\u6c14\\u8d2e\\u91cf\\u7684\\u6d4b\\u91cf\\u65b9\\u6cd5\\u53ca\\u5b9e\\u73b0\\u8be5\\u65b9\\u6cd5\\u7684\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201110078502<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"58\\\"><td height=\\\"58\\\" style=\\\"height: 58px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">24<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u539f\\u6599\\u9884\\u5904\\u7406\\u88c5\\u7f6e\\u53ca\\u5229\\u7528\\u8be5\\u88c5\\u7f6e\\u5b9e\\u73b0\\u6cbc\\u6c14\\u6536\\u96c6\\u7684\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201110058808<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">25<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u5229\\u7528\\u592a\\u9633\\u80fd\\u7684\\u76f4\\u8d2e\\u70ed\\u538c\\u6c27\\u6d88\\u5316\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201110056367<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">26<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u538c\\u6c27\\u5f80\\u590d\\u6298\\u6d41\\u590d\\u5408\\u6d88\\u5316\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201110042375<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">27<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u7528\\u4e8e\\u725b\\u573a\\u6c61\\u6c34\\u5904\\u7406\\u7684\\u4e8c\\u6b21\\u538c\\u6c27\\u6d88\\u5316\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201010611390<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">28<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd60Co\\u03b3-\\u5c04\\u7ebf\\u8f90\\u7167\\u725b\\u7caa\\u63d0\\u9ad8\\u6cbc\\u6c14\\u4ea7\\u91cf\\u7684\\u65b9\\u6cd5<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u3000<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53d1\\u660e\\u4e13\\u5229<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">29<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53ef\\u6d4b\\u5b9a\\u51fa\\u6599\\u4f4d\\u7f6e\\u7684CSTR\\u53cd\\u5e94\\u5668<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201320623818<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">30<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u7684\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201320509482<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">31<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u8054\\u5408\\u4f7f\\u7528\\u7684\\u538c\\u6c27\\u53d1\\u9175\\u53cd\\u5e94\\u5668<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201220466304<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">32<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6cbc\\u6c14\\u53d1\\u9175\\u8fc7\\u7a0b\\u72b6\\u6001\\u68c0\\u6d4b\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420711902.1<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">33<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u592a\\u9633\\u80fd\\u7a7a\\u6c14\\u667a\\u80fd\\u91c7\\u6696\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420688401.6<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">34<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u538c\\u6c27\\u53d1\\u9175\\u5206\\u6bb5\\u63a7\\u6e29\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201320509483.9<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">35<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u7684\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201320509482.4&nbsp;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">36<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u592a\\u9633\\u80fd\\u96c6\\u70ed\\u63a7\\u5236\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201320573185.6<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">37<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u57fa\\u4e8eBuck\\u53d8\\u6362\\u5668\\u7684\\u65e0\\u5237\\u76f4\\u6d41\\u7535\\u673a\\u9a71\\u52a8\\u7535\\u8def<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420663823.8<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">38<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u65e0\\u5237\\u76f4\\u6d41\\u7535\\u673a\\u53cd\\u7535\\u52a8\\u52bf\\u4e09\\u6b21\\u8c10\\u6ce2\\u68c0\\u6d4b\\u7535\\u8def<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420678192.7<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">39<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420670351.9<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">40<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u592a\\u9633\\u80fd\\u52a9\\u529b\\u5f0f\\u98ce\\u529b\\u53d1\\u7535\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420759477.3<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">41<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7535\\u7ebf\\u56fa\\u5b9a\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420711843.8<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">42<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u5e26\\u6709\\u4f9b\\u70ed\\u7cfb\\u7edf\\u7684\\u6052\\u6e29\\u5efa\\u7b51<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420697172.4&nbsp;<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">43<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u5e26\\u6709\\u6cbc\\u6db2\\u56de\\u6d41\\u7ba1\\u7ebf\\u7684\\u755c\\u79bd\\u7caa\\u4fbf\\u538c\\u6c27\\u53d1\\u9175\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420697135.3<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">44<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u5229\\u7528\\u56de\\u6536\\u7684\\u6cbc\\u6db2\\u55b7\\u6dcb\\u79f8\\u79c6\\u7684\\u5e72\\u5f0f\\u538c\\u6c27\\u53d1\\u9175\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420707710.3<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">45<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420670351.9<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">46<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u53ef\\u6d4b\\u5b9a\\u51fa\\u6599\\u4f4d\\u7f6e\\u7684CSTR\\u53cd\\u5e94\\u5668<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201320623817.5<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">47<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6cbc\\u6c14\\u65cb\\u8f6c\\u51b7\\u51dd\\u7684\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201320529632.8<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">48<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6405\\u62cc\\u7834\\u58f3\\u4e8e\\u4e00\\u4f53\\u7684\\u53d1\\u9175\\u53cd\\u5e94\\u5668<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201320512530.5<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">49<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4ea7\\u6cb9\\u5fae\\u85fb\\u7684\\u4e00\\u4f53\\u5f0f\\u57f9\\u517b\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">ZL201420312552.1<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">50<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u592a\\u9633\\u80fd\\u96c6\\u70ed\\u63a7\\u5236\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201320573186<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">51<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u538c\\u6c27\\u53d1\\u9175\\u5206\\u6bb5\\u63a7\\u6e29\\u7cfb\\u7edf<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201320509484<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"20\\\"><td height=\\\"20\\\" style=\\\"height: 20px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">52<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6cbc\\u6c14\\u65cb\\u8f6c\\u51b7\\u51dd\\u7684\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201320529633<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">53<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u6405\\u62cc\\u7834\\u58f3\\u4e8e\\u4e00\\u4f53\\u7684\\u53d1\\u9175\\u53cd\\u5e94\\u5668<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201320512531<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">54<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u538c\\u6c27\\u5f80\\u590d\\u6298\\u6d41\\u590d\\u5408\\u6d88\\u5316\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201120045415<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"58\\\"><td height=\\\"58\\\" style=\\\"height: 58px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">55<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u4e00\\u79cd\\u7528\\u4e8e\\u725b\\u573a\\u6c61\\u6c34\\u6c89\\u964d\\u51c0\\u5316\\u5904\\u7406\\u7684\\u4e8c\\u6b21\\u538c\\u6c27\\u6d88\\u5316\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">201020686844<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><tr height=\\\"39\\\"><td height=\\\"39\\\" style=\\\"height: 39px; width: 46px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">56<\\/span><\\/td><td style=\\\"width: 215px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u7528\\u4e8e\\u6052\\u6e29\\u5b9e\\u9a8c\\u5ba4\\u7684\\u76f8\\u8f6c\\u53d8\\u592a\\u9633\\u80fd\\u8d2e\\u70ed\\u88c5\\u7f6e<\\/span><\\/td><td style=\\\"width: 140px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">200920317606<\\/span><\\/td><td style=\\\"width: 72px; text-align: center;\\\"><span style=\\\"font-size:14px;\\\">\\u5b9e\\u7528\\u65b0\\u578b<\\/span><\\/td><\\/tr><\\/tbody><\\/table><p><br\\/><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=2008-2015&category%5Bid%5D=\"}', '2020-06-03 09:16:13', '2020-06-03 09:16:13'),
(569, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"2008-2015\",\"category\":{\"id\":null}}', '2020-06-03 09:16:13', '2020-06-03 09:16:13'),
(570, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u7684\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:16:29', '2020-06-03 09:16:29'),
(571, 1, 'admin/articles/100/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:16:32', '2020-06-03 09:16:32'),
(572, 1, 'admin/articles/100', 'PUT', '1.190.203.218', '{\"title\":\"\\u4e13\\u5229\\u300a\\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u7684\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf\\u300b\",\"category_id\":\"21\",\"description\":\"\\u4e13\\u5229\\u540d\\u79f0 \\u7533\\u8bf7\\u53f7 \\u6388 \\u6743 \\u65f6 \\u95f4 \\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u7684\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf\\uff08\\u5b9e\\u7528\\u65b0\\u578b\\uff0c\\u5f90\\u6653\\u79cb\\uff09 201320509482.4 2014.1.15\",\"content\":\"<table border=\\\"1\\\" cellpadding=\\\"0\\\" cellspacing=\\\"0\\\" style=\\\"width: 675px; height: 82px\\\"><tbody><tr><td style=\\\"width: 281px; height: 38px\\\"><span style=\\\"font-size: 22px\\\">\\u4e13\\u5229\\u540d\\u79f0<\\/span><\\/td><td style=\\\"width: 132px; height: 38px\\\"><span style=\\\"font-size: 22px\\\">\\u7533\\u8bf7\\u53f7<\\/span><\\/td><td style=\\\"width: 107px; height: 38px\\\"><span style=\\\"font-size: 22px\\\">\\u6388 \\u6743 \\u65f6 \\u95f4<\\/span><\\/td><\\/tr><tr><td style=\\\"width: 281px; height: 38px\\\"><span style=\\\"font-size: 22px\\\">\\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u7684\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf\\uff08\\u5b9e\\u7528\\u65b0\\u578b\\uff0c\\u5f90\\u6653\\u79cb\\uff09<\\/span><\\/td><td style=\\\"width: 132px; height: 38px\\\"><span style=\\\"font-size: 22px\\\">201320509482.4<\\/span><\\/td><td style=\\\"width: 107px; height: 38px\\\"><span style=\\\"font-size: 22px\\\">2014.1.15<\\/span><\\/td><\\/tr><\\/tbody><\\/table>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E4%B8%80%E7%A7%8D%E9%AB%98%E6%B8%A9%E5%8E%8C%E6%B0%A7%E5%8F%91%E9%85%B5%E8%BF%90%E8%A1%8C%E5%8F%82%E6%95%B0%E7%9A%84%E6%97%A0%E7%BA%BF%E5%AE%9E%E6%97%B6%E7%9B%91%E6%B5%8B%E7%B3%BB%E7%BB%9F&category%5Bid%5D=\"}', '2020-06-03 09:16:39', '2020-06-03 09:16:39'),
(573, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u4e00\\u79cd\\u9ad8\\u6e29\\u538c\\u6c27\\u53d1\\u9175\\u8fd0\\u884c\\u53c2\\u6570\\u7684\\u65e0\\u7ebf\\u5b9e\\u65f6\\u76d1\\u6d4b\\u7cfb\\u7edf\",\"category\":{\"id\":null}}', '2020-06-03 09:16:39', '2020-06-03 09:16:39'),
(574, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u7b80\\u4ecb\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:16:52', '2020-06-03 09:16:52'),
(575, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:16:56', '2020-06-03 09:16:56');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(576, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E7%AE%80%E4%BB%8B&category%5Bid%5D=\"}', '2020-06-03 09:17:04', '2020-06-03 09:17:04'),
(577, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-03 09:17:04', '2020-06-03 09:17:04'),
(578, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\"}', '2020-06-03 09:18:15', '2020-06-03 09:18:15'),
(579, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-03 09:18:15', '2020-06-03 09:18:15'),
(580, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\"}', '2020-06-03 09:18:31', '2020-06-03 09:18:31'),
(581, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-03 09:18:31', '2020-06-03 09:18:31'),
(582, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:19:46', '2020-06-03 09:19:46'),
(583, 1, 'admin/links/1/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:19:49', '2020-06-03 09:19:49'),
(584, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:19:51', '2020-06-03 09:19:51'),
(585, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:20:49', '2020-06-03 09:20:49'),
(586, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u7b80\\u4ecb\",\"category\":{\"id\":null}}', '2020-06-03 09:20:55', '2020-06-03 09:20:55'),
(587, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:20:58', '2020-06-03 09:20:58'),
(588, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E7%AE%80%E4%BB%8B&category%5Bid%5D=\"}', '2020-06-03 09:21:32', '2020-06-03 09:21:32'),
(589, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-03 09:21:32', '2020-06-03 09:21:32'),
(590, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\"}', '2020-06-03 09:21:41', '2020-06-03 09:21:41'),
(591, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-03 09:21:41', '2020-06-03 09:21:41');
INSERT INTO `admin_operation_log` (`id`, `user_id`, `path`, `method`, `ip`, `input`, `created_at`, `updated_at`) VALUES
(592, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\"}', '2020-06-03 09:23:31', '2020-06-03 09:23:31'),
(593, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:23:31', '2020-06-03 09:23:31'),
(594, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u7b80\\u4ecb\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:23:40', '2020-06-03 09:23:40'),
(595, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:23:41', '2020-06-03 09:23:41'),
(596, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?title=%E7%AE%80%E4%BB%8B&category%5Bid%5D=\"}', '2020-06-03 09:23:46', '2020-06-03 09:23:46'),
(597, 1, 'admin/articles/255/edit', 'GET', '1.190.203.218', '[]', '2020-06-03 09:23:46', '2020-06-03 09:23:46'),
(598, 1, 'admin/articles/255', 'PUT', '1.190.203.218', '{\"title\":\"\\u80fd\\u6e90\\u9662\\u7b80\\u4ecb\",\"category_id\":\"2\",\"description\":\"\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\",\"content\":\"<h1 style=\\\"text-align: center\\\"><span style=\\\"font-size:26px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u7b80\\u4ecb<\\/span><\\/h1><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp;\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u521b\\u5efa\\u4e8e1995\\u5e74\\uff0c\\u524d\\u8eab\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u8282\\u6cb9\\u6280\\u672f\\u5f00\\u53d1\\u4e2d\\u5fc3\\u201d\\uff0c\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u5385\\uff0c2003\\u5e74\\u66f4\\u540d\\u4e3a\\u201c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u201d\\u30022010\\u5e74\\u96b6\\u5c5e\\u4e8e\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u5b66\\u9662\\uff0c\\u5c5e\\u516c\\u76ca\\u4e00\\u7c7b\\u4e8b\\u4e1a\\u5355\\u4f4d\\u3002<\\/span><\\/p><p><span style=\\\"font-size:28px;\\\">&nbsp; &nbsp; &nbsp; &nbsp; \\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u662f\\u4e00\\u4e2a\\u57fa\\u7840\\u7814\\u7a76\\u4e0e\\u5e94\\u7528\\u7814\\u7a76\\u5e76\\u91cd\\u3001\\u516c\\u76ca\\u670d\\u52a1\\u4e0e\\u6280\\u672f\\u521b\\u65b0\\u76f8\\u7ed3\\u5408\\u7684\\u7efc\\u5408\\u6027\\u7814\\u7a76\\u9662\\u3002\\u4e8c\\u5341\\u591a\\u5e74\\u6765\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u6839\\u636e\\u5730\\u57df\\u7279\\u70b9\\uff0c\\u4e0d\\u65ad\\u5b8c\\u5584\\u5b66\\u79d1\\u4f53\\u7cfb\\uff0c\\u7a33\\u6b65\\u63d0\\u9ad8\\u79d1\\u7814\\u6c34\\u5e73\\uff0c\\u5f62\\u6210\\u4e86\\u9c9c\\u660e\\u7684\\u79d1\\u7814\\u7279\\u8272\\u3002\\u5176\\u804c\\u80fd\\u4e3a\\u201c\\u56f4\\u7ed5\\u56fd\\u5bb6\\u91cd\\u5927\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u9ed1\\u9f99\\u6c5f\\u7701\\u653f\\u5e9c\\u51b3\\u7b56\\u548c\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\u7684\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u5728\\u73af\\u5883\\u5de5\\u7a0b\\u3001\\u4e00\\u6b21\\u80fd\\u6e90\\u3001\\u4e8c\\u6b21\\u80fd\\u6e90\\u7b49\\u5b66\\u79d1\\u9886\\u57df\\u5f00\\u5c55\\u57fa\\u7840\\u6027\\u3001\\u7cfb\\u7edf\\u6027\\u548c\\u524d\\u77bb\\u6027\\u7814\\u7a76\\uff0c\\u638c\\u63e1\\u548c\\u7a81\\u7834\\u5173\\u952e\\u6838\\u5fc3\\u6280\\u672f\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u6218\\u7565\\u3001\\u7ecf\\u6d4e\\u548c\\u793e\\u4f1a\\u53d1\\u5c55\\u63d0\\u4f9b\\u79d1\\u6280\\u652f\\u6491\\u201d\\u3002\\u62e5\\u6709\\u80fd\\u6e90\\u5316\\u5b66\\u7701\\u7ea7\\u9886\\u519b\\u4eba\\u624d\\u68af\\u961f\\u548c\\u9ed1\\u9f99\\u6c5f\\u7701\\u71c3\\u6cb9\\u71c3\\u7164\\u6e05\\u6d01\\u80fd\\u6e90\\u91cd\\u70b9\\u5b9e\\u9a8c\\u5ba4\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fd1\\u5e74\\u6765\\u5f62\\u6210\\u4e86\\u80fd\\u6e90\\u5316\\u5b66\\u3001\\u751f\\u7269\\u8d28\\u80fd\\u548c\\u56fa\\u5e9f\\u5904\\u7406\\u4e0e\\u73af\\u5883\\u6539\\u5584\\u4e09\\u4e2a\\u5b66\\u79d1\\u9886\\u57df\\u516d\\u4e2a\\u91cd\\u70b9\\u7814\\u7a76\\u65b9\\u5411\\u7684\\u79d1\\u7814\\u4f53\\u7cfb\\u3002\\u5728\\u9ed1\\u9f99\\u6c5f\\u7701\\u5efa\\u6210\\u4e86\\u9996\\u5ea7\\u53ef\\u5168\\u5e74\\u8fde\\u7eed\\u7a33\\u5b9a\\u8fd0\\u884c\\u7684\\u5927\\u578b\\u6cbc\\u6c14\\u53d1\\u7535\\u5de5\\u7a0b\\uff0c\\u5728\\u50ac\\u5316\\u6cb9\\u6d46\\u5236\\u5907\\u65b0\\u6750\\u6599\\u5f62\\u6210\\u6280\\u672f\\u521b\\u65b0\\uff0c\\u5728\\u6cb9\\u9875\\u5ca9\\u7efc\\u5408\\u5229\\u7528\\u5f62\\u6210\\u6280\\u672f\\u50a8\\u5907\\u3002\\u5728\\u7164\\u77f8\\u77f3\\u5904\\u7406\\u3001\\u5ba4\\u5185\\u7a7a\\u6c14\\u8d28\\u91cf\\u6539\\u5584\\u3001\\u519c\\u6751\\u5783\\u573e\\u3001\\u5395\\u6240\\u9769\\u547d\\u3001\\u79f8\\u79c6\\u56fa\\u4f53\\u71c3\\u6599\\u7b49\\u65b9\\u5411\\u79ef\\u6781\\u4e0e\\u56fd\\u5185\\u77e5\\u540d\\u9ad8\\u6821\\u3001\\u79d1\\u7814\\u9662\\u6240\\u548c\\u4f01\\u4e1a\\u5f00\\u5c55\\u8054\\u5408\\uff0c\\u5927\\u529b\\u63a8\\u8fdb\\u5e9f\\u5f03\\u7269\\u5904\\u7406\\u6280\\u672f\\u8054\\u5408\\u7814\\u53d1\\u548c\\u6210\\u679c\\u843d\\u5730\\uff0c\\u6539\\u5584\\u519c\\u6751\\u548c\\u57ce\\u5e02\\u73af\\u5883\\uff0c\\u52a9\\u63a8\\u6c61\\u67d3\\u9632\\u6cbb\\u653b\\u575a\\u6218\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u5efa\\u9662\\u4ee5\\u6765\\uff0c\\u7d2f\\u8ba1\\u5b8c\\u6210\\u56fd\\u5bb6\\u653b\\u5173\\u9879\\u76ee4\\u9879\\uff0c\\u79d1\\u6280\\u90e8\\u56fd\\u9645\\u79d1\\u6280\\u5408\\u4f5c\\u9879\\u76ee2\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u91cd\\u5927\\u9879\\u76ee1\\u9879\\uff0c\\u9ed1\\u9f99\\u6c5f\\u7701\\u79d1\\u6280\\u653b\\u5173\\u9879\\u76ee11\\u9879\\uff0c\\u7701\\u81ea\\u7136\\u79d1\\u5b66\\u57fa\\u91d12\\u9879\\uff0c\\u5404\\u7ea7\\u79d1\\u7814\\u9879\\u76ee120\\u4f59\\u9879\\u3002\\u83b7\\u5f97\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u53d1\\u660e\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e2d\\u56fd\\u77f3\\u6cb9\\u548c\\u5316\\u5b66\\u534f\\u4f1a\\u79d1\\u6280\\u8fdb\\u6b65\\u4e8c\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u6280\\u8fdb\\u6b65\\u4e09\\u7b49\\u59561\\u9879\\uff0c\\u7701\\u79d1\\u5b66\\u9662\\u79d1\\u6280\\u8fdb\\u6b65\\u4e00\\u7b49\\u59562\\u9879\\uff0c\\u4e8c\\u7b49\\u59561\\u9879\\uff1b\\u83b7\\u5f97\\u56fd\\u5bb6\\u4e13\\u5229100\\u4f59\\u9879\\uff1b\\u53d1\\u8868\\u79d1\\u6280\\u8bba\\u6587200\\u4f59\\u7bc7\\u3002<br\\/>&nbsp; &nbsp; &nbsp; &nbsp; \\u8fdb\\u5165\\u65b0\\u65f6\\u4ee3\\u7684\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\uff0c\\u5c06\\u201c\\u4e0d\\u5fd8\\u521d\\u5fc3\\uff0c\\u7262\\u8bb0\\u4f7f\\u547d\\u201d\\uff0c\\u9762\\u5411\\u653f\\u5e9c\\u6218\\u7565\\u9700\\u6c42\\uff0c\\u9762\\u5411\\u6280\\u672f\\u521b\\u65b0\\u524d\\u6cbf\\uff0c\\u9762\\u5411\\u516c\\u76ca\\u4e8b\\u4e1a\\u53d1\\u5c55\\uff0c\\u901a\\u8fc7\\u201c\\u534f\\u540c\\u521b\\u65b0\\u3001\\u5f00\\u653e\\u5408\\u4f5c\\u201d\\u7684\\u529e\\u9662\\u7406\\u5ff5\\uff0c\\u63a8\\u52a8\\u9ad8\\u8d28\\u91cf\\u53d1\\u5c55\\uff0c\\u4e3a\\u9ed1\\u9f99\\u6c5f\\u7701\\u5728\\u80fd\\u6e90\\u548c\\u73af\\u5883\\u9886\\u57df\\u7684\\u5168\\u65b9\\u4f4d\\u53d1\\u5c55\\u63d0\\u4f9b\\u6280\\u672f\\u5f15\\u9886\\uff0c\\u4e3a\\u56fd\\u5bb6\\u548c\\u5730\\u65b9\\u7ecf\\u6d4e\\u3001\\u793e\\u4f1a\\u53d1\\u5c55\\u505a\\u51fa\\u5e94\\u6709\\u7684\\u8d21\\u732e\\u3002<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\"}', '2020-06-03 09:24:21', '2020-06-03 09:24:21'),
(599, 1, 'admin/articles', 'GET', '1.190.203.218', '[]', '2020-06-03 09:24:21', '2020-06-03 09:24:21'),
(600, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5f90 \\u6653 \\u79cb\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:25:03', '2020-06-03 09:25:03'),
(601, 1, 'admin/articles/266/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:25:05', '2020-06-03 09:25:05'),
(602, 1, 'admin/articles/266', 'PUT', '1.190.203.218', '{\"title\":\"\\u5f90 \\u6653 \\u79cb\",\"category_id\":\"4\",\"description\":\"\\u4e2d\\u5171\\u515a\\u5458\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u9662\\u957f\\u3001\\u515a\\u59d4\\u4e66\\u8bb0\\r\\n\\u7814\\u7a76\\u5458\\u7ea7\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08\",\"content\":\"<p><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u4e2d\\u5171\\u515a\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u9662\\u957f\\u3001\\u515a\\u59d4\\u4e66\\u8bb0<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u7814\\u7a76\\u5458\\u7ea7\\u9ad8\\u7ea7\\u5de5\\u7a0b\\u5e08<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?title=%E5%BE%90+%E6%99%93+%E7%A7%8B&category%5Bid%5D=\"}', '2020-06-03 09:25:12', '2020-06-03 09:25:12'),
(603, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5f90 \\u6653 \\u79cb\",\"category\":{\"id\":null}}', '2020-06-03 09:25:12', '2020-06-03 09:25:12'),
(604, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5173 \\u6625 \\u73b2\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:25:22', '2020-06-03 09:25:22'),
(605, 1, 'admin/articles/267/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:25:23', '2020-06-03 09:25:23'),
(606, 1, 'admin/articles/267', 'PUT', '1.190.203.218', '{\"title\":\"\\u5173 \\u6625 \\u73b2\",\"category_id\":\"4\",\"description\":\"\\u4e2d\\u5171\\u515a\\u5458\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458\\r\\n\\u9ad8\\u7ea7\\u4f1a\\u8ba1\\u5e08\",\"content\":\"<p><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u4e2d\\u5171\\u515a\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ad8\\u7ea7\\u4f1a\\u8ba1\\u5e08<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E5%85%B3+%E6%98%A5+%E7%8E%B2&category%5Bid%5D=\"}', '2020-06-03 09:25:29', '2020-06-03 09:25:29'),
(607, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5173 \\u6625 \\u73b2\",\"category\":{\"id\":null}}', '2020-06-03 09:25:29', '2020-06-03 09:25:29'),
(608, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5218 \\u4f1f\",\"category\":{\"id\":null},\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:25:37', '2020-06-03 09:25:37'),
(609, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u5218\\u4f1f\",\"category\":{\"id\":null}}', '2020-06-03 09:25:40', '2020-06-03 09:25:40'),
(610, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\",\"title\":\"\\u5218\",\"category\":{\"id\":null}}', '2020-06-03 09:25:43', '2020-06-03 09:25:43'),
(611, 1, 'admin/articles/268/edit', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-03 09:25:45', '2020-06-03 09:25:45'),
(612, 1, 'admin/articles/268', 'PUT', '1.190.203.218', '{\"title\":\"\\u5218 \\u4f1f\",\"category_id\":\"4\",\"description\":\"\\u4e2d\\u5171\\u515a\\u5458\\r\\n\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458\\r\\n\\u526f\\u7814\\u7a76\\u5458\",\"content\":\"<p><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u4e2d\\u5171\\u515a\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u9ed1\\u9f99\\u6c5f\\u7701\\u80fd\\u6e90\\u73af\\u5883\\u7814\\u7a76\\u9662\\u526f\\u9662\\u957f\\u3001\\u515a\\u59d4\\u59d4\\u5458<\\/span><br style=\\\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\\\"\\/><span style=\\\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\\\">\\u526f\\u7814\\u7a76\\u5458<\\/span><\\/p>\",\"sort\":\"0\",\"_token\":\"3n1UyGKUck4QvmStWkyJMHl9U3F5wb3zyCpL4NBp\",\"_method\":\"PUT\",\"_previous_\":\"http:\\/\\/nyfh.cnskl.com\\/admin\\/articles?&title=%E5%88%98&category%5Bid%5D=\"}', '2020-06-03 09:25:51', '2020-06-03 09:25:51'),
(613, 1, 'admin/articles', 'GET', '1.190.203.218', '{\"title\":\"\\u5218\",\"category\":{\"id\":null}}', '2020-06-03 09:25:51', '2020-06-03 09:25:51'),
(614, 1, 'admin/articles', 'GET', '112.102.243.66', '[]', '2020-06-03 10:02:33', '2020-06-03 10:02:33'),
(615, 1, 'admin', 'GET', '1.190.203.218', '[]', '2020-06-04 01:21:04', '2020-06-04 01:21:04'),
(616, 1, 'admin/links', 'GET', '1.190.203.218', '{\"_pjax\":\"#pjax-container\"}', '2020-06-04 01:21:07', '2020-06-04 01:21:07');
-- --------------------------------------------------------
--
-- 表的结构 `admin_permissions`
--
CREATE TABLE `admin_permissions` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`http_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`http_path` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `admin_permissions`
--
INSERT INTO `admin_permissions` (`id`, `name`, `slug`, `http_method`, `http_path`, `created_at`, `updated_at`) VALUES
(1, 'All permission', '*', '', '*', NULL, NULL),
(2, 'Dashboard', 'dashboard', 'GET', '/', NULL, NULL),
(3, 'Login', 'auth.login', '', '/auth/login\r\n/auth/logout', NULL, NULL),
(4, 'User setting', 'auth.setting', 'GET,PUT', '/auth/setting', NULL, NULL),
(5, 'Auth management', 'auth.management', '', '/auth/roles\r\n/auth/permissions\r\n/auth/menu\r\n/auth/logs', NULL, NULL),
(6, 'Admin Config', 'ext.config', '', '/config*', '2020-06-02 01:57:49', '2020-06-02 01:57:49');
-- --------------------------------------------------------
--
-- 表的结构 `admin_roles`
--
CREATE TABLE `admin_roles` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `admin_roles`
--
INSERT INTO `admin_roles` (`id`, `name`, `slug`, `created_at`, `updated_at`) VALUES
(1, 'Administrator', 'administrator', '2020-05-27 23:22:24', '2020-05-27 23:22:24');
-- --------------------------------------------------------
--
-- 表的结构 `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `admin_role_menu`
--
INSERT INTO `admin_role_menu` (`role_id`, `menu_id`, `created_at`, `updated_at`) VALUES
(1, 2, NULL, NULL);
-- --------------------------------------------------------
--
-- 表的结构 `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `admin_role_permissions`
--
INSERT INTO `admin_role_permissions` (`role_id`, `permission_id`, `created_at`, `updated_at`) VALUES
(1, 1, NULL, NULL);
-- --------------------------------------------------------
--
-- 表的结构 `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `admin_role_users`
--
INSERT INTO `admin_role_users` (`role_id`, `user_id`, `created_at`, `updated_at`) VALUES
(1, 1, NULL, NULL);
-- --------------------------------------------------------
--
-- 表的结构 `admin_users`
--
CREATE TABLE `admin_users` (
`id` int(10) UNSIGNED NOT NULL,
`username` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `admin_users`
--
INSERT INTO `admin_users` (`id`, `username`, `password`, `name`, `avatar`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'admin', '$2y$10$UVsiB01XL7ThiKjktVzc3OSmPVEwotmYhni7KU7Y5nBESEuoYEMAW', 'Administrator', NULL, 'jOlpP9mQKLwp287K3dbYQ67qKK68ta7cytmfnWf6bfsPO14nEe8eB37GQ5Fd', '2020-05-27 23:22:24', '2020-05-27 23:22:24');
-- --------------------------------------------------------
--
-- 表的结构 `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
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- 表的结构 `adverts`
--
CREATE TABLE `adverts` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cover` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sort` int(3) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
--
-- 转存表中的数据 `adverts`
--
INSERT INTO `adverts` (`id`, `category_id`, `title`, `cover`, `url`, `sort`, `created_at`, `updated_at`) VALUES
(1, 22, '广告1', 'images/2020/06/03/a2bedd136318db4a2475271986c82d5d.jpg', NULL, 1, '2020-06-03 02:31:56', '2020-06-03 02:32:42');
-- --------------------------------------------------------
--
-- 表的结构 `articles`
--
CREATE TABLE `articles` (
`id` bigint(20) UNSIGNED NOT NULL,
`oldid` int(10) UNSIGNED DEFAULT NULL COMMENT '老网站文章id 校验没有问题后删除',
`category_id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`writer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`cover` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`status` int(10) UNSIGNED NOT NULL DEFAULT '0',
`sort` int(5) NOT NULL DEFAULT '0',
`source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`keywords` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
--
-- 转存表中的数据 `articles`
--
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 8, 7, '我院与黑龙江科技大学签订科研合作与人才培养协议', '李福裿', '黑龙江省能源环境研究院与黑龙江科技大学 签订科研合作与人才培养协议 为了更好的促进科研院所与高校之间资源的优势互补,黑龙江省能源环境研究院与黑龙江科技大学科技合作签约', '/kjfh/uploads/130628/1-13062Q0313c11.jpg', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为了更好的促进科研院所与高校之间资源的优势互补黑龙江省能源环境研究院与黑龙江科技大学科技合作签约仪式于2013年3月28日在黑龙江科技大学举行标志着双方合作进入更加紧密的新阶段。<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院院长徐晓秋同志、副院长关春玲同志以及科研办、办公室负责人,黑龙江科技大学周国江主任、丁慧贤副主任、李哲教授等出席了签约仪式。双方对各自的研究方向、研究领域进行了介绍,就合作领域及项目进行了探讨,均表示要充分利用研究院所的实验条件及黑龙江科技大学的人才技术优势。并在科技立项、科学研究、成果转化、合作机制、院校实训等方面达成共识,签订合作协议。<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院将以院校合作为契机,在煤化工、新材料领域打造出一支高新技术创新团队,为我省的经济社会发展做出更大的贡献。</span>\r\n<div style=\"text-align: center\">\r\n <br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130628/1-13062Q0315N61.jpg\" style=\"width: 558px; height: 351px\" /><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 16px\">我院徐晓秋院长和黑龙江科技大学周国江主任分别代表双方在协议上签字。</span></div>\r\n&nbsp;<br />\r\n&nbsp;<br />\r\n&nbsp;<br />\r\n&nbsp;\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 16px\">黑龙江省能源环境研究院</span></div>\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 16px\"><span style=\"text-align: center\">2013年3月28日 &nbsp;</span></span></div>\r\n', 1, 0, '综合办', '黑龙江省,能源,环境,研究院,与,黑龙江,科技,', '2013-03-28 07:18:00', '2020-06-02 02:11:01', NULL),
(2, 9, 7, '中国绿色农业联盟刘连馥主席赴大庆杜尔伯特考察省科学院科技孵化中心生物质能源示范项目', '李福裿', '中国绿色农业联盟刘连馥主席赴大庆杜尔伯特考察 省科学院科技孵化中心生物质能源示范项目 中国绿色农业联盟刘连馥主席及国家财政部农发办项目审批专家组组长、华南农大食品学', '/kjfh/uploads/130628/130628/1-13062Q12211928.jpg', '<div>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中国绿色农业联盟刘连馥主席及国家财政部农发办项目审批专家组组长、华南农大食品学院院长杨公明一行于2013年3月23日考察了科技孵化中心位于大庆杜尔伯特的生物质能源示范项目中心主任徐晓秋同志、副主任关春玲同志、科研办、办公室负责人陪同考察。徐晓秋同志首先介绍了项目的特点和生产规模随后又详细讲解了该项目在经济、社会效益、生态及带动养殖等方面的优势情况。听取完情况介绍后双方就该项目在农业领域加强合作及复制推广进行了探讨刘连馥主席和杨公明院长都显示出了浓厚的兴趣并给予了很高的评价。</span></div>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130628/1-13062Q11552O9.jpg\" style=\"width: 511px; height: 342px\" /></div>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130628/1-13062Q11615105.jpg\" style=\"width: 492px; height: 329px\" /></div>\r\n&nbsp;<br />\r\n&nbsp;<br />\r\n&nbsp;\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 16px\">黑龙江省能源环境研究院<br />\r\n 2013年3月23日 &nbsp;</span></div>\r\n', 1, 0, '综合办', '中国,绿色农业,联盟,刘连馥,主席,赴,大庆,', '2013-03-23 07:17:00', '2020-06-02 02:11:01', NULL),
(3, 10, 8, '我院职工赴杜尔伯特基地开展五四活动', '李福裿', '黑龙江省能源环境研究中心(孵化中心)赴杜尔伯特基地开展五四活动 黑龙江省能源环境研究院孵化中心全体职工于5月10日到位于大庆市杜尔伯特蒙古族自治县的黑龙江省科学院', '/kjfh/uploads/allimg/130630/1-1306301149150-L.jpg', '<p>\r\n <span style=\"font-size: 20px; \">黑龙江省能源环境研究院孵化中心全体职工于5月10日到位于大庆市杜尔伯特蒙古族自治县的黑龙江省科学院生物质能源示范基地开展五四青年节活动-暨能源院(孵化中心)首届职工趣味运动会。</span></p>\r\n<div style=\"text-align: center; \">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-130630115203a2.jpg\" style=\"width: 446px; height: 298px; \" /><br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-13063011532I17.jpg\" style=\"width: 445px; height: 298px; \" /></span></div>\r\n<p>\r\n <span style=\"font-size:20px;\">5月10日上午全体职工首先参观了示范基地并听取了项目负责人对该套示范装置的讲解使全体职工尤其是能源院的职工对该示范装置有了进一步的了解之后全体职工参加了植树活动大家齐心协力种下了棵棵象征着希望的树苗希望它能像我们的事业一样蒸蒸日上硕果累累。下午进行的徒步活动让大家走近自然贴进自然身心得到了很好的放松。</span></p>\r\n<div style=\"text-align: center; \">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-13063011534D64.jpg\" style=\"width: 447px; height: 299px; \" /><br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-1306301154005J.jpg\" style=\"width: 443px; height: 296px; \" /></span></div>\r\n<p>\r\n <span style=\"font-size:20px;\">通过本次活动,不但增进了同事之间的友谊,放松了身心,更重要的是增强了团队意识。职工们在活动后表示,身为科技工作者,将把能源环境作为一项事业推广下去,为单位的发展贡献自己的力量。</span></p>\r\n<span style=\"font-size:20px;\">&nbsp;</span>\r\n<div style=\"text-align: right; \">\r\n <span style=\"font-size:20px;\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></div>\r\n', 1, 0, '综合办', '我院,职工,赴,杜尔伯特,基地,开展,五四,活动,', '2013-05-10 03:54:00', '2020-06-02 02:11:01', NULL),
(4, 11, 7, '黑龙江省科学院产业化处到省能源环境研究院产业化基地调研', '李福裿', '2013年5月7日省科学院产业化处孙宇峰处长、范延新副处长、李晓辉副处长在省能源环境研究院院长徐晓秋同志的陪同下来到位于双城的M15车用甲醇汽油复合添加剂产业化基地进行调研', '', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年5月7日省科学院产业化处孙宇峰处长、范延新副处长、李晓辉副处长在省能源环境研究院院长徐晓秋同志的陪同下来到位于双城的&ldquo;M15车用甲醇汽油复合添加剂&rdquo;产业化基地进行调研,指导工作。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 产业化处领导在听取了我院油品助剂研发中心主任张树华关于产业化工作的汇报之后,对我院产业化工作的示范引领作用给予了充分肯定,并对在基地工作的职工进行慰问,极大地鼓舞了职工的工作热情。同时,产业化处领导对我院&ldquo;M15车用甲醇汽油复合添加剂&rdquo;产业项化目的发展提出设想,并表示省科学院相关部门会大力支持我院的产业化工作,使&ldquo;M15车用甲醇汽油复合添加剂&rdquo;产业化项目为黑龙江区域经济建设更好的服务。</span></p>\r\n<span style=\"font-size: 20px\">&nbsp;</span>\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></div>\r\n', 1, 0, '综合办', '黑龙江省,科学院,产业化,处,到,省,能源,环境,', '2013-05-07 07:17:00', '2020-06-02 02:11:01', NULL),
(5, 12, 7, '“领导关怀,实地解决问题”黑龙江省科学院潘忠院长一行到能源院召开现场会', '李福裿', '2013年6月7日潘忠院长率部分领导班子成员及相关处室负责人一行12人赴能源院孵化中心召开现场办公会议。能源院孵化中心班子成员、各部门负责人、副高职以上人员参加了', '/kjfh/uploads/allimg/130630/1-1306301202010-L.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年6月7日潘忠院长率部分领导班子成员及相关处室负责人一行12人赴能源院孵化中心召开现场办公会议。能源院孵化中心班子成员、各部门负责人、副高职以上人员参加了会议。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 潘院长一行在省能源环境研究院院长徐晓秋同志陪同下先后察看了能源院实验楼、办公楼及职工食堂。</span></p>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img src=\"/kjfh/uploads/allimg/130630/1-130630120234546.jpg\" style=\"width: 567px; height: 378px\" /></span></div>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img src=\"/kjfh/uploads/allimg/130630/1-1306301202561O.jpg\" style=\"width: 554px; height: 369px\" /></span></div>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随后能源院院长、孵化中心主任徐晓秋同志就任职后的主要工作情况及存在的问题向潘院长一行进行了汇报。汇报结束后,科学院领导、相关处室负责人与能源院(孵化中心)参会人员进行了互动交流。最后潘忠院长对能源院(孵化中心)融合后的工作情况和成绩给予了充分肯定,对在艰苦的环境里坚守工作岗位的同志们表示理解和支持,并对能源院(孵化中心)的人员结构、业务体系、工作环境等方面做出了相应指示,鼓励大家靠自己的双手创造属于自己的发展之路。</span></p>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img src=\"/kjfh/uploads/allimg/130630/1-130630120354c0.jpg\" style=\"width: 567px; height: 378px\" /></span></div>\r\n<span style=\"font-size: 20px\">&nbsp;<br />\r\n&nbsp;<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></div>\r\n', 1, 0, '综合办', '“,领导关怀,实地,解决问题,”,黑龙江省,', '2013-06-07 07:16:00', '2020-06-02 02:11:01', NULL),
(6, 13, 7, '“磨练意志 以球会友”技术物理研究所与能源环境研究院篮球友谊赛', 'admin', '为丰富职工业余文化生活增强兄弟院所之间的交流与合作提高研究院所团队的协作能力6月5日下午省科学院技术物理研究所与能源环境研究院孵化共同进行了一场篮球友谊', '/kjfh/uploads/allimg/130630/1-130630120Z0I3-lp.jpg', '<p style=\"text-align: left\">\r\n <span style=\"font-size: 20px\"><span style=\"color: rgb(38,39,40); line-height: 24px; text-indent: 30px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为丰富职工业余文化生活增强兄弟院所之间的交流与合作提高研究院所团队的协作能力6月5日下午省科学院技术物理研究所与能源环境研究院共同进行了一场篮球友谊赛。两院所党政领导班子成员参观了比赛。</span></span></p>\r\n<p style=\"text-align: left\">\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); line-height: 24px; text-indent: 30px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 伴随着裁判员一声号响,篮球赛如火如荼的展开,队员在场上你争我夺,从传球、运球、助攻到投篮一系列动作帅气利索,比赛场景异常激烈。两院所队员中,能源院队员老中青混搭,宝刀未老;物理所队员不甘示弱,部分领导也加入了比赛当中。在短短一个多小时的赛场上,赛出了风格,赛出了水平,充分展现了两院所职工的精神面貌和全面的优秀素质。</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); line-height: 24px; text-indent: 30px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-1306301213343G.jpg\" style=\"height: 371px; width: 571px\" /></span></p>\r\n<p style=\"text-align: left\">\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); line-height: 24px; text-indent: 30px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过这次篮球比赛,不仅丰富了两院所的业余文化生活,更是提高了锻炼身体和团结合作的意识,而且增强了两院所之间的感情交流,更重要的是为两院所今后的交流和合作奠定了良好的基础。</span><span style=\"font-size: 20px; font-family: Verdana, Arial, Helvetica, sans-serif; color: rgb(38,39,40); line-height: 24px; text-indent: 30px\">&nbsp; &nbsp;</span></p>\r\n', 1, 0, '综合办', '“,磨练意志,以,球,会友,”,技术,物理,研究所,', '2013-06-30 01:57:00', '2020-06-02 02:11:01', NULL),
(7, 14, 7, '“探索新路、实现合作”我院与俄罗斯“梅索-克”科学生产应用中心实现科技合作', '李福裿', '2013年06月13日省能源环境研究院孵化中心院长及相关科室人员在能源院孵化中心会议室会见了俄罗斯梅索-克科学生产应用中心总经理杰诺夫.尼古拉.杰奥里耶维奇博士一行二', '/kjfh/uploads/allimg/130630/1-1306301221320-L.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年06月13日省能源环境研究院孵化中心院长及相关科室人员在能源院孵化中心会议室会见了俄罗斯&ldquo;梅索-克&rdquo;科学生产应用中心总经理杰诺夫.尼古拉.杰奥里耶维奇博士一行二人。双方就润滑油复合添加剂的相关合作进行了热烈的讨论此技术特点突出、可广泛应用于多种领域。后经双方多轮协商于15日达成框架协议引进俄方相关技术用于生产润滑油复合添加剂。双方的合作为我院润滑油添加剂的产业化工作奠定了基础并使我院在该领域向世界先进水平迈进了一步。</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/130630/1-130630122053146.jpg\" style=\"width: 571px; height: 381px\" /><br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-1306301220270-L.jpg\" style=\"width: 571px; height: 322px\" /></span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></p>\r\n', 1, 0, '综合办', '“,探索新路,、,实现,合作,”,我院,与,俄罗斯,', '2013-06-13 07:16:00', '2020-06-02 02:11:01', NULL),
(8, 15, 7, '“携手同行 共圆大科学院梦”省科学院自动化研究所与能源院帽儿山活动小记', '李福裿', '为了更好的完成收官之年的各项工作增强干劲凝心聚力鼓舞势气使大家能够在紧张而忙碌的工作中放松心情、愉悦身心同时为加强科学院各兄弟院所之间的感情6月14日', '/kjfh/uploads/allimg/130630/1-130630122P40-L.png', '<p>\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px\">​为了更好的完成&ldquo;收官&rdquo;之年的各项工作增强干劲凝心聚力鼓舞势气使大家能够在紧张而忙碌的工作中放松心情、愉悦身心同时为加强科学院各兄弟院所之间的感情6月14日自动化研究所与能源院部分职工一行70余人来到了风景秀丽的帽儿山共同举行了爬山活动。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px; font-family: Verdana, Arial, Helvetica, sans-serif\">微风低语,流水呢喃,鸟鸣清脆。沿着陡峭的山路,大家一路前行。天气虽然炎热,路途虽然艰辛,但每一个人的心中都有一个坚定的信念:不达目的不罢休。在行进中大家相互配合,相互鼓励,团结一致,终于在经历了一小时左右时间成功登顶。在登顶的那一刻,虽然大家已是气喘吁吁,满头大汗,但内心的激动和喜悦难以形容,大家高声欢呼&ldquo;我们登顶成功了!&rdquo;</span></p>\r\n<p>\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px; font-family: Verdana, Arial, Helvetica, sans-serif\">爬山归来,在宾馆的广场上共同举办了篝火晚会,大家载歌载舞,欢聚一堂,整场晚会充满了欢声笑语,让人难以忘怀。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px; font-family: Verdana, Arial, Helvetica, sans-serif\">此次活动把&ldquo;走进自然、增进友谊、锻炼意志、陶冶情操&rdquo;融合在一起,既锻炼了身体,又增强了团队的凝聚力,增进了兄弟院所间的沟通融合,大家决心把登山的气魄投入到工作中,&ldquo;矢志创新、勇于攀登&rdquo;,以饱满的工作热情、优异的工作业绩为实现翻番目标和&ldquo;创新2020&rdquo;发展规划做贡献,共圆&ldquo;大科学院&rdquo;梦想。</span></p>\r\n<div style=\"padding-right: 0px; padding-left: 0px; font-size: 14px; padding-bottom: 0px; margin: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px; padding-top: 0px; font-family: Verdana, Arial, Helvetica, sans-serif\">\r\n <p style=\"padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px\">\r\n &nbsp;</p>\r\n <p align=\"center\" style=\"padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-130630122P40-L.png\" style=\"border-top-width: 0px; padding-right: 0px; padding-left: 0px; border-left-width: 0px; border-bottom-width: 0px; padding-bottom: 0px; margin: 0px; width: 503px; padding-top: 0px; height: 334px; border-right-width: 0px\" /></span></p>\r\n <p align=\"center\" style=\"padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-130630122939A3.jpg\" style=\"border-top-width: 0px; padding-right: 0px; padding-left: 0px; border-left-width: 0px; border-bottom-width: 0px; padding-bottom: 0px; margin: 0px; width: 503px; padding-top: 0px; height: 335px; border-right-width: 0px\" /></span></p>\r\n</div>\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></div>\r\n', 1, 0, '综合办', '“,携手同行,共圆,大,科学院,梦,”,省,自动化,', '2013-06-30 09:14:00', '2020-06-02 02:11:01', NULL),
(9, 16, 19, '工厂化厌氧沼气发电控制系统仿真平台的开发研究', '李福裿', '工厂化厌氧沼气发电控制系统仿真平台以加拿大阿尔伯塔研究院集成粪便综合利用系统IMUS设计工艺为基础针对工业化沼气发电过程中厌氧发酵工艺过程自动控制的复杂性和多样', 'images/2020/06/03/2cf25c0c42ea7db639634565bb3efd50.jpg', '<p><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; “工厂化厌氧沼气发电控制系统仿真平台”以加拿大阿尔伯塔研究院“集成粪便综合利用系统IMUS”设计工艺为基础针对工业化沼气发电过程中厌氧发酵工艺过程自动控制的复杂性和多样性建立一套适用于工业化沼气发电控制系统的厌氧发酵过程仿真平台系统。通过仿真平台系统可在实验室内实现实际生产中很难获得的技术数据,并对开发项目进行预评估,可缩短项目开发周期、节约试验和设计费用、降低开发风险。</span></p><p><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在设计过程中将针对生物发酵过程的时变性、非线性以及控制过程的复杂性应用工具软件和数学计算方法进行仿真平台的开发项目采用LabVIEW和MATLAB语言相结合进行系统设计依据生产过程不同控制节点进出料的情况、压力控制、产气率、温度、底物浓度、发酵及搅拌时间等的技术参数进行曲线模拟仿真并设计控制数学模型建立工厂化高温厌氧发酵沼气发电过程控制仿真平台。仿真平台通过已知的参数发酵料液的产量、环境温度的变化等进行沼气发电装置的发酵罐体、发电机等主要设备的设计参数进行预估仿真为新建“工厂化厌氧沼气发电装置”建设提供参数仿真模拟通过修改控制过程的参数温度、压力、底物流量、PH值变化、底物浓度、发酵时间、搅拌时间等实现沼气产气量和产气质量的变化情况模拟提供产气量变化过程控制修改方案。</span></p><p><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该平台系统一方面它可以供研究者和建设者在分析和比较各种控制策略和诊断方法时使用;另一方面可以根据示范工程中取得的新成果、数据、发现以及新工艺不断完善数据平台,为工艺设计提供帮助,以适应新的工业需求。</span></p><p><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该仿真平台系统采用国外先进的技术工艺进行设计,针对于工厂化厌氧沼气发电装置进行设计,具有高效的热电联用热回收工艺,不消耗新的化石能源,尤其适合高寒地区进行,工艺水平处于国际先进水平,开发完成后将对国内的工厂化沼气发电工程建议提供借鉴依据。控制系统在生产过程中,不产生二次污染,进出料连续化,控制单元模块化,采用高温厌氧发酵工艺,产气率高。</span></p>', 1, 0, '综合办', '工厂化,厌氧,沼气,发电,控制系统,仿真,平台,', '2013-07-01 05:45:00', '2020-06-03 09:12:06', NULL),
(10, 17, 8, '认真学习贯彻十八大开创科研工作新局面', 'admin', '高举旗帜奋力开拓铸就辉煌业绩,领航中国信心满怀共创美好未来。举世瞩目的中国共产党第十八次全国代表大会在北京胜利闭幕以来,科技孵化中心掀起了深入学习、领会和贯彻十八', '/uploads/allimg/130802/1-130P2111431507-lp.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 高举旗帜奋力开拓铸就辉煌业绩,领航中国信心满怀共创美好未来。举世瞩目的中国共产党第十八次全国代表大会在北京胜利闭幕以来,我院掀起了深入学习、领会和贯彻&ldquo;十八大&rdquo;精神的热潮。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为深入贯彻落实&ldquo;十八大&rdquo;精神,凝心聚力推动中心科研发展。我院组织党员、入党积极分子和科研人员参加学习贯彻十八大精神会议。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 与会同志学习了党的十八大精神,通过学习,大家一致认为党的&ldquo;十八大&rdquo;是在我国进入全面建成小康社会决定性阶段召开的一次十分重要的大会,在我们党和国家历史上都具有十分重要的里程碑意义。大会科学总结了过去五年的成就和十年的历程,确立了科学发展观的历史地位,提出了夺取中国特色社会主义新胜利的基本要求,对全面建成小康社会和深化改革开放作出了安排部署,对提高党的建设科学化水平提出了明确要求。把&ldquo;科学发展观&rdquo;、&ldquo;中国特色社会主义制度&rdquo;、&ldquo;中国特色社会主义道路&rdquo;、&ldquo;中国特色社会主义理论体系&rdquo;、&ldquo;生态文明&rdquo;、&ldquo;建设美丽中国&rdquo;、&ldquo;实现中华民族永续发展&rdquo;等等写入党章,顺应了历史发展的必然。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 大家表示,要以十八大胜利闭幕为契机,积极响应院党组号召,切实贯彻、落实院会议工作部署,落实省科学院&ldquo;创新2020&rdquo;规划,积极推进孵化中心中长期科技发展规划任务,实现明年&ldquo;双倍增&rdquo;目标。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/130802/1-130P2111431507.jpg\" style=\"width: 703px; height: 442px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/130802/1-130P2111503134.jpg\" style=\"width: 700px; height: 485px\" /></span></p>\r\n', 1, 0, '未知', '认真学习贯彻十八大开创科研工作新局面', '2012-11-26 03:16:00', '2020-06-02 02:11:01', NULL),
(11, 18, 8, '七一表彰的通知', 'admin', '为促进省科学院创新2020发展规划实施确保三年目的全面实现根据黑龙江省科学院关于《七一表彰的通知》的相关要求通过全体党员投票选举产生孵化中心支部为先进党组织王', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为促进&ldquo;省科学院创新2020发展规划&rdquo;实施,确保三年目的全面实现,根据黑龙江省科学院关于《七一表彰的通知》的相关要求,通过全体党员投票,选举产生孵化中心支部为先进党组织,王欣同志为优秀党务工作者,刘岩同志为优秀共产党员,并上报省科学院。</span>', 1, 0, '未知', '七一,表彰,的,通知,为,促进省,科学院,创新,', '2013-07-03 03:17:00', '2020-06-02 02:11:01', NULL),
(12, 19, 19, 'M15车用甲醇汽油复合添加剂', '李福裿', '《M15车用甲醇汽油复合添加剂》是含有辛烷值增强剂、动力增强剂、金属腐蚀抑制剂、橡胶溶胀抑制剂、助燃剂和助溶剂的复合添加剂。通过互配性试验、溶解性试验、辛烷值加和性和', 'images/2020/06/03/e50371f51cc7165058355d4f995f4d02.jpg', '<p><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 《M15车用甲醇汽油复合添加剂》是含有辛烷值增强剂、动力增强剂、金属腐蚀抑制剂、橡胶溶胀抑制剂、助燃剂和助溶剂的复合添加剂。通过互配性试验、溶解性试验、辛烷值加和性和调和正效应试验解决了添加剂复合后产生的较大互扰性及经济性等问题最终得出添加剂的最佳配比并对添加剂各项指标进行检测检测结果均符合标准。该添加剂有效解决和控制了M15车用甲醇汽油低温启动难、高温气阻大、动力不足、腐蚀溶胀等问题。使M15甲醇汽油长期处于稳定状态不易分层解决了汽油与甲醇互溶性差的问题。并且可以显著提高油品的辛烷值和动力性能同时使用该添加剂调和的M15甲醇汽油不需改变发动机的结构。该添加剂通过工业应用及性能考核经黑龙江省精细化工产品质量监督检验站检验合格。</span></p>', 1, 0, '综合办', 'M15,车用,甲醇,汽油,复合,添加剂,《,', '2013-07-01 05:45:00', '2020-06-03 09:11:34', NULL),
(13, 20, 19, '大掺量甲醇汽油催化燃烧技术', '李福裿', '技术特点: 催化剂包括能量及辛烷值增强组份,自溶合组份、尾气净化组份等。 M45甲醇汽油合成工艺研究采用化学自溶合技术甲醇、催化剂、汽油三种物质不需要搅拌即可相互溶', 'images/2020/06/03/a1e6418671f45cdae03019d889b2d971.jpg', '<p><span style=\"font-size: 20px\">技术特点:</span></p><p><span style=\"font-size: 20px\">1、催化剂包括能量及辛烷值增强组份自溶合组份、尾气净化组份等。</span></p><p><span style=\"font-size: 20px\">2、M45甲醇汽油合成工艺研究采用化学自溶合技术甲醇、催化剂、汽油三种物质不需要搅拌即可相互溶合增加燃料的稳定性。</span><span style=\"font-size: 20px\">与纯汽油及乙醇汽油互溶性优良。</span></p><p><span style=\"font-size: 20px\">3、不改动发动机供油系统发动机正常运行。</span></p><p><span style=\"font-size: 20px\">4、高、低温启动正常,无低温启动困难,高温气阻现象。</span></p><p><span style=\"font-size: 20px\">5、发动机动力性能与使用93#汽油相当。</span></p>', 1, 0, '综合办', '大掺,量,甲醇,汽油,催化,燃烧,技术,技术,特点,', '2013-07-01 05:45:00', '2020-06-03 09:13:41', NULL),
(14, 21, 19, '直贮热太阳能技术', '李福裿', '新能源是二十一世纪世界经济发展中最具决定力的五大技术领域之一。太阳能是一种清洁、高效和永不衰竭的新能源。在新世纪中,各国政府都将太阳能资源利用作为国家可持续发展战', '', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 新能源是二十一世纪世界经济发展中最具决定力的五大技术领域之一。太阳能是一种清洁、高效和永不衰竭的新能源。在新世纪中,各国政府都将太阳能资源利用作为国家可持续发展战略的重要内容。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 因为地域气候的原因在中国北方地区的建筑物维持良好的温度环境需要提供大量的能源黑龙江省的气候条件与阿尔伯塔省非常相似。在这些严酷的气候条件下建筑物的能源消耗大约2GJ/m2/年等于20美元/m2/年假设天然气耗资10/GJ 美元)。由于燃料成本上升,在未来我国北方建筑物的采暖保温方面可能导致严重的经济问题。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 直贮蓄热太阳能系统DHS太阳能集热系统可以实现在白天收集太阳能并将其直接贮存在建筑物的墙壁中以调节建筑内温度的目的。在冬季该系统可以在白天收集太阳能晚上又释放到建筑的外壳。它为建筑物创造了一个类似于保温毛毯的缓冲区在夏季该系统以相反的方式工作调节房屋内部的温度。该系统在国外已广泛应用于商业楼宇、民用住宅和农业温室为工业结构的空间供热提供新的概念与技术属国际领先水平。</span></p>\r\n', 1, 0, '综合办', '热太阳能技术', '2013-07-01 05:44:00', '2020-06-02 02:11:01', NULL),
(15, 22, 19, '油页岩中有机质的分离和分析', '李福裿', '油页岩作为非常规能源,已成为当前世界范围内开发利用的热点,由于油页岩的组成和结构的未知使得油页岩的开发、利用手段单一。如何提高其有效利用途径,发挥其在能源和化工原', '', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩作为非常规能源,已成为当前世界范围内开发利用的热点,由于油页岩的组成和结构的未知使得油页岩的开发、利用手段单一。如何提高其有效利用途径,发挥其在能源和化工原料领域的作用,引起经济和技术界人士的重视。该项目以油页岩为原料,通过温和条件下分级萃取的方法,将得到的萃取物进行分离并进行相关的检测分析,一方面,准确提出油页岩中可萃取有机质的组成和结构,为油页岩结构的研究奠定基础;另一方面,分级萃取的方法可以选择性提取油页岩中具有应用前景的化合物,不断提高页岩油的加工深度和综合利用水平。目前,该项目已通过黑龙江省科学院组织的专家鉴定。</span><br />\r\n &nbsp;</p>\r\n', 1, 0, '综合办', '油页岩,中,有机,质的,分离,和,分析,油页岩,', '2013-07-01 05:44:00', '2020-06-02 02:11:01', NULL),
(16, 23, 19, '集成牛粪便综合利用系统', 'admin', '集成粪便综合利用系统IMUS是阿尔伯塔研究院开发的工业化封闭环式沼气系统它采用独特的高温消化技术将畜禽粪便转换为能源、生物肥料和可再利用的水通过高温厌氧发酵来', '', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 集成粪便综合利用系统IMUS是阿尔伯塔研究院开发的工业化封闭环式沼气系统它采用独特的高温消化技术将畜禽粪便转换为能源、生物肥料和可再利用的水通过高温厌氧发酵来生产沼气并用其来发电。后营养物可作为无病原体的生物肥料市场化水可以再次用于IMUS系统或者用于灌溉。IMUS 技术不仅全部利用生物废物中的能源和养分它还减轻温室气体排放和农业、城市、食品加工等废物造成的其它环境和社会压力。IMUS系统是世界上唯一正在运行的利用牛粪进行发电并回收其养分生产肥料的综合利用系统IMUS技术已经在阿尔伯塔省连续运营5年属国际领先水平。</span></p>\r\n', 1, 0, '未知', '集成,牛,粪便,综合利用,系统,集成,粪便,', '2013-07-01 05:43:00', '2020-06-02 02:11:01', NULL),
(17, 24, 9, 'The Catcher in the Rye', 'admin', '麦田里的守望者(The Catcher in the Rye)简介: The Catcher in the Rye is a 1951 novel by J. D. Salinger. Originally published for adults, it has been translated into almost all of the worlds major languages. Around 250,000 copies ar', '/kjfh/uploads/130701/1-130F10F219336.jpg', '<p>\r\n <span style=\"font-size: 20px\">麦田里的守望者(The Catcher in the Rye)简介:</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">The Catcher in the Rye is a 1951 novel by J. D. Salinger. Originally published for adults, it has been translated into almost all of the world&#39;s major languages. Around 250,000 copies are sold each year, with total sales of more than sixty-five million. The novel&#39;s protagonist and antihero, Holden Caulfield, has become an icon for teenage rebellion.</span><br />\r\n <span style=\"font-size: 20px\">The novel was among the 100 best English-language novels from 1951 to 2005 as chosen by Time, and named by Modern Library and its readers as one of the 100 best English-language novels of the 20th century. It has been frequently challenged in the United States for its liberal use of profanity and portrayal of sexuality and teenage angst. It also deals with complex issues of identity, belonging, connection and alienation.</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">  本书的主人公霍尔顿是个中学生出身于富裕的中产阶级家庭。他虽只有16岁但比常人高出一头整日穿着风雨衣戴着鸭舌帽游游荡荡不愿读书。他对学校里的一切&mdash;&mdash;老师、同学、功课、球赛等等全都腻烦透了曾是学校击剑队队长3次被学校开除。又一个学期结束了他又因5门功课中4门不及格被校方开除。他丝毫不感到难受。在和同房间的同学打了一架后他深夜离开学校回到纽约城但他不敢贸然回家。当天深夜住进了一家小旅馆。他在旅馆里看到的都是些不三不四的人有穿戴女装的男人有相互喷水、喷酒的男女他们寻欢作乐忸怩作态使霍尔顿感到恶心和惊讶。他无聊之极便去夜总会厮混了一阵。回旅馆时心里仍觉得十分烦闷糊里糊涂答应电梯工毛里斯让他叫来了一个妓女。妓女一到他又紧张害怕最后按讲定的价格给了五块钱把她打发走了。<br />\r\n   第二天是星期天霍尔顿上街游荡遇见两个修女捐了10块钱。后来他的女友萨丽去看了场戏又去溜冰。看到萨丽那假情假义的样子霍尔顿很不痛快两人吵了一场分了手。接着霍尔顿独自去看了场电影又到酒吧里和一个老同学一起喝酒喝得酩酊大醉。他走进厕所把头伸进盥洗盆里用冷水浸了一阵才清醒过来。可是走出酒吧后被冷风一吹他的头发都结了冰。他想到自己也许会因此患肺炎死去永远见不着妹妹菲芘了决定冒险回家和她诀别。<br />\r\n   霍尔顿偷偷回到家里,幸好父母都出去玩了。他叫醒菲芘,向她诉说了自己的苦闷和理想。他对妹妹说,他将来要当一名&ldquo;麦田里的守望者&rdquo;&ldquo;有那么一群小孩子在一大块麦田里做游戏。几千几万个小孩子,附近没有一个人&mdash;&mdash;没有一个大人,我是说&mdash;&mdash;除了我。我呢,就在那混帐的悬崖边。我的职务是在那儿守望,要是有哪个孩子往悬崖边奔来,我就把他捉住&mdash;&mdash;我是说孩子们都在狂奔,也不知道自己是在往哪儿跑。我得从什么地方出来,把他们捉住。我整天就干这样的事。我只想当个麦田里的守望者。&rdquo;后来父母回来了,霍尔顿吓得躲进壁橱。等父母去卧室,他急忙溜出家门,到一个他尊敬的老师家中借宿。可是睡到半夜,他发觉这个老师有可能是个同性恋者,于是只好偷偷逃出来,到车站候车室过夜。<br />\r\n   霍尔顿不想再回家,也不想再念书了,决定去西部谋生,做一个又聋又哑的人,但他想在临走前再见妹妹一面,于是托人给她带去一张便条,约她到博物馆的艺术馆门边见面。过了约定时间好一阵,菲芘终于来了,可是拖着一只装满自己衣服的大箱子,她一定要跟哥哥一起去西部。最后,因对妹妹劝说无效,霍尔顿只好放弃西部之行,带她去动物园和公园玩了一阵,然后一起回家。回家后不久,霍尔顿就生了一场大病。整部小说是以回忆的方式写的</span></p>\r\n<dl>\r\n</dl>\r\n', 1, 0, '未知', 'The,Catcher,the,Rye,The,Catche', '2013-07-01 00:15:00', '2020-06-02 02:11:01', NULL),
(18, 25, 9, 'The Old Man and the Sea', 'admin', '老人与海(The Old Man and the Sea)简介: 这本书讲了古巴的一个名叫圣地亚哥的老渔夫独自一个人出海打鱼在一无所获的84天之后钓到了一条无比巨大的马林鱼。这是老人从来没见过也没', '/kjfh/uploads/allimg/130701/1-130F10F5120-L.jpg', '<p>\r\n <span style=\"font-size: 20px\">老人与海(The Old Man and the Sea)简介:</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">  这本书讲了古巴的一个名叫圣地亚哥的老渔夫独自一个人出海打鱼在一无所获的84天之后钓到了一条无比巨大的马林鱼。这是老人从来没见过也没听说过的比他的船还长两英尺的一条大鱼。鱼的劲非常大拖着小船漂流了整整两天两夜老人在这两天两夜中经历了从未经受的艰难考验终于把大鱼刺死拴在船头。然而这时却遇上了鲨鱼老人与鲨鱼进行了殊死搏斗结果大马林鱼被鲨鱼吃光了老人最后拖回家的只剩下一副光秃秃的鱼骨架和一身的伤。最后却得到了人们的赞赏。</span></p>\r\n<dl class=\"last\">\r\n <dd>\r\n <p>\r\n <span style=\"font-size: 20px\">The Old Man and the Sea recounts an epic battle between an old, experienced fisherman and a giant marlin said to be the largest catch of his life. It opens by explaining that the fisherman, who is named Santiago, has gone 84 days without catching any fish at all (although a comment made at some point in the book reveals that he had previously gone 87 days without catching one). He is apparently so unlucky that his young apprentice, Manolin, has been forbidden by his parents to sail with the old man and been ordered to fish with more successful fishermen. Still dedicated to the old man, however, the boy visits Santiago&#39;s shack each night, hauling back his fishing gear, feeding him and discussing American baseball &mdash; most notably Santiago&#39;s idol, Joe DiMaggio. Santiago tells Manolin that on the next day, he will venture far out into the Gulf to fish, confident that his unlucky streak is near its end.<br />\r\n <br />\r\n Thus on the eighty-fifth day, Santiago sets out alone, taking his skiff far into the Gulf. He sets his lines and, by noon of the first day, a big fish that he is sure is a marlin takes his bait. Unable to pull in the great marlin, Santiago instead finds the fish pulling his skiff. Two days and two nights pass in this manner, during which the old man bears the tension of the line with his body. Though he is wounded by the struggle and in pain, Santiago expresses a compassionate appreciation for his adversary, often referring to him as a brother. He also determines that because of the fish&#39;s great dignity, no one will be worthy of eating the marlin.<br />\r\n <br />\r\n On the third day of the ordeal, the fish begins to circle the skiff, indicating his tiredness to the old man. Santiago, now completely worn out and almost in delirium, uses all the strength he has left in him to pull the fish onto its side and stab the marlin with a harpoon, thereby ending the long battle between the old man and the tenacious fish.<br />\r\n <br />\r\n Santiago straps the marlin to his skiff and heads home, thinking about the high price the fish will bring him at the market and how many people he will feed.<br />\r\n <br />\r\n While Santiago continues his journey back to the shore, sharks are attracted to the trail of blood left by the marlin in the water. The first, a great mako shark, Santiago kills with his harpoon, losing that weapon in the process. He makes a new harpoon by strapping his knife to the end of an oar to help ward off the next line of sharks; in total, five sharks are slain and many others are driven away. But by night, the sharks have almost devoured the marlin&#39;s entire carcass, leaving a skeleton consisting mostly of its backbone, its tail and its head, the latter still bearing the giant spear. The old man castigates himself for sacrificing the marlin. Finally reaching the shore before dawn on the next day, he struggles on the way to his shack, carrying the heavy mast on his shoulder. Once home, he slumps onto his bed and enters a very deep sleep.<br />\r\n <br />\r\n A group of fishermen gather the next day around the boat where the fish&#39;s skeleton is still attached. One of the fishermen measures it to be eighteen feet from nose to tail. Tourists at the nearby caf&eacute; mistakenly take it for a shark. Manolin, worried during the old man&#39;s endeavor, cries upon finding him safe asleep. The boy brings him newspapers and coffee. When the old man wakes, they promise to fish together once again. Upon his return to sleep, Santiago dreams of lions on the African beach.</span></p>\r\n </dd>\r\n</dl>\r\n', 1, 0, '未知', 'The,Old,Man,and,the,Sea,老人与海,T', '2013-06-30 17:34:00', '2020-06-02 02:11:01', NULL),
(19, 26, 9, 'Pride and Prejudice', 'admin', '傲慢与偏见(Pride and Prejudice)简介: Few have failed to be charmed by the witty and independent spirit of Elizabeth Bennet. Her early determination to dislike Mr. Darcy is a prejudice only matched by the folly of his arrogant pride', '/kjfh/uploads/allimg/130701/1-130F10FA90-L.jpg', '<dl class=\"last\">\r\n <dt>\r\n <span style=\"font-size: 20px\">傲慢与偏见(Pride and Prejudice)简介:</span></dt>\r\n <dd>\r\n <span style=\"font-size: 20px\">Few have failed to be charmed by the witty and independent spirit of Elizabeth Bennet. Her early determination to dislike Mr. Darcy is a prejudice only matched by the folly of his arrogant pride. Their first impressions give way to true feelings in a comedy profoundly concerned with happiness and how it might be achieved.</span></dd>\r\n</dl>\r\n', 1, 0, '未知', 'Pride,and,Prejudice,傲慢与偏见,Prid', '2013-06-30 23:06:38', '2020-06-02 02:11:01', NULL),
(20, 27, 9, 'Who Moved My Cheese', 'admin', '谁动了我的奶酪(Who Moved My Cheese)简介: Change can be a blessing or a curse, depending on your perspective. The message of Who Moved My Cheese? is that all can come to see it as a blessing, if they understand the nature of chees', '/kjfh/uploads/allimg/130701/1-130F10FZ30-L.jpg', '<p>\r\n <span style=\"font-size: 20px\">谁动了我的奶酪(Who Moved My Cheese)简介:</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">Change can be a blessing or a curse, depending on your perspective. The message of Who Moved My Cheese? is that all can come to see it as a blessing, if they understand the nature of cheese and the role it plays in their lives. Who Moved My Cheese? is a parable that takes place in a maze. Four beings live in that maze: Sniff and Scurry are mice--nonanalytical and nonjudgmental, they just want cheese and are willing to do whatever it takes to get it. Hem and Haw are &quot;littlepeople,&quot; mouse-size humans who have an entirely different relationship with cheese. It&#39;s not just sustenance to them; it&#39;s their self-image. Their lives and belief systems are built around the cheese they&#39;ve found. Most of us reading the story will see the cheese as something related to our livelihoods--our jobs, our career paths, the industries we work in--although it can stand for anything, from health to relationships. The point of the story is that we have to be alert to changes in the cheese, and be prepared to go running off in search of new sources of cheese when the cheese we have runs out.<br />\r\n Dr. Johnson, coauthor of The One Minute Manager and many other books, presents this parable to business, church groups, schools, military organizations--anyplace where you find people who may fear or resist change. And although more analytical and skeptical readers may find the tale a little too simplistic, its beauty is that it sums up all natural history in just 94 pages: Things change. They always have changed and always will change. And while there&#39;s no single way to deal with change, the consequence of pretending change won&#39;t happen is always the same: The cheese runs out. --Lou Schuler</span></p>\r\n<dl class=\"last\">\r\n</dl>\r\n', 1, 0, '未知', 'Who,Moved,Cheese,谁,动了,我的,奶酪,Wh', '2013-06-30 23:08:56', '2020-06-02 02:11:01', NULL),
(21, 28, 0, '科研人员档案', 'admin', '罗向东1989年毕业于国防科技大学应用物理系黑龙江省能源环境研究院孵化中心工程实验室主任研究员。 具有本专业广博、坚实的基础理论知识,并有深入的研究和独到的见', '/kjfh/uploads/allimg/130701/1-130F11046360-L.jpg', '<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130701/1-130F11046360-L.jpg\" style=\"width: 176px; height: 220px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">罗向东1989年毕业于国防科技大学应用物理系黑龙江省能源环境研究院孵化中心工程实验室主任研究员。</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">具有本专业广博、坚实的基础理论知识并有深入的研究和独到的见解熟悉相关专业的基础理论和专业知识。熟悉掌握本专业及相关专业国内外发展现状和趋。熟练掌握本专业相关的技术标准、规范。熟悉国家和地方有关的法律法规、技术政策和技术法规。能根据国家或本地区经济建设需要和学科发展提出本专业的研究方向具备有选定具有重要学术意义或开创性研究课题的能力能够带领团队开拓新的研究领域。具有丰富的从事科学研究的实践经验并能够完成规定的研究任务在主持省级项目的研究过程中能够创造性地解决重大、关键性的技术问题能够在研究团队中起到学术带头人的作用主持的省攻关项目经鉴定取得了国内领先水平。具有指导本专业技术人员开展业务工作的能力培养初中级技术人员3名。具有丰富的研究、开发、科技管理工作经验。参加工作以来共组织申报国家、省市及科学院各类项目30余项获得科研及产业化项目经费1000多万元。</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">主持及能与科研项目10项其中省攻关项目2项市攻关项目1项省中小企业创新基金项目1项院基金项目6项获黑龙江省科技进步三等奖1项省科学院科技进步奖4项授权专利6项在有CN和ISSN统一刊号且公开出版发行的科技类期刊发表专业论文10篇其中第一名6篇。</span><br />\r\n &nbsp;</p>\r\n', 1, 0, '未知', '罗向东,罗,向东,罗向东,罗,向东,1989年,毕,', '2013-07-01 02:58:08', '2020-06-02 02:11:01', NULL),
(22, 29, 0, '科研人员档案', 'admin', '王志成1973年出生学士研究员级高级工程师能源化学省级领军人才梯队后备带头人省级燃油燃煤清洁能源重点实验室成员省能源环境研究院科研与产业化办公室主任环境科', '/kjfh/uploads/allimg/130701/1-130F11055020-L.jpg', '<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130701/1-130F11055020-L.jpg\" style=\"width: 176px; height: 246px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">王志成1973年出生学士研究员级高级工程师能源化学省级领军人才梯队后备带头人省级燃油燃煤清洁能源重点实验室成员省能源环境研究院科研与产业化办公室主任环境科学与节能技术研究室主任。兼任省化学学会理事。</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">从事新型醇醚燃料催化剂和乳化燃料催化剂及合成工艺研究以及生物质能源研究工作。主持和在研项目20项其中包括国家攻关计划项目3项省自然科学基金项目1项国家政府间国际合作项目1项省攻关计划项目6项。获省科技进步一等奖1项省科技发明一等奖2项三等奖1项国家石化协会科技二等奖1项发表学术论文11篇。</span></p>\r\n', 1, 0, '未知', '科研,人员,档案,王志成,王,志成,1973年,出生,', '2013-07-01 02:53:19', '2020-06-02 02:11:01', NULL),
(23, 30, 19, '褐煤催化提炼轻质燃料油及石油干气技术', '李福裿', '我研究院经过6年的努力攻关采用低档褐煤做原料通过采用催化低温热裂解国家发明专利技术成功地从褐煤中催化提炼出20.4%轻质燃料油、9.2%石油干气及70.4%焦炭。轻质燃料油经过', '/kjfh/uploads/allimg/130703/1-130F3142624405.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院经过6年的努力攻关采用低档褐煤做原料通过采用催化低温热裂解国家发明专利技术成功地从褐煤中催化提炼出20.4%轻质燃料油、9.2%石油干气及70.4%焦炭。轻质燃料油经过简单处理可替代柴油石油干气可替代天然气焦炭是市场紧缺的原料。由于我国低档褐煤储藏量巨大价格每吨在200元以内所以经过催化低温热裂解后产生的轻质燃料油、石油干气、焦炭可获得巨大的经济效益。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130703/1-130F3142624405.jpg\" /></span></p>\r\n', 1, 0, '综合办', '褐煤,催化,提炼,轻质,燃料油,及,石油,干气,我,', '2008-06-20 05:47:00', '2020-06-02 02:11:01', NULL),
(24, 31, 7, '能源院省级重点实验室通过省科技厅评估认定', '李福裿', '2012年5月在院领导班子高度重视及各部门的大力配合下能源院省级重点实验室-燃油燃煤清洁能源重点实验室参加了黑龙江省科技厅展开的省级各类科技平台评估认定工作,经自评申', '', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年5月在院领导班子高度重视及各部门的大力配合下能源院省级重点实验室-燃油燃煤清洁能源重点实验室参加了黑龙江省科技厅展开的省级各类科技平台评估认定工作,经自评申报、省科技厅综合评审,我院重点实验室被继续保留省级科技平台资格。<br />\r\n   我院燃油燃煤清洁能源重点实验室为黑龙江省重点实验室2007年经黑龙江省科技厅批准成立。自成立以来重点实验室科技人员先后承担并完成国际科技合作重点项目、科技攻关项目、省自然科学基金等项目14项。获国家发明专利10项省科技发明一等奖一项发表论文45篇实现经济效益和社会效益累计达1000余万元在清洁能源、替代能源、污染物减排等领域形成了自己的特色和优势。<br />\r\n   能源院将以此次评估认定为契机,做好重点实验室承担的各级课题,为提高我省清洁能源、可再生能源、替代能源等领域的技术水平及解决相关技术问题做出应有的贡献。</span></p>\r\n', 1, 0, '综合办', '能源,院,省级,重点,实验室,通过省,科技厅,', '2012-10-24 07:15:00', '2020-06-02 02:11:01', NULL),
(25, 32, 19, '奥里油或超重质沥青蒸馏轻质燃料油技术研究及产业化项目', '李福裿', '由黑龙江省能源环境研究院承担的国家振兴东北老工业基地科技专项奥里油或超重质沥青蒸馏轻质燃料油技术研究及产业化项目2007年12月18日圆满通过国家验收。 该技术不采用传统', '', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 由黑龙江省能源环境研究院承担的国家振兴东北老工业基地科技专项&mdash;&mdash;奥里油或超重质沥青蒸馏轻质燃料油技术研究及产业化项目2007年12月18日圆满通过国家验收。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该技术不采用传统石油炼制装置在奥里油或超重质沥青中加入3%~5%的液体催化剂在非高压、不加氢气的条件下从室温加热到450℃左右时间3小时蒸馏出轻质燃料油这是石油炼制工艺的一次突破该技术达到国际领先水平。<br />\r\n   该项目获得两项国家发明专利:<br />\r\n   《一种生产轻质燃料油的催化剂和方法》专利号ZL 2005 1 0002080.5。<br />\r\n   《一种以含油岩石为原料生产轻质燃料油的催化剂和方法》专利号ZL 2005 1 0126073.6。</span></p>\r\n', 1, 0, '综合办', '国家,振兴东北,老,工业,基地,科技,专项,—,由,', '2007-12-18 05:56:00', '2020-06-02 02:11:01', NULL),
(26, 33, 19, '国家“十五”科技攻关计划——工业锅炉脱硫试验与性能考核', '李福裿', '由黑龙江省能源环境研究院承担的国家十五科技攻关计划 工业锅炉脱硫试验与性能考核项目2007年1月圆满通过国家验收。 该技术已在山西省工业锅炉上应用脱硫率高达95%。经法定', '', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 由黑龙江省能源环境研究院承担的国家&ldquo;十五&rdquo;科技攻关计划 &mdash;&mdash;工业锅炉脱硫试验与性能考核项目2007年1月圆满通过国家验收。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该技术已在山西省工业锅炉上应用脱硫率高达95%。经法定环境监测中心站检测脱硫前锅炉烟气SO2排放浓度高达2423mg/m3。采用脱硫技术后SO2排放浓度150mg/m3远远优于国家标准SO2排放浓度额900mg/m3。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该项目研究成果《燃煤、燃油锅炉烟气的脱硫脱氮催化剂及其脱硫脱氮方法》已申报国家发明专利,并通过实审。</span></p>\r\n', 1, 0, '综合办', '国家,“,十五,”,科技,攻关计划,—,工业,锅炉,', '2007-03-15 06:08:00', '2020-06-02 02:11:01', NULL),
(27, 34, 19, '国际科技合作项目——中加沙油炼制技术合作研究', 'admin', '黑龙江省能源环境研究院历时两年,圆满完成国家政府间国际科技合作项目中加沙油炼制技术合作研究。我院科技人员研发了加拿大沙油在非高压不加氢气的条件下,蒸馏出轻质燃料油', '/kjfh/uploads/allimg/130704/1-130F4110353502-lp.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院历时两年,圆满完成国家政府间国际科技合作项目&mdash;&mdash;中加沙油炼制技术合作研究。我院科技人员研发了加拿大沙油在非高压不加氢气的条件下蒸馏出轻质燃料油直接替代0号柴油应用的创新技术。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 验收专家组对项目进行了严格的评审,最后提出结论意见:该技术成果的关键是研制出的蒸馏催化剂,它是沙油炼制技术的一次创新,它解决了加拿大沙油无法直接蒸馏轻质燃料油的难题。该技术填补了国内外的空白,达到国际领先水平。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 专家建议:将该成果拓展到东南亚含油岩石、委内瑞拉奥里油和国内含油岩石的应用开发上。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130704/1-130F4110353502.jpg\" /></span></p>\r\n', 1, 0, '未知', '国际,科技,合作项目,—,中,加沙,油,炼制,', '2006-12-12 06:05:00', '2020-06-02 02:11:01', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(28, 35, 0, '棕榈毛油直接法转换生物柴油及催化燃烧技术', 'admin', '棕榈毛油直接法转换生物柴油及催化燃烧技术,是黑龙江省能源环境研究院自主研发并完全拥有该技术知识产权的创新技术。生物柴油是被当前世界公认的石化柴油的友好替代燃料,是', '/kjfh/uploads/allimg/130704/1-130F41223151b-lp.jpg', '<p>\r\n <span style=\"font-size: 20px\">棕榈毛油直接法转换生物柴油及催化燃烧技术,是黑龙江省能源环境研究院自主研发并完全拥有该技术知识产权的创新技术。生物柴油是被当前世界公认的石化柴油的友好替代燃料,是新型环保的可再生能源。<br />\r\n   黑龙江省能源环境研究院面对世界石油能源紧张的形势,积极探索可再生的生物柴油技术。经过多年的研究与试验,建立油品改性和催化燃烧技术理论,研发出一套切实可行的工艺路线和生产方法,提出棕榈毛油直接合成生物柴油和催化燃烧理论。该技术关键在于高效降粘组分、抗腐蚀组分、能量增强组分和独特的脱酸及催化燃烧组分等,它是直接法将棕榈毛油改性成生物柴油的关键助剂。<br />\r\n   B50棕榈毛油直接法转换生物柴油是由棕榈毛油、催化剂及柴油直接调合而成比例为棕榈毛油 50 %,催化剂 5 %,柴油 45 %,它是完全可以替代柴油的新型环保燃料油。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><strong>B50</strong><strong>棕榈毛油生物质柴油的技术指标 </strong></span></p>\r\n<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <strong>序号 </strong></td>\r\n <td style=\"width: 216px\">\r\n <strong>检验项目 </strong></td>\r\n <td style=\"width: 132px\">\r\n <strong>检验方法 </strong></td>\r\n <td style=\"width: 127px\">\r\n <strong>检验结果 </strong></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 1</td>\r\n <td style=\"width: 216px\">\r\n  密度( 30 ℃ ,g/cm 3</td>\r\n <td style=\"width: 132px\">\r\n GB/T1884</td>\r\n <td style=\"width: 127px\">\r\n 0.86</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 2</td>\r\n <td style=\"width: 216px\">\r\n  密度( 40 ℃ ,g/cm 3</td>\r\n <td style=\"width: 132px\">\r\n GB/T1884</td>\r\n <td style=\"width: 127px\">\r\n 0.825</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 3</td>\r\n <td style=\"width: 216px\">\r\n  硫含量,%( m/m </td>\r\n <td style=\"width: 132px\">\r\n GB/T 380</td>\r\n <td style=\"width: 127px\">\r\n 0.05</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 4</td>\r\n <td style=\"width: 216px\">\r\n  酸度, mgKOH/100mL</td>\r\n <td style=\"width: 132px\">\r\n GB/T 258</td>\r\n <td style=\"width: 127px\">\r\n 7.55</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 5</td>\r\n <td style=\"width: 216px\">\r\n  灰分,%( m/m </td>\r\n <td style=\"width: 132px\">\r\n GB/T 508</td>\r\n <td style=\"width: 127px\">\r\n 0.01</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 6</td>\r\n <td style=\"width: 216px\">\r\n  铜片腐蚀( 50 ℃ , 3 h , 级</td>\r\n <td style=\"width: 132px\">\r\n GB/T 5096</td>\r\n <td style=\"width: 127px\">\r\n 1</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 7</td>\r\n <td style=\"width: 216px\">\r\n  水分,%( V/V </td>\r\n <td style=\"width: 132px\">\r\n GB/T 260</td>\r\n <td style=\"width: 127px\">\r\n 痕迹</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 8</td>\r\n <td style=\"width: 216px\">\r\n  机械杂质</td>\r\n <td style=\"width: 132px\">\r\n GB/T 511</td>\r\n <td style=\"width: 127px\">\r\n 无</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 9</td>\r\n <td style=\"width: 216px\">\r\n  运动粘度( 30 ℃ ,mm 2 /s</td>\r\n <td style=\"width: 132px\">\r\n GB/T 6536</td>\r\n <td style=\"width: 127px\">\r\n 12.2</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 10</td>\r\n <td>\r\n  运动粘度( 40 ℃ ,mm 2 /s</td>\r\n <td>\r\n GB/T 6536</td>\r\n <td>\r\n 6.94</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 11</td>\r\n <td style=\"width: 216px\">\r\n  凝点, ℃</td>\r\n <td style=\"width: 132px\">\r\n GB/T 570</td>\r\n <td style=\"width: 127px\">\r\n 12</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 12</td>\r\n <td style=\"width: 216px\">\r\n  闪点(闭口), ℃</td>\r\n <td style=\"width: 132px\">\r\n GB/T 261</td>\r\n <td style=\"width: 127px\">\r\n 56</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 13</td>\r\n <td style=\"width: 216px\">\r\n  十六烷值</td>\r\n <td style=\"width: 132px\">\r\n GB/T 386</td>\r\n <td style=\"width: 127px\">\r\n 49.0</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 14</td>\r\n <td style=\"width: 216px\">\r\n  残炭,%( m/m </td>\r\n <td style=\"width: 132px\">\r\n SH/T0170</td>\r\n <td style=\"width: 127px\">\r\n 0.3</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<div style=\"clear: both\">\r\n &nbsp;</div>\r\n<p>\r\n <span style=\"font-size: 20px\">  B40棕榈毛油直接法转换生物柴油是由棕榈毛油、催化剂及柴油直接调合而成比例为棕榈毛油 40 %,催化剂 4 %,柴油 56 %,它是完全可以替代柴油的新型环保燃料油。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><strong>B40</strong><strong>棕榈毛油生物质柴油的技术指标</strong></span><br />\r\n &nbsp;</p>\r\n<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n <strong>序号 </strong></p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n <strong>检验项目 </strong></p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n <strong>检验方法 </strong></p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n <strong>检验结果 </strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 1</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  密度( 20 ℃ ,g/cm 3</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T1884</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.856</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 2</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  硫含量,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 380</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.05</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 3</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  酸度, mgKOH/100mL</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 258</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 7.10</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 4</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  灰分,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 508</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.01</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 5</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  铜片腐蚀( 50 ℃ , 3 h , 级</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 5096</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 1</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 6</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  水分,%( V/V </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 260</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 痕迹</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 7</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  机械杂质</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 511</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 无</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 8</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  运动粘度( 20 ℃ ,mm 2 /s</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 6536</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 10.00</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 9</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  凝点, ℃</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 570</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 3</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 10</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  闪点(闭口), ℃</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 261</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 60</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 11</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  十六烷值</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 386</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 49.5</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 12</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  残炭,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n SH/T0170</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.3</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p style=\"clear: both\">\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">  B30棕榈毛油直接法转换生物柴油是由棕榈毛油、催化剂及柴油直接调合而成比例为棕榈毛油 30 %,催化剂 3 %,柴油 67 %,它是完全可以替代柴油的新型环保燃料油。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><strong>B30</strong><strong>棕榈毛油生物质柴油的技术指标</strong></span></p>\r\n<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n <strong>序号 </strong></p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n <strong>检验项目 </strong></p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n <strong>检验方法 </strong></p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n <strong>检验结果 </strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 1</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  密度( 20 ℃ ,g/cm 3</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T1884</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.850</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 2</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  硫含量,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 380</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.05</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 3</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  酸度, mgKOH/100mL</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 258</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 7.00</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 4</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  灰分,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 508</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.01</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 5</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  铜片腐蚀( 50 ℃ , 3 h , 级</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 5096</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 1</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 6</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  水分,%( V/V </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 260</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 痕迹</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 7</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  机械杂质</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 511</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 无</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 8</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  运动粘度( 20 ℃ ,mm 2 /s</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 6536</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 6.80</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 9</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  凝点, ℃</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 570</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 2</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 10</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  闪点(闭口), ℃</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 261</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 62</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 11</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  十六烷值</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 386</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 49.8</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 12</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  残炭,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n SH/T0170</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.3</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p style=\"clear: both\">\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n &nbsp;<img alt=\"\" src=\"/kjfh/uploads/allimg/130704/1-130F41223151b.jpg\" style=\"width: 405px; height: 507px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 20px\">  棕榈毛油直接法转换生物柴油已完成柴油机台架长期可靠性考核,完全可以替代柴油应用。<br />\r\n   应用B50生物柴油时发动机未做任何改动冷车启动一次成功连续运行期间无停火、爆燃现象。发动机怠速、中速、高速时运行平稳所带发电机满负荷运行正常。高压油泵柱塞付不会咬死喷油嘴不会阻塞运行安全可靠。<br />\r\n   发动机燃用棕榈生物柴油燃烧完全,长期应用后拆机检查,活塞顶部、燃烧室、进气门、排气门室的积炭接近于零,远远小于燃用柴油的积炭,发动机在大负荷和急加速状态下,排气管不冒黑烟。<br />\r\n   能源消耗方面,燃用棕榈毛油生物柴油由于采用催化燃烧技术,比燃用石化柴油在同等条件下节油 4 %。<br />\r\n   其综合性能优于柴油,完全可以在高、中、低速,大、中、小型柴油机上替代柴油应用。<br />\r\n   下面是长期应用后拆机情况:</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130704/1-130F4122435c0.jpg\" style=\"width: 451px; height: 660px\" /><br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130704/1-130F415013Y17.jpg\" style=\"width: 418px; height: 658px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 20px\"><strong>经济效益 </strong><br />\r\n   采用直接法将棕榈毛油转换成生物柴油,生产中不像酯化法需使用大量醇类及酸液,不用纯碱做中和,不产生大量废甘油及废水,工艺简单,运行成本低。与柴油批发价相比每吨低数百元,经济效益显著。         </span><br />\r\n <span style=\"font-size: 20px\">  生物柴油在销售渠道中享受国家相关的政策补贴,相当于企业又获得一定的利润,并可以为国家节省大量的柴油,社会效益和经济效益巨大。</span></p>\r\n', 1, 0, '未知', '棕榈,毛油,直接,法,转换,生物,柴油,及,催化,', '2006-12-01 07:02:00', '2020-06-02 02:11:01', NULL),
(29, 36, 19, '国家“九五”重点科技攻关计划——化学脱硫技术工业试验及性能考核', 'admin', '我研究院承担的国家九五重点科技攻关计划化学脱硫技术工业试验及性能考核[课题任务书编号96- A19-02-05)] 在邹家华副委员长和国家环保总局解振华局长的关怀和支持下,完成了在', '/kjfh/uploads/allimg/130707/1-130FH11334T9.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院承担的国家&ldquo;九五&rdquo;重点科技攻关计划&mdash;&mdash;化学脱硫技术工业试验及性能考核[课题任务书编号96- A19-02-05)] 在邹家华副委员长和国家环保总局解振华局长的关怀和支持下,完成了在发电厂的工业试验及性能考核。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 国家环保监测部门在发电厂对应用化学脱硫技术试验进行监测,监测结果脱硫效果显著 。 该项目以满分的成绩通过了国家科技部组织的专家验收。并获得黑龙江省科技进步三等奖。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1115D22.jpg\" style=\"width: 282px; height: 411px\" /><br />\r\n 邹家华副委员长批示<br />\r\n <br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH11241143.jpg\" style=\"width: 376px; height: 435px\" /><br />\r\n 国家电力公司呈给邹家华副委员长的函<br />\r\n <br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH11334T9.jpg\" style=\"width: 435px; height: 292px\" /><br />\r\n 黑龙江省科技进步三等奖证书</span></p>\r\n', 1, 0, '未知', '国家,“,九五,”,重点,科技,攻关计划,—,化学,', '2008-03-03 06:04:00', '2020-06-02 02:11:01', NULL),
(30, 37, 19, '国家“十五”重点科技攻关计划——清洁能源项目', 'admin', '注:黑龙江省能源环境研究院原名为黑龙江省节油技术开发中心 我研究院与清华、中科院工程热物理所、国家电力公司西安热工院、国家电站工程技术研究中心、中国洁净煤中心等国家', '/kjfh/uploads/allimg/130707/1-130FH1204H08-lp.jpg', '<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1204H08.jpg\" style=\"width: 553px; height: 300px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">注:黑龙江省能源环境研究院原名为黑龙江省节油技术开发中心</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院与清华、中科院工程热物理所、国家电力公司西安热工院、国家电站工程技术研究中心、中国洁净煤中心等国家级科研院所共同承担国家&ldquo;十五&rdquo;重点科技攻关计划&mdash;&mdash;清洁能源项目,其中我研究院承担了化学脱硫工业性示范及设备产业化课题。</span></p>\r\n<p style=\"text-align: center\">\r\n <br />\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1213DS.jpg\" style=\"width: 376px; height: 264px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">应用管式电炉进行脱硫试验</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH12209148.jpg\" style=\"width: 377px; height: 298px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">科技人员应用碘量法测试 SO2</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 加入脱硫剂的煤燃烧后,烟气中SO2排放浓度达到国家最新标准Ⅱ时段要求。在 CRF 电站燃烧检测装置上对不同含硫量原煤含硫量为0.5%、1.0%、1.5%、2.0%)进行脱硫考核。我研究院圆满地通过了考核,并通过科技部组织的专家验收。</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH12253U8.jpg\" style=\"width: 376px; height: 263px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">CRF 电站燃烧检测装置</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1232SC.jpg\" style=\"width: 237px; height: 275px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">国家验收意见</span></p>\r\n', 1, 0, '未知', '国家,“,十五,”,重点,科技,攻关计划,—,注,', '2008-03-03 06:04:00', '2020-06-02 02:11:01', NULL),
(31, 38, 19, '国家“十五”重点科技攻关计划—工业锅炉脱硫试验与性能考核', '李福裿', '《工业锅炉脱硫试验与性能考核》是国家十五期间化学脱硫课题的深化研究脱硫效率进一步提高。燃煤锅炉烟气中污染物排放达到国家《锅炉大气污染物排放标准》要求烟气中SO2排', '/kjfh/uploads/allimg/130707/1-130FH12F2263-lp.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 《工业锅炉脱硫试验与性能考核》是国家&ldquo;十五&rdquo;期间化学脱硫课题的深化研究脱硫效率进一步提高。燃煤锅炉烟气中污染物排放达到国家《锅炉大气污染物排放标准》要求烟气中SO2排放浓度小于等于900mg/m3。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 工业锅炉脱硫技术采用新型的催化脱硫方法将烟气通过脱硫净化装置中的催化脱硫剂在催化脱硫剂的作用下使烟气中绝大部分的SO2固化形成硫酸盐等固体沉积在净化装置的底部烟气排放达到国家标准。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该技术工艺简单,投资少,效率高,达到国际先进水平。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH12F2263.jpg\" style=\"width: 624px; height: 205px\" /></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">工业锅炉脱硫工艺路线图</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <font size=\"5\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font><span style=\"font-size: 20px\">该技术已在太原煤气化(集团)有限公司成功地进行了工业性示范,太原市环境监测中心站对工业性示范进行了监测,其结果是:</span><br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 烟气未经脱硫前SO2排放浓度为2423mg/m3<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 烟气经过脱硫后SO2排放浓度为150mg/m3。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 脱硫率达到94%。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH12S0562.jpg\" style=\"width: 308px; height: 429px\" /></span></p>\r\n<p>\r\n &nbsp;</p>\r\n', 1, 0, '综合办', '国家,“,十五,”,重点,科技,攻关计划,—,工业,', '2008-03-03 06:03:00', '2020-06-02 02:11:01', NULL),
(32, 39, 19, '奥里油或超重质沥青蒸馏轻质燃料油技术研究', '李福裿', '奥里油或超重质沥青是应用常规技术提炼出汽、煤、柴油等石化产品后的终极产品,目前,国内外都是采用高温、高压、加氢气方法从奥里油或超重质沥青中加工轻质燃料油。我院研制', '/kjfh/uploads/allimg/130707/1-130FH13314330-lp.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 奥里油或超重质沥青是应用常规技术提炼出汽、煤、柴油等石化产品后的终极产品目前国内外都是采用高温、高压、加氢气方法从奥里油或超重质沥青中加工轻质燃料油。我院研制的在奥里油或超重质沥青中加入3%5%的液体催化剂能在非高压、不加氢气的条件下从室温加热到450℃蒸馏出轻质燃料油来替代0号柴油技术。是一次高科技的研发过程是石油炼制技术的一次重大突破。</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH13314330.jpg\" style=\"width: 467px; height: 203px\" /></span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">轻质燃料油蒸馏工艺<br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH13439214.jpg\" style=\"width: 175px; height: 131px\" /><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH13454G2.jpg\" style=\"width: 171px; height: 132px\" /><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1350BN.jpg\" style=\"width: 175px; height: 131px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 奥里油&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;催化剂&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;轻质燃料油</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此技术能使轻质燃料油出油率提高 30%,蒸馏后的固体残渣可以替代煤炭应用。这是真正意义的原油&ldquo;吃干榨净&rdquo;。此技术的产业化将是能源领域的一次创新,会获得巨大的经济效益。目前,该技术国家已正式立项,为国家&ldquo;振兴老工业基地&rdquo; 首批科技专项中的唯一能源项目2004BA907A32。</span></p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH13604X7.jpg\" style=\"width: 203px; height: 260px\" /></p>\r\n', 1, 0, '综合办', '奥里,油,或,超重,质,沥青,蒸馏,轻质,燃料油,', '2008-03-03 05:58:00', '2020-06-02 02:11:01', NULL),
(33, 40, 0, 'M30车用甲醇汽油技术', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH15TU30-lp.jpg', '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH20GJJ.jpg\" /></div>\r\n', 1, 0, '未知', 'M30,车用,甲醇,汽油,技术,', '2006-06-08 14:06:00', '2020-06-02 02:11:01', NULL),
(34, 41, 19, '奥里油转化轻质燃料油技术', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH2192T55-lp.jpg', '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH2192T55.jpg\" style=\"width: 622px; height: 3237px\" /></div>\r\n', 1, 0, '未知', '奥里,油,转化,轻质,燃料油,技术,', '2006-06-08 14:11:00', '2020-06-02 02:11:01', NULL),
(35, 42, 19, '含油岩石提炼轻质燃料油技术', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH2261a52-lp.jpg', '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH2261a52.jpg\" /></div>\r\n', 1, 0, '未知', '含油,岩石,提炼,轻质,燃料油,技术,', '2006-06-08 14:20:00', '2020-06-02 02:11:01', NULL),
(36, 43, 19, '石脑油转化高性能燃料', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH23024364-lp.jpg', '<img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH23024364.jpg\" style=\"width: 648px; height: 3064px\" />', 1, 0, '未知', '石脑油,转化,高性能,燃料,', '2006-06-08 14:27:00', '2020-06-02 02:11:01', NULL),
(37, 44, 0, 'M65型车用甲醇汽油技术', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH235301X-lp.jpg', '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH235301X.jpg\" /></div>\r\n', 1, 0, '未知', 'M65,型,车用,甲醇,汽油,技术,', '2006-06-08 14:32:00', '2020-06-02 02:11:01', NULL),
(38, 45, 0, 'M18型车用甲醇汽油技术', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH23910G3-lp.jpg', '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH23910G3.jpg\" /></div>\r\n', 1, 0, '未知', 'M18,型,车用,甲醇,汽油,技术,', '2006-06-08 14:36:00', '2020-06-02 02:11:01', NULL),
(39, 46, 0, 'M20型车用甲醇汽油技术', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH24211416-lp.jpg', '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH24211416.jpg\" /></div>\r\n', 1, 0, '未知', 'M20,型,车用,甲醇,汽油,技术,', '2006-06-08 14:41:00', '2020-06-02 02:11:01', NULL),
(40, 47, 6, '新版网站上线', 'admin', '能源环境研究院(孵化中心)新版网站现已重新上线啦!', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp; 能源环境研究院(孵化中心)新版网站现已重新上线啦!敬请关注!</span>', 1, 0, '未知', '通知,通知,', '2013-08-02 02:21:16', '2020-06-02 02:11:01', NULL),
(41, 49, 6, '关于举办万方数据平台使用培训的通知', '李福裿', '高效检索与文献分析万方数据知识服务平台使用详解培训大概定在本月20日或23日请大家留意。', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &ldquo;高效检索与文献分析&mdash;&mdash;万方数据知识服务平台使用详解&rdquo;培训大概定在本月20日或23日请大家留意。</span>', 1, 0, '综合办', '万方,数据,平台,使用,培训,高效,检索,与,文献,', '2013-08-16 07:31:47', '2020-06-02 02:11:01', NULL),
(42, 50, 6, '关于举办Triz理论讲座的通知', '李福裿', '题目Triz理论 时间8月16日下午100 地点孵化中心8楼会议室 主讲:王志成 欢迎各位同事积极参加!', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 题目Triz理论<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 时间8月16日下午100<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 地点孵化中心8楼会议室<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主讲:王志成<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 欢迎各位同事积极参加!</span>', 1, 0, '综合办', 'Triz,理论,讲座,通知,题目,Triz,理论,时间,8月', '2013-08-12 07:32:00', '2020-06-02 02:11:01', NULL),
(43, 51, 7, '我院举办TRIZ科技创新讲座', '李福裿', '8月16日我院在8楼会议室举办了TRIZ科技创新讲座由环境科学研究室主任王志成同志进行宣讲。此次讲座是根据我院2013年的工作指示精神而安排旨在加强和提升院科研人员的创新能', '/uploads/allimg/130816/1-130Q6160551549-lp.jpg', '<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/130816/1-130Q6160551549.jpg\" style=\"width: 624px; height: 431px\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8月16日我院在8楼会议室举办了TRIZ科技创新讲座由环境科学研究室主任王志成同志进行宣讲。此次讲座是根据我院2013年的工作指示精神而安排旨在加强和提升院科研人员的创新能力和科研能力。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/130816/1-130Q6160640R0.jpg\" style=\"width: 620px; height: 423px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/130816/1-130Q6160I0635.jpg\" style=\"width: 617px; height: 436px\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王志成系统介绍了TRIZ理论的历史起源从技术系统的进化规律讲起用生动例子介绍了技术矛盾与创新原理、物理矛盾与分离原理和无偿模型与标准解法。本次讲座受到了广大职工的认可大家普遍反映通过此次培训对TRIZ创新理论有了更深入的了解对培养创新思维意义较大不仅增长见识开拓创新思路提高创新能力还可以将TRIZ原理应用于解决科研中遇到的实际问题受益匪浅。</span>', 1, 0, '综合办', '我院,举办,TRIZ,科技创新,讲座,8月,16日,我院,', '2013-08-16 08:09:34', '2020-06-02 02:11:01', NULL),
(44, 52, 6, '关于万方数据“高效检索与文献分析”专题培训的通知', '李福裿', '培训主题:高效检索与文献分析万方数据知识服务平台使用详解 培训讲师:万方数据周雷 培训时间2013年8月23日13:30---1630 培训地点嵩山路15号省科学院会议中心', '', '<div>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 培训主题:&ldquo;高效检索与文献分析&mdash;&mdash;万方数据知识服务平台使用详解&rdquo;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>培训讲师:万方数据&nbsp;周雷<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>培训时间2013年8月23日&nbsp;&nbsp;13:30---1630<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>培训地点嵩山路15号&nbsp;省科学院会议中心</span></div>\r\n', 1, 0, '综合办', '关于,万方,数据,“,高效,检索,与,文献,分析,', '2013-08-19 06:58:12', '2020-06-02 02:11:01', NULL),
(45, 53, 8, '倾听民意 关注发展', '李福裿', '--省科学院群众路线教育实践活动调研组到我院调研 8月15日下午省科学院群众路线教育实践活动调研组来到省能源环境研究院孵化中心召开听取群众意见调研会议。省能源环境', '', '<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">--省科学院群众路线教育实践活动调研组到我院调研</span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp;<br />\r\n&nbsp; &nbsp; 8月15日下午省科学院群众路线教育实践活动调研组来到省能源环境研究院孵化中心召开听取群众意见调研会议。省能源环境研究院孵化中心一、二线代表工勤人员代表及部分党外人士出席会议省科学院院长潘忠出席会议并发言。<br />\r\n&nbsp; &nbsp; 潘忠在讲话中指出,深入开展党的群众路线教育实践活动是党中央做出的重大战略部署。我院按照中央统一部署,正扎实开展教育实践活动,要充分调动基层党员干部的积极性,在教育实践活动中真正做到依靠广大党员群众,确保活动取得实效。他强调,此次会议是在基层代表中开一个集思广益的调研会,希望大家消除顾虑、畅所欲言,说多说少都行,说深说浅都行,说错说对都行,为开展好群众路线教育实践活动把把脉、支支招。<br />\r\n&nbsp; &nbsp; 会上,参会各位代表,本着&ldquo;知无不言、言无不尽&rdquo;的态度纷纷各抒己见,紧扣会议要求,聚焦院所建设,紧密联系工作中的实际,开门见山的找问题,潘院长针对每一个问题都进行了认真的记录,并做出了详实、客观的解答,他指出这些发言饱含真知灼见,是直言诤言,也是良计良策,既体现了大家对群众路线教育实践活动的积极拥护,也体现了大家对广大党员干部的殷切期许。同时,更应该深刻地认识到,群众利益无小事,必须坚持走群众路线,凡是涉及群众切身利益和实际困难的事情,再小也要竭尽全力去抓好办好,切实践行为人民服务的宗旨。<br />\r\n&nbsp; &nbsp; 会后,我院群众路线教育实践活动领导小组组织了专题讨论,对下一步工作开展进行了研究部署和具体安排。</span>', 1, 0, '综合办', '倾听,民意,关注,发展,省,科学院,群众,', '2013-08-15 03:27:00', '2020-06-02 02:11:01', NULL),
(46, 54, 9, '生物质能源发展趋势', 'admin', '生物质能源发展趋势', '', '<span style=\"font-size: 22px\">请点击下载:</span>\r\n<table width=\"450\">\r\n <tbody>\r\n <tr>\r\n <td height=\"30\" width=\"20\">\r\n <span style=\"font-size: 22px\"><strong><a href=\"/uploads/soft/130827/生物质能源发展趋势.doc\" target=\"_blank\"><img align=\"middle\" alt=\"\" border=\"0\" src=\"/plus/img/addon.gif\" /></a></strong></span></td>\r\n <td>\r\n <span style=\"font-size: 22px\"><strong><a href=\"/uploads/soft/130827/生物质能源发展趋势.doc\" target=\"_blank\"><u>生物质能源发展趋势</u></a></strong></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', 1, 0, '能源化学研究室', '生物质,能源,发展,趋势,生物质,能源,发展,', '2013-08-27 05:02:29', '2020-06-02 02:11:01', NULL),
(47, 55, 9, '我国生物质能源的特点和发展方向', 'admin', '请点击下载: 我国生物质能源的特点和发展方向', '', '<span style=\"font-size: 22px\">请点击下载: </span>\r\n<table width=\"450\">\r\n <tbody>\r\n <tr>\r\n <td height=\"30\" width=\"20\">\r\n <span style=\"font-size: 22px\"><a href=\"/uploads/soft/130827/我国生物质能源的特点和发展方向.docx\" target=\"_blank\"><img align=\"middle\" alt=\"\" border=\"0\" src=\"/plus/img/addon.gif\" /></a></span></td>\r\n <td>\r\n <span style=\"font-size: 22px\"><a href=\"/uploads/soft/130827/我国生物质能源的特点和发展方向.docx\" target=\"_blank\"><u>我国生物质能源的特点和发展方向</u></a></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', 1, 0, '未知', '我国,生物质,能源,的,特点,和,发展方向,请,', '2013-08-27 05:03:39', '2020-06-02 02:11:01', NULL),
(48, 56, 7, '黑龙江省能源环境研究院与延寿县技术合作洽谈', '刘伟', '2013年8月22日应延寿县政协主席杨晓春的邀请黑龙江省能源环境研究院院长徐晓秋、副院长关春玲同志以及科研办和财务办同志一行五人来到延寿县交流访问。 徐晓秋院长一行受', '/uploads/allimg/130827/1-130RGA504317-lp.JPG', '<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/130827/1-130RGA504317.JPG\" style=\"width: 510px; height: 396px\" /></span><br />\r\n &nbsp;</div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年8月22日应延寿县政协主席杨晓春的邀请黑龙江省能源环境研究院院长徐晓秋、副院长关春玲同志以及科研办和财务办同志一行五人来到延寿县交流访问。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋院长一行受到了延寿县政协主席杨晓春、延寿县副县长呼大鹏同志的热烈欢迎。在县政协会议室,徐院长首先介绍了研究院的概况,重点介绍了优势学科的发展及重点科研成果,并就延寿县所需的技术需求及下一步的合作构想与延寿县领导交换了意见。杨晓春主席对此表示赞同,并表示愿意与黑龙江省能源环境研究院建立长期、紧密的合作关系。下一步将就有机废弃物处理等领域的项目申报展开合作。</span>', 1, 0, '生物质能源实验室', '黑龙江省,能源,环境,研究院,与,延,寿县,2013年,', '2013-08-27 08:51:56', '2020-06-02 02:11:01', NULL),
(49, 57, 7, '能源环境研究院举办“马来西亚培训学习”经验交流会', '王志成', '能源院孵化中心举办马来西亚培训学习经验交流会 2013年9月18日下午能源院孵化中心举办了马来西亚培训学习经验交流会。我院青年科技人员张玥同志做了内容丰富的培训学习汇报', '/uploads/allimg/131010/1-13101016351M43-lp.JPG', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年9月18日下午能源院举办了马来西亚培训学习经验交流会。我院青年科技人员张玥同志做了内容丰富的培训学习汇报各科室青年科技人员参与了此次经验交流会。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 张玥同志在马来亚大学理学院化学系的胶体与表面实验室从事乳化柴油相关研究。经过四个月的学习,学到了乳化柴油相关的理论知识,制备出澄清透明、性质稳定的柴油微乳液,研究工作与现阶段工作很好的结合在一起,为今后工作起到指导性作用。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 张玥同志介绍了马来西亚的风土人情和所在大学的基本情况,在语言学习、实验室学习、日常生活等方面给与会人员做了详细讲述,总结了在国外学习和生活的体会和经验,使大家了解了马来亚大学的科研情况,开拓了大家的视野,也与青年科技人员们分享了国外生活学习的宝贵经验。青年科技人员们纷纷提出感兴趣的问题,会议气氛活跃。&nbsp;</span><br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后,科研与产业化办公室主任王志成同志做了总结发言。希望全体科技人员借鉴宝贵经验,努力提高自身科研及英语水平,争取更多的出国学习机会,为我院更好更快发展贡献自己的力量。</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/131010/1-13101016351M43.JPG\" style=\"width: 519px; height: 346px\" /></p>\r\n<p>\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/131010/1-131010163540295.JPG\" style=\"width: 519px; height: 345px\" /></p>\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n', 1, 0, '环境科学与节能技术研究', '能源,环境,研究院,孵化,中心,举办,“,能源,院,', '2013-10-10 07:09:00', '2020-06-02 02:11:01', NULL),
(50, 58, 7, '院产业处领导来我院产业基地检查指导工作', '王志成', '院产业处领导来我院产业基地检查指导工作 2013年10月11日上午院产业处孙宇峰处长、范延新、曹海虹副处长来到我院双城产业基地检查院产业化基金项目《M15车用甲醇汽油复合添加剂', '/uploads/allimg/131028/1-13102Q620470-L.jpg', '<h1>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size: 20px\">2013年10月11日上午院产业处孙宇峰处长、范延新、曹海虹副处长来到我院双城产业基地检查院产业化基金项目《M15车用甲醇汽油复合添加剂》执行情况。我院科研与产业办主任王志成、副主任刘伟以及项目组负责人张树华、刘岩陪同前往。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 孙宇峰处长仔细询问了产业项目的生产情况科研与产业办和项目组详细介绍了生产流程、产量、效益等生产经营情况现已全面、超额完成任务书的技术、经济考核指标项目可以圆满结题还介绍了下一步M25车用甲醇汽油复合添加剂、车用复合调节剂的生产开发情况。孙宇峰处长表示这是我院产业基金支持的较大项目要及时、认真地对产业工作进行总结以便给今后产业基金支持提供依据。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 科研与产业办和项目组表示有院领导和产业基金的支持,我院产业工作一定能更好更快发展。</span><br />\r\n <br />\r\n &nbsp;</h1>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/131028/1-13102Q62Z3627.JPG\" style=\"width: 558px; height: 373px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/131028/1-13102Q6292D49.JPG\" style=\"width: 558px; height: 373px\" /></span></p>\r\n', 1, 0, '科研与产业化办公室', '院,产业,处,领导,来,我院,基地,检查,指导工作,', '2013-10-28 08:30:16', '2020-06-02 02:11:01', NULL),
(51, 59, 7, '能源院四项课题顺利通过鉴定', '王志成', '10月23日我院成功地召开科学院预研课题利用页岩油制取油砂分离剂的研究、全馏分页岩油改质转化轻质运输燃料工艺的研究院青年基金膜生物反应器中改性复合膜的制备与性能研究', '/uploads/allimg/131031/1-131031151Z0534-lp.JPG', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10月23日我院成功地召开科学院预研课题&mdash;&mdash;利用页岩油制取油砂分离剂的研究、全馏分页岩油改质转化轻质运输燃料工艺的研究,院青年基金&mdash;&mdash;膜生物反应器中改性复合膜的制备与性能研究,省财政基本科研业务费专项&mdash;&mdash;车用汽油复合调节剂技术研究等四项课题鉴定会。会议由省科学院科研处王阳处长主持,鉴定专家为哈工程、黑大等高校知名能源专家。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 鉴定委员会听取了课题组的工作汇报,审查了相关技术资料,经认真质询、讨论,形成鉴定意见。专家组认为,这四项课题在选题上紧扣能源、环境的主线,研究内容较新颖,技术路线及工艺合理可行,均达到国内先进水平。专家还建议进一步完善数据,扩大研究领域,开展放大实验。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王阳处长作总结性发言,对专家组的辛勤工作表示感谢,对课题组提出要求,要按各位专家提出的意见、建议进一步充实数据,修定研究方法,完善课题鉴定材料。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后,课题鉴定会在热烈的掌声中胜利闭幕。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/131031/1-131031151Z0534.JPG\" style=\"width: 519px; height: 346px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/131031/1-1310311519542F.JPG\" style=\"width: 519px; height: 346px\" /></p>\r\n', 1, 0, '科研与产业化办公室', '能源,院,四项,课题,顺利,通过鉴定,10月,23日,', '2013-10-31 07:13:13', '2020-06-02 02:11:01', NULL),
(52, 60, 6, '关于认真落实党的群众路线教育实践活动整改工作的通知', '李福裿', '院各部门: 为深入推进党的群众路线教育实践活动,认真做好整改工作,使整改工作扎实、有序推进,现就有关要求通知如下: 一、提高思想认识,增强工作紧迫性 整改落实是确保党', '', '<span style=\"font-size:22px;\">院各部门:<br />\r\n&nbsp;&nbsp;&nbsp; 为深入推进党的群众路线教育实践活动,认真做好整改工作,使整改工作扎实、有序推进,现就有关要求通知如下:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp; 一、提高思想认识,增强工作紧迫性<br />\r\n&nbsp;&nbsp;&nbsp; 整改落实是确保党的群众路线教育实践活动见成效的一项重要工作,全院要提高思想认识、提高标准和要求,根据第一环节梳理归纳的意见和建议内容,集中解决问题。要切实增强整改工作的重要性和紧迫性,确保每一项整改内容落实到位。<br />\r\n&nbsp;&nbsp;&nbsp; 二、加强组织领导,落实整改责任<br />\r\n&nbsp;&nbsp;&nbsp; 院领导和各科室负责人要对照整改内容和整改要求认真抓好落实,对查找出来的问题即查即改,边查边改。对能够及时解决的问题,切实做到不等、不拖、不推。院领导班子要认真撰写整改材料,分析问题原因,剖析思想根源,明确努力方向,提出整改措施。<br />\r\n&nbsp;&nbsp;&nbsp; 三、加强督促检查,通报检查情况<br />\r\n&nbsp;&nbsp;&nbsp; 群众路线领导小组要对照整改内容逐项认真检查全院的整改落实情况,责任领导要及时了解整改和落实工作情况,活动办公室要督促办法推进,掌握进度,定期通报。<br />\r\n&nbsp;&nbsp;&nbsp; 四、制定整改时限,保障活动按期完成<br />\r\n&nbsp;&nbsp;&nbsp; 领导班子和各部门要明确整改内容、制定整改时限,突出整改重点,确保整改效果。</span>', 1, 0, '综合办', '关于,认真,落实,党的,群众,路线教育,实践,院,', '2013-11-28 02:21:00', '2020-06-02 02:11:01', NULL),
(53, 61, 7, '践行群众路线、深入一线检查', 'admin', '--省财政厅庄炳艳处长到能源院检查维修施工情况 9月22日下午省财政厅教科文处庄炳艳处长、曹铁峰省科学院条财处沙长青处长、张云志副处长一同到我院实验楼维修项目施工现', '', '<div style=\"text-align: right; \">\r\n <span style=\"font-size:22px;\">--省财政厅庄炳艳处长到能源院检查维修施工情况</span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; 9月22日下午省财政厅教科文处庄炳艳处长、曹铁峰省科学院条财处沙长青处长、张云志副处长一同到我院实验楼维修项目施工现场检查指导工作省能源院徐晓秋院长、关春玲副院长及办公室人员陪同检查。庄处长要求施工方必须把安全作为工作的重中之重来抓确保工程按时、保质完工。</span><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:22px;\">庄处长先后来到实验室、中试车间等施工现场,听取了工程负责人关于维修改造项目的实施方案、质量监督和总体进展等情况汇报,认真查看了维修改造项目的施工质量、工程进度和安全设施情况,仔细询问了一些维修改造的实施细节,并对维修改造方案的进一步完善提出了指导性意见。<br />\r\n&nbsp; &nbsp; 庄处长最后指出,做全体员工满意的放心工程是关乎党的群众路线教育实践活动落实到位的关键,项目负责部门要在工期紧、任务重和气温突降的困难条件下,做到精细化施工、科学化管理,确保维修改造项目按期保质完工,切实为能源院职工提供满意的工作环境。</span><br />\r\n', 1, 0, '未知', '践行,群众路线,、,深入,一线,检查,省,财政厅,', '2013-09-22 03:28:00', '2020-06-02 02:11:01', NULL),
(54, 62, 7, '践行群众路线、科技服务先行', '王志成', '为实践党的群众路线活动2014年2月19日黑龙江省能源环境研究院院长徐晓秋、省科学院外事处处长高德玉以及科研办和寒区生物质能源技术研究中心科研人员等5名同志来到齐齐哈', '/uploads/allimg/140225/1-1402250U9100-L.jpg', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为实践党的群众路线活动2014年2月19日黑龙江省能源环境研究院院长徐晓秋、省科学院外事处处长高德玉以及科研办和寒区生物质能源技术研究中心科研人员等5名同志来到齐齐哈尔市甘南县黑龙江蓝天能源发展股份有限公司交流访问为企业把脉排忧解难。 </span>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140225/1-1402250Z123646.JPG\" style=\"width: 506px; height: 328px\" /></span></div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐院长一行受到了黑龙江蓝天能源发展股份有限公司总经理宋兴国、副总于兴友的热烈欢迎。徐院长一行不顾旅途劳顿,直接参观了厂区,了解生产工艺及设备试运行情况。在会议室徐院长首先介绍了研究院的概况,并表示愿意通过院地合作,利用能源院的技术优势为企业保驾护航。徐院长对生产工艺中不合理部分,提出建设性意见。对企业提出的原料预处理难题,表示可以通过技术合作联合攻关解决。宋兴国总经理对省里专家光临表示欢迎,并希望今后能长期合作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 下一步将就对原料预处理及工艺优化项目联合申报课题,展开合作研究。</span>', 1, 0, '科研与产业化办公室', '践行,群众路线,、,科技服务,先行,为,实践,', '2014-02-19 01:12:00', '2020-06-02 02:11:01', NULL),
(55, 63, 7, '积极作为 凝聚推动环保事业正能量<br />--省科学院产业化处到能源院考察指导工作', '李福裿', '2014年3月12日黑龙江省科学院产业化处李骏处长一行到我院考察指导工作。李骏处长考察了我院改造后的综合实验楼和中试实验室并认真听取了我院近期的工作成果以及未来的发展计', '/uploads/allimg/140312/1-140312141110525.JPG', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年3月12日黑龙江省科学院产业化处李骏处长一行到我院考察指导工作。李骏处长考察了我院改造后的综合实验楼和中试实验室并认真听取了我院近期的工作成果以及未来的发展计划。</span><br />\r\n<div style=\"text-align: center\">\r\n <br />\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140312/1-140312141014343.JPG\" style=\"width: 558px; height: 371px\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源院徐晓秋院长主持了会议,徐晓秋院长首先对产业化处对我院产业化工作给予的支持表示感谢,随后徐院长介绍了我院近期产业主体工作的总体情况,会上双方就能源院现有产业化工作进行了深入探讨。目前我院已研制出符合国Ⅴ标准的汽油添加剂系列产品和柴油添加剂等,与此同时,我院计划利用现有的秸秆无害化处理技术、生物质能源技术和洁净煤生产技术等,在环保重灾领域充分介入,为龙江百姓做出更大的贡献。</span><br />\r\n<div style=\"text-align: center\">\r\n <br />\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140312/1-140312141110525.JPG\" style=\"width: 558px; height: 371px\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 李骏处长对我院近期的发展以及我院对环保领域做出的贡献给予了充分肯定和赞赏,同时鼓励我院进一步提升研究能力,不断发挥我院在龙江产业体系建设中的作用,为龙江环保领域提供更强有力的技术支撑。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140312/1-140312141155342.JPG\" style=\"width: 558px; height: 371px\" /></span></div>\r\n', 1, 0, '综合办', '积极,作为,凝聚,推动,环保,事业,正,能量,省,', '2014-03-12 02:18:00', '2020-06-02 02:11:01', NULL),
(56, 65, 7, '下基层 接地气<br/>--省科学院产业化处与能源院', '王志成', '为进一步了解黑龙江省各地农作物秸秆资源化利用现状2014年3月11日黑龙江省科学院产业化处处长李骏黑龙江省能源环境研究院院长徐晓秋黑龙江省能源环境研究院总工程师高德', '/uploads/allimg/140318/1-14031Q01031493-lp.jpg', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为进一步了解黑龙江省各地农作物秸秆资源化利用现状2014年3月11日黑龙江省科学院产业化处处长李骏黑龙江省能源环境研究院院长徐晓秋黑龙江省能源环境研究院总工程师高德玉研究员以及科研办和生物质能源实验室的负责人一行5人赴望奎县和明水县进行实地考察。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/140318/1-14031Q01031493.jpg\" style=\"width: 600px; height: 503px\" /></span></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 考察期间,我方一行受到了望奎县、明水县科技局和当地企业的热烈欢迎,此行先后参观了国能望奎生物发电有限公司和常青集团明水长青环保能源有限公司,并与企业进行了项目对接。在洽谈过程中,产业化处处长李骏介绍了黑龙江省科学院的相关情况,院长徐晓秋介绍了能源环境研究院的研究领域,着重介绍了生物质能源实验室的科研成果与科研实力,随后,总工程师高德玉研究员了解了企业采用的工艺和经济效益等情况,并参观了企业的生产工厂。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过此次考察,我院对望奎县和青冈县的秸秆利用有了深入的了解,下一步将与两家企业针对秸秆资源化利用过程中的遇到的技术难题开展合作攻关。</span></p>\r\n', 1, 0, '科研与产业化办公室', '下基层,接地,气,省,科学院,产业化,处,与,能源,', '2014-03-10 23:13:00', '2020-06-02 02:11:01', NULL),
(57, 66, 7, '黑龙江省能源环境研究院<br/>首批科研人员赴清华大学学习交流', '李福裿', '为学习借鉴先进技术汲取科研经验我院选派的首批科研骨干于3月14日起程赴清华大学开展学习交流活动省科学院王钢副院长、省能源院徐晓秋院长和关春玲副院长亲自到场送行', '/uploads/allimg/140318/1-14031Q05955136-lp.JPG', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;为学习借鉴先进技术汲取科研经验我院选派的首批科研骨干于3月14日起程赴清华大学开展学习交流活动省科学院王钢副院长、省能源院徐晓秋院长和关春玲副院长亲自到场送行。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140318/1-14031Q05955136.JPG\" style=\"width: 800px; height: 600px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王钢副院长要求此次赴清华学习的人员,要活跃思维,积极主动,认真学习对方的先进科研理念,并以此为指导,让一个点上的闪耀,带动一个面,受益一群人。最后祝此行人员在业务上和人生上都能有所收获。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 自去年9月我院与清华大学建立战略伙伴关系以来双方在高效环保的新型能源领域开展了一系列合作此次选派科研人员互访交流将进一步拓宽我院科研人员视野有利于提升我院的知名度和影响力是深化院际合作的又一成功举措。</span></p>\r\n', 1, 0, '综合办公室', '黑龙江省,能源,环境,研究院,首批,科研,人员,', '2014-03-18 03:01:30', '2020-06-02 02:11:01', NULL),
(58, 67, 7, '院校交流,优势互补,扩大人才互动<br/>--能源院科研人员赴清华大学学习', 'admin', '根据2013年清华大学杨旭东教授来院指导工作期间双方达成的关于人才培养方面的协议我院从现在开始选派科研人员赴清华大学学习首批人员一行四人于3月14日启程。省科学院王钢副', '/uploads/allimg/140318/1-14031Q05955136-lp.JPG', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 根据2013年清华大学杨旭东教授来院指导工作期间双方达成的关于人才培养方面的协议我院从现在开始选派科研人员赴清华大学学习首批人员一行四人于3月14日启程。省科学院王钢副院长、能源院徐晓秋院长和关春玲副院长到场送行。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140318/1-14031Q05955136.JPG\" style=\"width: 573px; height: 442px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王钢院长嘱咐大家,此次清华之行,是各位人生中精彩的一笔,要珍惜此次的学习机会,明确学习目的,认真学习对方的科研理念和先进技术,汲取科研经验,用于指导今后的工作,最后祝大家此次学习圆满成功。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此次赴清华大学的科研人员除学习外,还将参加清华大学科研项目的推广与实施工作,即北京市改善雾霾天气的一项举措--------北京市周边农村无烟村的建设工作,此项目的中试工作已经在我院完成。参加这项工作对该项目在我省的推广应用将起到重要作用。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 选派科研人员到清华大学学习,将进一步提高我院人员素质和水平,拓宽视野,真正做到资源分享、优势互补、科学定位、合作双赢,有利于提高我院的知名度和影响力,是 深化院校合作的新举措。</span></p>\r\n', 1, 0, '未知', '院校,交流,优势互补,扩大,人才,互动,能源,院,', '2014-03-14 23:12:00', '2020-06-02 02:11:01', NULL),
(59, 68, 7, '贯彻精神 认真部署</br>--省能源院召开科研工作会议', '李福裿', '3月27日上午我院2014年创新团队建设工作会议在能源院会议室召开各科研部门负责人出席会议。 徐晓秋院长主持会议并发言,在发言中,徐晓秋院长指出,要紧密围绕郭春景院长到', '/uploads/allimg/140327/1-14032G52Z0Y3-lp.JPG', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3月27日上午我院2014年创新团队建设工作会议在能源院会议室召开各科研部门负责人出席会议。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140327/1-14032G55020I9.JPG\" style=\"width: 550px; height: 365px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋院长主持会议并发言,在发言中,徐晓秋院长指出,要紧密围绕郭春景院长到我院查检创新团队时的讲话精神,把握好科研工作的切入点。徐院长分别从树立成熟的科研理念、完善选题机制、规范工作职能、努力寻求高质量合作等几个方面做出重要指示,为我院下一步的创新团队建设工作指明了方向。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 工作会议对我院创新团队的建设工作进行了全面部署,提出了明确的工作要求,确定了工作的步骤和方法,并解答了各科研部门关于团队建设方面的相关问题,此次会议的召开为我院下一步打造高品质科研创新团队打下了基础,做好了准备。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n &nbsp;<img alt=\"\" src=\"/storage/uploads/allimg/140327/1-14032G5503T39.JPG\" style=\"width: 550px; height: 365px\" /></p>\r\n', 1, 0, '综合办公室', '贯彻,精神,认真,部署,省,能源,院,召开,3月,', '2014-03-27 07:48:25', '2020-06-02 02:11:01', NULL),
(60, 69, 9, '油页岩加工工艺进展', '陈松', '我国页岩油中约含有40%左右的轻柴油馏分约含有45%左右的重柴油馏分,其十六烷值较高,经过精制后可作高速柴油机燃料。我国页岩重柴油馏分含有大量石蜡,也称为含蜡油,从中脱', '', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我国页岩油中约含有40%左右的轻柴油馏分约含有45%左右的重柴油馏分,其十六烷值较高,经过精制后可作高速柴油机燃料。我国页岩重柴油馏分含有大量石蜡,也称为含蜡油,从中脱出的石蜡可作为商品出售。脱蜡油精制后可作为中速柴油机燃料,热裂化或加氢裂化的原料油。 页岩残油在室温下为黑色沥青状固体,直接作为燃料使用时,其凝固点过高。生产沥青时,沥青质量较差。但经过焦化能生产优质石油焦。因此,页岩残油一般作为焦化原料油。<br />\r\n 页岩油常温下为褐色膏状物带有刺激性气味。抚顺页岩油中的轻馏分较少汽油馏分一般仅为2.52.7360℃以下馏分约占4050含蜡重油馏分约占25 30渣油约占2030。页岩油中含有大量石蜡凝固点较高含沥青质较低含氮量高属于含氮较高石蜡基油。世界各地所产的页岩油由于组成和性质不同在密度、含蜡量、凝固点、沥青质、元素组成方面有很大差别但各地页岩油的碳氢重量比均在78左右是最接近天然石油最适于代替天然石油的液体燃料组成。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>组成页岩油的化合物主要有以下几类烃类、含硫化合物、含氮化合物、含氧化合物。页岩油中丰富的烷烃和烯烃可生产相关的高附加值化学品。C610馏分被利用来生产增塑剂C1013馏分中通过生物降解线形十二烷基苯所得的产品作为清洁剂原材料C1418馏分作为脂肪醇和烷基硫化盐产品的原材料重质烷烃馏分通过裂化以生产各种低分子质量的烯烃也可以获得沥青和碳纤维。页岩油硫化物主要为硫化氢、硫醇类、噻吩类及硫茚等有机硫及二硫化物。硫的资源广而廉价工业上、农业上、医药上、染织上和合成材料上的硫和硫化物的用途是非常多的。硫的用途主要是制酸主要是硫酸。页岩油中的含氮化合物可分为3类碱性的、弱碱性的和中性的。碱性含氮化合物主要是叔胺类的吡啶系、喹啉系和异喹啉系化合物弱碱性含氮化合物主要属于吡啶系化合物中性含氮化合物则主要是腈类R-CN。而页岩油中存在的含氮化合物主要为吡啶系氮化物。吡啶碱是多用途的化工原料它能溶解一般溶剂所难溶解的有机物尤其是轻质吡啶广泛用于制药工业。重质吡啶除了氧化制取菸碱酸外又是有色金属矿的浮选剂尤其对硫化物矿具有优良的富集性能。吡啶碱及硫酸吡啶络合物对稀酸侵蚀钢铁有一定的抑制作用可用做钢铁腐蚀抑制剂。页岩油中的含氧化合物有酸性含氧化合物和酚类以及中性含氧化合物。而页岩油中含氧化合物的利用主要以酚类化合物为主。酚类化合物是塑料、染料、合成纤维、电气绝缘、防腐蚀和药品等的主要化学原料。其中重质酚类可以作为铜、铅、锌磁铁等矿物的浮选剂也是制造木材粘合剂、农药杀虫剂等原料。影响页岩油柴油颜色及安定性的主要因素是其中含有大量的不饱和烃及氮、硫、氧等杂原子化合物要解决页岩油柴油质量合格问题关键在于如何脱除页岩油中的氮、硫、氧等杂原子化合物。天然石油的加工技术一般都适用于页岩油的加工。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>目前页岩油的加工方法主要分为加氢处理和非加氢处理2种。加氢处理页岩油可得到液体燃料包括柴油、石脑油和汽油生产的柴油稳定性好产品收率高没有&ldquo;三废&rdquo;排放但一次性投资大所需设备费用及操作费用也很高适合于大型炼油厂而非加氢处理过程设备投资小工艺操作简单费用较低适合中小型炼油厂非加氢处理一般包括酸碱精制、溶剂精制、吸附精制和加入稳定剂等。美国曾对绿河页岩油进行了大量加工方法的研究主要采用加氢预处理法加以改质以脱除砷、氮、硫等杂质然后在炼厂按常规的炼油加工工艺加工成各种油品巴西将页岩油经分馏分成轻馏分和重馏分轻馏分经催化裂化生产汽油重馏分作为燃料油页岩油加氢技术仅有澳大利亚SPP公司达到工业试验阶段通过加氢精制生产超低硫轻质燃料油。抚顺石油化工研究院FRIPP则于20世纪 50年代初就开展了页岩油加工流程的研究工作并提出了一些不同的加工方案。由于60年代天然石油的发现及大量开采页岩油生产逐渐萎缩没再进行研究。不过FRIPP早期研究成果为今后页岩油加工研究提供了宝贵的经验现将各项主要成果概述如下<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1、热加工-加氢精制流程&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>页岩油全馏分焦化、热裂化的直馏混合轻油用纯MoS2加氢精制获得了稳定的1号航煤并提高了液体收率页岩油全馏分焦化馏出油用W-Mo-NiAl系催化剂进行加氢精制可以得到宽馏分航煤约34对加氢油轻质汽车燃料68对全馏分和页岩焦13.7%(对全馏分)。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2、加氢精制-加氢裂化流程&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>19561958年对抚顺页岩油全馏分进行了加氢精制及加氢裂化小试试验。用MoS2 催化剂在26 MPa氢压下加氢精制液体收率可达97未考虑制氢用原料柴油收率为64.5生成油氮含量为0.05%,重油部分脱蜡后可以制取润滑油及石蜡;用 MoS2-W S2一段串联进行加氢裂化轻质油产率可达78.51号航煤可接近40生成油氮含量为0.01%。&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3、加氢精制-催化裂化流程&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1958年用抚顺页岩油全馏分高压固定床精制后含氮约0.08的生成油以低硅铝催化剂在试验室间歇固定床小型装置中进行了催化裂化试验结果汽油收率约35柴油收率31液体产率74。自2005年开始FRIPP针对能源短缺的现实又开展了以页岩油全馏分为原料采用FRIPP开发的具有自主知识产权的加氢裂化催化剂加氢精制催化剂和加氢裂化-加氢处理反序串联FHC-FHT组合工艺技术制取清洁燃料的研究。小试、中试结果表明可生产满足欧V标准的清洁柴油及低硫、优质石脑油且柴油收率高达81液体收率可达97化学氢耗为2.93%。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>酸碱精制是开发较早的精制技术,它包括酸洗、碱洗以及酸碱联合精制。酸洗一般采用浓硫酸、盐酸、磷酸等强酸,目的是脱除油中的胶质、含硫化合物,如硫醇类、硫酚类、硫醚、烷基二硫化物、噻吩和砜类,含氮化合物中的碱性氮可以全部洗去,部分非碱性氮化物、烯烃和芳烃也可以洗去;碱洗采用低浓度的碱液处理,目的是脱除油中的酸性物质,如硫醇、硫酚。&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>溶剂精制是利用某些溶剂对油品的理想组分和非理想组分的溶解度不同,有选择地从油品中脱除某些不安定组分,从而改善油品的安定性。选择合适的溶剂是溶剂精制的关键,应综合考虑溶剂的溶解能力和选择能力。 吸附精制是利用吸附剂对极性化合物较强的吸附作用,脱除油品中的氮化物以及含硫、含氧化合物,常用吸附剂有分子筛、硅胶、氧化铝、硅藻土和白土等。&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>添加稳定剂主要是为了防止芳烃、烯烃缩合和聚合成胶质沥青质,一般是由抗氧剂、分散剂、防腐剂、金属钝化剂等一种或几种添加剂组成的复合剂。其中,抗氧剂能够分解过氧化物,终止自由基生成,从而降低实际胶质,延长诱导期;分散剂能够迅速有效地分散沉渣颗粒,防止滤清器及喷油嘴堵塞;金属钝化剂使油品中溶解性金属离子活性降低,抑制其对油品氧化反应的催化作用,三者作用互补,共同起到改善页岩油柴油馏分稳定性的作用。&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>采用酸碱洗涤法来处理页岩油柴油馏分,结果表明,处理过程中产生的大量酸碱渣难以找到出路,因而未见其工业应用。&nbsp;用极性复合溶剂和醇类复合溶剂联合精制法精制抚顺页岩油轻柴油在很大程度上改善了精制油的安定性精制柴油收率达到84。石油大学重质油国家重点实验室用复合溶剂法精制抚顺页岩油粗柴油在很大程度上改善了精制油的安定性尤其是精制油的色度而且精制柴油收率达到80左右溶剂回收率达到97以上。</span></p>\r\n', 1, 0, '能源化学研究室', '油页岩,加工,工艺,进展,我国,页岩,油中,约,', '2014-03-30 17:09:04', '2020-06-02 02:11:01', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(61, 70, 9, '煤焦油深加工现状、新技术和发展方向', '陈松', '煤焦油行业是一个比较传统的行业尽管近30年来受到石油化工行业的激烈竞争煤焦油行业仍然具有较大的发展潜力尤其近几年来随着新材料和钢铁行业的发展煤焦油资源的高效', '/uploads/140331/1-140331013114D9.jpg', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 煤焦油行业是一个比较传统的行业尽管近30年来受到石油化工行业的激烈竞争煤焦油行业仍然具有较大的发展潜力尤其近几年来随着新材料和钢铁行业的发展煤焦油资源的高效利用再度引起人们的重视。我国是焦炭生产大国约占世界的36左右。焦炭的生产产生大量的副产物&mdash;&mdash;煤焦油我国煤焦油年产量约为500&mdash;600万t加工能力约为450万t在建、扩建、拟建项目能力约为200万t。目前共有约50多家企业进行煤焦油加工其中最为先进的是宝钢集团上世纪从日本引入的煤焦油加工装置加工规模为26万t/a产品品种有26种其次是鞍钢、武钢和本钢。除此以外的其他大多数的煤焦油生产相对分散且以土炼焦工艺为主这样不仅浪费了大量的不可再生资源也污染了环境。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>随着我国经济的不断发展和对环境保护要求的日益提高,煤焦油的深加工成为一个亟待解决的课题。从目前煤焦油行业的发展情况来看,国内的煤焦化行业正处在一次重要的整合变革时期,未来的煤焦油工业正向集中化、精细分离、深加工、新材料合成方向发展。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>一、我国煤焦油产量<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>煤焦油是以芳香烃为主的有机混合物含有1万多种化合物可提取的约200种目前有利用价值且提取经济合理的约50种其深加工所获得的轻油、酚、萘、洗油、蒽、咔唑、吲哚、沥青等系列产品是合成塑料、合成纤维、农药、染料、医药、涂料、助剂及精细化工产品的基础原料也是冶金、合成、建设、纺织、造纸、交通等行业的基本原料许多产品是石油化工中得不到的。因此煤焦深油加工可促进这些行业的发展。<br />\r\n 现代的炼焦生产过程中,从煤气中回收和初级化工产品主要有煤焦油、氨(主要是硫铵)和粗苯3种。煤焦油的产量是根据炼焦生产配煤的种类不同而变化配煤的挥发份越高焦油回收率越多焦油产量越大。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>二、国内外煤焦油加工现状<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1、生产规模<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>日本、德国、法国、俄罗斯等国家的单套焦油蒸馏装置的能力都在10&mdash;50万t/a。从理论上讲能力越大规模效益越好。在资源有限的情况下选择10万t/a的加工装置能最大限度发挥产品的加工价值。只有焦油收集量足够多的时候才能建设5O万t/a焦油加工装置。国内单套焦油蒸馏装置有0.61.235 1015万t/a各种规模。3万t/a以上的规模均为连续蒸馏工艺小于3万t/a的规模都是间歇蒸馏工艺。出现不同加工规模的原因有①焦油加工厂自身焦油产量不同按自产焦油建设相应的规模②未作为一个产业来考虑焦油的加工仅作为一个焦化厂的附带处理单元③大规模焦油加工的技术水平不够④环境保护和能量利用没有达到发达国家的重视程度。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2、产品方案<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国外煤焦油加工有3种模式生产一是全方位多品种提纯和配制各种规格和等级的产品二是在煤焦油加工产品的基础上向着精细化工、染料、医药方面延伸的深加工产品三是重点加工沥青类产品。<br />\r\n 第一种模式的代表是德国吕特格公司。从焦油中分离、配制的产品有220多种萘有4个级别树脂有5个级别蒽有7个级别沥青粘结剂及浸渍料有20个级别。可以根据市场要求在同一装置上改变操作参数生产不同级别的产品达到装置的多功能性。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>第二种模式的代表是日本的住金化学仅对煤焦油中纯化合物进行提纯或延伸试制和生产的产品有180种如酚类衍生物有21种喹啉及衍生物有32种萘衍生物有60种。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>第三种模式的代表有日本三菱株式会社、美国的RiUy公司、澳大利亚Koppem公司都在煤焦油沥青加工上有特色的产品。这些公司对煤焦油蒸馏的其它馏分均不进行加工以混合油的形式出售仅对蒸馏产生的沥青进行加工。因为煤焦油加工过程中沥青产率在50以上做好沥青加工提高沥青的附加值就能够保证焦油加工项目的整体效益。<br />\r\n 国内煤焦油加工产品主要是酚类、萘、洗油、粗蒽、沥青等。各厂的产品质量和数量都基本类似,导致焦油加工的效益平平,与国外差距较大。其主要原因有以下几方面:各焦油加工装置的规模普遍偏小;高质量、高附加值产品较少;生产企业适应市场能力较差;焦油深加工产品的市场有待开发,特别是新产品推向市场时,其难度较大。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3、工艺流程<br />\r\n 国内外焦油蒸馏的工艺大同小异,都是脱水、分馏,但国外的工艺比国内要多样化。国内的焦油蒸馏工艺与国外工艺相比较,差距并不大,只是适用的场合不同。只要对国内工艺的设备、仪表控制、能量利用方面做一些改进工作,就能够变成先进和实用的工艺。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4、环保水平<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>环保主要是指对焦油加工过程中所产生的废水、废气、废渣的处理。焦油加工产生的废水,国内外所采取的措施基本相同,都是集中收集,送焦化厂污水处理装置处理后排放,所不同的是国内污水处理后的指标要差一点。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>废气处理主要是指焦油加工过程中的放散气和沥青烟气的处理。国外焦油加工厂收集这部分废气,并集中到洗涤塔,净化、降温后送管式炉焚烧。有些焦油加工厂的油槽顶部还进行氮封,其放散气排出的可能性就更小。而国内只有个别焦油加工装置对放散气进行集中收集处理,大部分装置都是自由放散。所以在废气处理上应改进。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>焦油加工产生的废渣只有焦油渣,各国处理模式都一样,均是集中收集后混配到煤中。国内配到煤中的设施较差,有些厂随地抛弃现象严重。但只要严格管理,认真处理,达到国外处理水平是完全可以实现的。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>5、节能水平<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>节能降耗是装置的重要指标。焦油加工是高能耗过程,国外在水、蒸汽、煤气消耗方面控制较好,采用空冷、冷热流体换热、多级循环水、低温减压蒸馏、热量回收蒸汽等技术,但电的消耗反而比国内还高。随着国内能源结构的调整,多使用电,减少水、蒸汽和煤气的消耗是一个必然趋势。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>6、装备水平<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>装置的装备水平与机械制造、自控水平密切相关。国内焦油加工的装备水平与国外差距较大,主要原因是过多考虑项目投资额;高温运转设备、耐腐蚀材质、高温高粘度介质的检测仪表等难以找到合适的国内生产厂;即使是国外引进的设备,维修水平相差较远。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>三、国内煤焦油加工技术进展<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1、焦油蒸馏技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内多采用常压、一塔式、切取两混或三混馏分的蒸馏工艺。而引进的煤焦油蒸馏装置有如下特点:采用连续脱水.脱轻油馏分塔为减压操作塔顶采出酚油、压力为13.3kPa塔底为软化点为65℃的软沥青采用方箱管式炉出口焦油温度为330℃余热利用好其中软沥青与焦油换热、各馏分采用蒸汽发生器产生0.3MPa的低压蒸汽馏分塔塔顶的油汽采用空气冷凝冷却器并为减压操作可节能约15一50减压抽出的尾气与分离酚水均送往管式炉焚烧馏分塔材质选用抗腐蚀低碳合金钢。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2、工业萘蒸馏技术<br />\r\n 目前国内多数焦化厂生产的是不酸洗95工业萘只有回收喹啉类的厂家才生产稀酸洗95工业萘。另外生产95工业萘的原料也有不同窄馏分(即萘油馏分)、四混馏分(轻、酚、萘、洗)、三混馏分(酚、萘、洗)、两混馏分(萘、洗)等。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>工业萘蒸馏工艺可分为常压间歇釜式精馏、减压间歇釜式精馏、常压双釜双塔连续精馏、常压双炉双塔连续精馏、常压单炉双塔连续精馏、常压单炉单塔连续精馏、常加压单炉双塔连续精馏等。从精馏塔的实际塔板数来看开始为5O层、后增加到636470层。其精馏塔的塔型有填料塔(瓷环、鲍尔环、波纹板等)、圆泡罩塔、条形泡罩塔、斜孔板塔、浮阀塔等。目前多数大型焦化厂采用70层浮阀塔以两混或三混馏分为原料的常压双炉双塔连续精馏工艺。常压单炉、双塔连续工艺较普遍而宝钢的常压、加压单炉双塔连续工艺的能耗最低。随着计算机的应用单炉、单塔连续精馏工艺有发展前途。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3、焦油蒸馏所获馏分的洗涤技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>这里指的是碱洗脱酚或酸洗脱喹啉装置可分别获得酚盐与硫酸喹啉。一般是先脱酚、后脱喹啉也可只脱酚、不脱喹啉。原料则根据焦油蒸馏切取馏分不同而异有窄馏分、宽馏分之分。洗涤工艺可间歇或连续操作。洗涤设备有空气搅拌、机械搅拌、泵混合、静态混合器、喷射混合器等型式。后两种洗涤器较先进洗涤效果好便于连续操作与自动控制。碱洗脱酚的主要控制因素有用碱浓度、洗涤温度、分离时间、洗涤的级数等。各馏分的洗涤要求馏分含酚小于0.5。宝钢引进的是全连续碱洗脱酚工艺碱液浓度较低为8一10轻油、酚油均为一段脱酚脱酚效率分别为38和88。其轻油脱酚对酚钠盐起到净化的作用。萘油则采用三段脱酚脱酚效率79脱酚设备采用静态混合器。另外只对脱酚酚油与甲基萘油分别进行连续酸洗脱喹啉加酸浓度为30一39效率分别为38.5和52.2%。设备也采用静态混合器。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4、粗蒽制取技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内各厂均采用间歇操作工艺设备为转鼓结晶机。为了提高粗蒽的收率开发了两段结晶法。宝钢引进的工艺采用全连续程序控制操作包括蒽油装人、冷却结晶、放料、离心等工序计44h。后改进为自然与强制冷却相结合缩至35h结晶颗粒大设备采用立式冷却结晶机有利于实现连续操作所得粗蒽的含蒽高达38而含油很低。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>5、酚钠盐分解技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内大多采用硫酸分解法缺点是有浓酚水产生较难处理。20世纪70年代开发了烟道废气分解法仍有二次污染问题。宝钢引进工艺采用高炉煤气分解法按两级分解操作其分解率为98并配备有苛化装置可获得浓度为8一10的苛性碱液苛化率为77无二次污染问题。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>6、精萘制取技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内原来一直采用浓硫酸精制法缺点是产生大量废酸很难处理且能耗高、收率低。20世纪80年代开发了间歇操作的分步结晶法并得到普遍应用。近年改为采用&ldquo;Praobd&rdquo;工艺技术为箱式分部结晶精萘产率为90并全部按程序自动控制、连续操作。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>7、粗酚精制技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内多采用常压脱水一减压脱渣、精馏的工艺获得的酚类产品质量较差。引进的采用5塔连续操作脱水脱渣精馏、第6个塔为间歇操作的工艺流程。各塔均为减压操作苯酚的回收率高达42比国内要高10左右产品质量特别好有特号苯酚(结晶点40℃以上),邻位甲酚(结晶点29℃以上),问、对甲酚,二甲酚等。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>8、粗吡啶与粗喹啉精制技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内均采用烧碱液中和分解硫酸喹啉国外多采用液氨中和分解粗吡啶与粗喹啉的精制都是采用间歇操作、共沸脱水、减压精馏的工艺流程。与国内不同的是引进装置采用6塔间歇脱水、真空精馏操作并采用了空冷器可节约冷却用水。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>9、精蒽、精咔唑与蒽醌生产技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内都采用以粗蒽为原料经溶剂一精馏法处理获得精蒽再催化氧化制取蒽醌。宝钢引进Praobcl技术即以I蒽油为原料先加入溶剂进行分布结晶(即:溶剂结晶法),进行减压蒸馏,获得精蒽(含蒽达95以上)与精咔唑(纯度为90以上)。蒽醌生产工艺是瑞士Ciba Geigy公司的技术经多段固定床催化氧化、多段冷却获得纯度为99以上的蒽醌。与国内相比工艺与设备方面的水平也差不多。特点是整个生产过程所产生的废液很少可以送往活性污泥装置处理产生的废气量较大但它可以经回收、过滤再经废气燃烧装置破坏后放散故不会给环境带来危害。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>煤焦油进一步深加工水平取决于投资和市场,一般而言,随着加工深度的增加,产品的附加值增高,同时投资也增大。在深加工中要考虑设备上的灵活性,根据市场需要及时调整产品质量品种。煤焦油的集中加工是现代化工业发展的必然趋势,也是国家的一项技术政策,今后发展方向是如何提高资源利用率、扩大品种、搞深度加工,对产品结构延伸,致力于新产品的开发、减少污染,加强国内外信息交流,扩大对外开放,加大引资的力度,为企业的发展注入活力,组建煤焦油化学品信息与技术协作网。加强煤焦化企业、科研教学、信息研究机构的协作,使资源得到合理利用。</span></p>\r\n', 1, 0, '能源化学研究室', '煤焦油,深加工,现状,、,新技术,和,发展方向,', '2014-03-30 17:30:53', '2020-06-02 02:11:01', NULL),
(62, 71, 9, '页岩气真的能掀起一场能源革命吗?', '陈松', '2012年争论最热烈的能源话题莫过于页岩气革命。而随着隆冬来临对这场革命的关注热度也在降温。激烈的唱多派声音有些嘶哑了务实派的冷静思考开始占上风。这种转变有点成也', '/uploads/140331/1-140331012335D4.jpg', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年争论最热烈的能源话题莫过于&ldquo;页岩气革命&rdquo;。而随着隆冬来临,对这场&ldquo;革命&rdquo;的关注热度也在降温。激烈的&ldquo;唱多派&rdquo;声音有些嘶哑了,&ldquo;务实派&rdquo;的冷静思考开始占上风。这种转变有点&ldquo;成也萧何败也萧何&rdquo;的味道。最早鼓吹&ldquo;页岩气革命&rdquo;的美国陆续传来利空的消息。虽然近年来页岩气开发的声势不小可参与进去的开采商收益却持续恶化。美国天然气巨头XTO&nbsp;Energy的CEO对外透露&ldquo;我们如今亏得裤子都没了,页岩气生意根本不赚钱,所有人都在亏钱&ldquo;。据报道一些大牌能源公司都在下调来年页岩气产量计划。有统计称2012年美国境内的挖掘机数量下降至422台比一年前下降48%创下20年来降幅最大的纪录。工程机械使用数量的增减趋势经常被用来衡量该地区基础工业项目(比如矿业、房地产等)的开工热度。一直站在旁侧静观其变的俄罗斯开始冷嘲热讽。俄罗斯科学院一位专家说,即便美国页岩气已经规模化开采,其成本相比传统的常规天然气还是偏高,而这种资源不适合远距离运输,采气区资源消耗过快,再加上生态破坏等难题,都将使得这场&ldquo;革命&rdquo;越发显得虚幻。由于担心地质灾害,美国纽约州和特拉华盆地已叫停了该地区的页岩气项目。《金融时报》警告,页岩气开发使得美国再度兴起&ldquo;廉价化石燃料之风&rdquo;,但短期或中期的经济收益却可能使该国陷入长期依赖化石能源的&ldquo;陷阱&rdquo;。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>所谓页岩气就是从页岩层中开采出来的天然气。它与煤层气、致密砂岩气一起被称为非常规油气资源的三大品种。美国从19世纪就开发过商用页岩气矿井不过直到21世纪其开采技术才日渐成熟。2006年之后国际能源市场经历了一轮&ldquo;大牛市&rdquo;,这使得页岩气开采变得有利可图。金融危机之后,奥巴马倡导美国&ldquo;能源独立&rdquo;战略,要大幅度降低对海外能源的依赖程度。从杯盘狼藉的华尔街流出来的资金,发现了页岩气这个&ldquo;富矿&rdquo;。一时间,各种投机资金扮上新能源的&ldquo;新娘妆&rdquo;,成群结队要下嫁页岩气这个几乎被遗忘的&ldquo;穷小子&rdquo;。&nbsp;20世纪80年代因下注页岩气开发而破产的美国房地产商乔治&middot;米歇尔也被请了出来。美国一家能源协会授予这位90多岁的老人&ldquo;终身成就奖&rdquo;。事实上,米歇尔用于页岩气开发的水平钻井技术和分段水力压裂技术,算不上什么&ldquo;技术革命&rdquo;,它只是在长期钻井经验中积累下来的一套相对成熟的钻探工艺,证明了只要投入足够多的资金,&ldquo;从石头里榨出的血&rdquo;也有可能相当廉价。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>页岩气开采的确使美国能源结构发生了巨变。页岩气在美国天然气产量的比重从1996年的1.6%猛增至2010年的约23%并使美国在2009年超过俄罗斯成为世界第一大天然气生产国和资源国。据预测美国有可能在2021年成为天然气净出口国。但这场美国&ldquo;革命&rdquo;是否能在世界其他地区复制,还存在很大疑问。我国城市金融研究所的报告显示,页岩气在全球范围开发还有众多障碍:首先,地质条件的极大差异页岩气开采受阻;其次,页岩气在使用过程中要消耗大量水资源,而它必须使用的化学品可能对蓄水层造成污染;第三,天然气价格的持续低迷会打击企业的投资热情;第四,在北美以外市场,普遍缺乏足够的储存、液化和传输等非常规天然气的基础设施,这将大大限制市场开发进程。在这些难题待解的情况下,如果美国的页岩气&ldquo;革命&rdquo;开始进入&ldquo;挤泡沫&rdquo;阶段,其他国家的情况恐怕就更不乐观了。<br />\r\n 从各方数据对比,中国的页岩气储量似乎并不比美国少。中国是仅次于美国的能源消费大国,一些为中国页岩气&ldquo;革命&rdquo;鼓与呼的声音,由此可以理解了。但冷静下来会发现,页岩气开发对环境条件的&ldquo;硬束缚&rdquo;恐怕不是中国的禀赋条件所能承受的。中国人均占有土地和水资源的数量远逊于美国生态环境更为脆弱。平均而言一口页岩气井需要20万吨水向页岩中注入的压裂液中含有大量化学成分对地下水资源的影响存在很大不确定性。而中国的页岩气富集区域又往往处在水资源较为紧张的内陆、盆地地区。在页岩气的&ldquo;十二五&rdquo;规划中,像华北地区、准噶尔盆地、吐哈盆地、鄂尔多斯盆地这样的缺水地区,即便资源潜力不小,但要真正落实开采,则需慎之又慎。有业内专家提醒,在辽宁、陕西和四川等地,页岩气的大规模开发很可能会出现与工业和农业&ldquo;争水&rdquo;的难题。另须格外关注的是,中国目前的页岩气开采技术还不过关。如上所述,目前成熟的页岩气开采技术主要是基于美国特定区域和地质特点而长期积累下来的钻探工艺。别说一时半会儿不可能从美国引进技术,就算能把技术拿来,是否适应中国特殊的地质特性和环境,也存在很大疑问,更不要说由此而增加的巨额开采成本了。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>除此之外,必须在商业上对页岩气的合理性有精确的论证。美国页岩气&ldquo;革命&rdquo;的前提是有6300家大大小小的天然气生产商参与的&ldquo;充分动员型&rdquo;的市场化模式。这与中国只有几大能源企业控制市场的局面差异很大对风险的承受能力也大不相同。美国能源工业发展了将近两百年油气管道密如蛛网约有50万公里中国即便这些年发展很快也不过区区6万公里。管网基础建设不能一蹴而就不能及时商品化的页岩气资源显然会让开采商面临尴尬。曾任职石油部勘探司副司长的老专家查全衡就公开撰文称如果中国不能找到一条比美国&ldquo;更省地、省钱、省水,更环保&rdquo;的开发方法,就不要过早谈什么&ldquo;页岩气革命&rdquo;,省得&ldquo;被美国忽悠&rdquo;。从本质上看,美国的页岩气&ldquo;革命&rdquo;,是应对金融危机后国家经济&ldquo;脾虚伤肾&rdquo;的一个应急手段。美国金融危机,表面上看是华尔街心火旺盛导致了&ldquo;脑中风&rdquo;,实质上是国家经济&ldquo;产业空心化&rdquo;、&ldquo;消费金融化&rdquo;情况严重,长期积累下来,造成经济肌体的脾胃消化不良、精气不足,终致&ldquo;肾阴虚亏&rdquo;。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>这几年美联储不停地印钱,给美国经济&ldquo;滋补血气&rdquo;,暂时稳定了金融市场,但流动性增加之后资金必须有出口。同时,美国经济需要降低成本,增加产品竞争力,启动所谓&ldquo;再工业化&rdquo;战略,那么能源价格是否足够低廉则是个瓶颈。页岩气开采算不上一项重大科技创新,但它的启动,恰恰在投机资本流向和降低制造业成本两个战略方向上达成了一致,这才有了&ldquo;革命&rdquo;。从货币层面上看,页岩气&ldquo;革命&rdquo;给贬值风险加剧的美元注入了新的变量,但这绝非一种可持续的正向变量。作为世界经济的&ldquo;龙头&rdquo;,美国经济应当以持续的科技创新为牵引力,拉动世界经济增长,从而让其美元重新&ldquo;实心化&rdquo;&mdash;&mdash;以再造实业来建立必要的纸币信用。但就像华尔街一度创造的&ldquo;石油-美元&rdquo;捆绑游戏一样,因其本性使然,他们仍然要将货币与页岩气等大宗资源捆绑,通过操纵和炒作资源类的大宗商品,制造资源产品的泡沫,来控制全球经济,并维系其&ldquo;美元帝国&rdquo;的秩序。但是这种经济再循环的结果,最终不过是&ldquo;下一个2008&rdquo;罢了。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>与原油不同,天然气一直没有形成全球性的市场,只有欧洲、北美和亚洲三大市场,这三大市场的天然气价格长期存在&ldquo;落差&rdquo;。美国能源自给的预期,以及页岩气&ldquo;革命&rdquo;给液化天然气贸易增加的想象空间,有可能将全球天然气市场联系在一起,打破原来以管道天然气为主的贸易方式。因此,页岩气&ldquo;革命&rdquo;背后的潜台词可能是:当美国在中东受挫而不得不进行战略&ldquo;收缩&rdquo;时,它对世界石油的控制力降低了,但它反而必须要在天然气这种新兴的大宗资源商品上争取主导权和定价权,以便让美元重获信任。治疗&ldquo;美国病&rdquo;的合理逻辑应该是&ldquo;健脾补肾&rdquo;。&ldquo;健脾&rdquo;就是通过收入调节来促进消费,让陷入困境的美国中产阶级再次挺起胸膛,而不是郁闷到搞什么&ldquo;占领华尔街&rdquo;的街头运动。&ldquo;补肾&rdquo;就是强化国家科研创新能力,持续增加制造业的技术水平,沿着当年他们搞&ldquo;阿波罗登月&rdquo;计划的道路前进。但是,页岩气&ldquo;革命&rdquo;这种搞不好很可能搞成敲骨吸髓一般的透支性资源开采,却在大行其道。美国经济可能本来只是&ldquo;阳虚&rdquo;,这样下去,反而有了搞成&ldquo;阴阳两虚&rdquo;的趋势。笔者认为,一种理性的国家能源长期战略不能被急功近利的思维左右。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>以此反观中国,在全球化经济分工链条中,中国是实业国家,而不是资源国家。中国具有全球最充足的生产能力和商品供应能力,同时又是潜在的最具成长性的消费市场。一方面,中国对资源的需求是强烈的;另一方面,我们换取资源的能力也是强大的。&ldquo;实业换资源&rdquo;,仍是我们安身立命的根本和长期战略。历史上,仅仅靠提供廉价资源获得利润从而实现繁荣的国家,不可能是真正的强国,繁荣也不会持久。因为它们很快就透支了自身的资源,走向衰落。只有那些拥有强大的甚至是不可替代的制造能力和创新能力的国家,那些通过技术的不断升级,持续开发出新能源、开拓出新的经济增长方式的国家,才能走在世界前列。从这个意义上说,对于美国的页岩气&ldquo;革命&rdquo;,中国从战略上不必重视过度。远期看,真正的能源&ldquo;革命&rdquo;必须伴随着跨时代的技术创新,下一轮能源大变革将从&ldquo;采集能源&rdquo;向&ldquo;制造能源&rdquo;过渡,以核聚变为基础的核能研发和普及利用,才是真正的大方向。中国能源战略的主攻方向应该在这里。在战术上,中国又不能完全忽视页岩气。毕竟,在中短期内它对提升美国经济竞争力确实有所帮助。我们要审慎观察它对美国经济复苏进程的真实影响。同时,在目前世界格局中,要想不被别人在资源上&ldquo;卡脖子&rdquo;要挟,你自己必须要&ldquo;立得住&rdquo;。中国缺乏在全球大宗商品和资源贸易体系中的定价权。因此,我们应该积极参与国内以及国外的页岩气市场的调研、开发,不论在传统能源领域还是在页岩气这种新能源领域,中国在立足自身的同时,更要坚定地&ldquo;走出去&rdquo;,要去积极争取定价权。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>还须认清的问题是,页岩气&ldquo;革命&rdquo;以及由此延伸的页岩油开发,一定程度上推翻了美国一度鼓吹的&ldquo;石油峰值论&rdquo;。&ldquo;人类不是因为缺少石头才离开石器时代,也绝不会因为缺少石油才离开石油时代。&rdquo;此话不假。这不,石油并未枯竭,常规的、非常规的天然气已经开始给全球经济输血了。这再次证明,真正的&ldquo;资源瓶颈&rdquo;,不在地表或地下,而是在人的大脑里。只要技术进步,总会有新的资源被发现、被利用。技术的小进步,会有小批量的资源被利用;技术的大进步和大跨越,就会带来大批量的资源。对于中国的大型能源企业而言,应该在各种&ldquo;革命&rdquo;论中保持头脑清醒。对它们的最大挑战,不在于跟踪某种&ldquo;错综复杂的趋势&rdquo;,而是明确能源开发的大方向,进行提前布局。中国经济的崛起必然同时伴随一次能源&ldquo;革命&rdquo;那一定不会在石油、天然气这种传统化石能源层面发生。像中石油、中石化、中海油这些主导着国家命脉的大企业是否考虑过在花掉数百亿美元投资去世界各地购买传统能源公司的同时留出一部分资金去投资类似核聚变、核引擎这样真正影响长远的科技攻关项目呢2012年中国已经进行了两轮页岩气项目招标引得能源行业热闹异常。因为有民营企业中标一些不着调的评论把这说成是中国&ldquo;能源体制变革的重大时刻&rdquo;。请不要忘记,能源行业的性质决定了它的投资周期长、资金投入大,历来都是大风险项目,这和体制并无直接联系。况且,总不能期望中国的页岩气开采重蹈山西小煤窑泛滥的覆辙吧。奉劝那些为页岩气项目抓狂的投资者最好谨慎些。有句业内人士的戏言,在新年里似乎应格外上心:不要&ldquo;投进去的是鳄鱼,出来的是壁虎&rdquo;。<br />\r\n &nbsp;</span><br />\r\n &nbsp;</p>\r\n', 1, 0, '能源化学研究室', '页岩,气,真的,能,掀起,一场,能源,革命,吗,', '2014-03-30 17:23:05', '2020-06-02 02:11:01', NULL),
(63, 72, 9, '页岩气真的能掀起一场能源革命吗?', '陈松', '2012年争论最热烈的能源话题莫过于页岩气革命。而随着隆冬来临对这场革命的关注热度也在降温。激烈的唱多派声音有些嘶哑了务实派的冷静思考开始占上风。这种转变有点成也', '', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年争论最热烈的能源话题莫过于&ldquo;页岩气革命&rdquo;。而随着隆冬来临,对这场&ldquo;革命&rdquo;的关注热度也在降温。激烈的&ldquo;唱多派&rdquo;声音有些嘶哑了,&ldquo;务实派&rdquo;的冷静思考开始占上风。这种转变有点&ldquo;成也萧何败也萧何&rdquo;的味道。最早鼓吹&ldquo;页岩气革命&rdquo;的美国陆续传来利空的消息。虽然近年来页岩气开发的声势不小可参与进去的开采商收益却持续恶化。美国天然气巨头XTO&nbsp;Energy的CEO对外透露&ldquo;我们如今亏得裤子都没了,页岩气生意根本不赚钱,所有人都在亏钱&ldquo;。据报道一些大牌能源公司都在下调来年页岩气产量计划。有统计称2012年美国境内的挖掘机数量下降至422台比一年前下降48%创下20年来降幅最大的纪录。工程机械使用数量的增减趋势经常被用来衡量该地区基础工业项目(比如矿业、房地产等)的开工热度。一直站在旁侧静观其变的俄罗斯开始冷嘲热讽。俄罗斯科学院一位专家说,即便美国页岩气已经规模化开采,其成本相比传统的常规天然气还是偏高,而这种资源不适合远距离运输,采气区资源消耗过快,再加上生态破坏等难题,都将使得这场&ldquo;革命&rdquo;越发显得虚幻。由于担心地质灾害,美国纽约州和特拉华盆地已叫停了该地区的页岩气项目。《金融时报》警告,页岩气开发使得美国再度兴起&ldquo;廉价化石燃料之风&rdquo;,但短期或中期的经济收益却可能使该国陷入长期依赖化石能源的&ldquo;陷阱&rdquo;。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>所谓页岩气就是从页岩层中开采出来的天然气。它与煤层气、致密砂岩气一起被称为非常规油气资源的三大品种。美国从19世纪就开发过商用页岩气矿井不过直到21世纪其开采技术才日渐成熟。2006年之后国际能源市场经历了一轮&ldquo;大牛市&rdquo;,这使得页岩气开采变得有利可图。金融危机之后,奥巴马倡导美国&ldquo;能源独立&rdquo;战略,要大幅度降低对海外能源的依赖程度。从杯盘狼藉的华尔街流出来的资金,发现了页岩气这个&ldquo;富矿&rdquo;。一时间,各种投机资金扮上新能源的&ldquo;新娘妆&rdquo;,成群结队要下嫁页岩气这个几乎被遗忘的&ldquo;穷小子&rdquo;。&nbsp;20世纪80年代因下注页岩气开发而破产的美国房地产商乔治&middot;米歇尔也被请了出来。美国一家能源协会授予这位90多岁的老人&ldquo;终身成就奖&rdquo;。事实上,米歇尔用于页岩气开发的水平钻井技术和分段水力压裂技术,算不上什么&ldquo;技术革命&rdquo;,它只是在长期钻井经验中积累下来的一套相对成熟的钻探工艺,证明了只要投入足够多的资金,&ldquo;从石头里榨出的血&rdquo;也有可能相当廉价。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>页岩气开采的确使美国能源结构发生了巨变。页岩气在美国天然气产量的比重从1996年的1.6%猛增至2010年的约23%并使美国在2009年超过俄罗斯成为世界第一大天然气生产国和资源国。据预测美国有可能在2021年成为天然气净出口国。但这场美国&ldquo;革命&rdquo;是否能在世界其他地区复制,还存在很大疑问。我国城市金融研究所的报告显示,页岩气在全球范围开发还有众多障碍:首先,地质条件的极大差异页岩气开采受阻;其次,页岩气在使用过程中要消耗大量水资源,而它必须使用的化学品可能对蓄水层造成污染;第三,天然气价格的持续低迷会打击企业的投资热情;第四,在北美以外市场,普遍缺乏足够的储存、液化和传输等非常规天然气的基础设施,这将大大限制市场开发进程。在这些难题待解的情况下,如果美国的页岩气&ldquo;革命&rdquo;开始进入&ldquo;挤泡沫&rdquo;阶段,其他国家的情况恐怕就更不乐观了。<br />\r\n 从各方数据对比,中国的页岩气储量似乎并不比美国少。中国是仅次于美国的能源消费大国,一些为中国页岩气&ldquo;革命&rdquo;鼓与呼的声音,由此可以理解了。但冷静下来会发现,页岩气开发对环境条件的&ldquo;硬束缚&rdquo;恐怕不是中国的禀赋条件所能承受的。中国人均占有土地和水资源的数量远逊于美国生态环境更为脆弱。平均而言一口页岩气井需要20万吨水向页岩中注入的压裂液中含有大量化学成分对地下水资源的影响存在很大不确定性。而中国的页岩气富集区域又往往处在水资源较为紧张的内陆、盆地地区。在页岩气的&ldquo;十二五&rdquo;规划中,像华北地区、准噶尔盆地、吐哈盆地、鄂尔多斯盆地这样的缺水地区,即便资源潜力不小,但要真正落实开采,则需慎之又慎。有业内专家提醒,在辽宁、陕西和四川等地,页岩气的大规模开发很可能会出现与工业和农业&ldquo;争水&rdquo;的难题。另须格外关注的是,中国目前的页岩气开采技术还不过关。如上所述,目前成熟的页岩气开采技术主要是基于美国特定区域和地质特点而长期积累下来的钻探工艺。别说一时半会儿不可能从美国引进技术,就算能把技术拿来,是否适应中国特殊的地质特性和环境,也存在很大疑问,更不要说由此而增加的巨额开采成本了。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>除此之外,必须在商业上对页岩气的合理性有精确的论证。美国页岩气&ldquo;革命&rdquo;的前提是有6300家大大小小的天然气生产商参与的&ldquo;充分动员型&rdquo;的市场化模式。这与中国只有几大能源企业控制市场的局面差异很大对风险的承受能力也大不相同。美国能源工业发展了将近两百年油气管道密如蛛网约有50万公里中国即便这些年发展很快也不过区区6万公里。管网基础建设不能一蹴而就不能及时商品化的页岩气资源显然会让开采商面临尴尬。曾任职石油部勘探司副司长的老专家查全衡就公开撰文称如果中国不能找到一条比美国&ldquo;更省地、省钱、省水,更环保&rdquo;的开发方法,就不要过早谈什么&ldquo;页岩气革命&rdquo;,省得&ldquo;被美国忽悠&rdquo;。从本质上看,美国的页岩气&ldquo;革命&rdquo;,是应对金融危机后国家经济&ldquo;脾虚伤肾&rdquo;的一个应急手段。美国金融危机,表面上看是华尔街心火旺盛导致了&ldquo;脑中风&rdquo;,实质上是国家经济&ldquo;产业空心化&rdquo;、&ldquo;消费金融化&rdquo;情况严重,长期积累下来,造成经济肌体的脾胃消化不良、精气不足,终致&ldquo;肾阴虚亏&rdquo;。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>这几年美联储不停地印钱,给美国经济&ldquo;滋补血气&rdquo;,暂时稳定了金融市场,但流动性增加之后资金必须有出口。同时,美国经济需要降低成本,增加产品竞争力,启动所谓&ldquo;再工业化&rdquo;战略,那么能源价格是否足够低廉则是个瓶颈。页岩气开采算不上一项重大科技创新,但它的启动,恰恰在投机资本流向和降低制造业成本两个战略方向上达成了一致,这才有了&ldquo;革命&rdquo;。从货币层面上看,页岩气&ldquo;革命&rdquo;给贬值风险加剧的美元注入了新的变量,但这绝非一种可持续的正向变量。作为世界经济的&ldquo;龙头&rdquo;,美国经济应当以持续的科技创新为牵引力,拉动世界经济增长,从而让其美元重新&ldquo;实心化&rdquo;&mdash;&mdash;以再造实业来建立必要的纸币信用。但就像华尔街一度创造的&ldquo;石油-美元&rdquo;捆绑游戏一样,因其本性使然,他们仍然要将货币与页岩气等大宗资源捆绑,通过操纵和炒作资源类的大宗商品,制造资源产品的泡沫,来控制全球经济,并维系其&ldquo;美元帝国&rdquo;的秩序。但是这种经济再循环的结果,最终不过是&ldquo;下一个2008&rdquo;罢了。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>与原油不同,天然气一直没有形成全球性的市场,只有欧洲、北美和亚洲三大市场,这三大市场的天然气价格长期存在&ldquo;落差&rdquo;。美国能源自给的预期,以及页岩气&ldquo;革命&rdquo;给液化天然气贸易增加的想象空间,有可能将全球天然气市场联系在一起,打破原来以管道天然气为主的贸易方式。因此,页岩气&ldquo;革命&rdquo;背后的潜台词可能是:当美国在中东受挫而不得不进行战略&ldquo;收缩&rdquo;时,它对世界石油的控制力降低了,但它反而必须要在天然气这种新兴的大宗资源商品上争取主导权和定价权,以便让美元重获信任。治疗&ldquo;美国病&rdquo;的合理逻辑应该是&ldquo;健脾补肾&rdquo;。&ldquo;健脾&rdquo;就是通过收入调节来促进消费,让陷入困境的美国中产阶级再次挺起胸膛,而不是郁闷到搞什么&ldquo;占领华尔街&rdquo;的街头运动。&ldquo;补肾&rdquo;就是强化国家科研创新能力,持续增加制造业的技术水平,沿着当年他们搞&ldquo;阿波罗登月&rdquo;计划的道路前进。但是,页岩气&ldquo;革命&rdquo;这种搞不好很可能搞成敲骨吸髓一般的透支性资源开采,却在大行其道。美国经济可能本来只是&ldquo;阳虚&rdquo;,这样下去,反而有了搞成&ldquo;阴阳两虚&rdquo;的趋势。笔者认为,一种理性的国家能源长期战略不能被急功近利的思维左右。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>以此反观中国,在全球化经济分工链条中,中国是实业国家,而不是资源国家。中国具有全球最充足的生产能力和商品供应能力,同时又是潜在的最具成长性的消费市场。一方面,中国对资源的需求是强烈的;另一方面,我们换取资源的能力也是强大的。&ldquo;实业换资源&rdquo;,仍是我们安身立命的根本和长期战略。历史上,仅仅靠提供廉价资源获得利润从而实现繁荣的国家,不可能是真正的强国,繁荣也不会持久。因为它们很快就透支了自身的资源,走向衰落。只有那些拥有强大的甚至是不可替代的制造能力和创新能力的国家,那些通过技术的不断升级,持续开发出新能源、开拓出新的经济增长方式的国家,才能走在世界前列。从这个意义上说,对于美国的页岩气&ldquo;革命&rdquo;,中国从战略上不必重视过度。远期看,真正的能源&ldquo;革命&rdquo;必须伴随着跨时代的技术创新,下一轮能源大变革将从&ldquo;采集能源&rdquo;向&ldquo;制造能源&rdquo;过渡,以核聚变为基础的核能研发和普及利用,才是真正的大方向。中国能源战略的主攻方向应该在这里。在战术上,中国又不能完全忽视页岩气。毕竟,在中短期内它对提升美国经济竞争力确实有所帮助。我们要审慎观察它对美国经济复苏进程的真实影响。同时,在目前世界格局中,要想不被别人在资源上&ldquo;卡脖子&rdquo;要挟,你自己必须要&ldquo;立得住&rdquo;。中国缺乏在全球大宗商品和资源贸易体系中的定价权。因此,我们应该积极参与国内以及国外的页岩气市场的调研、开发,不论在传统能源领域还是在页岩气这种新能源领域,中国在立足自身的同时,更要坚定地&ldquo;走出去&rdquo;,要去积极争取定价权。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>还须认清的问题是,页岩气&ldquo;革命&rdquo;以及由此延伸的页岩油开发,一定程度上推翻了美国一度鼓吹的&ldquo;石油峰值论&rdquo;。&ldquo;人类不是因为缺少石头才离开石器时代,也绝不会因为缺少石油才离开石油时代。&rdquo;此话不假。这不,石油并未枯竭,常规的、非常规的天然气已经开始给全球经济输血了。这再次证明,真正的&ldquo;资源瓶颈&rdquo;,不在地表或地下,而是在人的大脑里。只要技术进步,总会有新的资源被发现、被利用。技术的小进步,会有小批量的资源被利用;技术的大进步和大跨越,就会带来大批量的资源。对于中国的大型能源企业而言,应该在各种&ldquo;革命&rdquo;论中保持头脑清醒。对它们的最大挑战,不在于跟踪某种&ldquo;错综复杂的趋势&rdquo;,而是明确能源开发的大方向,进行提前布局。中国经济的崛起必然同时伴随一次能源&ldquo;革命&rdquo;那一定不会在石油、天然气这种传统化石能源层面发生。像中石油、中石化、中海油这些主导着国家命脉的大企业是否考虑过在花掉数百亿美元投资去世界各地购买传统能源公司的同时留出一部分资金去投资类似核聚变、核引擎这样真正影响长远的科技攻关项目呢2012年中国已经进行了两轮页岩气项目招标引得能源行业热闹异常。因为有民营企业中标一些不着调的评论把这说成是中国&ldquo;能源体制变革的重大时刻&rdquo;。请不要忘记,能源行业的性质决定了它的投资周期长、资金投入大,历来都是大风险项目,这和体制并无直接联系。况且,总不能期望中国的页岩气开采重蹈山西小煤窑泛滥的覆辙吧。奉劝那些为页岩气项目抓狂的投资者最好谨慎些。有句业内人士的戏言,在新年里似乎应格外上心:不要&ldquo;投进去的是鳄鱼,出来的是壁虎&rdquo;。<br />\r\n &nbsp;</span><br />\r\n &nbsp;</p>\r\n', 1, 0, '能源化学研究室', '页岩,气,真的,能,掀起,一场,能源,革命,吗,', '2014-03-30 17:44:57', '2020-06-02 02:11:01', NULL),
(64, 73, 8, '我院第一届工会委员会成立', '李福裿', '经过近半年的筹备依据科学院的批复1月20日我院党委组织召开了黑龙江省能源环境研究院工会委员会第一次会员大会选举工会主席1人工会委员4人发展会员26人。 随着工会', '', '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 经过近半年的筹备根据《中国工会章程》规定和黑科院工会字20133号文件批复的要求我院党委于<font size=\"5\">1月20日</font>组织召开了黑龙江省能源环境研究院全体职工大会通过民主选举产生工会主席1人工会委员4人。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随着工会的成立,我院建制已经趋于完善,实现了党、政、工、团的体系结构。职工可以通过工会对能源院的发展提出建议和意见,反映工作、生活、学习等方面的合理诉求,切实保障职工权益。同时根据工作需要,结合我院实际,适时举办有益职工身体健康的活动,丰富职工业余文化生活,改善职工的福利待遇,使我院职工队伍成为一支高素质的、充满活力的优秀集体,从而有力地促进我院的改革与发展。</span></p>\r\n', 1, 0, '综合办公室', '我院,召开,工会,委员会,第一次,会员,大会,', '2014-01-23 03:03:00', '2020-06-02 02:11:01', NULL),
(65, 74, 7, '加拿大李筱梅博士到我院访问交流', '苏小红', '为深入开展厌氧发酵技术的应用研究交流IMUS技术的推广经验2014年4月17日阿尔伯塔创新能源环境研究院李筱梅博士应邀到能源院访问在能源院徐晓秋院长、高德玉总工程师及相', '/uploads/allimg/140418/1-14041Q31URc-lp.JPG', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为深入开展厌氧发酵技术的应用研究交流IMUS技术的推广经验2014年4月17日阿尔伯塔创新能源环境研究院李筱梅博士应邀到能源院访问在能源院徐晓秋院长、高德玉总工程师及相关科研人员的陪同下参观了IMUS中试系统并与科研人员进行了交流对于面临的技术难题李博士提出了宝贵意见。</span></p>\r\n<p>\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n &nbsp;<img alt=\"\" src=\"/storage/uploads/allimg/140418/1-14041Q31URc.JPG\" style=\"width: 607px; height: 440px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 上午10点李博士做了题为&ldquo;用家庭垃圾生产沼气的挑战&rdquo;的学术报告首先介绍了德国、加拿大、中国部分城市垃圾的现状和处理方式随后阐述了加拿大阿尔伯塔省政府在应对温室气体排放的管理政策、城市生活垃圾的收集、管理等的做法和经验并同与会人员进行了讨论与交流。最后对家庭垃圾厌氧发酵产沼气的研究及设想进行了介绍并与徐晓秋、高德玉就IMUS系统的未来发展方向及其在处理废弃物等领域的应用等方面进行了深入的交流与探讨为IMUS的推广和开展进一步相关合作、交流奠定了基础。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140418/1-14041Q31F5J9.JPG\" style=\"width: 596px; height: 388px\" /></span></p>\r\n', 1, 0, '生物质能源实验室', '加拿大,李筱梅,博士,到,我院,访问,交流,为,', '2014-04-18 05:22:22', '2020-06-02 02:11:01', NULL),
(66, 75, 7, '我院创新团队工作落实情况', '王志成', '2014年3月24日,郭院长带队调研我院学科创新团队工作,作出重要指示:调整研究方向,找准主线,抓住切入点,确立目标,建设创新团队。我院领导班子对郭院长的指示特别重视,先后', '/uploads/allimg/140604/1-1406041105230-L.jpg', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年3月24日,郭院长带队调研我院学科创新团队工作作出重要指示调整研究方向找准主线抓住切入点确立目标建设创新团队。我院领导班子对郭院长的指示特别重视先后三次召开会议布置、检查创新团队落实工作。2014年3月27日,我院召开院工作会议,对创新团队工作进行动员和布置。院领导班子全体中层干部和创新团队负责人参加会议。徐晓秋院长讲话让大家遵照郭院长指示理清思路找准切入点确立目标咬住青山不放松用几年时间研发出几个有影响力的大成果。具体要对团队成员、研究方向团队目标等内容进行调整。2014年4月21日, 我院召开了创新团队工作落实检查会议对各团队整改情况进行通报讨论团队目标的合理性措施的可操作性等议题同志们畅所欲言气氛热烈开阔了思路统一了目标对团队建设工作更有信心了。2014年5月19日,我院又召开团队建设工作阶段成果汇报会议并邀请相关领域专家给团队把关、点评。各创新团队以PPT的形式展示团队研究领域的现状和战略分析研究内容的竞争力分析团队近远期工作安排及工作目标等内容。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院创新团队工作整改措施:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、理清思路寻找研发切入点。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、明确方向确定目标。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3、强化团队成员学习培养建立学术交流机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4、开办学习园地年轻人相互学习努力提高外语水平。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5、建立团队例会制度讨论问题统一思想。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6、寻找领域内科研团队的短板努力提升为我团队的强项。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140604/1-140604110F93W.JPG\" style=\"width: 569px; height: 362px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140604/1-140604110I9460.JPG\" style=\"width: 570px; height: 365px\" /></span></div>\r\n', 1, 0, '科研办', '院,创新,团队,工作,落实,情况,2014年,3月,24日,', '2014-05-29 03:11:00', '2020-06-02 02:11:01', NULL),
(67, 76, 8, '开展消防演练 提高防火意识', '李福裿', '为进一步提高我院职工的消防安全意识检验与巩固职工掌握灭火器材扑灭火灾的能力6月3日下午我院举行了消防演习活动各部门防火负责人及职工约15人参加了演习。 演习由我', '/uploads/allimg/140605/1-1406051021203R-lp.JPG', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为进一步提高我院职工的消防安全意识检验与巩固职工掌握灭火器材扑灭火灾的能力6月3日下午我院举行了消防演习活动各部门防火负责人及职工约&nbsp;15&nbsp;人参加了演习。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140605/1-1406051021203R.JPG\" style=\"width: 515px; height: 342px\" /></span></div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 演习由我院消防兵转业的郭晓东同志为职工面授有关消防安全知识及现场示范,到场的所有职工都十分认真地听取了讲解。在整个过程中,郭晓东同志给大家讲解了各种消防器材的使用常识,以及发生火灾等情况的扑救方法,并现场指导大家使用灭火器,让大家掌握了灭火器的使用方法。整个演习过程组织严密,操作规范,既让参加演习的职工熟悉了灭火器的使用方法,又增强了职工的安全防火意识。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140605/1-140605102204a7.JPG\" style=\"width: 515px; height: 342px\" /></span></div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过此次消防培训和灭火演练,使我院职工增长了防火、灭火知识,增强了使用消防器材的操作能力,切实提高了消防安全意识。</span>', 1, 0, '综合办公室', '开展,消防,演练,提高,防火,意识,为,进一步,', '2014-06-03 02:24:00', '2020-06-02 02:11:01', NULL),
(68, 77, 6, '关于省科学院系统乒乓球比赛的通知', 'admin', '院各部门: 省科学院系统乒乓球赛拟定于6月27日召开比赛项目设定为团体比赛男单、女单、男双、女双和混双请各部门乒乓球好手踊跃报名。 报名地点:综合办 联 系 人:赵', '', '<span style=\"font-size: 20px\">院各部门:<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 省科学院系统乒乓球赛拟定于6月27日召开比赛项目设定为团体比赛男单、女单、男双、女双和混双请各部门乒乓球好手踊跃报名。<br />\r\n<br />\r\n报名地点综合办<br />\r\n联 系 人:赵&nbsp;&nbsp; 娴</span><br />\r\n<br />\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">综合办&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\r\n 2014年6月5日&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></div>\r\n', 1, 0, '未知', '关于省,科学院,系统,乒乓球,比,赛的,通知,院,', '2014-06-05 02:56:00', '2020-06-02 02:11:01', NULL),
(69, 78, 9, '我国液化石油气LPG发展现状及趋势', 'admin', '2013年原油依旧维持箱体震荡格局走势与品种的季节性规律密切相关。在3月、9月形成两个高点在10、11月整体维持弱势低点曾触及82美元/桶。总体上是下行的趋势。2012年国际液化', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年原油依旧维持箱体震荡格局走势与品种的季节性规律密切相关。在3月、9月形成两个高点在10、11月整体维持弱势低点曾触及82美元/桶。总体上是下行的趋势。2012年国际液化气市场则基本呈&quot;M&quot;型走势大致分为三个较为明显的阶段第一阶段在1月至3月份。年初伊朗同西方国家的关系升级中东石油运输要道面临封锁威胁国际原油供应担忧一再推高油价中东冷冻货市场整体供应略显紧张此阶段远东需求尚好供需基本面利好推高冷冻货市场价格。第二阶段在3月中旬至7月份。3月中旬之后低迷行情未有明显好转且需求逐步减少压力货市场价格震荡走低4月份油价稳中走跌5月份开始油价大幅走低跌势惊人。受全球经济疲弱、美国原油库存以及欧债危机等利空因素的影响投资者心态不振国际液化气市场持续震荡走跌。第三阶段在7月份之后华南冷冻货丙烷到岸价格和华南压力货离岸价低至年度最低点。主要原因除自身基本面利好不足国内需求改善不佳随着原油市场震荡不减液化气市场业者观望心态持续并加重。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年中国国内LPG产量大约为2257.8236万吨相比2012年2186.0826万吨的产量来说仍保持增长势头同比涨幅为3.3%但与12年6.1%的涨幅相比明显放缓。产量增加的主要原因可归结为国内炼厂原油加工能力的提升和液化气深加工投产的单位增多。而涨幅放缓的原因为部分深加工厂家生产成本过高和原料紧张等原因无奈停工或者转嫁下游商品主力炼厂检修和因为环境问题整改减产减量。面临销售不佳的压力越来越多的厂家开始关注液化气深加工将液化气作为生产乙烯、芳烃等产品的原料。2013年中国LPG进口总量338万吨与2012年的322万吨总进口量相比稍有增加但增幅并不明显主要消费区域集中在华南和华东。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 近几年全球LPG 产量增长较快2011 年全球LPG 产量达2.41 亿吨同比增长2.56%预计到2014 年全球LPG 产量将增长到2.75 亿吨。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中国是全球 LPG 行业发展较快的国家之一产量从2003 年的1256 万吨增长到2012 年的2180.90万吨年复合增长率达7.14%;2013 年1-3 月中国LPG 产量为555.40 万吨同比增长4.13%。中国LPG 的消费增长也较快从2003 年的1958 万吨增长到2012 年的2419 万吨年复合增长率为2.68%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 前瞻产业研究院LPG行业研究小组分析指出随着我国 LPG 在城市燃料、汽车和化工原料等领域的应用扩大市场对LPG 的需求将不断增加结合2006-2012年中国LPG 消费量数据预计2013 年中国LPG 消费量将达到2540 万吨增长率为5%2014 年将在2013 年的基础上继续增长消费量将超过2650 万吨。在原油加工量增长的同步带动下国内LPG产量跟随攀升 1-11月国内液化气产量为2085万吨预计全年LPG产量将达到2275万吨比上年总产量2230万吨增加2%左右,再创历史新高,但增速正在放缓。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、全国液化石油气消费量稳步增长,增速有所放缓<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 近十年间我国LPG表观消费量年均增长近5%。近两年国内液化石油气市场受到天然气、二甲醚等替代能源的冲击发展势头有所减缓但LPG在化工原料、车用替代能源等新领域的发展使得其继续保持旺盛的生命力。据国家统计局的数据显示2013年液化气进口量约402万吨较上年增加近20%。液化气出口量为122万吨下降近3.2%。<br />\r\n近年来伴随着中国天然气消费量的强劲增长LNG进口量也大幅上升。海关总署数据显示2013年全年LNG进口量约为1700万吨同比增长20.1%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二、进口来源多元化趋势明显<br />\r\n目前我国LNG进口来源地已扩充至近10个国家。2013年我国从卡塔尔进口LNG量约占总进口量的35%为我国LNG进口量最大的来源地从澳大利亚进口LNG约占我国总量进口的20%占比大幅下降。另外由于近两年印度尼西亚和马来西亚LNG产量的增长我国从东南亚地区进口量也出现明显上升。值得一提的是我国从非洲国家进口的LNG也呈现出快速增长的态势。<br />\r\n<font size=\"5\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font>三、国内LNG接收站陆续投产LNG接收站布局趋于均衡<br />\r\n随着LNG的快速发展和中国进口量的增多沿海LNG接收站的建设正在提速。上半年东莞九丰能源的LNG码头开始投产10月份中国海洋石油广东珠海LNG码头开始投产11月份中国石油河北曹妃甸开始投产共新增750万吨LNG接受能力截至2013年底我国共有9个LNG接收站投入运营年处理LNG能力达2630万吨较上年底增长约40%。<br />\r\n<font size=\"5\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font>四、2014年我国进口LNG海运市场预测<br />\r\n随着LNG的快速发展和中国进口量的增多中国沿海LNG接收站的建设正在提速。当前除中国已经建成分布在辽宁、广东、福建、上海、江苏、浙江和河北的9个接收站外按照当前规划2014年全国还将有4个LNG接收站投入运营。从国内LNG进口量来看由于我国居民对天然气的消费需求正处于高增长期预计2014年我国LNG进口量将继续保持20%以上的高速增长,总量将再创历史新高。<br />\r\n<font size=\"5\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font>到2014年全球液化石油气(LPG)产量将从2010年的2.41亿吨增长到2.75亿吨。LPG主要来自于炼油、原油开采和天然气开采所占的比例分别为41%、24%和35%。炼油业目前是LPG的首要来源但预计到2014年全球75%的LPG产量将来自天然气。</span>', 1, 0, '能源化学研究室', '我国,液化,石油气,LPG,发展现状,及,趋势,2013年,', '2014-06-05 03:09:37', '2020-06-02 02:11:01', NULL),
(70, 79, 9, '我国替代能源的现实选择', 'admin', '以煤炭为主的能源消耗结构,是我国空气污染不断恶化的主要原因。在全国上下寻找治理污染特别是治理雾霾突破口的关键时期,发展清洁的替代能源,推动我国能源结构的调整优化,', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 以煤炭为主的能源消耗结构,是我国空气污染不断恶化的主要原因。在全国上下寻找治理污染特别是治理雾霾突破口的关键时期,发展清洁的替代能源,推动我国能源结构的调整优化,对大气污染防治具有至关重要的作用。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>一、调整能源结构已刻不容缓<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>过去十余年,我国经济规模持续快速提升,能源消耗总量也随之迅速扩大,能源生产与能源消费总量均已居世界首位,且呈现&ldquo;煤炭独大&rdquo;的严峻格局。2004年国务院发布的《能源中长期发展规划纲要》(2004&mdash;2020)提出2020年煤炭消费总量为24亿吨实际上2010年我国煤炭消费就已超过30亿吨2013年更接近40亿吨并以每年3亿吨的速度持续增长。自1984年成为全球最大的煤炭消费国始到2012年我国已占全球煤炭消费量的47.8%2013年进一步提升到接近全球一半。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>相比煤炭而言较为&ldquo;清洁&rdquo;的天然气和石油,在我国能源生产与消费总量中比重偏低,且对外依存度过高,使我国的能源安全面临着空前复杂的国际形势。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>我国境内经济活动并不均匀95%以上的经济活动集中在1/3的国土尤以京津冀、长三角、珠三角为甚。在经济活动密集的150万平方公里国土上燃煤、燃油等能源消费占全国的70%以上相当于在每平方公里土地上每年燃烧2000吨标准煤。如此大密度燃烧高污染的煤炭等能源使空气质量持续恶化无法避免。加上每年新增近2000万辆机动车我国大气污染日益呈现煤烟型污染与汽车尾气污染叠加的重度复合污染态势。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>历史事件及科学研究早已警告世人,雾霾等空气污染问题对健康极具危害。我国目前严峻的环境形势也表明,优化调整能源结构既是保证能源安全的需要,更是全体国民身体健康的需要。发展清洁&ldquo;绿色&rdquo;能源,加快能源替代的进程,优化能源结构已刻不容缓。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>二、选择替代能源要考虑&ldquo;三重约束&rdquo;<br />\r\n<span style=\"font-size: 20px\"><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span>优化能源结构,关键在于选择适合国情的可替代能源。替代能源的选择必须充分考虑我国能源领域的&ldquo;三重约束&rdquo;。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>化石能源资源结构与生态环境要求的脱节。选择我国的替代能源躲不过多煤、少油气的能源资源约束。美国能源消费结构中煤炭消费比重已缩至32%天然气消费比重由20%增至32%,页岩气取代煤炭成为仅次于石油的第二大能源资源,能源结构总体比较&ldquo;清洁&rdquo;。我国化石能源资源呈现典型的&ldquo;富煤、贫油、少气&rdquo;特征目前煤、油、气等一次能源消费比重约为811。2013年石油对外依存度达57.72%天然气对外依存度达31.6%。经济发达的东部地区过度依赖西部输煤,消耗高品质能源来传输低品质能源。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>清洁能源环境优势与综合成本劣势的对立。近20年来可再生能源发电技术不断取得突破规模经济日益凸显。例如印度由于日照条件好太阳能发电成本已降至历史新低接近煤炭发电价位。我国东部经济发达地区日照条件并不理想且雾霾天增多难以大规模建立太阳能光伏电站而分散的家用光伏发电系统需要20年才能回收成本。由于并网政策、补贴政策、信贷政策、规划政策落实不到位导致我国风电企业成本高企风电行业&ldquo;弃风&rdquo;现象依然严峻。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>能源需求刚性约束与能源替代目标的矛盾。近年来我国能源需求增速下降主要源于经济增长趋缓而非能源弹性下降一旦经济增长提速能源需求仍有可能增长较快。经济增长对能源总量的刚性需求及短期内能源强度难以大幅下降的现实使相对低廉的煤炭等化石能源产销较为强劲。非化石能源在我国一次能源中的消费比重从2009年的8%左右增至2013年的9.8%历时五年仅提升1.8个百分点。&ldquo;十二五&rdquo;规划要求我国2015年非化石能源在一次能源中消费比重达到11.4%此目标恐难完成2020年15%的目标更难落实。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>三、发展替代能源的优先顺序<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>综合对上述三重约束的分析,我国发展替代能源的优先顺序应该是:<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>以电为主电为中心。加大电力生产是我国电力行业的一项中长期战略任务由核能、可再生能源转化的电能全面取代化石能源只是时间问题未来应大力推广大城市以电代煤、以电代油。相比电煤散烧煤才是雾霾的主要源头应以集中煤电取代分散低效的散烧煤使用在终端尽快普及用电。以电代煤、以电代油会加剧东部地区电力供需矛盾虽可加大新一代核电投资但其建设周期长新能源短期内规模难以突破建设特高压电网调入西部能源基地富余电力不失为一个快速见效的办法。2014年国家电网投资将超过3800亿元其中特高压电网投资约占1/3其建设将有利于全国范围内能源资源的优化配置。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>推广用氢气为支撑。氢是宇宙中最为丰富的元素在构成宇宙的物质中约占75%。与化石能源相比,氢具有很多优点:资源丰富,水就是地球上名副其实的&ldquo;氢矿&rdquo;;环保、高效,是一种能量密度与质量比值极高的能源,且燃烧零污染。只要按章操作,氢气和其他燃料一样安全。目前,氢制备、氢储存、氢使用的安全性都已解决。氢是很好的储能载体,利用电网富余电力制氢并储能是一举两得。日本已开发出较完善的运用太阳能等可再生能源制氢并供燃料电池车(FCV)使用的系统,利用生物质能产业化制氢也已取得突破。除了可再生能源制氢,大力发展页岩气、煤层气、煤制气等气体能源,用于交通、发电、供热,也将是我国能源替代的重要支撑。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>推广分布式能源以新能源生产消费为补充。2010年之前全球累计新增发电容量的25%30%为分布式发电。美国是世界上开发新能源和可再生分布式能源发电最多的国家到2020年将有一半以上的新建商用或办公建筑使用分布式电源同时有15%的现有建筑改用分布式电源。分布式能源技术也是我国可持续发展的必然选择,随着技术的成熟、规模的扩大以及相关政策的扶持,未来分布式能源电力的成本将变得更具吸引力,分布式能源即将进入规模实施阶段。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>四、要从战略高度形成替代能源发展的合力<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>要从民族存亡角度&ldquo;限煤&rdquo;,确保煤炭峰值提前。英国伦敦通过&ldquo;限煤&rdquo;摆脱&ldquo;雾都&rdquo;称号的经验表明减少煤炭依赖、优化能源结构至关重要。目前我国的煤炭使用量已大大超过环境容量因此煤炭峰值的出现不宜太晚最好到2020年前后。有必要借鉴美国大规模制定清洁能源法律法规的经验以法律的形式严格限制高污染能源的使用。近期内煤炭可以集中用于发电逐步减少直至不再用于供热并优先淘汰终端直接分散燃烧的用煤方式。像北京这样的特大城市应借鉴伦敦、纽约煤炭占比为零的经验彻底将燃煤发电及供暖退出历史舞台。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>要运用多种经济手段,提高清洁能源的经济可行性。美国、德国与日本等发达国家的经验表明,价格调整、政府补贴、直接投资、优惠信贷和减免税收等政策实施能够有效地推动新能源产业的发展。我国应尽快运用定价、税收、补贴、信贷等多种经济政策,通过在能源供应和需求领域产生经济杠杆效应,发挥对清洁能源的激励和对传统能源的约束作用,提高清洁能源替代传统能源的经济可行性,加速实现非化石能源的替代目标。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>要建设智能电网,为可再生能源的发展提供技术可行性。从本世纪初开始,基于新能源技术、分布式发电技术、大规模储能技术、超远距离超大规模输电技术和智能控制技术的快速发展,世界电网进入智能电网阶段。发展智能电网,能够有效解决我国新能源和分布式电源的并网问题,改善能源结构,保护自然生态,有利于最大限度实现对化石能源的替代。未来必须加快我国智能电网的发展,在凝聚共识的基础上,科学规划、统筹推进、重点突破。</span>', 1, 0, '能源化学研究室', '我国,替代,能源,的,现实,选择,以,煤炭,为主,', '2014-06-05 03:13:31', '2020-06-02 02:11:01', NULL),
(71, 80, 9, '生物燃料发展重心将向原料生产倾斜', 'admin', '生物燃料通常指生物液体燃料,是重要的交通替代燃料。相对于其他替代燃料,生物燃料具有与现有基础设施兼容性好、能量密度高、清洁低碳、资源可再生且资源基础广阔等优点,而', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 生物燃料通常指生物液体燃料,是重要的交通替代燃料。相对于其他替代燃料,生物燃料具有与现有基础设施兼容性好、能量密度高、清洁低碳、资源可再生且资源基础广阔等优点,而且已具有规模化生产应用的实际经验,可望成为重型卡车、航运和航空等长途交通工具的最经济可行的清洁替代燃料。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>20世纪90年代以来为保障能源安全、应对气候变化、保护环境、促进农业发展许多国家制定实施积极战略和政策推动生物燃料的规模化开发利用。我国在上述各领域也面临着巨大挑战也亟待制定符合我国国情的战略和政策促进生物燃料的规模化发展。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>为此,国家发展改革委能源研究所开展了&ldquo;中国可再生能源规模化发展研究&rdquo;,通过考察分析国际上生物燃料产业发展趋势和政策实践,评估我国生物燃料的发展潜力和重大挑战,进而探讨我国生物燃料规模化发展的战略任务、总体思路和发展路径,并提出促进我国生物燃料产业发展的政策措施建议。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>一、国际政策趋向&mdash;&mdash;扶持与监管并重<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>20世纪90年代以来为促进农业经济、改善大气质量、减排温室气体以美国、欧盟国家和巴西为代表的许多发达国家和发展中国家制定实施了规模空前的生物燃料项目和积极的扶持政策全面推动了生物燃料产业的蓬勃发展。虽然2008年金融危机以来受到油价低位运行和市场需求疲软的影响但各国扶持政策保持延续并继续深化大型石油企业开始大力介入技术研发取得积极进展应用领域扩展到航空领域推动了生物燃料产业加快升级转型和继续扩大规模。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>目前,以粮糖油为原料的燃料乙醇和生物柴油(通常被称为传统生物燃料,或第一代生物燃料)已进入商业化发展阶段,以农林业有机废弃物、专用非粮能源植物/藻类微生物等生物质为原料的先进生物燃料或第二代、第三代生物燃料正在建设一批示范项目预计在今后10年内逐步实现商业化。2009年全球燃料乙醇和生物柴油产量分别达到5760万吨和1590万吨绝大部分集中在美国、巴西和欧盟地区。据国际能源机构IEA的生物燃料路线图分析2010年全球生物燃料产量约1000亿升满足全球3%道路交通燃料需求2050年生物燃料可满足全球交通能源需求的27%可年减排21亿吨二氧化碳。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>虽然生物燃料在近年来发展迅速并初步展示了广阔的发展潜力,但也开始引发了众多争议和批评,主要是生物燃料的节能减排效益和发展潜力、以及对粮食安全和生态环境的威胁,反映了生物燃料产业自身及其社会经济含义的复杂性。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>近年来,一些领先国家和国际组织积极推动建立扶持与监管并重的政策体系,促进生物燃料产业健康持续发展。在扶持政策方面,<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>早期主要采取了投资补贴、减免消费税和燃油税等措施近年来美国和欧盟许多国家陆续引入了再生燃料标准RFS等强制性市场份额政策并特别规定先进生物燃料的具体发展目标和更高贡献度。在监管政策方面近年来欧美国家开始规定生物燃料的最低温室气体减排率,调整农业及土地政策,推动建立可持续生产准则和产品认证体系;包括我国在内的部分发展中国家则禁止使用或严禁扩大使用粮食原料,以确保可持续发展。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>二、我国生物燃料生产潜力大<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>由于我国人口保持增长、饮食水平的持续提高,而优良耕地减少、水资源相对短缺,利用传统粮糖油原料发展生物燃料的潜力在我国非常有限。利用非粮原料将是我国发展生物燃料的根本方向。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>我国早在上世纪90年代即开展以甜高粱、小桐子为原料的生物燃料生产技术研究&ldquo;十一五&rdquo;以来,大批企业,包括大型企业,积极投身非粮生物燃料产业研发。目前,我国利用薯类、甜高粱、小桐子等非粮作物/植物生产燃料乙醇和生物柴油的技术已进入示范阶段。木薯和甘薯乙醇技术也可实现商业化应用广西于2007年建成年产20万吨木薯乙醇项目。甜高粱乙醇技术开发取得实质性进展已开发出高品质杂交种籽自主开发的发酵工艺和技术达到实用水平并在黑龙江省建成年产5000吨乙醇的示范装置。木质纤维素乙醇在原料预处理、纤维素转化以及酶制剂生产成本等方面均取得实质性进展在黑龙江、河南等地建成了年产数百吨和数千吨乙醇的示范生产装置。生物柴油产业化示范工作的时机也已基本成熟但受废油资源收集利用量、油料植物种植基地建设进度的限制目前只有少数生物柴油企业实现规模化持续生产也没有正式进入车用成品油的主要流通使用体系。其他第二代生物燃料如合成燃料技术目前仍处于实验室研究和小规模中试阶段。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>目前我国还没有全面深入开展生物质能资源潜力评价。初步估算利用废糖蜜、食品加工业和饮食业废油、棉籽油等废弃糖油类资源估计可满足年产80万吨燃料乙醇和200万吨以上生物柴油的原料需求。可能源化利用的农作物秸秆和林业剩余物年产量目前约2.5亿吨且可望继续增加在中长期可满足年产30005000万吨第二代生物燃料的原料需求。另外还可通过推广良种良法、品种替换、开发劣质边际土地等途径发展能源植物,例如甜高粱、木薯、麻疯树等。相关土地评估显示我国现有约3200万7600万公顷边际性土地但适合能源植物生长的土地资源有待查清。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>总体估算我国以非食用粮糖类农作物为原料的燃料乙醇生产潜力近中期约为1500万吨以废油为原料的生物柴油生产潜力近中期约200万吨以油料林为原料的生物柴油生产潜力在中长期约为数百万吨以纤维素和藻类生物质为原料的先进生物燃料生产潜力在长期可达每年数千万吨。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>通过发展传统生物燃料估计在近中期具有满足近10%道路交通燃料的潜力如果实现第二代生物燃料技术的商业化则我国生物燃料在长远期具有满足20%30%左右道路交通燃料需求的潜力。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>三、4大问题待解<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>未来我国生物燃料产业发展将面临以下4大挑战<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1原料资源基础仍然薄弱。实际剩余可用边际土地资源潜力不清缺乏科学评价和规划原料植物的选育栽培和规模种植经营技术、产业和管理体系有待完善原料资源来源多样、品质不一。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2技术产业发展水平不高。技术工艺水平较为落后资源利用和环境保护水平不高缺乏符合国内原料特点的整套技术工艺和装备第二代生物燃料技术离工业化生产还有较大差距产业模式仍不成熟有待于建立与&ldquo;三农&rdquo;和现代林业和谐发展的产业模式;可持续生产技术规范和模式尚未建立,仍有待于开展良种选育及混交林营建技术等研究,制定保障高能效、高减排的技术标准和规范。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3缺乏竞争力和抗风险能力。原料成本居高不下甚至还有所攀高规模经济、范围经济和资源综合利用效益偏低经济竞争力较弱存在较大市场风险。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4扶持政策和市场环境不完善。非粮生物燃料的市场准入和产品流通体系不通畅无法进入车用成品油经销体系和终端消费市场行业监管薄弱存在社会、经济和自然生态风险扶持价格和财税政策不完善产品推广使用市场环境不健全各项基础设施不完善封闭区域强制使用制度影响跨地区车辆使用性能指定企业在特定封闭区域销售影响公平竞争。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>四、生物燃料产业链重心向种植和原料生产倾斜<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>我国生物燃料的规模化生产利用有赖于加快实现产业的转型升级。我国生物燃料产业在今后应完成如下几个战略任务。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1转变扩大原料结构夯实资源基础。要从主要利用食用粮糖油农产品等原料转向各种非粮原料在避免威胁粮食安全前提下有效扩大原料结构夯实资源基础。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2完善优化产品结构提高经济效益。根据原料特点通过开发整合相关技术工艺、拓展延伸产业链提高资源梯级利用和综合利用水平开发高增加值副产品和新产品实现从单一原料和产品模式转向可利用多种原料、生产多种产品的综合精炼技术的转变从而完善优化产品结构显著提高经济效益。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3调整产业组织结构提高产业效率。根据非粮生物燃料产业的农林业属性、多样性和地域性等特点把产业链重心向能源植物种植和原料生产倾斜建立&ldquo;分散加工转换+集中精炼调配&rdquo;的经营模式,充分调动发挥当地农民和政府的积极性。应鼓励中下游的大中型企业与地方农民、中小企业和相关组织建立稳定互利的协作关系和新型农工一体化产业运作模式。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4转变产业发展理念确保可持续发展。要创新产业发展理念实现宏观层次上的农业系统、工业系统和环境系统之间的整合全面促进可持续发展。从粗放式、破坏性的土地开发和原料植物种植模式转向集约式、保护性的土地开发和原料植物种植模式减少生态风险和土壤中碳泄漏风险全面考察、评估和削减生物燃料的原料生产、加工转换和生产应用的能耗水耗、常规污染物和温室气体排放。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>5健全产业政策体系促进产业健康发展。根据技术进展和产业化进程、原料和产品结构、产业组织结构特点、可持续发展理念和要求建立健全涵盖资源开发保障、加工转换、产品流通和使用等完整环节的产业监管和激励政策建立灵活高效的市场机制确保生物燃料试点工作和规模化发展得以健康有序推进。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&ldquo;十五&rdquo;期间,我国出台了陈化粮燃料乙醇生产和车用乙醇汽油试点的政策陈化粮乙醇和变性燃料乙醇享受跟随汽油的联动价格政策和一系列税费优惠政策生产企业的亏损实行定额补贴。经济激励方面中央财政将对符合相关要求和标准的林业原料基地补助标准为200元/亩对农业原料基地补助标准原则上为180元/亩。</span>', 1, 0, '能源化学研究室', '生物,燃料,发展,重心,将向,原料,生产,倾斜,', '2014-06-05 03:13:43', '2020-06-02 02:11:01', NULL),
(72, 81, 6, '我院关于召开2014年上半年工作会议的通知', '李福裿', '院各部门: 2014年已经过半为及时总结上半年工作情况并对下半年工作做好规划和部署我院决定召开上半年工作会议具体事宜如下 一、会议时间暂定为6月末-7月初。 二、会', '', '<span style=\"font-size: 20px\">院各部门:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;2014年已经过半为及时总结上半年工作情况并对下半年工作做好规划和部署我院决定召开上半年工作会议具体事宜如下<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、会议时间暂定为6月末-7月初。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二、会议地点:能源院会议室。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 三、参会人员:院领导班子、各部门负责人。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 四、会议内容:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、上半年工作计划完成情况汇报包含2014年度重点工作推进情况汇报<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、下半年工作计划及安排。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 五、会议议程:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、各部门负责人汇报发言时间不超10分钟<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、院领导讲话。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 六、相关要求:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、请各部门负责人根据会议要求提前认真做好准备整理成书面材料交综合办要求汇报内容要详实工作计划要细致不说空话套话。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、参会人员应准时参加会议不得缺席。<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 综合办&nbsp;&nbsp;&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二〇一四年六月十二日</span>', 1, 0, '综合办公室', '我院,关于,召开,2014年,上半年,工作,会议,的,', '2014-06-12 03:29:52', '2020-06-02 02:11:01', NULL),
(73, 82, 6, '我院关于召开2014年上半年工作会议的通知', '李福裿', '院各部门: 2014年已经过半为及时总结上半年工作情况并对下半年工作做好规划和部署我院决定召开上半年工作会议具体事宜如下 一、会议时间暂定为6月末-7月初。 二、会', '', '<span style=\"font-size: 20px\">院各部门:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;2014年已经过半为及时总结上半年工作情况并对下半年工作做好规划和部署我院决定召开上半年工作会议具体事宜如下<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、会议时间暂定为6月末-7月初。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二、会议地点:能源院会议室。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 三、参会人员:院领导班子、各部门负责人。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 四、会议内容:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、上半年工作计划完成情况汇报包含2014年度重点工作推进情况汇报<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、下半年工作计划及安排。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 五、会议议程:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、各部门负责人汇报发言时间不超10分钟<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、院领导讲话。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 六、相关要求:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、请各部门负责人根据会议要求提前认真做好准备整理成书面材料交综合办要求汇报内容要详实工作计划要细致不说空话套话。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、参会人员应准时参加会议不得缺席。<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;综合办&nbsp;&nbsp;&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;二〇一四年六月十二日</span>', 1, 0, '综合办公室', '我院,关于,召开,2014年,上半年,工作,会议,的,', '2014-06-12 03:29:52', '2020-06-02 02:11:01', NULL),
(74, 83, 8, '我院开展系列活动庆祝中国共产党成立93周年', '李福裿', '为了隆重庆祝中国共产党成立93周年我院党委组织全体党员及群众开展党史知识测试等活动祝福党的生日。活动以共筑中国梦喜迎建党93周年为主题通过回顾93年来党的光辉历程、认', '/uploads/allimg/140701/1-140F10F0349B-lp.JPG', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为了隆重庆祝中国共产党成立93周年我院党委组织全体党员及群众开展党史知识测试等活动祝福党的生日。活动以&ldquo;共筑中国梦&middot;喜迎建党93周年&rdquo;为主题通过回顾93年来党的光辉历程、认真学习贯彻落实党的十八大精神并开展党史知识测试进一步推进学习型、服务型、效能型、活力型和阳光型党组织建设进一步强化我院党员的党性观念进一步发挥党委组织的先进作用和党员的先锋模范作用推动我院发展实现新的跨越。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140701/1-140F10F0349B.JPG\" style=\"width: 519px; height: 346px\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140701/1-140F10F12XF.JPG\" style=\"width: 519px; height: 346px\" /></span></div>\r\n', 1, 0, '综合办公室', '我院,开展,系列,活动,庆祝,中国共产党,成立,', '2014-06-30 11:48:00', '2020-06-02 02:11:01', NULL),
(75, 84, 8, '我院参加省科学院乒乓球赛', '赵娴', '由院机关党委举办的省科学院职工乒乓球赛在省科学院石油化学研究院举行共70多名选手参加了比赛。比赛分三组为团体比赛。我院共有6名队员参加比赛虽然大家平时没有经过专', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 由院机关党委举办的&ldquo;省科学院职工乒乓球赛&rdquo;在省科学院石油化学研究院举行共70多名选手参加了比赛。比赛分三组为团体比赛。我院共有6名队员参加比赛虽然大家平时没有经过专门的训练但都能积极快乐的投入到比赛当中。本次比赛采用单淘汰制各单位强手在比赛中施展精彩的球技博来喝彩声不断。最终自然与生态研究所取得了团体冠军。我院虽然没有进入决赛但6名队员积极配合相互鼓励发挥出最好的水平体现了我院的团队精神。这次比赛不仅为众多院所职工提供了一个相互交流、切磋球技的机会还提供了一个展示自己不断提高的机会也也激发了大家的拼搏热情和团结精神。</span>', 1, 0, '综合办公室', '我院,参加省,科学院,乒乓球赛,由,院,', '2014-06-26 23:26:00', '2020-06-02 02:11:01', NULL),
(76, 85, 7, '我院参加温室、沼气产品创新联盟暨产学研合作对接会', '王志成', '2014年6月28日黑龙江省能源环境研究院科研办主任王志成同志参加了省科技厅组织召开的温室、沼气产品创新联盟暨产学研合作对接会。会议主要内容1.研究温室、沼气产品产业发展的', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年6月28日黑龙江省能源环境研究院科研办主任王志成同志参加了省科技厅组织召开的&ldquo;温室、沼气产品创新联盟暨产学研合作对接会&rdquo;。会议主要内容1.研究温室、沼气产品产业发展的现状、问题及发展趋势2.发布温室、沼气产品产业新产品、新装备、新技术研究编制温室、沼气产品技术标准、设计规范、施工规范等3.研究组建温室、沼气产品创新联盟。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在会上我院与省内沼气领域的企业、高校、院所充分交流交换了科研思路并宣传了我院的科研成果重点推介了我院开发的集成粪便综合利用系统IMUS技术。IMUS是工业化封闭环式沼气、发电系统采用独特的高温厌氧消化技术使畜禽粪便转化为沼气能源用来发电产生的沼液、沼渣作为无病原体的生物肥料进行市场化形成了一个自然环境下的循环经济链。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院积极参加沼气产品创新联盟,院企合作,产学研结合,为企业服务,为创新联盟提供技术支撑,为我省沼气产业发展贡献力量。</span>', 1, 0, '科研与产业化办公室', '我究,院,参加,温室,、,沼气,产品,创新,联盟,', '2014-07-02 08:29:00', '2020-06-02 02:11:01', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(77, 86, 7, '我院参加全省高校科研院所知识产权管理工作座谈会', '王志成', '2014年7月2日在黑龙江工会大厦我院科研办主任王志成同志参加了省专利管理局组织的全省高校科研院所知识产权管理工作座谈会。与会的有省专利管理局马峰副局长和综合处领导', '', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年7月2日在黑龙江工会大厦我院科研办主任王志成同志参加了省专利管理局组织的全省高校科研院所知识产权管理工作座谈会。与会的有省专利管理局马峰副局长和综合处领导以及全省55个科研院所的代表。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会上省专利管理局领导听取了我院知识产权管理工作情况,特别是承担专利资金项目后,对专利工作的引导作用情况,我院的知识产权(专利)制度(政策)、管理机制建设情况,专利创造、管理、运用、保护等各方面进展情况,知识产权文化建设情况,知识产权人才培养情况,项目实施中遇到的问题,下步工作打算及对省知识产权局的意见和建议等情况。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过交流,了解了兄弟院所专利工作情况,学习了许多先进经验,也看到我们的不足,为我院今后专利工作指明了方向。同时,也看到我院专利申报人均数量和增长率等指标在省里是名列前茅的,专利工作大有可为。</span>', 1, 0, '科研办', '我院,参加,全省,高校,科研院所,知识产权,', '2014-07-03 07:35:05', '2020-06-02 02:11:01', NULL),
(78, 87, 7, '加拿大阿尔伯塔大学医学和病理学实验室庞晓莉教授</br>到我院进行讲座', '', '7月2日加拿大阿尔伯塔大学医学和病理学实验室庞晓丽教授Pang XiaoliLilly),在能源院一楼会议室就如何建立分子生物实验室举行了精彩的讲座,我院徐晓秋院长、关春玲副院长及部分', '/uploads/allimg/140703/1-140F31AT4621.JPG', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7月2日加拿大阿尔伯塔大学医学和病理学实验室庞晓丽教授Pang XiaoliLilly),在能源院一楼会议室就&ldquo;如何建立分子生物实验室&rdquo;举行了精彩的讲座,我院徐晓秋院长、关春玲副院长及部分科研人员参加了此次讲座。</span><br />\r\n<br />\r\n<div style=\"text-align: center; \">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140703/1-140F31AT4621.JPG\" style=\"font-size: 20px; width: 519px; height: 346px; \" /></div>\r\n<br />\r\n<span style=\"font-size: 20px; \">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长首先表达了愿望希望用十年的时间用顶尖的设备、先进的技术和最好的老师建立并逐步完善我院的分子生物实验室最终达到国内领先水平Pang XiaoliLilly)教授十分赞同并表示会尽最大努力予以技术支持。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140703/1-140F31AR2144.JPG\" style=\"width: 519px; height: 346px\" /></span><br />\r\n <br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 讲座在融洽的气氛中开始Pang XiaoliLilly)教授首先介绍了加拿大实验室的相关情况随后结合国外的先进经验分别从设备、技术、人员、经费等方面详细介绍了实验室的建立方法、区域划分和级别标准讲座循序渐进其间Pang XiaoliLilly)教授还不忘与在座人员进行互动交流我院科研人员纷纷结合我院的实际情况发表了想法和提出问题Pang XiaoliLilly)教授都一一给予了解答讲座持续了近二个小时。最后徐晓秋院长代表能源院全体职工对Pang XiaoliLilly)教授的精彩讲座表示感谢,讲座在轻松愉快的气氛中结束。</span><br />\r\n <br />\r\n <br />\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 综合办<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2014年7月2日</span></div>\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n', 1, 0, '综合办公室', '加拿大,阿尔伯塔,大学,医学,和,病理学,7月,', '2014-07-04 02:42:49', '2020-06-02 02:11:01', NULL),
(79, 88, 7, '我院召开上半年工作会议', 'admin', '7月9日我院在江北会议室召开了由全体职工参加的2014年上半年工作会议。会议由党委书记、院长徐晓秋同志主持。会上各部门负责人分别汇报了本部门上半年工作进展情况并提出了', '/uploads/allimg/140709/1-140F913010c25-lp.JPG', '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7月8日我院在江北会议室召开了由全体职工参加的2014年上半年工作会议。会议由党委书记、院长徐晓秋同志主持。会上各部门负责人分别汇报了本部门上半年工作进展情况并提出了下半年具体工作计划。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140709/1-140F913010c25.JPG\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋院长结合汇报情况作了重要讲话,徐院长首先对我院上半年的重点工作进行了总结,并对项目申报情况进行了通报,她指出,在全院科技人员的共同努力下,上半年我院在各级科研项目申报、获奖、专利、以及论文等方面均有了一定的增长,接下来我院要继续稳扎稳打,坚定思想,走科研促发展的道路,并鼓励青年人要快速的成长,为我院的长足发展做出贡献。</span><br />\r\n<div>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随后,徐晓秋院长对我院下半年工作作出了具体部署:一是加强高水平大项目的培育和申报工作;二是科研管理部门要从项目申报、实施、鉴定、成果转化几个环节建立相关制度,加强科研研发工作;三是科研人员要充分接地气,建立畅通的信息渠道,结合实际开展科学研究;四是保证仪器设备的使用率,做好定期维护和校对,为科研工作服好务;五是加速成果转化进程,促进成果转化快速发展;六是加强对外合作,在巩固现有对外合作成果基础上,积极寻求新的合作机会,扩大合作领域;七是抓好安全工作,</span><span style=\"font-size: 20px\">各部门要高度重视安全管理工作,充分认识安全工作的重要性,要制定工作方案,强化工作措施</span><span style=\"font-size: 20px\">,在汛期临近之际,要定期开展排查,消除隐患,确保安全。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后,徐晓秋院长希望大家克服人员少,办公空间小等困难,充分抓住机遇,不断提高我院的科研水平。</span><br />\r\n <br />\r\n <br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;综合办公室</span></div>\r\n', 1, 0, '未知', '我院,召开,上半年,工作,会议,7月,9日,我院,在,', '2014-07-11 02:11:48', '2020-06-02 02:11:01', NULL),
(80, 89, 7, '热烈祝贺我院三名科研工作者获得ACI及MOHRSS认证', 'admin', '近日我院三名科研工作者通过了ACI美国认证协会和MOHRSS中国人力资源和社会保障部联合举办的能源管理、能源审计及能源评估岗位培训考核并获得ACI和MOHRSS颁发的国际注册', '/uploads/allimg/140717/1-140GG1245EH-lp.jpg', '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 近日我院三名科研工作者通过了ACI美国认证协会和MOHRSS中国人力资源和社会保障部联合举办的能源管理、能源审计及能源评估岗位培训考核并获得ACI和MOHRSS颁发的国际注册高级能源管理师、国际注册高级能源审计师及国际注册高级能源评估师证书。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ACI美国认证协会是由美国哈佛大学、德州大学、耶鲁大学、加州大学、杜克大学、森坦那瑞商学院等美国数十个著名院校的专家教授共同组成的学术认证委员会在全球范围内从事国际职业资格认证的专业机构长期致力于专家级高水平认证、考试服务得到美国政府的合法注册所有课程均获得了美国教育部承认其颁发的证书被全球157个国家认可全球通用。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG1245EH.jpg\" style=\"width: 511px; height: 663px\" /></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG1251IE.jpg\" style=\"width: 508px; height: 664px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG12540I8.jpg\" style=\"width: 515px; height: 661px\" /></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG126004c.jpg\" /></span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG12625547.jpg\" style=\"width: 510px; height: 659px\" /></span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG12645W3.jpg\" style=\"width: 512px; height: 655px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG12HWV.jpg\" style=\"width: 530px; height: 391px\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG12QE00.jpg\" style=\"width: 534px; height: 387px\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140717/1-140GG12STX.jpg\" style=\"width: 536px; height: 358px\" /></span></p>\r\n', 1, 0, '未知', '热烈,祝贺,我院,三名,科研,工作者,获得,ACI,及,', '2014-07-17 03:35:34', '2020-06-02 02:11:01', NULL),
(81, 90, 9, '油页岩低温热解的影响因素', 'admin', '油页岩热解生成的液态产物汽化后,与气态产物一起首先通过页岩内部的空隙和毛细管扩散到油页岩块之外,然后通过页岩间的空隙至页岩层之外,最后通过页岩层外空间导出干馏装置', '', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩热解生成的液态产物汽化后与气态产物一起首先通过页岩内部的空隙和毛细管扩散到油页岩块之外然后通过页岩间的空隙至页岩层之外最后通过页岩层外空间导出干馏装置。在干馏过程中温度达约105℃时油页岩主要是干燥脱水。到180℃左右时放出油页岩中包藏的少量气体。温度升高至450520℃时油页岩内的有机质即热解生成页岩油蒸汽与热解气体的混合物以及固定碳。油页岩的无机矿物质有些会脱水或脱CO2则与固定碳形成页岩半焦。逸出的蒸汽-气体混合物冷却至常温时便分离成气相和液相。液相产物通常分成互不相溶的两层一层为页岩油另一层为水溶液。水溶液中含有能溶于水的NH3、CO2、H2S及水溶性的酚类、氧化物、有机碱及乳化油等。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 影响因素关于抚顺油页岩、茂名油页岩在不同条件下的热解情况FRIPP曾进行了大量的研究工作。通过研究结果可知加热温度、加热时间及加热速度对油页岩的热分解有相当大的影响。加热温度油页岩干馏的最终加热温度影响有机质的分解程度也是影响页岩油产率的决定性因素。而且热解产物的二次裂解反应也与最终加热温度有关。用12mm的颗粒油页岩在葛金氏干馏试验装置上考察了加热温度对油页岩干馏的影响。试验结果表明随着干馏温度的升高页岩油的产率逐步增加放出大量页岩油的温度范围为400450℃。抚顺油页岩、茂名油页岩在加热至450℃时可产生约90%的页岩油放出页岩油的最终温度约为505℃。加热时间油页岩的热分解程度不仅取决于最终的加热温度而且取决于加热时间。在油页岩热解过程中当热解温度较低时页岩油的产率随着加热时间的延长而增加进一步提高热解温度则分解有机质所需的时间逐渐缩短。采用粒度为12mm的抚顺油页岩和茂名油页岩为原料以2℃&bull;min-1的加热速度升温考察了加热时间对页岩油产率的影响。当加热温度小于375℃时页岩油的放出量随着加热时间的延长而增加温度为450℃时加热时间超过lh后就不再释出页岩油表明有机质的热解反应已经完毕。由此可以看出加热温度愈高油页岩有机质的分解速度愈快达到最大页岩油产率所需的时间愈短。如果热解温度大于500℃则在很短的时间内有机质就能完全热分解而加热时间对页岩油产率没有明显的影响。所以最终加热温度是影响热分解反应的主要因素。热解反应所需的加热时间因油页岩性质的不同而异。例如在其它条件一定的前提下温度为425℃时茂名油页岩放出页岩油的时间为1h抚顺油页岩放出页岩油的时间为1.5h油页岩干馏最终温度大于500℃时抚顺油页岩及茂名油页岩的页岩油产率在很短的时间内均能达到最高。加热速度油页岩的加热速度影响低温干馏炉的生产强度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 块状油页岩在抚顺式炉中的加热速度一般不超过1.55℃&bull;min-1属于低速加热范围热量供给速度比油页岩中有机质的化学反应速度要慢得多在温度上升过程中油页岩尚未达到最终温度时有机质即已开始发生热解反应产物借扩散作用从油页岩内部导出。由于油页岩的受热、有机质的热解反应和反应产物的导出等几个过程是同时进行的所以在现有干馏工业装置上难于控制油页岩有机质的热解反应。油页岩有机质热分解的研究结果表明加热速度较低时加热速度对热解反应产物的产率和组成没有显著的影响热解反应主要是温度的函数开始提高加热速度时页岩油产率略有上升的趋势。加热速度对页岩油产率的影响是由于两方面的因素造成的。一方面在相同反应设备和压力等条件下提高加热速度等于增加了热量的供应提高了油页岩有机质的反应速度、页岩油的生成速度使其在设备内停留的时间相对减少减轻了页岩油在设备内的裂化程度结果表现为页岩油产率增加。另一方面若要提高加热速度就必须提高热载体的温度这就相当于提高了油页岩外部空间的温度油页岩热解反应产物&mdash;页岩油从油页岩内部向外逸出时所遇到的温度得以升高页岩油在较高的温度下深度分解结果造成页岩油产率的降低。此外不同地区的油页岩其组成和性质不同加热速度对其影响亦不尽相同。油页岩块径工业上使用的块状油页岩其块径范围较宽抚顺油页岩的块径为875mm茂名油页岩的块径为15125mm。由于油页岩本身的导热性不良对大块径油页岩而言加热时其表面与中心存在较大的温差。抚顺页岩油研究所曾在试验室对处在加热过程中的块径不同的正方体抚顺油页岩试样的内外温差进行过测定。测定结果发现在干馏过程中由于受到脱水及有机质分解等物理-化学过程吸热效应的影响油页岩的内外温差存在两个高峰两个高峰分别为200225℃和475℃左右。第一个高峰在脱水阶段形成。当大量水分被蒸发放出时需要大量的汽化热此时由于供给的热量不能迅速传入油页岩块的内部其内外温差就逐渐加大并且随着油页岩块径的增大而加大。当水分放出完毕后外部供给的热量能够较快地传入油页岩内部温差就逐渐缩小。第二个高峰在油页岩有机质热解和无机物结晶水放出阶段形成。因为有机质的热分解和结晶水的放出也消耗大量的分解热故造成温差的增大并且随着页岩块径的增大而增大。所以在加热温度一定时块状油页岩比颗粒油页岩需要更长的加热时间才能干馏完全。</span><br />\r\n', 1, 0, '能源化学研究室', '油页岩,低,温热,解,的,影响,因素,油页岩,热解,', '2014-07-24 00:46:26', '2020-06-02 02:11:01', NULL),
(82, 91, 9, '油页岩综合利用行业发展概述', 'admin', '油页岩干馏分为两种,即地下干馏和地上干馏。地下干馏也被称为就地干馏,是在地下对油页岩矿层进行加热和裂解,促使其转化为高品质的油或气,再通过相关通道将油、气分别提取', '', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩干馏分为两种,即地下干馏和地上干馏。地下干馏也被称为就地干馏,是在地下对油页岩矿层进行加热和裂解,促使其转化为高品质的油或气,再通过相关通道将油、气分别提取出来。该技术提高了资源开发利用效率,减少了开采过程中对生态环境的破坏,但页岩油收率不高,而且容易导致地下油气污染。地上干馏,是指油页岩经开采并送至地面,经破碎筛分后,送入干馏炉内进行加热干馏,从而生成页岩油气及页岩半焦或页岩灰的方法。目前,地上干馏是油页岩干馏制页岩油的主要途径。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩干馏炉可分成外热式炉和内热式炉两种。采用外热式炉时热气体通过炉壁加热在炉内的油页岩从而进行干馏采用内热式炉时油页岩在炉内直接与气体热载体或固体热载体接触进行干馏。外热式炉的传热效率低且不易放大在工业生产上已被淘汰。当前世界上用于工业生产的炉子都是属于内热式的炉。内热式炉也分为两种块状页岩粒径25125mm干馏炉和颗粒页岩粒径025mm干馏炉。块状页岩干馏一般以热燃烧气或热干馏气为气体热载体颗粒页岩干馏一般以烧热的页岩灰为固体热载体。两种干馏工艺的主要差别在于页岩干燥方法不同及所使用的热载体不同。半焦的处理和利用途径亦不同。目前世界上许多国家都对油页岩干馏已形成工业化生产规模中国、俄罗斯、爱沙尼亚的发生式炉及德国LR炉处理量小油收率较低工艺不先进但投资少适用于小规模的页岩炼油厂爱沙尼亚Kiviter炉和美国TOSCO-Ⅱ炉处理量较大投资中等适用于中等规模的油页岩炼油厂爱沙尼亚Galoter、巴西Petrosix及加拿大Alberta-Taciuk炉处理量大油收率高适用于大、中型油页岩炼油厂。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、油页岩干馏工业发展现状<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从1838年法国页岩油工业开始至今油页岩的开发和应用有近200年历史。油页岩工业也曾几度兴衰。随着世界油价的高起有关国家对油页岩的开发利用又活跃起来。于2005年美国国会通过了发展非常规能源的法案在美国掀起了油页岩干馏炼油的研发高潮。美国内政部己经批准了6个土地矿产租赁项目支持开展油页岩干馏炼油。据美国能源部2008年的统计报告显示开展油页岩加工利用研究的公司有29家从事地下干馏研究的有14家公司从事地上干馏研究的有11家公司从事页岩油加氢制取轻质油品研究的有2家公司。目前的研究多处于实验室、数学模拟或概念研究阶段。中国油页岩的开发利用起步较早规模也比较大但长期以来并没有明显进步。近年来随着全国能源需求的不断增长为缓解能源供需矛盾抚顺、桦甸、罗子沟、黄县等油页岩老矿先后恢复了生产。2008年我国页岩油年产量约40万t其中我国最大的油页岩炼油厂&mdash;抚顺矿业集团油页岩炼油厂的产量就达35万t。我国的科研院所和相关企业在油页岩利用技术方面也进行了深入的研究。抚顺矿业集团于2006年成立了&ldquo;辽宁省抚顺矿业集团工程技术研究中心&rdquo;针对抚顺炉单台装置处理能力小、油收率低、环境污染严重等问题将油页岩的综合利用作为研发重点开发油页岩干馏新工艺和相应的大型生产装置研究页岩油生产过程中产生的废水、废渣等的处理与循环利用技术。大连理工大学为大庆油田开发的颗粒页岩固体热载体干馏技术日加工油页岩2000t拟建设柳树河油页岩工业试验装置。中煤集团黑龙江哈尔滨煤化工公司开展油页岩流化干馏炼油中试已取得初步成功日加工油页岩50t日加工油页岩2000t的工业试验装置的可行性研究报告已初步通过。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二、油页岩干馏技术应用展望<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩资源储量丰富开采和应用有近200年的历史取得了很多成功经验并在不断改进。预计随着国际油价的不断上涨以及剩余油、低渗透油气藏开发难度的增加、天然气水合物开发的瓶颈技术暂时无重大突破等原因的影响各个国家将会对二十一世纪非常重要的接替能源油页岩的重视程度不断加强。目前制取页岩油的主要方式是地上干馏干馏会产生大量灰渣不仅污染空气且废弃的灰渣中的金属元素和微量元素渗入地下造成污染环境。地下转化工艺技术ICP是壳牌公司投入巨资研发出的开采油页岩的专利技术在美国科罗拉多州和加拿大阿尔伯特省进行了商业示范。按照2005年5月每桶原油开发成本计算传统的干馏技术为20美元&bull;桶-1使用ICP技术生产成本为12美元&bull;桶-1大大低于传统的干馏技术使该技术在油价高于25美元&bull;桶-1时即可盈利。而且该技术无需采矿减少了开采过程中对生态环境的破坏尽管该项技术现在还未完全商业化但关键的工艺、设备等技术问题都已解决这种新技术必将引导和推动油页岩干馏技术的不断进步和发展。随着技术工艺的不断改进和环保意识的不断增强以及经济效益要求的不断提高油页岩资源将由从前的单纯能源利用向综合利用效益最大化方向转化。油页岩开采后不仅仅是作为能源被利用即干馏提炼页岩油直接燃烧发电。而是通过加氢精制和非加氢精制的方法从干馏后的页岩油中进一步制取汽油、煤油、柴油、石蜡、石焦油等多种化工产品精制后的重油还可再作燃料使用。用油页岩作为发电的燃料可直接用作锅炉燃料或经过低温干馏利用产生的气体燃烧发电干馏和直接燃烧产生的灰渣可以用来充填矿井、也可用来制造水泥熟料、陶瓷纤维、陶粒、砖块等建筑材料废气可以作为燃料燃烧产生蒸汽供生产、生活使用也可再作为油页岩干馏的热源循环使用。油页岩资源的综合开发利用展示出了诱人前景不仅符合发展循环经济的要求而且也将带来良好的经济效益、环保效益和社会效益。</span><br />\r\n', 1, 0, '能源化学研究室', '油页岩,综合利用,行业发展,概述,油页岩,干馏,', '2014-07-24 00:47:56', '2020-06-02 02:11:01', NULL),
(83, 92, 7, '热烈祝贺我院选手在省科学院外语大赛中获得一等奖', 'admin', '7月30日省科学院第5届外语大赛在高研院举行经过个人演讲评委提问团体展示等环节我院参赛的选手不负重望取得了优异的成绩。其中杨光获得个人赛一等奖陆佳获个人', '/uploads/allimg/140801/1-140P1113112H5-lp.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7月30日省科学院第5届外语大赛在高研院举行经过个人演讲评委提问团体展示等环节我院参赛的选手不负重望取得了优异的成绩。其中杨光获得个人赛一等奖陆佳获个人赛二等奖潘良获个人赛优秀奖我院在团体赛中也表现不俗获得团体优秀奖。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/140801/1-140P1113112H5.jpg\" style=\"width: 640px; height: 480px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/140801/1-140P111313V41.jpg\" style=\"width: 640px; height: 480px\" /></span></div>\r\n', 1, 0, '未知', '热烈,祝贺,我院,选手,在,省,科学院,外语,大,', '2014-08-01 01:51:00', '2020-06-02 02:11:01', NULL),
(84, 93, 7, '省环科院专家考察我院杜蒙IMUS装置', 'admin', '2014年7月29日我院徐晓秋院长、关春玲副院长陪同省环科院叶真主任、黑龙江科技大学周国江教授到我院位于杜蒙的集成粪便综合利用系统IMUS示范装置考察。徐院长向两位专家详', '/uploads/allimg/140909/1-140ZZZTVB-lp.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年7月29日我院徐晓秋院长、关春玲副院长陪同省环科院叶真主任、黑龙江科技大学周国江教授到我院位于杜蒙的集成粪便综合利用系统IMUS示范装置考察。徐院长向两位专家详细介绍了我省畜禽粪便量、目前粗放的处理方式和污染破坏环境的情况以及IMUS项目的由来工业化封闭环式沼气系统的特点及优势。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/140909/1-140ZZZTVB.jpg\" style=\"width: 651px; height: 489px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IMUS采用独特的高温消化技术将畜禽粪便转换为能源、生物肥料和可再利用的水通过高温厌氧发酵来生产沼气并用其来发电。后营养物可作为无病原体的生物肥料市场化水可以再次用于IMUS系统或者用于灌溉。IMUS 技术不仅全部利用生物废物中的能源和养分它还减轻温室气体排放和农业、城市、食品加工等废物造成的其它环境和社会压力。IMUS系统是世界上唯一在高寒地区运行的利用牛粪进行发电并回收其养分生产肥料的综合利用系统属国内领先水平。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/140909/1-140ZZ91639456.jpg\" style=\"width: 653px; height: 490px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 两位专家认真听取了徐院长的介绍一致认为IMUS项目是一项既能解决我省高寒地区畜禽粪便严重污染环境的技术同时也是一项清洁可再生的能源项目。一项技术能同时解决我国环境和能源这两大经济发展中的瓶颈问题值得大力推广。今后省环科院要在环保技术推广中推广此技术。此外IMUS技术还可以应用在城市污泥处理上市场巨大更利于推广大有可为。</span>', 1, 0, '未知', '省,环科,院,专家,考察,我院,杜蒙,IMUS,装置,', '2014-08-04 01:01:00', '2020-06-02 02:11:01', NULL),
(85, 94, 9, '世界原油加工消费现状和趋势', 'admin', '截至2012年底世界原油探明储量2358亿吨比2011年增长0.9%。原油储量最多的中东地区保持小幅增长已探明储量为1093亿吨同比增长1.2%。原油资源仍然集中在欧佩克,欧佩克控制着', '', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 截至2012年底世界原油探明储量2358亿吨比2011年增长0.9%。原油储量最多的中东地区保持小幅增长已探明储量为1093亿吨同比增长1.2%。原油资源仍然集中在欧佩克欧佩克控制着世界原油储量的72.6%这是自1998年以来的最高比例。到2012年底世界原油储采比保持在52.9。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年世界原油生产41.19亿吨比2011年增长2.2%产量明显增长主要来自北美和非洲地区。北美地区原油产量增幅最大同比增长8.9%非洲地区产量增幅也达7.7%。中东地区产量仅增长0.9%为13.37亿吨占世界总产量的32.5%。欧佩克生产原油17.78亿吨占世界的43.2%高于2011年42.4%的比例。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年世界石油消费总量为41.3亿吨比2011年增长0.9%已连续3年在化石燃料中处于最低的增长率。分地区看欧美地区原油消费继续回落其中北美消费量为10.17亿吨占世界24.6%同比下降1.8%欧洲和欧亚大陆消费量8.8亿吨占世界21.3%同比下降2.5%。其中亚太和中东地区原油消费继续增长其中亚太地区消费量13.89亿吨占33.6%同比上升3.7%中东消费量3.96亿吨占9.1%同比上升4.5%。经合组织国家的石油消费下降1.3%53万桶/天为过去7年中的第6次下降占全球消费量的52.2%为有记录以来的最小份额非经合组织的石油消费增长了140万桶/天即增长3.3%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从主要石油资源国来看位列2012年世界石油探明储量第一的仍是委内瑞拉465亿吨占世界17.8%2010年时委内瑞拉为304亿吨占15.3%居第二位2011年晋升至第一位沙特阿拉伯以365亿吨占15.9%退居第二加拿大280亿吨占10.4%、伊朗216亿吨占9.4%、伊拉克202亿吨占9.0%分列第三、四、五位。在2012年排名中中国探明储量排名由上一年第15位升至第14位储采比由上年末的9.9升至11.4。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从主要产油国来看欧佩克占全球石油产量增长的约72%尽管由于国际制裁伊朗产量有下降减68万桶/天利比亚产量增100万桶/天几乎恢复了2011年的全部损失沙特阿拉伯、阿联酋和卡塔尔产量连续第二年达到了创纪录的水平伊拉克和科威特产量也显着增加。伊朗石油供应的减少由利比亚生产的恢复以及沙特阿拉伯和其他欧佩克国家增产完全抵消而有余。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年全球生产原油名列前茅的国家排名中沙特阿拉伯仍位居世界第一大原油生产国产量5.47亿吨同比增长3.7%在2010年曾位于第一位的俄罗斯继续退居第二产量5.26亿吨同比增长1.2%美国产量大幅增长13.9%达到3.95亿吨,稳居第三位,美国新增的产量大多来自于全新的页岩油产区&mdash;&mdash;北达科他州巴肯页岩或得克萨斯州的鹰福特页岩,伴随着页岩气革命而日趋成熟的水力压裂和水平井技术使这些地区的非传统石油产量得到了充分的释放;伊朗产量下降,与中国互换座次;伊拉克产量大幅增长,位次上升,委内瑞拉排名下挫。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从原油主要消费国来看2012年美国、中国、日本、印度、俄罗斯依然占据前五位。美国原油消费仍居首位为8.2亿吨比2011年下降2.3%占世界消费量的19.8%消费量和占比均有下降中国消费量为4.84亿吨再次创纪录同比增长5.0%低于过去十年的平均水平占比11.7%日本消费量2.18亿吨同比增长6.3%这是自1994年以来最强劲的增长。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年世界原油贸易总量为5531.4万桶/日比上年增长1.3%贸易量占全球消费量的62%占比有所提升。其中原油进口大国美国贸易量出现下滑为1058.7万桶/日同比下降6.6%目前美国的石油进口是20世纪90年代中期以来最少的而中国的石油净进口增长了61万桶/天占全球增长的86%日本的进口贸易量同比增长5.5%。出口贸易集中的前苏联和中东地区贸易量均出现下滑分别为859.7万桶/日和1969.9万桶/日同比分别下降2.2%和0.3%而北非和加拿大的出口贸易大幅增长33.6%和9.2%,抵消了几个地区的出口下降。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 预计2014年国际石油需求将每天增长120万桶2013年为93万桶2014年石油生产和消费增长动力主要为美国。中国、美国、印度、巴西、印度尼西亚和韩国将是重要国际能源消费国。2014年非欧佩克国家石油开采量将达到20年来最高值对欧佩克石油的需求将从2013年的2960万桶/天下降到2940万桶/天当前开采量为3061万桶/天)。在这种情况下,包括沙特阿拉伯在内的大多数欧佩克石油出口国将由于市场饱和而被迫减少石油开采量。国际能源机构指出,欧佩克国家对石油的依赖将由于美国和加拿大页岩油新开采技术的使用而进一步削弱。</span><br />\r\n', 1, 0, '未知', '世界,原油,加工,消费,现状,和,趋势,截至,', '2014-09-09 01:19:20', '2020-06-02 02:11:01', NULL),
(86, 95, 9, '我国炼油产能现状分析', 'admin', '目前我国炼油产能严重过剩2013年炼厂平均开工率仅67.3%同比下降了2.4个百分点。受益于成品油定价机制调整2013年我国炼油行业实现了扭亏实现利润400亿元。但由于一方面炼厂产', '', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 目前我国炼油产能严重过剩2013年炼厂平均开工率仅67.3%同比下降了2.4个百分点。受益于成品油定价机制调整2013年我国炼油行业实现了扭亏实现利润400亿元。但由于一方面炼厂产能不断扩展另一方面我国成品油消费增速正在逐步下行我国成品油市场过剩的现象正在加剧。据业内人士透露&ldquo;目前国内总炼油能力超过了7亿吨如果提高开工负荷近5年内可以不用新建炼厂&ldquo;。造成低开工率的原因主要是国内成品油产能严重过剩。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 按照国际标准某一行业的开工率如果降至70%这一行业就属于产能过剩行业。目前我国的炼油业开工负荷还不足70%已经算是严重过剩。虽然产能严重过剩但国内炼油项目仍在新建、扩建中其中2013年我国新增炼油能力4000万吨。扩建的项目包括乌石化、安庆、武汉、胜利、榆林、汇丰、玉皇、盛马、利安。新建的项目包括海南东方、福建腾龙、东辰、天弘、海跃、富宇、东方华龙、乌苏华泰等。近年来民营炼厂投资热情依然非常高涨。随着民营炼厂的新建扩建民营企业在我国成品油供应市场份额的占比从2012年的10%上升到2013年的13%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从需求来看2000年到2005年我国石油消费年均增速为7.3%、成品油消费年均增速为8.7%、消费柴汽比为2.28:12005年到2010年分别为7.2%、7.9%、2.2:1;2010年到2013年分别为3.6%、5.2%、1.8:1。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 成品油需求增速下降是短期因素和长期因素的叠加而导致的。经济方面,我国产业结构转型、新兴城镇化进程加快,三产发展的速度超过二产;产业方面,我国钢铁、水泥、电解铝、平板玻璃、船舶等主要用油行业产能全面过剩;第三,汽油需求增长率远超过柴油,但近年来不少城市陆续实施限购、限行措施,对汽油消费也可能造成影响。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、国内成品油市场环境的变化,倒逼我国炼油企业早日转型。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 据业内人士透露:&ldquo;与其扩大产能,不如提高油品质量,差异化经营。&rdquo;从油品质量升级寻求突破口对炼油企业来说是个机遇。很多企业通过升级改造已经从中获利。另外成品油出口也是一个机遇。虽然我国油品进出口受限于商务部配额限制但我国成品油出口有望逐步放开。初步判断2015年亚太地区的汽油还略有缺口而柴油和煤油则供大于求。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 当今世界炼化行业的大型化、基地化、一体化已成趋势。2012年和2013年的数据显示我国炼油能力已超过每年6亿吨的规模位居全球第二。千万吨级的炼油企业达到24家产能超过3亿吨约占全国产能一半稍强。其中有22家隶属中国石油和中国石化两大集团。这使得中国石化和中国石油炼油平均规模分别达到每年778万吨和658万吨。与此同时国内却有百余家规模在200万吨级以下的炼油企业占全国产能的8%稍弱。这些数据说明,我国炼厂的潜在技术效率总体平均水平依然不高,且分布不平衡。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 由于现行的原油配置政策多数地方民营炼厂不能获得稳定的原料供应依靠少量不稳定的原油和大量高成本的进口燃料油若能实现40%以上的开工率就已经属于乐观状态了。自然,地方民营炼厂的开工率拉低了全国炼油行业的平均生产能力利用率。可就算是在这种条件下,这些潜在技术效率低、生产能力利用率低、原料成本高的小型炼厂依然能够存活的事实透露了很多重要的信息,其中最为重要的是,中国的成品油政府定价足够高。因此,这就不难理解业内专家对产能过剩忧心忡忡的原因。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过举例可以说明问题若在新加坡成品油现货市场价格基础上加上运保费作为到岸价格支付进口关税、给予批发零售环节合理的利润率再加上所有环节增值税及从量消费税进行计算我们会发现自2008年6月以后这个&ldquo;放开成品油进口,成品油批发零售环节合理竞争&rdquo;意义的影子价格总是低于国内的同期政府定价。即便如此,炼化企业也不是普遍盈利的。也就是说,以中国炼油企业的总体效率,同韩国、印度、日本、新加坡炼厂在国际市场竞争,基本没有可能。目前中国国内市场的成品油需求主要靠本土成品油供应,不受进口成品油冲击已然是幸运的了。沿着这个思路自然可以理解,炼油效率足够高是判断产能真正过剩的必要条件。低效率厂商不能获得满意的市场份额,导致开工率不足,不意味着具有经济意义的产能过剩。缺乏效率,在开放市场中,再低的产能也有可能成为过剩产能。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 需要说明的是,对于中国炼油企业总体效率偏低的判断并不排除个别企业实现高效率的可能,更不否认优秀炼油企业存在的现实。剔除炼厂规模和投产年代差异等因素,国内炼厂的生产效率和财务绩效差异仍是巨大的。其实,对于中国成品油高油价和炼厂普遍亏损并存的论断并不公平,至少是不够全面、客观的。由于众所周知的历史和现实原因,太多的国企央企承担了一些至少在规范市场经济体制下被普遍视为过分的&ldquo;社会责任&rdquo;。石油系统内,很多基层单位的冗员问题至今不能根据市场规则得到解决。而中国大型炼厂的员工数量数十倍于国外相同规模的炼厂也是非常普遍的现象。我们很难期待这些炼油企业能够在国际市场上争夺一席之地。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 当然,最近几年各地大型炼油设施投资增长过快的推手离不开地方政府对政绩的追逐和石化企业对市场的争夺,但这不足以造就真正意义的产能过剩。高成本的企业没有被迫停产关闭,小规模的没有被淘汰,低效率的没有去&ldquo;瘦身&rdquo;。如同自然界食肉动物的饥饿有可能是因为猎物数量的增长没能抵消捕食能力的衰退。我们看到的&ldquo;产能过剩&rdquo;只是所捕获的猎物变少,并不是捕食者变多,或者猎物变少。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 总之,提出&ldquo;炼油行业产能过剩&rdquo;的论断,并非意在吓退潜在的行业进入者,或者希望政府继续整顿小炼厂,而是对于政府进一步理顺体制、改进政策、企业不断提升效率有所期望。中国炼油产能过剩或许只是个伪命题。</span>', 1, 0, '未知', '我国,炼油,产能,现状,分析,目前,我国,炼油,', '2014-09-09 01:20:54', '2020-06-02 02:11:01', NULL),
(87, 96, 9, '中国能源如何应对全球能源格局的转变</br>—2035年前世界能源局势预测', 'admin', '当前,国际能源格局正处于深刻变化之中,全球经济期待新的增长引擎拉动,欧元区危机日益加深,延宕世界经济复苏,西方社会整体陷入体制性危机。国际社会陷于全球经济危机后的', '', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 当前国际能源格局正处于深刻变化之中全球经济期待新的增长引擎拉动欧元区危机日益加深延宕世界经济复苏西方社会整体陷入体制性危机。国际社会陷于全球经济危机后的全面调整之中美国加速衰落使世界政治和经济格局向多极转变和向无极世界继续滑落两个方向发展新的国际秩序呼唤中国高效参与全球和区域治理广泛参与多边国际事务塑造新的国际格局综合维护国家利益和能源安全。全球人口资源环境矛盾突出气候变化谈判成为国际热点之一新能源研发和节能环保技术将成为核心推动力从而引领世界经济发展方向。未来世界的能源供应转向区域化和本土化分布式能源网络建设提速。西方世界处于向新型工业化社会转型阶段面临技术创新取得突破的前夜。2015年之前世界经济仍普遍低迷2020年后将出现新的增长。发展中新兴国家追赶式现代化面临挑战中国经济减速至7.58%。欧美中新技术突破之前2015 2020年世界经济形势暗淡。20122020年的8年是中国&ldquo;转方式、调结构&rdquo;的重要机遇期2013年是中俄签署天然气贸易合同的良好时间窗口。2020年后常规资源包括油气价格仍将因稀缺性而震荡上扬。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、中国:技术创新改写全球能源格局<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 当前页岩气和页岩油开发是全球能源领域的一场技术革命是全球油气勘探开发的新方向。2005年以来美国页岩革命已导致国际能源市场发生深刻变化已经开始改写全球能源政治版图。<br />\r\n&nbsp;随着美国页岩气开采技术取得突破进展,美国能源重心从中东-西非逐渐西移转向北美地区和本土对外依存度显著下降。2005年美国页岩气年产量仅196亿立方米而2010年已达到1378亿立方米加上致密砂岩气和煤层甲烷气非常规天然气产量约占美国天然气总产量一半以上2030年将达到65%。页岩气开发利用使美国国内天然气价格出现暴跌0.5元/立方米),已在改变美国的能源消费结构。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 美国石油对外依存度呈现下降态势。美国能源信息署EIA数据显示2005年美国石油对外依存度高达60.3%2010年下降到49.3%2011年进一步降至45%。未来10年美国计划把石油进口量再削减1/3。美国2010 年能源综合自给率为78%预计在2035年将达到87%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EIA还预测美国将在2016 年成为LNG 净出口国2021年成为天然气总量净出口国2025年成为管道天然气净出口国。2035年美国石油及其他液体燃料的自给率也将超过60%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 与美国能源走向独立形成鲜明对比的是由于经济保持高速增长以中国为首的东亚和印度为首的南亚地区石油对外依存度节节攀升。2011年中国消费能源34.8亿吨标煤超过美国成为全球第一大能源消费国新增消费2.3亿吨标煤。中国能源消耗量占全球19.5煤炭消费量相当于其他国家的总和高能耗产生了仅占世界8.6%的GDP。中国2013年石油依附度已达到58.8%远超美国。中国占世界能源消费总量由2000年的9.02%飙升至2010年的20.82%2020年前仍将继续攀升。<br />\r\n  中国的对外依存度过高供求矛盾突出从而制约经济社会发展。中国石油消费已进入快速增长时期石油供需缺口将越来越大2020年中国石油对外依存度将上升至超过66%。中国对外石油依赖程度越高,国家控制短缺风险的能力越弱。一旦发生石油进口通道受阻等情况,必然对整个国民经济和社会生活秩序产生消极影响。如果中国经济的运行秩序经常受到石油市场行情波动和供应紧平衡的影响,可持续发展能力将会受到掣肘。<br />\r\n  中国石油定价机制不完善市场风险增大。中国石油定价机制的弹性不足使中国石油安全在国际油价的变化中承受极大风险。国际油价上涨给中国经济运行和居民生活带来一定的负面影响高油价导致外汇支出增加、企业成本加大、居民消费支出增加抑制经济活力输入性通胀加剧潜在国内通货膨胀压力并增大国家宏观调控难度。<br />\r\n  2000~2010年期间世界基础能源包括石油、天然气、煤炭、水电和核电不含新能源消费总量年增长率为2.67%亚太地区年均增长率则为6.34%而北美、欧洲、独联体地区年均增长率仅为0.2%。<br />\r\n  中国尽管页岩气资源丰富可采资源量约25万亿立方米潜力巨大但与美国页岩的平原分布相比中国页岩发育层系构造复杂分布地带多为山丘开发难度较大。矿产资源普查基础工作薄弱地质理论有待创新和高端突破可采储量尚需进一步落实。此外开发技术滞后、水资源相对匮乏、资源区人口密集是我国页岩气开发的不利因素。而水平井钻完井技术、分段压裂等核心技术落后我国与美国相比落后10年这些已成为阻碍页岩气开发的瓶颈。<br />\r\n  随着西亚北非&ldquo;阿拉伯之春&rdquo;运动的发生和欧元区崩溃,新的全球能源格局浮出水面。国际能源格局将发生深刻变化:<br />\r\n  1、以美国为代表的西半球非常规油气资源的新发现打压油气价格并降低供应的波动性全球石油供应中断的威胁下降但华盛顿掌握着油价的标价权其将实行弱势或强势或美元政策影响油价升降。<br />\r\n  2、能源供应形势的乐观态势将极大改善国际关系和能源格局。石油输出国组织OPEC,简称欧佩克)作为卡特尔组织功能消退,局势动荡的石油国家如伊朗、伊拉克、委内瑞拉可能会被边缘化。<br />\r\n  3、欧洲持续推进能源多元化战略大力发展洁净能源和新能源降低对俄罗斯的能源依赖加大从中东-北非-中亚的油气进口。<br />\r\n  4、传统油气资源的供应国与消费国之间的竞争将集中于新兴国家经济体和OPEC之间中国更是首当其冲被推上前台。<br />\r\n  5、中美继续争夺新能源关键技术研发的战略制高点和创新市场。新能源非常规油气和可再生能源的经济性即价格成本能否接近常规油气资源是技术竞争的焦点。<br />\r\n  美国取代俄罗斯摘取世界天然气生产大国的桂冠俄罗斯天然气工业股份公司Газпром,俄气将丧失欧洲天然气市场的霸主地位2011年俄气对德国、挪威和荷兰的天然气出口大幅下降。俄欧能源一体化战略已逐渐沦为空想。<br />\r\n  在发动页岩气革命之后美国页岩油开采凯歌行进。这势必会引起全球能源消费格局的变革甚至地缘政治的震动。Cambridge EnergyResearch Associates (CERA)公司对美国和加拿大48个油田共28口页岩油油井的调查显示储量为8.41亿吨开采成本仅为23.77美元/桶在当前油价和税制条件下利润空间很大。15年之后美国页岩油日产量将达到4.5百万5百万桶,相当于俄罗斯目前日产量的一半。<br />\r\n  2015年之后中国、印度、加拿大等国以及欧盟开始页岩气的工业开采俄气在国际市场份额受挤压地位开始下降。尽管俄气也有页岩气项目可以随时增加产量但外部市场不容乐观。俄气计划2013年底分别与印度LNG形式供应和中国签署天然气出口协议。<br />\r\n  如果世界油价在普京第一个六年任期保持低位俄罗斯预算对能源出口创汇的依赖度难以下调俄罗斯将面临巨大困境从能源出口依附型经济向创新型国家的转变就难以有充足的启动资金。<br />\r\n  为确保能源供应保障中国应采取的对策<br />\r\n  2030年之前常规油气资源仍将是工业化和后工业化国家的主导性能源石油作为常规军事机器和交通运输的主要动力燃料不会改变可再生能源仅占世界能源平衡的16%。美国拥有打压世界油气价格下行的能力,但美国因此获得美元贬值的自由空间度。<br />\r\n  1、随着美国从中东-北非石油进口的下降和退出,中国进一步密接同中东、北非能源国家的战略合作,如推进中国-海合会国家自贸区建设和人民币对伊斯兰世界国际化水平;中国应加强同日、韩的能源合作,减少在寻求国际石油天然气资源方面的激烈对抗和冲突,避免过度竞争。<br />\r\n  2、中国利用上合组织与欧亚同盟之间的交叉与融合争取人民币成为上合成员国能源贸易的结算货币考虑俄罗斯对中亚-外高加索地区的关切,应注重平衡中俄利益,共同维护中亚地区的安全和能源利益;中国与俄罗斯应加强能源科技创新合作、研发氦提取与封存技术、稀土和铀资源开发战略的协调。<br />\r\n  3、中国继续推进西部陆路能源大通道和中国-土耳其-欧洲铁路新大陆桥建设按照《上合组织中期发展战略规划》适时扩大上合组织第一批纳入巴基斯坦、印度之后适时批准蒙古和伊朗加入下次峰会应考虑土耳其成为观察员国。2012年6月北京峰会已批准阿富汗为观察员国上合应针对2014年美国撤军后的后阿富汗重建达成共识。<br />\r\n  4、中国需要善用金融工具利用G20机制作为全球金融治理平台推动对发展中国家有利的规则制定加强原油及其衍生品期货市场建设使上海成为东亚和世界石油定价中心之一。<br />\r\n  5、加快产业结构和能源消费结构调整推进高能效技术创新发展新能源和核能能源结构以煤为主优质能源资源如石油、天然气等比例偏低能源结构不合理。资源勘探相对滞后影响了能源产能提高资源利用效率也亟待提高。同时中国煤炭清洁利用水平低煤炭燃烧产生的污染给生态环境带来很大压力在国际气候谈判中处于被动地位。<br />\r\n  6、改变平行推进的&ldquo;救火式&rdquo;外交确定中国外交战略的优先方向重点落实区域经济一体化战略中日韩自贸区、东盟10+3、中哈自贸区建设、中国东北与俄罗斯远东和东西伯利亚区域合作第二层面加强中非合作同时注重大国协调以义为先推行和谐世界的义利观放弃不结盟政策而采取负责任的盟友战略放弃不干涉内政原则维护国际正义。<br />\r\n  7、坚定维护南海海洋国土主权同时加快南海深水油气开发2020年前尝试可燃冰的工业开发。<br />\r\n  8、创新能源合作方式促成中俄通过天然气&ldquo;上下游一体化&rdquo;合作模式,缔结长期管道天然气贸易合同,打造与优先发展的中俄战略协作伙伴关系战略定位相匹配的&ldquo;新型能源共同体&rdquo;。中俄原油贸易将扩大到5000万吨天然气价格谈判障碍将在上下游一体化模式探索中取得突破。俄方计划在欧亚同盟一体化能源战略框架内制定对中国的天然气出口路线。俄近期将突破从东西伯利亚天然气之中分离氦气技术、制定欧亚同盟铀出口战略以及俄东部稀土开发战略。<br />\r\n  9、加快推进社会主义民主和法治建设维护国内社会的整体稳定和谐为实施我国大国外交战略奠定坚实的国内环境和执政基础。<br />\r\n  二、美国专家之预测<br />\r\n  西半球非常规油气资源的新发现弱化了油气供应中断的威胁降低了油气价格的波动性有利于改善国际关系。西方国家石油产量自1952年以来将首次有望满足需求美国天然气自给自足可以维持100年。科技革命带来了能源供应的革命。先进的地震技术和复杂的钻探方法开启了以前不为人知或无法获取的矿藏。在石油方面美国、加拿大、巴西可能还包括墨西哥的产量将大幅增长。上述国家在未来20年可能会位居全球7大能源生产国之列。美国的能源政策将越来越侧重于在西半球的关系力求在整个美洲地区促成一个自贸区。<br />\r\n  地缘政治因素造成的供应中断将不会再产生那么大的影响石油禁运将不会像1973年阿拉伯国家或1979年伊朗所实施的禁运那样造成严重破坏。国内冲突如在伊拉克和利比亚发生的冲突引发的石油产量下降也将不至于产生严重后果。简单来说稳定产油国的名单将变得更长这将让任何一个处于动乱状态的国家的影响变得更为有限。对冲基金利用金融工具成功操纵市场的可能性将因能源市场规模巨大而减小。二战后西方曾在能源生产方面引领世界。西方的消费量飙升中东的产量增加不稳定性也随之而来能源从东方向西方输出。如今这种流动即将逆转国际格局将会改变。中东地区在地缘政治中的核心地位将会减弱欧佩克作为一个卡特尔组织已在衰落的设想将走向尾声。<br />\r\n  美国坚信未来世界的经济和政治中心在东亚美国积极回归西太平洋地区加紧防范中国崛起。而美国长期部署在海湾地区的军力将减少美国在海湾的唯一优先事务将是维护沙特阿拉伯和以色列的稳定。另外美国政府今后的紧缩预算将支持削减阿以两国国防支出因为这两个国家都已高度军事化。<br />\r\n  俄罗斯等其他渴望获得国际权力的石油国家在全球的影响力也将遭到削弱。西方国家石油产量的不断飙升将导致俄罗斯等国家被边缘化。随着美国成为液化天然气出口国俄罗斯威胁切断对欧洲能源供应的能力将减弱。再加上俄罗斯人口不断减少且经济疲弱俄罗斯可能将进一步走向衰落。<br />\r\n  中国将受到很大影响。中国80%的石油需求可能最终依靠进口。中国的石油日进口量预计将从400万桶增至1200万桶。中国已是中东和非洲石油的最大客户被迫卷入这一地区的冲突调节。随着西方对中东保护减弱中国将承继美国在此留下的脆弱性负担。<br />\r\n  石油进口在美国中东战略目标中的重要性下降虽然这并不意味着美国会放弃中东但是美国取得&ldquo;能源独立&rdquo;会让其在推进中东民主化、抑制伊朗崛起、保护以色列安全等战略目标时,变得更加强硬。美国若不再依赖国际能源市场,全球能源供应方将更加积极地寻求需求方,尤其是对接东亚。对中国而言,这将会留给中国更多境外能源扩展空间;另一方面,美国若不再积极维护全球主要通道的安全,那么全球能源供给和运输的风险将上升。<br />\r\n  EIA于2013年6月宣布俄罗斯页岩油储量750亿桶居世界第一位。美国页岩油可采储量580亿桶居第二位中国320亿桶居第三位。其后为阿根廷、利比亚、委内瑞拉和墨西哥。全球页岩油总储量评价为3450亿桶占石油可采储量的10%。<br />\r\n  页岩气储量排名中国为31.57万亿立方米阿根廷为22.71万亿立方米阿尔及利亚为20万亿立方米。美国页岩气产量第一但储量排名第四为18.83万亿立方米。俄罗斯页岩气储量为8万亿立方米排名第九。全球页岩气资源量为206万亿立方米为常规可采天然气储量的32%。<br />\r\n  三、俄罗斯专家对2035年前能源形势的预测<br />\r\n  俄能源部能源战略研究所专家认为石油开采的峰值期不断被技术的新突破所推迟。2035年石油消费将增长20%天然气增长55%。未来25年内可再生能源将增长70%在能源平衡中将达到16%。油价预测关涉对世界经济发展态势的研判。2035年油价平衡价位为125美元/桶。2010~2035年天然气市场的发展要快于石油分别为56%和21%。全球天然气消费量将达5万亿~5.5万亿立方米价格将增长50%,主要驱动力是天然气电站。<br />\r\n  亚洲发展中国家油气消费量占世界新增消费量的65%这些国家是新增碳排放量的主要贡献国而发达国家温室气体排放下降。2035年主要能源进口国为欧洲和亚洲国家。北美将减少甚至停止进口某些能源品种。北美走向能源独立可能形成区域能源价格2035年可出口LNG为300亿立方米/年。尽管数量不大,但将改写世界天然气分配流向。<br />\r\n非常规的页岩油、油砂、稠油的开发将对市场产生重大影响2006~2011年页岩油的开采成本已经下降一半这是页岩气开采技术的突破对页岩油开发所产生的实际影响。北美地区由此可以实现能源自给自足这将对世界能源格局和油气价格走势产生深刻影响。随着美国停止石油进口油价将降低23%,世界所有石油产区包括独联体国家的产油量随着需求的下降而降低。<br />\r\n  但是中东和北非作为世界油气的主要供应地仍保持着重要意义和影响力。波斯湾地区持续的动荡和宗教冲突将导致石油产量下降10%2013~2019年伊朗将停止石油出口而伊拉克产量已减半。尽管有生物燃料和新能源的发展以及其他地区产量的增长都不足以替代中东和北非出口的下降。在此情景之下油价将上行至200美元/桶。<br />\r\n  世界将在生态安全与能源保障之间寻找平衡点。福岛核泄漏之后日本德国等国放弃、拒绝发展核能BP墨西哥漏油灾难之后出于环保起见世界开始讨论谨慎对待深海采油。为了维护生态安全所采取的作法将导致能源价格比2010年基准价上涨60%,这将加剧对传统能源的争夺。<br />\r\n  目前金砖国家的在建核电站数量占全球总量的75%。当前全球正在运营的核电机组普遍老化服务20年以下的仅占20%发达国家大多数机组将要在2030年之前关闭而以何种燃料填补这一巨大的能源缺口已难以回避。可再生能源发展迅速尽管最近几年成本有所下降其较贵的价格无法与常规能源如天然气和煤炭相互竞争其发展前景取决于相关国家的政策导向和扶持。<br />\r\n  总体来看俄罗斯能源业面临日益紧迫的不利于出口的国际能源形势。2035年油气产能达到峰值之后随着国内需求不断的增加俄罗斯能源出口量将下降外部市场情况复杂俄将回归国内市场。与其产量波动有关的变量涉及以下六方面俄经济增速、外部市场需求、储量替接、国内外能源资源价格、开采成本、价格政策。<br />\r\n  目前俄能源公司对油气勘探领域的储量增长投资严重不足不利于产能稳定和提高。2035年之前俄罗斯石油产量稳定但天然气产量将继续增长。<br />\r\n  欧洲对传统能源需求的增长有限又兼市场竞争激烈俄罗斯的竞争优势不明显。俄罗斯瞄准世界经济增长的重心&mdash;&mdash;东北亚和亚太市场,将减少对欧出口,加快对东部能源的开发以扩大对东部邻国的出口。</span>', 1, 0, '未知', '中国,能源,如何,应对,全球,格局,的,转变,—,', '2014-09-09 01:22:54', '2020-06-02 02:11:01', NULL),
(88, 97, 7, '营造健康运动氛围,丰富职工业余生活</br>-省能源环境研究院开展羽毛球比赛', 'admin', '为使我院职工在工作之余放松身心劳逸结合经过精心筹备我院羽毛球比赛于9月28日正式开始此次活动得到了院领导的大力支持和职工的积极响应。 比赛中选手们挥舞球拍、腾挪', '/uploads/allimg/141011/1-141011112F0224-lp.JPG', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size: 22px\"><span><span style=\"display: inline! important; font-weight: normal; float: none; word-spacing: 0px; text-transform: none; color: rgb(51,51,51); text-indent: 0px; line-height: 22px; font-style: normal; font-family: 宋体; white-space: normal; letter-spacing: normal; text-align: left; font-variant: normal; webkit-text-size-adjust: auto; orphans: 2; widows: 2; webkit-text-stroke-width: 0px\">为庆祝建国六十五周年,丰富我院职工文化生活,</span></span></span><span style=\"font-size: 22px\">使我院职工在工作之余放松身心劳逸结合经过精心筹备我院羽毛球比赛于9月28日正式开始此次活动得到了院领导的大力支持和职工的积极响应。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141011/1-141011112F0224.JPG\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 比赛中选手们挥舞球拍、腾挪跳跃、忘却疲惫、尽情挥洒汗水。最终,男子单打组郭广亮同志凭借出色的发挥,夺得男子单打第一名,女子单打组樊磊同志夺得女子单打第一名。</span><br />\r\n<div style=\"text-align: center\">\r\n <br />\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141011/1-141011112H5263.JPG\" style=\"width: 519px; height: 346px\" /></span></div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过本次羽毛球比赛,不仅增强了同事之间的感情和团队凝聚力,同时也展现了我院全体职工团结活泼、奋发向上的精神风貌。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141011/1-141011112USY.JPG\" style=\"width: 519px; height: 346px\" /></span></div>\r\n', 1, 0, '未知', '营造,健康,运动,氛围,丰富,职工,业余,生活,省,', '2014-10-15 08:21:26', '2020-06-02 02:11:01', NULL),
(89, 98, 7, '知识产权助推创新</br>--省能源院专利知识培训', 'admin', '11月17日第八届中国专利周黑龙江省系列活动正式启幕。为配合专利周系列活动11月20日黑龙江省能源环境研究院举办了知识产权培训讲座。特邀黑龙江省知识产权服务中心副主任', '/uploads/allimg/141124/1-141124110J93I-lp.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 11月17日第八届中国专利周黑龙江省系列活动正式启幕。为配合专利周系列活动11月20日黑龙江省能源环境研究院举办了知识产权培训讲座。特邀黑龙江省知识产权服务中心副主任专利代理研究员单淑梅同志来院讲课。我院全体科技人员参加了这次培训。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141124/1-141124110J93I.jpg\" style=\"width: 558px; height: 373px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 首先,单淑梅研究员介绍了专利的概念、特征,申报流程,重点介绍如何确定必要技术特征,如何把握产品、方法发明的实质性特点,撰写专利文件。接着分析了部分专利法律条款,细致解读了相关法条的适用范围、立法宗旨等,并结合多年来的工作实践经验和具体案例展开论述,内容丰富,旁征博引,极具实用性。最后,她结合实际研究项目演示了专利文献的检索和分析全过程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 单淑梅研究员的培训内容丰富,案例生动详实。参加培训的科技人员兴致高昂,不时提出问题,参与互动,均表示受益匪浅。 </span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141124/1-141124110SW37.jpg\" style=\"width: 558px; height: 373px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此次知识产权培训,提高了我院科技人员的知识产权保护意识和专利撰写实务能力。今后我院还将针对知识产权创造、保护、运用和管理等各个环节,组织不同主题的知识产权讲座和培训,进一步强化知识产权知识,不断提高我院自主创新能力。</span><br />\r\n', 1, 0, '未知', '知识产权,助推,创新,省,能源,院,专利,知识,', '2014-11-24 03:05:14', '2020-06-02 02:11:01', NULL),
(90, 99, 20, '黑龙江省科学技术进步一等奖', 'admin', '科学技术发明一等奖 科学技术进步一等奖 全国化工系统技术二等奖', '/kjfh/uploads/allimg/130707/1-130FH2593T91-lp.jpg', '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH2593T91.jpg\" style=\"width: 600px; height: 409px\" /></div>\r\n', 1, 0, '未知', '科学技术,进步,一等奖,科学技术,发明,一等奖,', '2017-05-12 09:35:58', '2020-06-02 02:11:01', NULL),
(91, 102, 21, '论文《木焦油预处理制取加氢原料的方法》', 'admin', '以廊乡林业局木焦油为原料采取萃取破乳液固分离蒸馏脱水的方法对木焦油原料进行净化预处理脱除原料中的水分和杂质等非理想组分使木焦油的含水量降至0.56%,固体含量降至', '', '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 以廊乡林业局木焦油为原料,采取&ldquo;萃取&mdash;破乳&mdash;液固分离&mdash;蒸馏脱水&rdquo;的方法对木焦油原料进行净化预处理脱除原料中的水分和杂质等非理想组分使木焦油的含水量降至0.56%固体含量降至0.23%,明显改善木焦油的质量。经预处理的木焦油可作为催化加氢制取运输燃料油的原料。</span>', 1, 0, '未知', '论文,《,木焦油预处理制取加氢原料的方法,', '2014-11-28 08:17:25', '2020-06-02 02:11:01', NULL),
(92, 103, 21, '论文《轻质木焦油加氢脱氧的影响因素》', 'admin', '摘要在固定床加氢微反装置上采用硫化态NiMoW/Al 2 O 3 催化剂以廊乡林业局轻质木焦油300℃馏分为原料考察反应条件对加氢脱氧性能的影响。结果表明适当降低反应空速、', '', '&nbsp; &nbsp; &nbsp; &nbsp; 摘要在固定床加氢微反装置上采用硫化态NiMoW/Al<sub>2</sub>O<sub>3</sub>催化剂以廊乡林业局轻质木焦油300℃馏分为原料考察反应条件对加氢脱氧性能的影响。结果表明适当降低反应空速、提高反应压力、提高反应温度均有利于提高催化剂加氢脱氧反应活性提高加氢产物的热值。在反应温度380℃、反应压力8.0MPa、体积空速0.8h<sup>-1</sup>、氢/油体积比8001的条件下加氢生成油的氧含量明显降低热值显著提高。轻质馏分油可作为化工轻油原料进行下游加工中质馏分油主要技术指标均符合船用馏分燃料油GB/T17411-1998标准要求可直接作为船用燃料油调和组分使用。', 1, 0, '未知', '论文,《,轻质木焦油加氢脱氧的影响因素,》,', '2014-11-28 08:18:31', '2020-06-02 02:11:01', NULL),
(93, 104, 21, '论文《<M25车用甲醇汽油>企业标准解读》', 'admin', '摘要:为推动车用燃料的多元化发展,拓展代用燃料的应用领域,经黑龙江省科技厅推介,黑龙江省能源环境研究院与哈尔滨市依兰巨澜清洁能源发展有限公司共同签订了《产研技术研', '', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 摘要:为推动车用燃料的多元化发展,拓展代用燃料的应用领域,经黑龙江省科技厅推介,黑龙江省能源环境研究院与哈尔滨市依兰巨澜清洁能源发展有限公司共同签订了《产研技术研发协议》,开展了&ldquo;M25车用甲醇汽油&rdquo;的技术研究、工艺过程与控制以及试验品生产应用工作。为了科学、规范地推进科研性试点工作双方制定、发布实施了Q/HNH&nbsp;001&mdash;2013《M25车用甲醇汽油》企业标准。本文对该企业标准的制定情况及其主要技术指标作了阐释以利于在M25车用甲醇汽油的科研性推广应用工作中对标准全面理解和贯彻实施。<br />\r\n《黑龙江科学》2014年第2期。</span>', 1, 0, '未知', '论文,《,M25车用甲醇汽油,》,摘要,为,推动,', '2014-11-28 08:20:22', '2020-06-02 02:11:01', NULL),
(94, 105, 21, '论文《<车用汽油>的胶质指标解析》', 'admin', '摘要近几年随着我国汽车工业的快速发展石油能源快速消耗车辆尾气排放对环境的污染日益增加。考虑到已经实施国三和将要实施的国四、国五标准要求国家发布了GB1793020', '', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 摘要近几年随着我国汽车工业的快速发展石油能源快速消耗车辆尾气排放对环境的污染日益增加。考虑到已经实施国三和将要实施的国四、国五标准要求国家发布了GB&nbsp;17930&mdash;2011/XG1&mdash;2012《车用汽油》国家标准第1号修改单于2012年5月1日起实施。其中胶质指标在原标准的基础上增加了未洗胶质含量加入清净剂前不大于30mg/100mL试验方法执行GB/T&nbsp;8019&mdash;2008《燃料胶质含量的测定喷射蒸发法》。本文分析阐述了标准修改的目的、未细胶质和溶剂洗胶质的特点、检测方法等并提出了待商榷问题。<br />\r\n《黑龙江科学》2014年第2期。</span>', 1, 0, '未知', '论文,《,<车用汽油>的胶质指标解析,》,摘要,', '2014-11-28 08:20:46', '2020-06-02 02:11:01', NULL),
(95, 106, 21, '论文《调和国IV标准车用汽油的抗爆剂研究》', 'admin', '摘要针对提高油品辛烷值使调和后汽油的质量指标符合GB17930-2011/XG1-2012国家《车用汽油》IV标准的目的。本文创新了一种由0.365%MMT、60%MTBE、8%TBAC、3.635%二氯甲烷、28%抗爆助剂m/m', '', '<span style=\"font-size:22px;\">摘要针对提高油品辛烷值使调和后汽油的质量指标符合GB&nbsp;17930-2011/XG1-2012国家《车用汽油》IV标准的目的。本文创新了一种由0.365%&nbsp;MMT、60%&nbsp;MTBE、8%&nbsp;TBAC、3.635%二氯甲烷、28%抗爆助剂m/m复配而成的新型复合抗爆剂。通过对汽油感受性、符合性以及储存性等实验方法结果表明该复合抗爆剂对汽油具有良好的感受性能够显著提高油品的辛烷值适宜长期存储。得出结论复合抗爆剂的最适添加比例为2%m/m调和后的汽油各项指标均符合国IV标准能够达到93号无铅汽油的生产规格。<br />\r\n《化学工程师》2014年第3期。</span>', 1, 0, '未知', '论文,《,调和国IV标准车用汽油的抗爆剂研究,', '2014-11-28 08:21:35', '2020-06-02 02:11:01', NULL),
(96, 107, 21, '论文《沼气工程工艺参数的优化模型研究》', 'admin', '《自动化技术与应用》2014.06', '', '<div style=\"margin-left: 40px\">\r\n <span style=\"font-size: 22px\">《自动化技术与应用》2014.06</span></div>\r\n', 1, 0, '未知', '论文,《,沼气工程工艺参数的优化模型研究,', '2014-11-27 08:28:00', '2020-06-02 02:11:01', NULL),
(97, 108, 21, '专利《一种搅拌破壳于一体的发酵反应器》', 'admin', '专利名称 申请号 授 权 时 间 一种搅拌破壳于一体的发酵反应器 (实用新型,王玉鹏) 201320512530.5 2014.1.15', '', '<p>\r\n &nbsp;</p>\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 711px; height: 131px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">专利名称</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">申请号</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">授 权 时 间</span></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">一种搅拌破壳于一体的发酵反应器<br />\r\n (实用新型,王玉鹏)</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">201320512530.5</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">2014.1.15</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', 1, 0, '未知', '专利,《,一种搅拌破壳于一体的发酵反应器,', '2014-11-27 08:30:00', '2020-06-02 02:11:01', NULL),
(98, 109, 21, '专利《一种太阳能集热控制系统》', 'admin', '专利名称 申请号 授 权 时 间 一种太阳能集热控制系统 (实用新型,罗向东) 201320573185.6 2014.2.19', '', '<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 660px; height: 106px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">专利名称</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">申请号</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">授 权 时 间</span></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">一种太阳能集热控制系统<br />\r\n (实用新型,罗向东)</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">201320573185.6</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">2014.2.19</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', 1, 0, '未知', '专利,《,一种太阳能集热控制系统,》,专利,', '2014-11-27 08:33:00', '2020-06-02 02:11:01', NULL),
(99, 110, 21, '一种厌氧发酵分段控温系统', 'admin', '专利名称 申请号 授 权 时 间 一种厌氧发酵分段控温系统 (实用新型,秦国辉) 201320509483.9 2014.1.8', '', '<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">专利名称</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">申请号</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">授 权 时 间</span></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">一种厌氧发酵分段控温系统<br />\r\n (实用新型,秦国辉)</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">201320509483.9</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">2014.1.8</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', 1, 0, '未知', '一种,厌氧,发酵,分段,控温,系统,专利,名称,', '2014-11-27 08:35:00', '2020-06-02 02:11:01', NULL),
(100, 111, 21, '专利《一种高温厌氧发酵运行参数的无线实时监测系统》', 'admin', '专利名称 申请号 授 权 时 间 一种高温厌氧发酵运行参数的无线实时监测系统(实用新型,徐晓秋) 201320509482.4 2014.1.15', 'images/2020/06/03/3e4cdc94cfc265930e1afde110f70697.jpg', '<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 675px; height: 82px\"><tbody><tr><td style=\"width: 281px; height: 38px\"><span style=\"font-size: 22px\">专利名称</span></td><td style=\"width: 132px; height: 38px\"><span style=\"font-size: 22px\">申请号</span></td><td style=\"width: 107px; height: 38px\"><span style=\"font-size: 22px\">授 权 时 间</span></td></tr><tr><td style=\"width: 281px; height: 38px\"><span style=\"font-size: 22px\">一种高温厌氧发酵运行参数的无线实时监测系统(实用新型,徐晓秋)</span></td><td style=\"width: 132px; height: 38px\"><span style=\"font-size: 22px\">201320509482.4</span></td><td style=\"width: 107px; height: 38px\"><span style=\"font-size: 22px\">2014.1.15</span></td></tr></tbody></table>', 1, 0, '未知', '专利,《,专利,名称,申请,号,授,权,时,间,一种,', '2014-11-28 08:35:43', '2020-06-03 09:16:39', NULL),
(101, 112, 7, '黑龙江省能源环境研究院两项课题通过省级鉴定', 'admin', '2014年12月4日在省能源环境研究院嵩山路15号8楼会议室召开了项目鉴定会会议对我院承担的《轻质木焦油加氢提质转化运输燃料油调和组分的工艺研究》和《利用炼厂90 # 汽油生产国', '/uploads/allimg/141205/1-141205164U1518-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2014年12月4日在省能源环境研究院嵩山路15号8楼会议室召开了项目鉴定会会议对我院承担的《轻质木焦油加氢提质转化运输燃料油调和组分的工艺研究》和《利用炼厂90<sup>#</sup>汽油生产国IV标准93<sup>#</sup>汽油的复合添加剂应用技术研究》两个项目进行了鉴定。参加会议的有省科技厅成果管理与推广处、条财处、院科研处领导鉴定委员会由黑龙江大学、哈尔滨工业大学、哈尔滨工程大学、哈尔滨理工大学等单位的7位专家组成。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/141205/1-141205164U1518.JPG\" style=\"width: 519px; height: 346px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会听取了两个课题组的工作汇报,审查了相关技术资料,经认真质询、讨论,形成鉴定意见:<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 以木焦油为原料,采用预处理&mdash;加氢精制工艺路线制备出运输燃料油调和组分中油馏分收率可达75.64%。技术路线及工艺方案合理可行。采用页岩油作为稀释油、萃取剂和补碳剂脱除原料中的杂质产品热值提高到40.8 MJ/kg该工艺具有创新性。研究成果达到国内领先水平。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 制备了非金属有机物不含MMT成分汽油复合添加剂由此添加剂调和的90<sup>#</sup>汽油达到了93<sup>#</sup>国IV标准的汽油并且降低汽车尾气有害气体40%。该添加剂经用户试用,具有良好的经济效益和社会效益。<br />\r\n复合添加剂性能达到国内领先水平。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/141205/1-141205164923946.JPG\" style=\"width: 346px; height: 519px;\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会对两个课题给予高度评价的同时,也提出了中肯的建议,鉴于项目成果有着非常好的市场前景,建议课题组要继续降低成本,加速推广应用。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此次鉴定是我院首次把承担的省院所基本应用技术研究专项升级为省级成果。这对提升我院科研档次,鼓舞科技人员士气,都起着积极的作用。</span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,两项,课题,通过,', '2014-12-05 08:46:02', '2020-06-02 02:11:01', NULL),
(102, 113, 7, '黑龙江省能源环境研究院科技人员参加CHINA EPA STAR MEETING', 'admin', '2014年12月4日至6日黑龙江省能源环境研究院春苗秦国辉、唐诗洋青年科技人员周扬参加了在清华大学举办的CHINA EPA STAR MEETING。加拿大麦吉尔大学、美国明尼苏达大学、英国帝国理工', '/uploads/allimg/141208/1-14120Q35642917-lp.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年12月4日至6日黑龙江省能源环境研究院春苗秦国辉、唐诗洋青年科技人员周扬参加了在清华大学举办的CHINA EPA STAR MEETING。加拿大麦吉尔大学、美国明尼苏达大学、英国帝国理工学院、美国威斯康星大学、清华大学、中国科学院等国内外知名院校、研究机构参加了本次大会大会为全英文形式。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141208/1-14120Q35642917.jpg\" style=\"width: 545px; height: 410px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会议围绕监测农村室内排放、改善空气质量与大气环境、提高人民身体健康等主题开展交流与讨论与会专家学者共听取专题报告15篇内容涵盖寒区农村室内排放监测、农村无烟锅炉燃烧器技术、农村室内家庭PM2.5浓度与个体关系、农村新型清洁加热燃烧锅炉燃烧技术等方面。清华大学杨旭东教授作了题为&ldquo;Intervention using clean heating and cooking stovesupdate and plan&rdquo;的学术报告。此项目中试工作已经在我院完成,该项目将在我省进行推广应用。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141208/1-14120Q35AWc.jpg\" style=\"width: 538px; height: 404px\" />&nbsp;</span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源院选派青年科技人员参加国际学术会议,开阔视野,拓宽思路,及时掌握相关领域的研究前沿和热点,进一步提高我院科技人员英语水平,学习知名学者研究经验,对促进我院创新团队发展,提升我院科研水平具有重要意义。</span><br />\r\n', 1, 0, '未知', '黑龙江省,能源,环境,研究院,科技人员,参加,', '2014-12-08 05:55:28', '2020-06-02 02:11:01', NULL),
(103, 114, 7, '清华大学杨旭东博士到省能源环境研究院洽谈合作', 'admin', '12月1日清华大学建筑环境与设备研究所副所长、清华大学百人计划引进教授、教育部长江学者特聘教授、美国麻省理工学院(MIT)博士、美国迈阿密大学终身教授杨旭东一行两人,携最', '/uploads/allimg/141208/1-14120Q42122206-lp.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 12月1日清华大学建筑环境与设备研究所副所长、清华大学百人计划引进教授、教育部长江学者特聘教授、美国麻省理工学院(MIT)博士、美国迈阿密大学终身教授杨旭东一行两人,携最新科研成果从北京抵达哈尔滨,杨旭东教授此行,旨在为进一步巩固清华大学与省能源环境研究院的合作成果,扩大校院合作领域,共同开拓合作商机。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 杨旭东博士一行首先来到能源院位于嵩山路的办公地点,与能源院科研人员进行了座谈,在现有合作基础上一同商定了深入合作方案,并希望借助能源院在新能源及生物质能源领域的优势,将先进的秸秆处理成果付诸实践,还龙江一片蓝天。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 下午,杨旭东教授一行在徐晓秋院长陪同下,来到省科学院,与潘忠院长、郭春景院长、王钢副院长及科研处王阳处长,就现阶段与能源院开展合作情况进行了座谈。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141208/1-14120Q42122206.jpg\" style=\"width: 519px; height: 346px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 潘忠院长代表省科学院对杨教授的到来表示欢迎。随后,杨教授介绍了项目情况。对于新的项目,潘院长和郭院长都十分感兴趣,分别提出了一些问题和建议,杨教授一一进行了解答。<br />\r\n最后潘院长再次感谢杨教授能够不辞辛劳为黑龙江的百姓做实事做好事。同时希望能源院科研人员要不断提高自身的科研水平成为杨教授在黑龙江放心的合作伙伴。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141208/1-14120Q42143646.jpg\" style=\"width: 519px; height: 346px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2日上午杨教授一行参观了能源院位于江北的实验室并在会议室与能源院的科研人员进行了深入交流。下午杨教授一行在王阳处长和徐晓秋院长的陪同下驱车来到市农科院位于万宝镇的示范基地进行实地考察并与省、市政府农村能源办的有关领导进行了座谈希望通过多方努力使项目得到进一步推广。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141208/1-14120Q42212S8.jpg\" style=\"width: 519px; height: 346px\" /></span></div>\r\n', 1, 0, '未知', '清华大学,杨旭东,杨,旭东,博士,到,省,能源,', '2014-12-08 06:20:39', '2020-06-02 02:11:01', NULL),
(104, 115, 20, '黑龙江省科学技术发明一等奖', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH25Z3220-lp.jpg', '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH25Z3220.jpg\" style=\"width: 600px; height: 401px\" /></div>\r\n', 1, 0, '未知', '科学技术,发明,一等奖,', '2017-05-12 09:39:00', '2020-06-02 02:11:01', NULL),
(105, 116, 20, '中国石油与化工协会科技进步二等奖', 'admin', '', '/kjfh/uploads/allimg/130707/1-130FH3000BQ-lp.jpg', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH3000BQ.jpg\" style=\"width: 500px; height: 716px;\" /></div>\r\n', 1, 0, '未知', '科技,进步,二等奖,', '2017-05-12 09:29:11', '2020-06-02 02:11:01', NULL),
(106, 117, 7, '黑龙江省能源环境研究院三项课题顺利通过鉴定', 'admin', '2014年12月11日在省能源环境研究院召开了由能源院农业生物环境与能源工程创新团队承担的《秸秆高温厌氧发酵过程关键技术参数研究》、《沼液高效会用及综合处理工艺研究》和《', '/uploads/allimg/141212/1-141212154255N3-lp.jpg', '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\"font-size: 22px\">2014年12月11日在省能源环境研究院召开了由能源院农业生物环境与能源工程创新团队承担的《秸秆高温厌氧发酵过程关键技术参数研究》、《沼液高效会用及综合处理工艺研究》和《沼液回流对牛粪厌氧发酵沼气产量的影响及机理研究》项目鉴定会。鉴定委员会由东北农业大学、东北林业大学、黑龙江省农业科学院、哈尔滨理工大学、哈尔滨商业大学等单位的7位专家组成会议由院科研处王阳处长主持。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141212/1-141212154255N3.jpg\" style=\"width: 558px; height: 373px\" /></span></div>\r\n<span style=\"font-size: 22px\">&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 项目组首先对&ldquo;秸秆高温厌氧发酵过程关键技术参数研究&rdquo;项目进行了汇报,得出了秸秆预处理的最佳条件,以此为基础,采用先进的实验方法,确定了秸秆高温厌氧发酵工艺;然后,项目组对&ldquo;沼液高效会用及综合处理工艺研究&rdquo;项目进行了汇报,总结了当前大型沼气工程沼液处理的现状,并根据沼液的理化性质,采用回流工艺、混凝工艺、厌氧往复折流工艺相结合,研发出沼液综合处理的全套工艺,得到了专家的高度认可;最后,项目组对&ldquo;沼液回流对牛粪厌氧发酵沼气产量的影响及机理研究&rdquo;项目进行了汇报确定了沼液的最佳回流比率以及采用PCR-DGGE技术进行了反应器中微生物菌群的变化趋势分析为团队进行沼气工程领域的基础研究打下了基础。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 鉴定委员会听取了项目组的总结报告与技术报告,审查了相关技术资料,经认真质询、讨论,对团队的研究方向和当前的工作给予了较高的评价,对项目的意义给予高度肯定,经审议一致同意三个项目研究成果均达到了国内领先水平。&nbsp;</span><br />\r\n', 1, 0, '未知', '黑龙江省,能源,环境,研究院,三项,课题,顺利,', '2014-12-12 07:42:13', '2020-06-02 02:11:01', NULL),
(107, 118, 7, '黑龙江省能源环境研究院两项课题通过鉴定', 'admin', '2014年12月16日黑龙江省科学院科研基金项目《寒地沼气发电机余热回收仿真优化研究》与院青年基金项目《厌氧发酵反应器温度监控及补偿系统的研究》鉴定会在省能源环境研究院召', '', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年12月16日黑龙江省科学院科研基金项目《寒地沼气发电机余热回收仿真优化研究》与院青年基金项目《厌氧发酵反应器温度监控及补偿系统的研究》鉴定会在省能源环境研究院召开。鉴定委员会由哈尔滨理工大学周浩然教授、哈尔滨工程大学蔡绍宾教授等7位专家组成会议由院科研处隋月梅副处长主持。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 鉴定委员会听取了项目组的汇报后,认真审查了相关材料,对项目组的工作给予了高度肯定,两个项目研究成果均达到了国内先进水平。</span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,两项,课题,2014年,', '2014-12-16 01:37:00', '2020-06-02 02:11:01', NULL),
(108, 119, 7, '热烈祝贺我院选手在省科学院TRIZ大赛中获得二等奖', 'admin', '2014年12月17日我院有两组TRIZ作品参加了黑龙江省科学院第三届TRIZ理论创新大赛经过作品展示、答辩及评审委员会的评审等环节我院参赛选手不负众望取得了优异的成绩其中参', '/uploads/allimg/141222/1-14122209493E19-lp.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年12月17日我院有两组TRIZ作品参加了黑龙江省科学院第三届TRIZ理论创新大赛经过作品展示、答辩及评审委员会的评审等环节我院参赛选手不负众望取得了优异的成绩其中参赛作品&ldquo;随动性机械密封装置设计&rdquo;获得二等奖,参赛作品&ldquo;新型免烧结快速挂膜生物填料的制备及性能研究&rdquo;也得到与会评委一致好评。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 经过此次TRIZ大赛增强了选手们的团队合作意识锻炼了个人创新能力坚信我院今后的科研创新工作一定会再上新台阶。</span><br />\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/141222/1-14122209493E19.jpg\" style=\"width: 558px; height: 373px\" /></div>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/141222/1-1412220950003K.jpg\" style=\"width: 558px; height: 373px\" /></div>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/141222/1-14122209501TN.jpg\" style=\"width: 558px; height: 373px\" /></div>\r\n', 1, 0, '未知', '热烈,祝贺,我院,选手,在,省,科学院,TRIZ,大,', '2014-12-17 01:50:00', '2020-06-02 02:11:01', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(109, 120, 7, '我院三项省科学院青年科学基金项目通过验收', 'admin', '2014年12月22日黑龙江省能源环境研究院召开了省科学院青年创新基金资助项目《浮选技术在油砂分离中的应用研究》、《木醋液成份分析及对肿瘤细胞杀伤作用初探》和《微米稀土粉', '/uploads/allimg/141225/1-14122510251V35-lp.jpg', '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\"font-size: 22px\">2014年12月22日黑龙江省能源环境研究院召开了省科学院青年创新基金资助项目《浮选技术在油砂分离中的应用研究》、《木醋液成份分析及对肿瘤细胞杀伤作用初探》和《微米稀土粉体表面改性技术的研究》的验收会。会议由院科研处马雪松同志主持验收委员会由黑龙江大学袁福龙教授、哈尔滨工程大学王革教授等5位专家组成。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/141225/1-14122510251V35.jpg\" style=\"width: 558px; height: 373px\" /></span></div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 验收委员会听取了三个项目组的总结汇报后,认真审查了相关技术材料,对各项目组的工作给予了充分肯定,认为课题技术路线可行,工作量饱满,达到了锻炼年轻人的目的,经审议一致同意三个课题通过验收。</span>', 1, 0, '未知', '我院,三项省,科学院,青年科学,基金,项目,', '2014-12-25 02:23:45', '2020-06-02 02:11:01', NULL),
(110, 121, 7, '黑龙江省能源环境研究院召开2014年全体职工大会', 'admin', '2014年12月19日上午省能源环境研究院召开了全体职工大会领导班子及全体职工参加了会议会议由工会主席李福裿同志主持。 会上能源院院长徐晓秋同志做能源院2014年工作总结报', '/uploads/allimg/150115/1-1501151A33E11.JPG', '<div style=\"text-align: justify\">\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\"font-size: 22px\">2014年12月19日上午省能源环境研究院召开了全体职工大会领导班子及全体职工参加了会议会议由工会主席李福裿同志主持。</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/150115/1-1501151A33E11.JPG\" /></span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: justify\">\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会上能源院院长徐晓秋同志做能源院2014年工作总结报告报告从科研成绩、团队建设、对外合作、强化党建、行政管理等面充分肯定了我院全年工作同时指出2015年能源院全体职工要竖立新的目标同心协力扎实工作为能源院的腾飞跨越不懈努力。报告经全体职工举手表决全票通过。</span></div>\r\n<div>\r\n <span style=\"font-size: 22px; text-align: justify;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><span style=\"font-size: 22px\">随后财务科长樊磊同志就新财务制度运行以来的相关情况及效果进行了总结汇报。大会还通过民主、公开表决的方式全票通过了能源院2015年计划开展的两项工作。</span></div>\r\n<div>\r\n <span style=\"font-size: 22px; text-align: justify;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><span style=\"font-size: 22px; text-align: justify;\">最后徐晓秋院长对2015年的工作做出了展望并希望能源院全体职工能够不断总结成功经验共同努力进取进一步统一思想提高认识厘清思路在新的一年里取得更加出色的成绩。</span></div>\r\n', 1, 0, '未知', '黑龙江省,能源,环境,研究院,召开,2014年,全体,', '2014-12-29 08:02:00', '2020-06-02 02:11:01', NULL),
(111, 122, 9, '页岩油不是“页岩油”', 'admin', '金银岛财经 石油价格高位暴跌评论纷纷从评论的字里行间经常出现打压美国页岩油发展等好多人不知道这里所指的页岩油不是页岩油而是致密油。美国能源信息署EIA将页', '/uploads/allimg/150121/1-150121095P2X7.JPG', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">金银岛财经</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 石油价格高位暴跌,评论纷纷,从评论的字里行间经常出现打压美国页岩油发展等,好多人不知道,这里所指的&ldquo;页岩油&rdquo;不是页岩油而是致密油。美国能源信息署EIA将页岩油shale oil和致密油tight oil作为同样的概念使用但同时也解释说美国油气界通常所谓页岩油其实是指致密油。致密油也是来自页岩开采方法与页岩气相同由于页岩气革命的影响太过于轰动干脆称之为&ldquo;页岩革命&rdquo;,在中国把致密油和页岩气合并简称为页岩油气。因此,阅读页岩油之类的资料时,要分辨清楚常规石油、致密油和页岩油之间是什么关系。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 从液态烃金字塔来看,常规石油较非常规石油少得多。而非常规石油中富含干酪根的油页岩储量最大。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"说明: c:\\users\\lenovo\\appdata\\roaming\\360se6\\User Data\\temp\\20141219092724273.jpg\" src=\"/storage/uploads/allimg/150121/1-150121095P2X7.JPG\" style=\"width: 462px; height: 250px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 非常规石油是指储集层中的致密油、重质原油或超重质原油以及在烃源岩中的油页岩和页岩油。按干酪根熟化的程度烃源岩又分为未成熟的烃源岩即油页岩和成熟的烃源岩即页岩油。烃源岩source rock是富含有机质的沉积物可以沉积在各种环境包括深水、湖泊它能够产生或已经产生可运移的烃类所以烃源岩也称为&ldquo;生油岩&rdquo;。在学术上页岩油是指油页岩oil shale制取的重质原油。油页岩在烃源岩中是未经运移的未成熟的烃源岩或称&ldquo;干酪根页岩kerogen shale&rdquo;。它是一种富含有机质、具有微细层理、可以燃烧的细粒沉积岩。油页岩中绝大部分有机质是不溶于普通有机溶剂的成油物质,俗称&ldquo;油母&rdquo;。因此,又称为&ldquo;油母页岩&rdquo;。油页岩的含油量一般为420%有的高达30%,可以直接提炼石油。从油页岩炼制页岩油必须经过人工加热加氢,通过干馏提炼出类似于原油的页岩油,也称为人造石油。页岩油主要采用地上干馏法生产,生产方式可分为内部燃烧法、热循环固体法、隔壁传热法、外部注入热气法、反应流体法等,以内部燃烧法为主。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 由于不同的油页岩有不同的化学组分因而干酪根含量差别很大所采取的提取技术也随之不同因此定义油页岩储量很困难。页岩油生产主要在中国、巴西、俄罗斯和爱沙尼亚。中国是页岩油生产大国而不是美国。中国在20世纪20年代已经建立了油页岩工业。随后生产衰退到21世纪初才有所回升。已有几家公司生产页岩油和用于发电。2005年后中国成为世界上最大的页岩油生产国之一。2011年中国约生产65万吨页岩油。许多生产采用抚顺干馏法。2006年底抚顺矿业集团拥有世界上最多的油页岩生产装置。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 在烃源岩中成熟的烃源岩即页岩油如果页岩油运移出烃源岩进入有盖层的储层就成为常规石油如果页岩油运移到致密地层滞留被称为致密油。致密油中的原油品质与常规油藏相同都属于轻质原油而从油页岩制取的页岩油是重质油其区别是两者API重度和黏度不同以及提取的方式不同。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 在石油价格大战中提及的页岩油是指致密油。根据美国能源情报署资助的先进资源国际公司于2013年的评价俄罗斯致密油技术可采资源量最多居世界第一其次为美国和中国三个国家的致密油技术可采资源量之和占世界总量的43.6%。目前,美国对页岩气的勘探开发已进入快速发展阶段,同时也带动了页岩地层内致密油的开发。美国是现今开采致密油最成功的国家,致密油生产都靠近页岩气产区。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"说明: c:\\users\\lenovo\\appdata\\roaming\\360se6\\User Data\\temp\\20141219092819373.jpg\" src=\"/storage/uploads/allimg/150121/1-150121095RWW.JPG\" style=\"width: 369px; height: 198px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 梳理一下本文,看中国。从油页岩制取页岩油最大的生产国是中国,而不是美国。美国页岩气开采成功带动了致密油生产,成为世界上最大的致密油生产国,而中国致密油的技术可采资源量居世界第三位,国人很少提起此事,其原因是页岩气开采尚未成功。如果我国页岩气开采一旦成功,致密油开采自然而然提上日程。</span>', 1, 0, '未知', '页岩,油,不是,“,页岩油,”,金银,岛,财经,', '2015-01-21 02:29:23', '2020-06-02 02:11:01', NULL),
(112, 123, 9, '2015年全球将重新进入廉价石油时代', 'admin', '华夏时报 2014年全球大宗商品市场最瞩目的事件是石油暴跌的黑天鹅事件引发了俄罗斯卢布危机。2014年7月初国际原油价格还在100美元之上12月25日纽约原油价格已经跌到56美元短', '', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">华夏时报</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2014年全球大宗商品市场最瞩目的事件是石油暴跌的&ldquo;黑天鹅事件&rdquo;引发了俄罗斯卢布危机。2014年7月初国际原油价格还在100美元之上12月25日纽约原油价格已经跌到56美元短短半年之内国际原油价格跌去一半。蹊跷的是石油输出国组织欧佩克居然坐视油价暴跌拒绝减产自救。欧佩克为何推动国际油价暴跌呢《华夏时报》记者采访了知名能源专家中海油能源经济研究院首席能源分析师<a href=\"http://www.china5e.com/index.php?m=content&amp;c=index&amp;a=show&amp;catid=7&amp;id=171032\" target=\"_blank\">陈卫东</a>。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 在陈卫东看来,欧佩克推动国际油价暴跌有两个目的:一方面是因为自身生产成本很低,要挤掉比它成本高的一些产能,争夺市场份额;另一个重要原因是要延缓欧洲对可再生能源储能技术的投资,新能源储能电池技术一旦获得突破,化石能源的命运将走向终结。&ldquo;石油价格的这轮下降时间会很长,它要充分挤出竞争对手,价格再回来,生产者也舒服,消费者也舒服的同时,还要挤压可再生能源,尤其是储能技术的投资,延缓替代品的出现,就是延长石油天然气的寿命,这是石油输出国最大的利益所在。&rdquo;陈卫东说。他判断2015年全球将重新进入廉价石油的时代。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp; 一、全球能源的</strong><strong>&ldquo;</strong><strong>中国因素</strong><strong>&rdquo;</strong><br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>40年前的一场石油禁运把西方经济搞得一塌糊涂这就是发生在上世纪七十年代的石油危机。从此世界各国都把石油当做最重要的战略资源。陈卫东说大概从那时开始人类地缘政治格局就围绕争夺石油等资源来布局一个真实的例子是美国在西太平洋仅仅部署了一个第七舰队而在中东就部署了第三和第五舰队目标就是要控制石油。<br />\r\n现在以石油为首的全球大宗商品市场的格局正在发生变化石油从卖方市场变成了买方市场进入买方市场大家的目标开始从争夺资源转向争夺市场中国需求减少也是国际石油暴跌的重要推手。<br />\r\n&ldquo;购买力就是话语权,而不是有资源就有话语权,我们还没有意识到这个话语权已经掌握在自己手中。&rdquo;陈卫东说,&ldquo;中国是这次石油降价的受益者之一过去5年中国需求的增长占全球能源增长的一半而过去10年全球能源供给增长部分美国占了一半美国从全球最大能源进口国变成了出口国利比亚还增加了输出对伊朗的制裁放松了伊拉克出口也在增加这些因素一叠加石油价格能不跌吗&rdquo;<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>陈卫东告诉记者,中国和俄罗斯石油天然气大单为何十几年一直签不下来,现在,俄罗斯追着中国签订石油天然气大单,这不仅是因为欧美制裁俄罗斯要寻找新的出口替代国,国际油价暴跌也不存在阴谋论,主要的原因是全球能源格局发生了改变,产能过剩,金融去杠杆,大家都争夺市场,而中国是全球能源需求增长最快的市场。&ldquo;我们的能源战略思维还是争夺资源,而不是好好利用我们的市场。&rdquo;陈卫东说,&ldquo;过去,我们干了很多傻事,在煤炭时代,英国是第一大能源消费国,它同时也是世界领导者,在石油时代,美国是第一大能源消费国,它也是世界领导者;今天,中国是第一大能源消费国,我们把全球煤炭消费拉起来了。&rdquo;<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>&ldquo;中国的煤炭消费还会继续往上走一个是3美元一个是12美元这就是能源消费的现实主义和环境保护的理想主义这可是4倍的差别。&rdquo;在陈卫东看来,这不是单个能源的问题,能源之间可以相互替代,它就变成一个能源价格体系的问题;两百年前煤炭时代伦敦的&ldquo;雾都&rdquo;又在中国出现。&ldquo;电价不市场化,哪有其他能源的市场化?&rdquo;陈卫东说,中国需要以电力为基础重构中国能源体系,无论是煤炭、水能还是核能,它都要转化成电,送到最终消费者;能源回归商品的核心是电力价格的市场改革,而不是解决单个能源问题。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong><strong>二、能源革命的两条道路</strong><br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>过去30多年三次大的石油价格起伏都是自身的供求原因。这一次欧佩克已经看到可替代品的出现。陈卫东告诉记者世界上同时进行着两场能源革命一个是以美国页岩气为代表把原来开采不出来、不作为能源的贫矿开出来了美国页岩气革命是在延长石油和天然气的寿命。第二个是德国和北欧等国家进行着另一场可再生能源革命目标是要弃核、弃化石。从木材时代到煤炭时代从煤炭时代到石油时代从石油时代到多元化的天然气时代全球能源消费趋势是从高碳走向低碳从低浓度能源向高浓度能源转型。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>让欧佩克紧张的是可再生能源领域已经清晰地看到储能技术迭代的摩尔指数。最近媒体报道以色列出现了锂空电池技术储电量比目前的锂镁电池增加了8倍而西班牙最近出现的石墨烯电池技术从锂空到石墨烯又增加了5倍。下一代技术至少是5的立方也就是锂镁电池技术的125倍。同样是1.5吨电池到时候就缩小到100公斤。如今汽车一箱油也是七八十公斤加上变速箱、动力系统起码也有四五百公斤而电动汽车只需要电机如果电池能做到100公斤整个动力系统也只有四五百公斤。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>石油之所以成为战略资源,因为它在交通运输领域是不可替代的。&ldquo;电动汽车为何不能普及因为锂镁电池一公斤储电量200瓦时以汽车开300到500公里计算电池自重就要1.5吨,已经没有什么富余荷载,这个汽车没什么用。&rdquo;陈卫东说,&ldquo;储电技术发展就像电脑储存和记忆芯片90年代一个几百兆的硬盘有几十公斤现在64G存储在手机上就实现了因为人们发现了新的储存机理。&rdquo;储能技术的突破是下一个能源时代的关键。无论风能还是太阳能这些离散的能源都可以聚沙成塔,集腋成裘,转化成高密度的电能,聚集变得简单,使用起来也简单。这种高浓度的电池既可以供应全家的能源消费,也可以装在汽车上作为动力。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>陈卫东告诉记者欧佩克坐视国际原油暴跌背后就是要打压欧洲对储能电池技术上的投资延缓化石能源的寿命2015年全球将重新迎来廉价石油的时代。</span>', 1, 0, '未知', '2015年,全球,将,重新,进入,廉价,石油,时代,', '2015-01-21 02:48:02', '2020-06-02 02:11:01', NULL),
(113, 124, 9, '煤化工与石油化工“嫁接”新路径', 'admin', '中国科学报 在煤价下行和天然气荒愈演愈烈的背景下,发展现代煤化工已是大势所趋。现代煤化工包括煤制油、煤制天然气、煤制甲醇、煤制烯烃等。截至目前,虽然我国煤化工仍处于', '', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">中国科学报</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 在煤价下行和天然气荒愈演愈烈的背景下,发展现代煤化工已是大势所趋。现代煤化工包括煤制油、煤制天然气、煤制甲醇、煤制烯烃等。截至目前,虽然我国煤化工仍处于大规模示范阶段,但已是世界上最大的煤化工生产国,煤制合成氨、煤制甲醇等产量已位居世界第一位。&ldquo;十二五&rdquo;期间国内煤化工项目建设进入高峰期。近日《中国科学报》记者从中国石油化工集团公司简称中石化获悉继甲醇制烯烃MTO之后该公司在&ldquo;煤化&rdquo;技术领域又取得一项重大进展和突破成功开发出甲苯甲醇甲基化制二甲苯MTX技术并加以应用。MTX技术利用甲苯为原料、以甲醇为甲基化试剂可实现最大化增产二甲苯。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;石油化工主要有两大分支:一是烯烃,一是芳烃。芳烃包括苯、甲苯、二甲苯等是重要的基础化工原料。MTX技术将石油化工与煤化工技术有机结合不仅为二甲苯等芳烃产品生产装置的增产扩能、芳烃生产过程中原料和产品的结构调整提供了技术支撑而且对实现芳烃技术生产原料的多元化、推动芳烃生产的技术升级和转型发展具有重要战略意义。据中石化相关专家透露在MTX技术实现的过程中有两个关键性问题需要解决即高效和稳定性。鉴于该技术的突出优势从20世纪70年代起国内外多家机构即开展了甲苯甲基化技术的研发工作。但是由于催化剂稳定性差、甲醇利用率低等问题一直没能取得实质性突破。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;在我国能源结构&ldquo;缺油、富煤、少气&rdquo;、国际原油价格高企、&ldquo;煤化&rdquo;产业蓄势待发的背景之下,中石化提出了&ldquo;积极发展煤化工&rdquo;的战略规划和部署并于2000年立项开展甲苯甲基化技术的研究工作。<br />\r\n针对该技术中催化剂稳定性这一关键技术难关项目组依托&ldquo;新结构高性能多孔催化材料创制的基础研究(&ldquo;973&rdquo;项目)&rdquo;项目平台形成了对适用于甲苯甲基化分子筛材料及催化剂认识的重大突破开发了一种高结构稳定性、具有良好烷基化反应活性及较高容碳能力的分子筛及催化剂。同时为提高技术开发的效率中石化有效整合催化剂开发、工艺开发、工程设计和工业生产等多学科全方位的技术力量经过十多年的持续攻关先后完成了小试研究、工业侧线试验和20万吨/年工艺包的设计工作成功开发了高性能的甲苯甲醇甲基化催化剂、以甲苯作为段间冷激物料的多床层反应工艺、含油废水处理工艺、热联合及低温热利用等工艺和技术形成了包括催化剂制备、关键设备、反应工艺等多项创新成果申请了涵盖催化材料、催化剂和工艺技术在内的国内外专利11件形成了具有自主知识产权的MTX成套工艺技术具备了在国际上率先实现甲苯甲醇甲基化技术工业化的技术条件。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;为加快推进MTX技术的工业化2012年9月中石化旗下的扬子石化就此开展了工业试验。在没有工业运行经验可借鉴的困难情况下扬子石化20万吨/年MTX甲苯甲基化装置一次投料开车成功并实现满负荷运转。反应系统操作稳定反应温升与冷激控制系统符合预期换热网络运行平稳工程设计满足要求甲醇转化率100%二甲苯选择性大于80%,产出高质量的二甲苯,率先实现了甲醇原料直接引入芳烃联合装置,实现了世界首套甲苯甲醇甲基化工业装置的商业化运行,为芳烃的&ldquo;甲基管理&rdquo;提供了更加直接和有效的手段。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;中石化专家表示,与传统石油化工结合,是今后煤化工发展的方向之一。借助石油化工技术,煤化工的产物&mdash;甲醇可以实现有效增值。目前中石化正在MTX的基础上研究开发新的技术使得甲醇的利用和芳烃的生产更加多元和有效。</span><br />\r\n', 1, 0, '未知', '煤化工,与,石油化工,“,嫁接,”,新路径,新,', '2015-01-21 02:48:19', '2020-06-02 02:11:01', NULL),
(114, 125, 9, '煤化工重新开闸 环境约束待考', 'admin', '21世纪经济报道 核心提示:面对中国重启的煤化工大幕,水资源、环境、能耗以及将要出台的碳税,成为发展这一产业必须克服的风险,国家高层对煤化工产业的态度也不无谨慎,截至', '', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">21世纪经济报道</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 核心提示面对中国重启的煤化工大幕水资源、环境、能耗以及将要出台的碳税成为发展这一产业必须克服的风险国家高层对煤化工产业的态度也不无谨慎截至目前国家发改委共计批复了15个煤炭深加工示范工程。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤炭的黄金十年戛然而止在中国西部一场由电力企业主导的煤炭变革正拉开帷幕。毛乌素沙漠东南缘的陕西榆林华电百万吨级煤制芳烃项目蓄势待发并计划在未来10年投资千亿元在新疆、内蒙古建设煤、电、化一体化基地华能规划了至少7个煤化工项目产品涉及煤制天然气、烯烃、甲醇最早布局煤化工产业的大唐已投入千亿其管理层将煤化工定义为&ldquo;产业结构调整,成败在此一举&rdquo;;国电、中电投也纷纷在中国西部布局煤化工产业链。在陆续控制了数量庞大的煤炭资源后,电力企业不再满足于降低发电成本抑或贩运煤炭这种较低层次的利用方式,而煤价的迅速下跌则加速了这一进程。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;随着煤炭深加工领域掀起的浪潮中国的煤化工产业重新开闸。今年一季末西部地区5个煤制天然气、4个煤烯烃和1个煤制油项目获得了国家发改委的&ldquo;路条&rdquo;总投资达2000-3000亿元。据统计全国范围内共上报煤化工项目104个投资规模高达2万亿元。在国家及地方规划中至少包括陕西榆林宁夏宁东内蒙古鄂尔多斯、赤峰新疆准东、吐哈、伊犁、库拜等地意欲建立大型煤化工基地。然而面对中国重启的煤化工大幕水资源、环境、能耗以及将要出台的碳税成为发展这一产业必须克服的风险国家高层对煤化工产业的态度也不无谨慎截至目前国家发改委共计批复了15个煤炭深加工示范工程。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>一、电企涌进煤化工</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;巨大的市场需求及不菲的利润令电企欲罢不能。2013年8月陕西华电榆横煤化工有限公司总经理梁彦鸿表示距离华电榆横万吨级煤制芳烃中试技术通过国家能源局验收已过去5月有余但该项目扩产至百万吨产量还未得到批复。自2003年电力体制改革落定华电的主业即确立为发电、煤炭两大板块但华电煤业并不满足于降低发电成本甚至贩运煤炭。为了在陕西榆林转型煤化工产业华电集团下属华电煤业计划投资285亿元建设百万吨煤制芳烃项目。芳烃主要指苯、甲苯和对二甲苯是一种重要的基础化工原料利用它可以生产服装、保温材料、橡胶、日用品等几乎渗透了人类衣食住行的各个方面。巨大的市场需求及不菲的利润令电企欲罢不能。近年来我国芳烃产品的进口量接近需求量的一半以对二甲苯为例2012年国内产量775万吨进口量628.6万吨表观消费量1384万吨自给率仅有56%,进口主要来自韩国、日本、印尼。紧俏的市场行情促使芳烃的销售价格达到万元/吨其生产成本约7000元/吨较几十元每吨的售煤利润高出不少。更为重要的是煤制芳烃可以替代石油。生产一吨芳烃需要耗费标煤不到6吨但石油制芳烃需要消耗原油8-12吨目前国内石油路线生产的芳烃约占芳烃总产量的97%而我国的石油对外依赖率达到60%。梁彦鸿告诉本报记者:&ldquo;一个百万吨级的煤制芳烃相当于一个千万吨级的炼油厂的产能。&rdquo;通过多年的兼并收购目前电力企业坐拥数量庞大的煤炭资源为其发展煤炭深加工领域奠定了基础。以华电榆林为例在控、参股小纪汗、可可盖、隆德和榆阳煤矿后2015年华电在陕西的煤炭产能可达2800万吨/年。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>二、路线选择考量</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;选择错误路线,转型将面临进退两难的窘地。国家能源局组织编写的一份西部地区煤电化研究报告明确支持煤制天然气、煤制烯烃及煤制乙二醇;对于煤制油产业的发展,持有&ldquo;适时&rdquo;态度而严重过剩的煤制二甲醚则采取限制政策。按照国家能源局的表述随着人民生活水平的提高及西气东输、陕京线等天然气管线投入使用城市燃气的需求量日益增长。据预测2015年、2020年国内天然气消费量分别为2600亿立方米和3500亿立方米而同期国内天然气生产量分别为1500亿立方米和2200亿立方米市场缺口分别为1150亿立方米和1300亿立方米即使考虑已建和拟建的LNG设施及陆上天然气通道项目仍存在500-800亿立方米的缺口。目前上马最多的煤制甲醇、二甲醚项目的前景不容乐观。目前我国甲醇、二甲醚市场早已出现严重的产能过剩推广使用甲醇汽油是一个庞大的系统工程在部分省市制定了《车用燃料甲醇》和《车用甲醇汽油M85》后至今尚未出台配套措施由于渗透至人们生活的方方面面煤制烯烃、芳烃项目路线大有可为。据预测未来十年我国聚乙烯需求将保持稳定增长2015年供需缺口为450万吨2020年将扩大到730万吨聚丙烯在上述两个年度的供需缺口达到240万吨和540万吨乙二醇在2015年的供需缺口达到600万吨但仍需警惕中东地区即将投产的几套大型乙二醇装置其目标市场主要是中国并具有原料成本低的竞争优势。华电煤业集团有限公司董事长丁焕德告诉本报记者&ldquo;华电选择煤制芳烃路线,是经过深思熟虑的。&rdquo;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>三、面临环境约束挑战</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤炭资源和水资源呈逆向分布。电企转型煤化工的路途似乎比预想的遥远2013年3月重启的大门只是透出一缕阳光截至目前国家发改委批复的煤炭深加工项目仅有15个示范工程国家高层对煤化工的态度是安全、谨慎发展煤化工。发展煤化工将耗费大量的水资源并有可能污染环境而其能源转化效率也存在提高的空间在 &ldquo;两会&rdquo;上以煤企为代表的政协委员曾呼吁限制电力企业发展新型煤化工。中国中煤能源集团公司原总经理经天亮在提案中表示新型煤化工对煤炭资源和水资源有较高要求同时受生态环境、基础设施、相关产业发展的制约绝不能遍地开花可以作为国家战略储备还不宜商业化。水资源是煤化工产业发展的重要制约因素由于地理、气候等客观因素我国水资源分布严重不均煤炭资源和水资源呈逆向分布。据统计目前我国煤制烯烃耗水量为32吨/万元产值煤制乙二醇为45吨/万元产值煤制油耗水量为0.214吨/吉焦煤制天然气为0.229吨/吉焦。神华鄂尔多斯煤制油项目曾遭到环保组织绿色和平发文抵制。水利部水科院总工程师贾仰文表示:&ldquo;能源化工等耗水量大的规划,应适当加入&lsquo;水评&rsquo;&rdquo;。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤炭深加工也将不可避免地释放二氧化碳如煤制天然气的二氧化碳排放量约为0.137吨/吉焦煤制烯烃为12吨/万元产值。我国近年来二氧化碳排放量的快速增长将使我国不得不面临越来越大的国际压力。煤制燃料的能源利用率同样存在提升的空间据统计煤制油的能量利用率为59%煤制天然气为47%煤制二甲醚仅为40%。即使能够解决上述问题,即将实行的碳税亦将蚕食煤化工产业的利润率,据财政部&ldquo;中国碳税税制框架设计&rdquo;在碳税征收初期的税率为10元/吨二氧化碳以后逐渐上升至70元/吨,碳税制度或将对我国的煤化工行业带来深刻影响。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>四、难以逾越的煤化工之路?</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;日韩是化工产业大国,中国可借鉴他国的成功经验。尽管煤化工未必是最佳路径,但却是中国发展难以逾越的阶段。世界自然基金会(瑞士)全球淡水项目主任李利锋告诉本报记者:&ldquo;目前中国还没有跨越重化工阶段的有效途径。&rdquo;清华大学化工系教授魏飞对本报记者表达了同样的观点:&ldquo;这是一种现实的抉择。&rdquo;在电力企业看来,煤化工并非人们想象的可以完全摒弃。煤炭行业资深分析师李廷认为,中国现有以煤炭为主的能源结构在短期内很难发生改变。&ldquo;如能做到水资源循环高效利用、执行最严格的环保制度,认真地选择产品路线,煤化工不仅可以降低我国的石油对外依存度,还可带来西部地区的持续发展。&rdquo; 丁焕德告诉本报记者。据悉华电榆横煤化工万吨级项目已通过国家能源局验收其用水来自榆林距厂区17公里、年可供水1.22亿立方米的王乾堵,该水库水源来自黄河支流,通过水权置换取得。据称其&ldquo;工业三废&rdquo;也进行了通盘考虑。梁彦鸿对本报记者表示:&ldquo;废水在进行处理后重新回流至厂区利用,废渣则被收集至甲醇厂前端,再次作为生产甲醇的原料,废气在经过处理后,可达标排放。&rdquo;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;未来煤化工的重要基地新疆则利用众多的盆地构造封存生产排放的二氧化碳据悉新疆拟建准噶尔盆地、吐哈盆地、伊犁、塔里木盆地等7个二氧化碳封存地总容量达到451亿吨。不过仍有业内人士担忧一窝蜂的煤化工爆发式增长丁焕德告诉本报记者&ldquo;只有在通盘考虑水资源、环境承载力,以及下游产品的长期市场需求后,才可适度发展煤化工。&rdquo;<br />\r\n实际上主管单位国家能源局已确定了煤化工产业发展的原则和思路以市场需求确定建设规模、按照煤化工产业用水量占基地可供水量的一半比例规划、以及符合国家相关产业政策和运输要求。</span>', 1, 0, '未知', '煤化工,重新,开闸,环境,约束,待考,21世纪,', '2015-01-21 02:53:22', '2020-06-02 02:11:01', NULL),
(115, 126, 9, '现代煤化工:心急难吃热豆腐', 'admin', '中国化工报 近十年来,我国现代煤化工在争议声中从起步磕磕绊绊走到今天,就像时下的天气一样由暖转寒不断降温。从当初的争先恐后,到如今的观望退出,现代煤化工似乎走到了发', '', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">中国化工报</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 近十年来,我国现代煤化工在争议声中从起步磕磕绊绊走到今天,就像时下的天气一样由暖转寒不断降温。从当初的争先恐后,到如今的观望退出,现代煤化工似乎走到了发展的十字路口。是就此罢手,偃旗息鼓,还是重新定位,继续前行?需要行业理性思考,凝聚智慧,找准方向。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;其实,我国发展现代煤化工有着特定的时代背景,富煤、贫油、少气的资源禀赋,近十年来一路飙升的国际原油价格,对煤炭清洁利用的不懈追求,成为我国发展现代新型煤化工的强大推力,也是我国工业化进程中&ldquo;煤代油&rdquo;的现实选择。因此,我国发展现代煤化工的方向并没有错。虽然当下的国际环境对我国油气进口较为有利,但错综复杂的世界形势变幻莫测,必须以长远的眼光看待我国现代煤化工技术储备及战略规划。虽然一些示范项目进展的不尽如人意为现代煤化工的发展蒙上了一层阴影,但我们绝不能因噎废食,而应该在总结一些示范项目经验教训的基础上,重新调整思路,坚持稳中求进,做好技术储备,等待现代煤化工利好时期的到来。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;回顾过去,自我国开展现代煤化工示范以来,散见于政府多次发文强调的原则有:&ldquo;不能停止发展、不宜过热发展、禁止违背规律无序建设&rdquo;和&ldquo;坚持示范先行、坚持科学合理布局、坚持自主创新&rdquo;等。这种先示范、再推广的思路本来是完全正确的,但错在&ldquo;心急吃了热豆腐&rdquo;。所谓&ldquo;示范先行&rdquo;就是由个别企业先行先示在前面趟路待项目从设计到营运取得一个完整的商业周期后再视情况决定发展规模。应该说这些原则如果得到贯彻执行我国现代煤化工一定会得到健康发展。但令人遗憾的是在GDP崇拜的年代这些原则根本无法抑制地方政府和各类企业对现代煤化工的投资冲动加之有关部门把关不严开闸放水导致&ldquo;示范先行&rdquo;沦为一纸空文,往往示范项目还没有一个满意的结果,大家就一哄而上,其结果是给好端端的一个新兴产业添了堵。因此,当务之急是理性回归到&ldquo;示范先行&rdquo;的路子上来,在示范项目没有成功之前,后续项目应谨慎观察,耐性等待,做好准备,切忌头脑发热,盲目跟进。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;事实上,我国现代煤化工降温从根子上说是由于技术的不成熟所致,需要从国家层面加以重视和解决。从我国现代煤化工示范的情况来看,虽然国家鼓励的五大类煤化工示范项目各个工艺技术路线均已打通,但离技术成熟还有相当一段距离。煤化工项目作为庞大复杂的系统工程,目前尚处于优化阶段,项目整体的成熟度不够,各个环节远未到&ldquo;标配&rdquo;的程度。尤其是气化技术的不成熟,导致已建成的一些项目系统不够稳定,难以实现长周期满负荷连续稳定运行,严重影响到项目的经济性。而各自为战的企业又心有余而力不足。因此,急需从国家层面实施煤化工科技战略,发挥体制机制优势,组织力量开展技术攻关,使每一个工艺路径的示范项目在技术层面达到完全成熟可靠的&ldquo;标配&rdquo;程度。惟如此,我国现代煤化工才有可能实现规模化发展。</span>', 1, 0, '未知', '现代,煤化工,心急,难吃,热,豆腐,中国,化工,报,', '2015-01-21 02:55:10', '2020-06-02 02:11:01', NULL),
(116, 127, 9, '新型煤化工五路径:谁能走得更远?', 'admin', '中化新网 2014年7月以来国际原油价格暴跌近50%。有机构研究认为,本轮油价下跌远未见底,后期仍有下跌空间。若参照煤炭及主要大宗商品近几年的跌幅,预计国际原油价格最低将探', '', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">中化新网</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2014年7月以来国际原油价格暴跌近50%。有机构研究认为本轮油价下跌远未见底后期仍有下跌空间。若参照煤炭及主要大宗商品近几年的跌幅预计国际原油价格最低将探至50美元/桶并将长期在70~90美元/桶波动。石油价格的大幅波动,必将引发煤化工与油气化工产品竞争力此消彼长,使刚刚起步的新型煤化工竞争力面临新的考验。那么,五大新型煤化工到底会遭遇怎样的挑战和考验?其前景如何?怎样才能实现稳健发展?<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>一、煤制烯烃:依然具有竞争力只怕油价跌跌不休</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤制烯烃堪称新型煤化工的典型代表。这不仅因为中国成功开发了代表当代先进水平的甲醇制烯烃一代、二代技术而且因为中国最早实现了甲醇制烯烃技术的工业化应用于2010年5月28日建成投产了全球首套煤经甲醇制烯烃工业化示范装置&mdash;神华包头180万吨/年煤制甲醇、60万吨/年甲醇制烯烃项目并很快实现了商业化运营产生了良好的经济与社会效益。在示范项目成功刺激下全国煤制烯烃项目建设提速。截至2014年12月国内已经有13套甲醇制烯烃项目投产煤经甲醇制烯烃(或甲醇制烯烃)总产能将达606万吨/年。另据了解全国在建和已经开始前期工作的甲醇制烯烃项目有29个合计产能1300万吨规划的甲醇制烯烃项目合计产能1500万吨。上述项目若全部按期投产中国甲醇制烯烃产能将达3400万吨/年与2013年中国乙烯+丙烯总和相当。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤制烯烃(或甲醇制烯烃)之所以被热捧缘于投资者看好其前景。陕煤化蒲城清洁能源化工有限公司副总经理姚继峰说。一方面煤制烯烃产品市场广阔。目前国内乙烯当量自给率50%左右对外依存度超过40%。虽然随着众多炼化一体化项目的建成投产,国内烯烃产能大幅提升,但随着经济社会的发展和人民生活水平的提高,国内乙烯需求量继续保持快速增长。加之中国是一个&ldquo;富煤贫油少气&rdquo;的国家,随着家庭轿车的普及和汽车保有量的增加,国内成品油消费量大幅攀升。而目前国内绝大多数乙烯装置又以石脑油为原料,乙烯产能扩张与汽车争油的矛盾愈演愈烈,使得石油路线乙烯面临原料紧缺和成本不断抬高的双重制约,产能无法持续大幅扩张,从而为煤制烯烃留下了较大的发展空间。另一方面,石油价格近几年持续高位运行,抬高了石油路线乙烯生产成本。而煤炭及甲醇价格的下行,又降低了煤制烯烃(或甲醇制烯烃)成本,此消彼长,煤制烯烃产品竞争力显著提升。更为重要的是,乙烯被称为工业之母,烯烃的衍生品多达几十上百种,广泛应用于国民经济各个领域,这使得投资煤制烯烃项目的市场风险大为降低,相关企业尤其国有企业更乐意在该领域投资,以期取得良好的经济与社会效益。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;延长石油集团总经理助理李大鹏赞同姚继峰的看法。他说神华包头60万吨/年DMTO示范项目商业化运营以来的实践表明与石油路线相比西部地区煤制烯烃项目具有绝对的成本优势&mdash;&mdash;当国际原油价格在100美元/桶左右波动、煤炭价格300元/吨时DMTO装置吨烯烃完全成本不足7000元而石油路线吨烯烃完全成全已高达9600元煤制烯烃的成本优势显而易见。&ldquo;由于相比石油路线,煤制烯烃具有绝对的成本优势,后期,即便国内烯烃真的出现产能过剩,首先关停的也必然是石油路线乙烯装置。从这个层面讲,在现有的五大新型煤化工路径中,煤制烯烃前景最好、风险最小。&rdquo;姚继峰乐观地表示。<br />\r\n但陕煤化集团党委书记华炜、陕煤化集团常务副总经理尤西蒂对此有不同看法。他们表示后期石油价格的走势难以把握。一旦石油价格继续下跌甚至跌破70美元/桶,而国内煤炭价格受综合生产成本高企支撑跌无可跌,甚至可能反弹。那么,煤制烯烃与石脑油制乙烯竞争力就会发生微妙变化,甚至出现逆转。因此,在没有对石油市场中长期走势做出准确判断前,不宜对煤制烯烃前景过分乐观,更不能一窝蜂上项目。尤其不能只拿高成本的石脑油制乙烯与煤制烯烃相比。因为中国经济已经融入全球经济,世界上除了石脑油裂解制乙烯副产丙烯外,还有中东廉价乙/丙烷制烯烃和北美天然气凝析液制烯烃等多种工艺路径,煤制烯烃有无竞争力还要面临上述两种工艺的挑战。两位专家提醒:上马煤制烯烃项目必须通盘考虑国内外多种资源与工艺路径,慎重决策。由于目前国内在建拟建煤制烯烃规模已经很大,有过剩风险,建议已经完成前期工作的项目继续推进外,那些规划但未开始实施的煤制烯烃项目最好暂缓推进。对于那些已经建成和在建项目,则应尽快谋划烯烃下游产品,通过产品多元化、产业长链条,不断增加产品附加值和项目竞争力,防止后期陷入产能过剩泥潭无法自拔。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>二、煤制气:技术成熟市场看好但环保关难过</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;如果说,业内对煤制烯烃的前景总体看好的话,对于煤制天然气的前景,看法则大相径庭。中国化工学会理事贺永德是看好煤制气前景的专家代表。他看好煤制气有三大理由:<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;一是富煤地区建设煤制气项目具有成本优势。当煤炭价格在400500元/吨时煤制天然气的制造成本约1.81.9元/立方米而进口气到达中国口岸价普遍超过2元/立方米入管网价在2.48元/立方米以上前者比后者拥有0.5元/立方米的成本优势。如果采用陕西榆林地区优质烟煤(平均发热量6000大卡/千克)作原料生产1立方米天然气原料煤+动力煤消耗仅22 .3千克。目前榆林地区煤炭售价仅300元/吨折算煤制气原料成本不足0.7元/立方米与进口管道天然气相比优势扩大至1元/立方米以上;若与进口LNG相比煤制气优势更扩大到1.5元/立方米以上。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;二是无产能过剩之忧。中国是一个&ldquo;富煤贫油少气&rdquo;的国家天然气资源量和产量都十分有限而需求增长却异常迅猛。2000~2010年中国天然气消费量年均增长16%2005年~2013年中国城市天然气消费量年均增长25.2%。据中国石油经济技术研究院预计2014年中国天然气需求量将达2061亿立方米而国产天然气(常规天然气、煤层气、煤制气)产量预计为1325亿立方米算上全年可能进口的600亿立方米天然气总缺口仍达136亿立方米比2013年放大1倍。后期随着居民天然气用量的进一步增加、各地煤改气工程的推进以及政府为改善大气质量推动的天然气发电项目的增多以及交通运输领域油改气范围的扩大都将推动中国天然气消费量持续大幅增长。预计到2020年国内天然气消费量将达3600亿立方米20年内年均需求增长将保持10%以上,无产能过剩之忧。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;第三,煤制气对改善城镇空气质量和节能减排效果明显。煤制气由于采用了现代化气化、净化、合成工艺,以及先进高效的脱硫、脱硝、除尘与废水处理技术,能大幅减少污染物排放。尤其我国煤制气项目大多布局于新疆、内蒙古等煤炭资源丰富、运输条件受限地区,通过煤制气项目将所得天然气通过管道输送到京津唐鲁及东部省份,即为上述地区提供了清洁能源、缓解了其环境压力。又相当于通过管道将本来难以输送的资源低成本地输送到全国各地,减少了运输过程的能源消耗和排放污染。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;有人担心加征碳税后会削减煤制气的竞争力。事实上,目前包括法国、加拿大在内的一些发达国家都取消了碳税。不少国家对加征碳税争议很大。在这种背景下,中国&ldquo;十三五&rdquo;期间能否如期加征碳税存在较大变数。即便真的加征碳税按10元/吨CO<sub>2</sub>计算1000立方米煤制气所缴碳税不过45元与进口天然气相比同样具有竞争力。&rdquo;贺永德信心满满地对记者说。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;但包括美国杜克大学教授杨启仁、国土资源部矿产资源评价中心主任<a href=\"http://www.china5e.com/index.php?m=content&amp;c=index&amp;a=show&amp;catid=7&amp;id=224495\" target=\"_blank\">张大伟</a>等专家却不看好煤制气前景。杨启仁表示,国内众多煤制气项目在进行前期论证时,大多以美国大平原煤制气项目为例描绘项目前景及上马的必要性。但事实上,大平原项目是个多输的结局------投产后10年累计亏损13亿美元。现在之所以有少许利润主要得益于新股东在接手该厂时无须偿还95%以上的建厂费用且实现了多元化经营。据了解2011年美国国家能源科技实验室以大平原厂为参考评估北达科州褐煤为原料生产天然气的经济可行性。结果发现建设一个15亿立方米/年的煤制气工厂总投资额高达42亿美元合成气生产成本约21美元/百万英热单位。而近几年美国天然气价格始终在2.5~8美元/百万英热单位徘徊,最终认为煤制气无获利可能。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;无论从经济效益、环保要求还是能源利用效率考虑,煤制气项目都没有前景。&rdquo;延长石油集团总经理助理李大鹏说。据他介绍根据美国大平原厂的经验煤炭转换成合成气再发电能源转换效率仅30%。而一般大型燃煤电厂能源转换效率可达40%以上。同样发1千瓦时电煤制气发电耗煤量较煤直接发电多1/3。另外目前国内煤制气项目为了使粗合成气中尽量增加甲烷普遍选用鲁奇炉。该工艺最大的问题是易产生大量含酚等难处理的废水。试想一个40亿立方米煤制气工厂将有48台煤气化炉矗在那儿形成一排&ldquo;炉林&rdquo;,即便正常运行,产生的废水和废气、废渣也是惊人的。若遇工艺不正常或开停车倒炉,其产生的污染量会更大,甚至可能会使项目所在地形成铺天盖地的烟霾。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;不少煤制气项目上马时,喜欢以进口天然气价格甚至进口液化天然气价格作参照,说明煤制气具有较好的成本和价格优势。但这一点并不现实。&rdquo;国土资源部矿产资源评审中心主任张大伟提醒。他说目前进口天然气到达中国口岸价均超过2元/立方米进口液化天然气价格更高达3元/立方米左右。照此推断以目前的煤炭价格计算煤制气项目似乎均有竞争力。然而事实是随着天然气供应量的增加价格承受力较强的民用领域将趋于饱和。工业、化工及发电领域虽然需求巨大也是西方国家天然气消费大户但中国上述企业如果全部使用高昂的进口天然气将会全面巨额亏损。导致上述领域用不起或不敢使用天然气最终导致国内天然气供大于求价格下行相关煤制气企业在计入高额的财务成本后根本无利可图。也许正是综合考虑了煤制气项目的潜在风险2013年以来17个喜获&ldquo;路条&rdquo;的煤制气项目,绝大多数至今仍在等待观望。&ldquo;十三五&rdquo;期间我国煤制气规模将控制在300亿立方米/年以内,比业内预计的规模压缩了一倍多,表明国家层面对煤制气项目的态度再度发生微妙变化,对其可对带来的影响与风险保持警惕。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>三、煤制乙二醇:若不能进入聚酯市场成本优势无意义</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;中国服装业的持续快速发展对聚酯纤维的需求不断增加继而推动生产聚酯的原料乙二醇需求激增。由于中国乙二醇产能有限巨大的供需缺口只能通过进口填补。2010年~2013年中国进口乙二醇分别达664万吨、727万吨、796万吨和825万吨对外依存度始终保持在70%左右。国内乙二醇市场严重的供不应求不仅推高乙二醇市场价格一度突破9000元/吨关口也刺激煤制制乙二醇项目投资不断升温。据了解截至2014年9月底国内已经有10套煤(或合成气)制乙二醇装置投产合计产能150万吨/年在建项目12个合计产能317万吨/年拟建项目4个合计产能180万吨/年规划中的煤制乙二醇项目3个合计产能90万吨/年。预计到2015年底中国煤制乙二醇产能将达420万吨/年2017年将达467万吨/年2020年将达557万吨/年。即便算上现有以及在建和规划中的石油路线乙二醇项目产能,到&ldquo;十三五&rdquo;末我国乙二醇自给率也只有60%对外依存度仍高达40%。另据测算当煤炭价格250~300元/吨、国际石油价格100美元/桶时煤制乙二醇相比乙烯法拥有1400~1600元/吨的成本优势。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;一方面市场缺口较大,产品销路没问题;另一方面,与主流的乙烯路线相比具有明显的成本优势。投资煤制乙二醇岂不等于抱了&ldquo;金娃娃&rdquo;?&ldquo;钱景&rdquo;十分光明?但业内专家提醒煤制乙二醇有市场未必有钱景。中国化学理事会理事贺永德表示一方面受全球经济不景气影响中国服装出口已经并将继续面临较大压力减少了涤纶需求并打压其价格下行聚酯需求增速因此放缓、价格下移最终将导致乙二醇价跌量减压缩其利润空间。另一方面国内93%的乙二醇用于聚酯生产3%用于聚氨酯生产3%用于防冻液生产1%用于其他领域。所谓的乙二醇供需缺口主要指能满足生产涤纶长丝、涤纶短纤以及瓶级聚酯的乙二醇。而目前国内已经投产的煤制乙二醇装置只有新疆天业5万吨/年合成气制乙二醇等少数装置的产品被上游聚酯企业接受。其余大多数厂家的煤制乙二醇产品尚未被聚酯企业完全接受,只能销往树脂及防冻液等领域,既限制了需求,也削减了煤制乙二醇的盈利能力。后期,如果国际石油价格继续下跌,而煤炭价格企稳并反弹,将缩小煤制乙二醇与乙烯路线乙二醇的成本优势。若届时煤制乙二醇企业仍不能保证装置安稳长运行并彻底解决产品质量不稳定等问题,则煤制乙二醇企业只能望着巨大的聚酯市场兴叹。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;若不能顺利进入聚酯市场,煤制乙二醇就没有前景,其与乙烯法相比所谓的成本优势也毫无意义,只会误导投资者。&rdquo;延长石油集团总经理助理李大鹏说。他说,国内企业在考察投资项目时,大多属&ldquo;理想主义者&rdquo;:把可能的需求当作现实需求;把理论上的竞争优势当作真实竞争力;高估生产成本的比较优质而忽略财务费用及其他成本上升的负面影响;重视项目可行性而忽略其不可行性;眼光只盯国内市场很少放眼国际大环境&hellip;&hellip;这会导致项目论证缺乏应有的客观公正性,以致于许多论证时钱景广阔的项目,投产之日就开始亏损。煤制乙二醇就是一个典型的例子。目前,所有上马煤制乙二醇的企业,眼光只盯着国内巨大的供需缺口,却避而不谈全球乙二醇实际已经过剩;只将低煤价时的煤制乙二醇与高油价时的乙烯路线乙二醇相比,却忽略了北美页岩气革命、中东石化业崛起,以及全球经济增长放缓将导致国际石油价格下跌、煤制乙二醇与乙烯路线成本差距缩小的可能性,使项目潜在的风险加大。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;中宇资讯分析师于晓红亦表示煤制乙二醇的质量尚无法满足聚合级对原料的性能要求这将长期制约该产业发展。如果后期国际石油价格跌破60美元/桶并长期在90美元/桶以下波动,而煤制乙二醇又无法在短期内解决质量不稳定难题,则其前景远未预想的乐观。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;国内首套煤制乙二醇工业化示范装置&mdash;&mdash;通辽金煤化工公司20万吨/年装置近几年的表现也让业内对煤制乙二醇的钱景疑虑重重。公开资料显示该项目自2011年投产以来不仅鲜有盈利反而成为其母公司丹化科技股份公司的亏损大户。2013年更以亏损1.92亿元拖累丹化科技业绩由盈转亏。今年前三季度虽然帐面上显示项目已经盈利但扣除通辽经济技术开发区管委会给予的6000万元自主创新奖励资金、内蒙古自治区给予的550万元科技经费拨款等共计6790万元政府奖励拨付资金乙二醇装置对企业的利润贡献微乎其微。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;渭化集团副总经理张小军则表示今年上半年虽然我国服装出口总量增速下滑7.2%但化纤制服出口量逆势增长24.8%对乙二醇行业拉动明显。尽管如此国内乙二醇价格仍出现大幅下跌表明全球乙二醇过剩已经对中国市场产生冲击。后期一旦中东、北美低成本乙二醇装置陆续投产并打入中国市场尤其美国一家公司研发的二氧化碳电化法与水、氢气合成乙二醇新技术取得实质性突破并工业化应用后其仅125美元/吨的生产成本,将对现在看来颇具优势的煤制乙二醇行业产生巨大冲击。他建议国内企业加快煤制乙二醇关键技术攻关,尽快推出先进、实用、低能耗技术,而非一味扩大产能,以应对未来竞争。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>四、煤制油:项目表现良好但&ldquo;高大上&rdquo;投资引风险</strong><br />\r\n中国日益增大的成品油需求与资源量及产量有限的矛盾使得原油进口量连年大幅增加石油对外依存度连续数年维持在55%以上的国际超高警戒线。这一状况严重威胁着中国能源战略安全。为此,稳妥地发展煤基油品燃料不仅成为能源专家的呼声,也引起国家层面关注。以致于&ldquo;十一五&rdquo;以来,国家每次在规范煤化工产业健康发展时,都要特别点到煤制油。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;而从神华宁煤400万吨/年煤间接液化项目获得批准到兖矿榆林110万吨/年、伊泰鄂尔多斯200万吨/年、潞安集团150万吨/年、贵州渝富能源开发公司200万吨/年等数个煤制油项目获得<a href=\"http://www.sdpc.gov.cn/\" target=\"_blank\">国家发改委</a>&ldquo;路条&rdquo;不难看出国家层面对煤制油尤其已经被几套16万吨/年工业化示范项目初步验证的煤间接液化项目的管控悄然松绑。据了解即便不再增加新的业主仅上述几家煤制油企业规划的项目全部实施后中国每年就将新增煤基油品6080万吨。如果算上延长石油集团规划的煤油共炼、陕西煤业化工集团规划的煤炭分质利用制油项目以及全国其他企业在建和规划的约800万吨煤焦油加氢制取燃料油项目2020年前后中国煤基油品规模将超过8000万吨/年。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;众多企业之所以在国家严格管控下热上煤制油项目,主要还是认为煤制油的前景比较乐观。&rdquo;内蒙古伊泰煤制油有限责任公司董事长齐亚平表示。他以伊泰16万吨/年煤制油项目为例。该装置于2012年底首次达产后2013年全年生产油品18.2万吨装置平均负荷达108%油品综合成本平均每吨降低5%实现了消耗低、效益好的预期目标。虽然齐亚平并未透露煤间接液化产品的利润到底有多高但公开资料显示2013年1~9月伊泰煤间接液化项目生产各类油品和化工品13.2万吨上缴税费2.06亿元实现净利润1.2亿元。照此推算煤间接液化的液体产品净利润高达909元/吨。而据了解2013年以来包括神华百万吨煤直接制油、18万吨/年煤间接液化、潞安16万吨/年煤间接液化、陕煤天元50万吨/年煤焦油轻质化、陕煤富油12万吨/年煤焦油全馏分加氢、以及宝泰隆煤公司的10万吨/年高温煤焦油加氢制取燃料油等煤基油品项目,均取得了可观收益。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;我国石油对外依存度一度接近60%,发展煤基油品已经成为中国确保能源安全的战略选择。从这个层面讲,煤制油项目拥有一定的民意、政策与政治基础。加上巨大的消费需求与良好的盈利等市场手段推动,煤制油的前景十分光明。&rdquo;中科合成油技术有限公司技术顾问唐宏青尤其看好煤间接液化的前景。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;但也有专家认为煤制油的前景远没那么乐观。&ldquo;根据国家税务总局2012年第47号公告纳税人以原油或其他原料生产加工的在常温常压条件下呈液态状(沥青除外)的产品将分别加征1元/升(石脑油)和0.8元/升(燃料油)消费税这等于将煤制油综合成本增加了20%。以一个100万吨/年煤制油项目为例每年上缴消费税高达10亿元极大地压缩煤制油项目的利润空间。后期如果国际油价进一步下跌引发成品油价格下跌煤制油项目是否还能盈利存在悬念。&rdquo;陕西省决策咨询委员会委员贺永德提醒说。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;投资强度大、污染大、资源利用效率低则是延长石油集团总经理助理李大鹏不看好煤制油前景的三大理由。他说建设一个500万吨/年炼油厂只需200亿元投资而建设一个在煤制油路径中还算投资强度较低的相同规模的煤间接液化项目总投资额高达600亿元。超高的投资强度必然导致煤制油项目财务成本居高不下影响其产品市场竞争力。而从产品收率和资源利润效率看煤直接制油的液体收率不足35%,能源转化率仅33%;煤间接液化吨产品耗水超过7吨&hellip;&hellip;在中国经济发展受资源与环境约束越来越明显的情况下,煤制油的上述弊端将严重影响其综合效益,甚至会影响产业健康发展。&ldquo;中国应以全球视权衡自身的能源安全,并重新考虑发展煤制油的紧迫性、必要性与重要性&rdquo;。李大鹏建议。他说,既然经济已经全球化了,就应有资源分配全球化的视野。中国缺油不等于其他地区也缺油,我们完全可以凭借充足的外汇储备,以及不断上升的综合国力和国际地位,利用政治、外交、经济等手段,大量利用境外油气资源,实现外油中用,何必急于发展投资强度大、资源消耗高、污染排放大的煤制油产业。况且,近两年一些煤制油项目之所以取得较好收益,是国际油价高位运行、国内汽车业快速发展助推成品油需求猛增,以及煤炭价格大幅下跌等多种因素共同作用的结果,是一种特殊情况,并不能代表煤制油项目本身的竞争力。后期一旦煤炭价格触低回升,国际油气价格再度回调。尤其中国汽车工业增速放缓,成品油需求减少后,煤制油的钱景将难言乐观。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;即便要发展煤制油,也应打破煤直接或间接制油等单一模式,而应采取煤炭分质利用方式,在条件允许的情况下,先对煤进行干馏提油,再将提油后的洁净焦炭通过煤直接或间接制油等途径制油,或与其他化工、电力、钢铁、建材等装置对接,实现煤的&lsquo;两头见油&rsquo;和产品多元化,提升项目的资源利用效率和抗风险能力。&rdquo;陕煤化集团常务副总经理尤西蒂这样表示。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;一位专家透露:正是综合考虑了国内、国际环境与资源供需格局变化,以及煤制油项目的利弊与业内的不同意见,国家高层初步决定:&ldquo;十三五&rdquo;期间我国煤制油规模将控制在1000万吨/年以内而非此前传言的4000万吨/年。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>五、煤制芳烃:技术看上去都很美推广应用却不易</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;据清华大学教授魏飞介绍全球95%以上芳烃来自石油炼化装置的催化重整、裂解汽油加氢抽提。即常压石脑油和减压石脑油分别通过连续重整和加氢裂化再经芳烃抽提获得苯、甲苯和二甲苯等。甲苯选择性岐化、烷基化转移后生成二甲苯二甲苯异构化后转化为PX(对二甲苯)。随着石油资源的减少和价格的攀升以及原油重质化程度的加剧石油路线获取高纯PX的成本越来越高加之中国本身&ldquo;富煤贫油少气&rdquo;获取PX的难度日益增大。为此国内科研院所纷纷组织团队锲而不舍地开发非石油路线PX技术先后有中科院山西煤化所的固定床一步法甲醇制烃类技术、陕煤化集团与中科院大连化物所联合开发的甲醇甲苯制PX联产低碳烯烃循环流化床技术以及中石化自主开发的甲苯甲醇甲基化制取PX等技术问世。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;2013年1月13日由中国华电集团与清华大学合作开发的万吨级甲醇制芳烃工业试验装置一次投料成功并生产出合格PX这也是世界首套原料仅为甲醇的甲醇流化床制PX装置。其芳烃单程收率达55%~65%烯烃80%转化为芳烃芳烃总收率达80%是目前最先进的非石油路线芳烃生产工艺。至此中国分别掌握了固定床、流化床甲苯甲醇制PX和甲醇直接制PX等多项技术且全部通过了中试或工业化运行验证煤制芳烃整体技术世界领先。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;但仔细梳理上述技术,发现均不同程度地受到限制,投资者很难长期获得良好收益。&rdquo;陕煤化集团副总工程师何迎庆如是说。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;比如,山西煤化和赛鼎工程公司合作开发的固定床一步法甲醇制烃类技术,虽然具有能灵活生产芳烃与烯烃的优势,但因采用的是固定床,存在规模难放大、设备投资多、占地大、工艺流程长、催化剂需经常倒炉活化(或更换)等弊端;另两种甲醇甲苯制PX技术虽然使用了甲醇减少了甲苯消耗但依然需要甲苯作原料。而国内甲苯资源本来就短缺以致许多企业因甲苯来源无保证而不愿上马新项目;清华大学的技术最好可以完全以甲醇为原料生产芳烃但其80%芳烃总收率所得的是混合芳烃并非市场真正紧俏的、前景向好的纯PX导致项目盈利预期大打折扣。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;蒲城清洁能源化工公司副总经理姚继峰亦不看好煤制芳烃的前景。他说由于原料全部采用甲醇清华大学开发的FMTA技术是真正意义的煤制芳烃技术也最具工业化推广应用的条件。但一方面其所得产品80%为苯+甲苯+二甲苯,属混合芳烃(而非价格高出烯烃20%30%的纯PX)这种混合芳烃市场价仅70008000元/吨。根据工业化中试结果每生产1吨混合芳烃需消耗3吨甲醇而同样3吨甲醇采用DMTO技术能生产1吨烯烃。目前烯烃售价10000元/吨以上,煤制芳烃与煤制烯烃的经济性谁优谁劣一目了然。这也正是众多企业宁肯一窝蜂上马煤制烯烃项目,而不愿涉足煤制芳烃的根源。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;另一方面目前煤制芳烃尚无一套大型工业化示范装置运行存在一定的工业化风险。尤其近几年因PX被妖魔化后各地民众纷纷拒绝PX项目更增加了煤制芳烃项目的成本、难度和风险使这一先进技术难以推广应用。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;而据中国科学院院士何鸣元介绍,芳烃的重要来源和用途为:原油炼制&mdash;石脑油&mdash;MX(混二甲苯)&mdash;PX(对二甲苯)&mdash;PTA(精对苯二甲酸)/MEG(乙二醇)&mdash;PET(聚酯)&mdash;涤纶长丝/短纤&mdash;纺织面料&mdash;服装。因此无论石油路线PX还是煤基PX最好能与下游PTA、PET建成联合装置并接近化纤与纺织服装市场。由于我国大多数炼厂分布在东南沿海这些地区又是化纤与服装业最集中的地区从而很容易形成PX上下游一体化产业集群彰显良好的经济与社会效益。煤制芳烃主要是要利用西部廉价的煤炭与甲醇资源显然不具备建设靠近终端消费市场的PX上下游产业链的条件也即不能实现各环节利益最大化最终将削弱项目总体收益。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;专家们认为在石油价格高位运行、煤炭价格持续下跌、国内PX货紧价扬等有利形势下煤制芳烃尚因种种原因没有获得投资者追捧那么一旦国际石油价格继续下跌国际PX价格下挫则煤制芳烃的成本优势将会减弱产业发展的道路将曲折而漫长。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;魏飞却表示清华大学联手中国华电集团开发的FMTA工业化技术不足3吨甲醇即可生产一吨混合芳烃混合芳烃收率达80%以上且90%的混合芳烃最终都能转化为市场急需的PX。当烯烃价格在10000元/吨时纯PX售价一个度高达14000元/吨,照此推断,煤制芳烃经济效益并不逊于煤制烯烃。况且,由于石油中芳烃含量较少,我国又是一个富煤贫油少气的国家,煤制芳烃既是中国的无奈之举也是战略选择,又怎么能简单地以经济效益衡量其前景?至于说会否遭遇类似石油路线PX风波导致该技术难以推广的担心则完全没有必要。因为&ldquo;PX断子绝孙说&rdquo;本身不仅荒谬而且带有一定政治目的是一些所谓的专家学者在替国外利益集团误导甚至愚弄中国老百性。目前京、沪、穗等地应用的国汽油其中芳烃含量为40%将来国汽油还要在全国推广。如果照某些所谓专家的说法全世界都别用汽油了。因此FMTA技术绝不会因为所谓的环境风险而无法推广应用。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;上海新佑能源科技有限公司董事长韩保平则建议采用煤焦油加氢路径获取芳烃。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;他说由于石油侧链多经常压蒸馏得到的石脑油中芳烃仅占45%;而煤焦油中的侧链组分少用其加氢制得的石脑油中芳烃含量超过70%。目前大多数煤焦油要么只经简单加工处理,获得葸、萘等初级产品;好一点的企业将煤焦油加氢制取调和燃料油,这两种方法显然均未做到对资源的最大化利用。如果我们在有条件的地区建设大型煤炭提质装置,将获得的煤焦油加氢生产石脑油+柴油,再用高含芳烃的石脑油制取芳烃,无论经济、环境还是节能减排效益都将十分显著,其投资强度也将明显低于煤-甲醇-芳烃一体化装置。(陈继军 陈光达)</span><br />\r\n', 1, 0, '未知', '新型,煤化工,五,路径,谁能,走得,更远,中化,', '2015-01-21 02:56:09', '2020-06-02 02:11:01', NULL),
(117, 128, 7, '黑龙江省能源环境研究院召开全体职工大会', 'admin', '2015年1月26日黑龙江省能源环境研究院召开全体职工大会会议由能源院徐晓秋院长主持院班子及全体职工参加了会议。 徐晓秋院长首先传达了省科学院郭春景院长在省科学院2015年', '/uploads/allimg/150126/1-150126122I43W.JPG', '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 22px\"> 2015年1月26日黑龙江省能源环境研究院召开全体职工大会会议由能源院徐晓秋院长主持院班子及全体职工参加了会议。 </span>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img src=\"/storage/uploads/allimg/150126/1-150126122I43W.JPG\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋院长首先传达了省科学院郭春景院长在省科学院2015年工作会议上的报告并结合能源院实际部署近期工作。徐院长指出省科学院工作会议的召开为今后一段时期我院相关工作明确了行动纲领是我院今后发展的工作指南。全院干部职工要充分领会迅速行动积极落实全力开展能源院2015年的科研工作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随后徐院长介绍了1月25日参加黑龙江省千户科技型企业动员会的相关情况并传达了陆昊省长《黑龙江省千户科技型企业三年行动计划》的讲话精神。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后徐院长强调要坚持借船出海理念勇于攻坚克难开展好与清华大学的相关合作同时要求能源院全体职工围绕两个会议精神制定2015年工作计划借此促进科研水平快速提升并推动各项工作有序开展。</span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,召开,全体,职工,', '2015-01-26 04:32:03', '2020-06-02 02:11:01', NULL),
(118, 129, 7, '我院召开科研人员座谈会', 'admin', '1月27日黑龙江省能源环境研究院召开了科研人员座谈会院长徐晓秋、副院长关春玲与我院一线科研骨干、高级职称人员参加了座谈院长徐晓秋主持会议。 与会科研人员认真总结了', '', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1月27日黑龙江省能源环境研究院召开了科研人员座谈会院长徐晓秋、副院长关春玲与我院一线科研骨干、高级职称人员参加了座谈院长徐晓秋主持会议。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 与会科研人员认真总结了过去一年的工作情况,围绕科研院所改革及如何开展下一步科研工作提出了一些设想,同时围绕&ldquo;五年会战&rdquo;既定目标,就我院如何加强高标准科研团队建设、如何有效开展新技术研究等展开了热烈讨论,提出了很多建设性的意见和建议,成效显著。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 院长徐晓秋对与会科研人员取得的成绩给予了充分肯定,同时对大家提出了几点要求:一是要继续发挥我院在油页岩方面的研究优势,争取用两年时间进入国家四大平台;二是要围绕目标任务,注重发挥我院的科技支撑作用,突破国家项目,同时不断加强自身宣传展示、人才队伍建设、科研条件建设和科研管理服务;三是要善于学习,注重能力提高,善于对外交流与合作、善于向实践学习、善于在工作中不断思考,提高自己分析问题和解决问题的能力;四是要有强烈的责任感和使命感,崇高的敬业奉献精神,转变观念,革新理念,发挥主观能动性和积极性,为能源院的发展奉献力量。</span>', 1, 0, '未知', '我院,召开,科研,人员,座谈会,1月,27日,', '2015-01-27 05:00:00', '2020-06-02 02:11:01', NULL),
(119, 130, 7, '黑龙江省能源环境研究院召开青年科研人员座谈会', 'admin', '1月29日我院召开了青年科研人员座谈会院长徐晓秋、副院长关春与青年科研人员10余人参加了会议会议由院长徐晓秋主持。徐院长指出希望通过此次会议为我院青年人提供交', '', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1月29日我院召开了青年科研人员座谈会院长徐晓秋、副院长关春与青年科研人员10余人参加了会议会议由院长徐晓秋主持。徐院长指出希望通过此次会议为我院青年人提供交流的机会让青年科研工作者通过交流提出自己的工作设想和打算。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会议上,青年人员畅所欲言,纷纷围绕自身科研内容提出了很多好的想法,同时也提出了自己在工作中遇到的困惑及困难。院长领导对青年人员的工作热情和工作思路给予了肯定,并对相应的问题进行了解答。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后徐院长指出,我院将以全面提高青年科研工作者能力素质、充分发挥青年科研工作者的创造力为重点,以全面提高服务水平为目标,尽全力为我院的青年科研工作者创造更多的机会,打造良好的科研环境。</span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,召开,青年,科研,', '2015-01-29 05:10:00', '2020-06-02 02:11:01', NULL),
(120, 131, 7, '我院召开庆“三八”座谈会', 'admin', '3月6日上午我院召开了三八妇女节座谈会院长徐晓秋、副院长关春玲与十余名女同志参加了座谈会。院长徐晓秋向全体女同志表示节日的问候和祝贺感谢大家一年来在各自岗位上', '/uploads/allimg/150309/1-1503091A309593-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 3月6日上午我院召开了&ldquo;三八&rdquo;妇女节座谈会,院长徐晓秋、副院长关春玲与十余名女同志参加了座谈会。院长徐晓秋向全体女同志表示节日的问候和祝贺,感谢大家一年来在各自岗位上为本院创新发展做出的辛勤努力和贡献。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150309/1-1503091A309593.JPG\" style=\"width: 644px; height: 428px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 座谈会上,女同志们就如何扮演好工作家庭的双重角色、如何加强创新团队建设、提高业务技能等方面畅所欲言、各抒己见。大家纷纷表示,不但要内外兼修成为一道美丽的风景线,而且要充分发挥&ldquo;半边天&rdquo;的作用,增加工作中的积极性和主动性,把智慧和力量凝聚到科研工作上,为我院的发展贡献自己的力量。座谈会气氛融洽愉快,充分展示了新时代女性的风采。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 最后徐院长表示,希望女同志们以&ldquo;巾帼不让须眉&rdquo;的精神立足岗位、奋发有为贯彻落实2015年院工作会议精神不断学习业务提高个人素质成长为一专多能知识型人才的同时保持健康心态鼓励大家再接再厉再创佳绩。</span>', 1, 0, '未知', '我院,召开,庆,“,三八,”,座谈会,3月,6日,上午,', '2015-03-06 08:55:00', '2020-06-02 02:11:01', NULL),
(121, 132, 8, '我院召开全体党员会议学习习近平总书记2月2日讲话精神', 'admin', '4月7日省能源院党委在一楼会议室召开了全体党员会议党委书记、院长徐晓秋同志、党委委员、副院长关春玲同志、各支部书记及全体党员参加了会议。会议由徐晓秋同志主持。 会', '', '<span style=\"font-size: 26px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4月7日省能源院党委在一楼会议室召开了全体党员会议党委书记、院长徐晓秋同志、党委委员、副院长关春玲同志、各支部书记及全体党员参加了会议。会议由徐晓秋同志主持。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会议有三项内容徐晓秋院长首先传达了4月1日省科学院会议内容及郭春景院长的讲话精神。随后全文传达了2月2日习近平总书记在省部级主要领导干部学习贯彻十八届四中全会精神全面推进依法治国专题研讨班开班式上的讲话内容。最后传达了省科学院关于召开&ldquo;在新常态下如何做好党建工作&rdquo;专题座谈会的通知,并推荐了参会人员。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐院长特别指出,此次省科学院专题座谈会是指导我院适应新常态下经济社会发展要求,协调推进&ldquo;四个全面&rdquo;战略布局,圆满完成五年发展规划目标的重要会议,参会人员一定要高度重视,结合能源院工作实际,积极参与,要以此次会议为契机,全面推进我院快速发展。</span>', 1, 0, '未知', '我院,召开,全体,党员,会议,4月,7日,省,能源,院,', '2015-04-07 06:43:00', '2020-06-02 02:11:01', NULL),
(122, 133, 7, '我院与天津大学签订合作协议', 'admin', '2015年3月16日应天津大学内燃机燃烧学国家重点实验室主任、博士生导师姚春德教授的邀请黑龙江省科学院科研处王阳处长、黑龙江省能源环境研究院徐晓秋院长和油品助剂研发中心', '/uploads/allimg/150417/1-15041G3004TT-lp.JPG', '<span style=\"font-size: 22px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><span style=\"font-size:22px;\">2015年3月16日应天津大学内燃机燃烧学国家重点实验室主任、博士生导师姚春德教授的邀请黑龙江省科学院科研处王阳处长、黑龙江省能源环境研究院徐晓秋院长和油品助剂研发中心张树华主任一行三人赴天津大学进行交流访问。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150417/1-15041G3004TT.JPG\" style=\"width: 593px; height: 479px;\" /></span></div>\r\n<br />\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 天津大学内燃机燃烧学国家重点实验室是我国内燃机学科唯一的国家重点实验室,在甲醇燃料内燃动力工程领域拥有很高的国际知名度,黑龙江省能源环境研究院在非常规能源领域特别是甲醇燃料的研究方面拥有丰富的经验和实例。双方根据各自科研领域的技术特点,就如何充分发挥自身研究优势,实现技术互补,寻找合作契机召开了技术合作交流会,并针对相应需求开展合作探讨。最终,双方就共同研发&ldquo;柴油、甲醇双燃料供油系统&rdquo;达成了合作共识,签订了院、校联合创新合作模式框架协议,同时计划在相应标准制定、完成节能减排目标、人才培养和交流学习等方面开展一系列合作。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 我省是煤基甲醇产量大省,如&ldquo;柴油、甲醇双燃料供油系统&rdquo;得到广泛应用将节省燃料费30%以上并有效降低NOx化合物、PM2.5等有害物质排放30%-50%,在全面改善环境质量的同时助力我省煤化产业发展。</span>', 1, 0, '未知', '我院,与,天津,大学,签订,合作,协议,2015年,3月,', '2015-04-17 04:58:22', '2020-06-02 02:11:01', NULL),
(123, 134, 7, '黑龙江省能源环境研究院参加国家行业标准编制', 'admin', '2015年4月27日国家行业标准《住宅建筑室内装修污染控制技术规程》启动会暨编制组第一次工作会议在深圳市召开。黑龙江省能源环境研究院作为编制组成员单位由徐晓秋院长带队', '/uploads/allimg/150504/1-150504145242U3-lp.jpg', '<div>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2015年4月27日国家行业标准《住宅建筑室内装修污染控制技术规程》启动会暨编制组第一次工作会议在深圳市召开。黑龙江省能源环境研究院作为编制组成员单位由徐晓秋院长带队环境与节能技术研究室王志成主任及助理研究员张玥同志随行赴深圳参加了此次会议。</span></div>\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/150504/1-150504145242U3.jpg\" style=\"width: 639px; height: 427px\" /></span><br />\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此次会议共有来自国家住建部标准定额所、深圳市建筑科学研究院股份有限公司、清华大学、中国建筑科学研究院、上海市建筑科学研究院集团有限公司等19个参编单位参加。会议围绕《住宅建筑室内装修污染控制技术规程》编制大纲进行热烈地交流与讨论确定了编制原则、需要解决的问题、补充研究的内容、标准的章节目录、进度计划及编制分工等事项。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会议结束后深圳市建筑科学研究院股份有限公司毛洪伟总监和徐晓秋院长就双方今后合作进行了深入探讨和交流。2015年4月28日双方就共同完善&ldquo;室内空气质量预评估&rdquo;达成合作共识,计划在国家行业标准制定、完善室内空气预评估数据库、高层次人才培养和交流学习等方面开展一系列紧密合作。</span><br />\r\n <br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/150504/1-150504145304944.jpg\" style=\"width: 640px; height: 427px\" /></span><br />\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 参编国家行业标准《住宅建筑室内装修污染控制技术规程》,是我院近年来首次承担国家级课题,也是我院在室内环境领域首次与国内著名大学、院所展开紧密的合作。此次合作,起点高,影响大,标志着我院正式进军室内环境污染防控领域。</span></div>\r\n', 1, 0, '未知', '黑龙江省,能源,环境,研究院,参加,国家,2015年,', '2015-05-04 06:56:15', '2020-06-02 02:11:01', NULL),
(124, 135, 7, '农业部沼气科学研究所专家团访问黑龙江省能源环境研究院', 'admin', '2015年5月12日农业部沼气科学研究所生物质能中心主任胡启春研究员一行四人到黑龙江省能源环境研究院进行交流与访问。 胡启春研究员首先来到能源院江北实验室,在会议室做了沼', '/uploads/allimg/150526/1-150526192050T1-lp.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2015年5月12日农业部沼气科学研究所生物质能中心主任胡启春研究员一行四人到黑龙江省能源环境研究院进行交流与访问。</span>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/150526/1-150526192050T1.jpg\" style=\"width: 519px; height: 346px\" /><br />\r\n &nbsp;</div>\r\n&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 22px\">&nbsp; 胡启春研究员首先来到能源院江北实验室,在会议室做了沼气工程领域的报告,报告详细的分析与解读了国内最新科研技术的相关情况,省能源院领导及相关科研人员参加了会议,并对胡研究员一行的到来表示热烈欢迎,同时省能源院也介绍了东北地区特别是黑龙江省各型沼气工程的发展现状,随后双方围绕各自技术优势进行了深入交流,并积极寻找合作契机。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/150526/1-150526192114164.jpg\" /><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5月13日在省能源院工作人员的陪同下参观了我院在大庆杜尔伯特的IMUS项目并对黑龙省部分地区的生物质能源技术发展情况进行了调研。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 临别时,省能源院徐晓秋院长再次感谢胡启春研究员一行四人的到访,同时希望省能源院与农业部沼气研究所建立紧密的合作与联系。</span>', 1, 0, '未知', '农业部,沼气,科,学研究所,专家团,访问,2015年,', '2015-05-26 11:18:35', '2020-06-02 02:11:01', NULL),
(125, 136, 7, '我院召开“三严三实”专题教育动员会', 'admin', '根据省科学院通知要求6月4日黑龙江省能源环境研究院在一楼会议室召开了党委扩大会议暨省能源院三严三实专题教育动员会省能源院领导班子、全体党员、部门负责人及副科级', '/uploads/allimg/150608/1-15060Q0232O11.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 根据省科学院通知要求6月4日黑龙江省能源环境研究院在一楼会议室召开了党委扩大会议暨省能源院&ldquo;三严三实&rdquo;专题教育动员会,省能源院领导班子、全体党员、部门负责人及副科级以上民主党派人士参加了会议。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/150608/1-15060Q0232O11.jpg\" style=\"width: 644px; height: 428px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 大会通过了省能源院&ldquo;三严三实&rdquo;专题教育实施方案,省能源院党委书记、院长徐晓秋同志就深入开展&ldquo;三严三实&rdquo;专题教育进行了动员和全面部署。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/150608/1-15060Q02343639.jpg\" style=\"width: 644px; height: 428px;\" /></span></div>\r\n<br />\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋同志指出,要坚决贯彻落实中央、省委及省科学院的部署和要求,从严从实开展&ldquo;三严三实&rdquo;专题教育,要明确责任,紧扣主题,聚焦对党忠诚、个人干净、敢于担当,坚持高标准严要求,注重思想引领,解决实际问题。同时要求党办、党支部及团委负责同志要在&ldquo;三严三实&rdquo;专题教育中讲一次党课。各部门主要负责同志,要充分提高认识,积极配合,带头搞好学习教育、确保省能源院&ldquo;三严三实&rdquo;专题教育取得实效。</span>', 1, 0, '未知', '我院,召开,“,三严三实,”,专题,教育,动员会,', '2015-06-04 03:40:00', '2020-06-02 02:11:01', NULL),
(126, 137, 7, '省知识产权局张毅副局长到我院调研', 'admin', '5月27日省知识产权局张毅副局长率综合协调处负责同志就全省高校院所专利提质促量工作到黑龙江省能源环境研究院进行调研。省能源院徐晓秋院长、关春玲副院长、科研与产业化', '/uploads/allimg/150608/1-15060PU64Q64-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 5月27日省知识产权局张毅副局长率综合协调处负责同志就全省高校院所专利&ldquo;提质促量&rdquo;工作,到黑龙江省能源环境研究院进行调研。省能源院徐晓秋院长、关春玲副院长、科研与产业化办公室主任王志成等有关同志参加会议,并作情况介绍。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150608/1-15060PU64Q64.JPG\" style=\"width: 504px; height: 337px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长介绍2013年省能源环境研究院与省科学院科技孵化中心合并。省科学院科技孵化中心为2012年度省知识产权局高校、科研院所专利项目支持单位在项目支持下专利工作发展取得实质性突破。合并后省能源院更加重视专利工作近两年申请专利41项人均专利超1项。院科研与产业化办公室王志成主任介绍了院专利申报、维护管理专利转移和产业化工作情况。建立知识产权月报制度、各技术科室联络员制度定期对院管理层、知识产权管理人员和技术人员进行知识产权的相关培训要求各科室设立专项资金提高专利撰写人员的业务水平等措施使知识产权工作再上新台阶。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 张毅副局长对省能源院承担省高校院所专利项目取得的效果表示赞赏,认为之前项目执行成效好、产出大,特别是对建立&ldquo;知识产权联络员&rdquo;制度予以充分肯定同时重点介绍了2015年度我省高校院所专利&ldquo;提质促量&rdquo;工作,建议省能源院更加重视发明专利拥有量,做好新发明专利的挖掘及已有发明专利的保持工作,进一步强化专利转化应用工作。张毅副局长同时还介绍了省知识产权局有关专利创造、运用等方面的政策措施,建议双方加强沟通联系,促进专利&ldquo;提质促量&rdquo;工作,进一步将能源领域的科研水平转化为专利优势,为改善我省生态环境发挥更大的作用。</span><br />\r\n', 1, 0, '未知', '省,知识产权局,张毅,副局长,到,我院,调研,5月,', '2015-06-08 01:00:05', '2020-06-02 02:11:01', NULL),
(127, 138, 7, '我院参加省高校、科研院所知识产权专题培训班学习', 'admin', '2015年6月4日至5日省知识产权局举办了黑龙江省高校、科研院所知识产权专题培训班。我院科研办王志成主任、设计部王玉鹏和环境与节能研究室张玥参加了此次培训。 此次培训课程', '/uploads/allimg/150608/1-15060Q13402934-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年6月4日至5日省知识产权局举办了黑龙江省高校、科研院所知识产权专题培训班。我院科研办王志成主任、设计部王玉鹏和环境与节能研究室张玥参加了此次培训。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150608/1-15060Q13402934.JPG\" style=\"width: 577px; height: 433px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 此次培训课程由来自省知识产权局的张毅副局长、北京隆源智信知识产权咨询有限公司的闫冬总经理、哈尔滨工程大学经济管理学院陈伟教授及北京科技大学科学研究与发展部张超副部长授课,不仅解释了知识产权为何是建设创新型国家的核心竞争力,还重点讲解了专利转化运用的重要性,并结合具体的案例加以分析,更加易于理解和记忆。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此次培训班旨在增强我省高校及科研院所相关技术人员的知识产权转化意识,提高知识产权的运用率,使得知识产权能够有效的创造实用价值。课程内容丰富,含义深刻,重点明确,使我们受益匪浅。</span>', 1, 0, '未知', '我院,参加省,高校,、,科研院所,知识产权,', '2015-06-08 03:31:46', '2020-06-02 02:11:01', NULL),
(128, 139, 7, '黑龙江省能源环境学会成立', 'admin', '2015年6月8日由黑龙江省能源环境研究院发起的黑龙江省能源环境学会正式成立。学会由黑龙江省民政厅批准并发放《社会团体法人登记证书》业务主管部门为黑龙江省科学技术协', '/uploads/allimg/150610/1-150610161231964-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年6月8日由黑龙江省能源环境研究院发起的黑龙江省能源环境学会正式成立。学会由黑龙江省民政厅批准并发放《社会团体法人登记证书》业务主管部门为黑龙江省科学技术协会。<br />\r\n<br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/150610/1-150610161446358.JPG\" style=\"width: 553px; height: 402px;\" /><br />\r\n<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 能源化学学会为非营利组织性质的社会团体,属独立法人机构。致力于在能源和环境建设领域发挥桥梁和纽带作用,协助有关部门制定政策战略,充分运用市场机制,着力于能源环境领域先进的技术和产品全方位推广,加速产学研结合,促进企事业单位、科研院所间的对外交流与合作、宣传推广等工作。<br />\r\n学会可开展学术交流组织研讨会、论坛促进能源环境事业和谐发展。反映科学技术工作者的意愿和要求维护科学技术工作者的合法权益。依法编辑内部参考资料和学会刊物及相关书籍。依法开展科学技术交流活动和业务培训提高人员素质。宣传能源环境领域的方针和政策促进企业节能减排提高能源利用效率。承办政府及相关部门的委托工作。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 学会的成立标志着省能源院在领域内学术地位的提升,同时也标志着省能源院的工作得到各级领导和同行专家的认可。</span>', 1, 0, '未知', '黑龙江省,能源,环境,学会,成立,2015年,6月,8日,', '2015-06-10 08:25:55', '2020-06-02 02:11:01', NULL),
(129, 140, 7, '黑龙江省能源环境研究院党委书记徐晓秋同志带头讲“三严三实”专题党课', 'admin', '6月15日在省能源院一楼会议室省能源院党委书记、院长徐晓秋同志以《践行三严三实要求聚力五年会战》为题为全体党员、副科级以上人员讲了一堂三严三实专题党课。 徐晓秋', '/uploads/allimg/150616/1-150616130424M7.jpg', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 6月15日在省能源院一楼会议室省能源院党委书记、院长徐晓秋同志以《践行&ldquo;三严三实&rdquo;要求,做忠诚干净担当的好干部》为题,为全体党员、副科级以上人员讲了一堂&ldquo;三严三实&rdquo;专题党课。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150616/1-150616130424M7.jpg\" style=\"width: 557px; height: 371px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记围绕准确把握&ldquo;三严三实&rdquo;要求的精神内涵、充分认识&ldquo;三严三实&rdquo;要求的重大意义、深入挖掘不严不实的具体表现等方面的作了深入浅出的论述和讲解。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150616/1-150616130445P8.jpg\" style=\"width: 559px; height: 371px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记同时要求每位党员干部都要自觉践行&ldquo;三严三实&rdquo;,按照&ldquo;三严三实&rdquo;的要求对照检查、提升自己,从思想深处、从履职行权、从日常生活等方方面面,摒弃歪风邪气,树立昂扬正气,以更加严谨的工作作风和更加积极的工作态度聚力&ldquo;五年会战&rdquo;,推动省能源院科研事业新发展。</span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,党委书记,徐晓,', '2015-06-15 05:29:00', '2020-06-02 02:11:01', NULL),
(130, 141, 7, '低碳环保,健康生活</br>-省能源院举办职工徒步活动', 'admin', '6月18日清晨省能源院举办了首届能源杯徒步活动活动的主题为 低碳环保,健康生活。 本次活动全程约8公里环绕阿勒锦岛一周历时两个 小时。一路上大家奋勇争先、相互鼓励,', '/uploads/allimg/150623/1-150623100631N0-lp.jpg', '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6月18日清晨省能源院举办了首届&ldquo;能源杯&rdquo;徒步活动,活动的主题为 &ldquo;低碳环保,健康生活&rdquo;。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/150623/1-150623100631N0.jpg\" style=\"width: 906px; height: 602px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 本次活动全程约8公里环绕阿勒锦岛一周历时两个 小时。一路上大家奋勇争先、相互鼓励,时而疾走如飞,时而舒缓脚步,在欣赏沿途美景享受运动快乐的同时激发了大家热爱自然、热爱生活的感情,提高了低碳环保意识。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/storage/uploads/allimg/150623/1-150623100F5630.jpg\" style=\"width: 867px; height: 602px\" /></span></div>\r\n<br />\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此次活动让大家放松了心情、愉悦了身心、磨练了意志、增进了友谊。在行走间凝心聚力,彰显了省能源院全体职工&ldquo;奋勇争先、和谐健康&rdquo;的精神风貌和时代追求。</span><br />\r\n', 1, 0, '未知', '低碳,环保,健康生活,省,能源,院,举办,职工,', '2015-06-23 02:30:51', '2020-06-02 02:11:01', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(131, 142, 7, '黑龙江省能源环境研究院开展系列庆祝活动</br>为中国共产党成立94周年献礼', 'admin', '为喜迎中国共产党成立94周年继承和发扬党的优良传统和作风切实加强基层党组织建设七一期间省能源环境研究开展内了容丰富、形式多样的庆祝活动通过主题鲜明、广泛参', '/uploads/allimg/150706/1-150F6145634K6-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 为喜迎中国共产党成立94周年继承和发扬党的优良传统和作风切实加强基层党组织建设&ldquo;七一&rdquo;期间省能源环境研究开展内了容丰富、形式多样的庆祝活动通过主题鲜明、广泛参与的活动切实提升党组织的号召力、凝聚力和战斗力使广大党员干部以更加饱满的热情迎接中国共产党成立94周年盛典。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 6月29日省能源院开展了庆&ldquo;七一&rdquo;系列活动之一《书画摄影作品展》为党的生日献礼。此次活动得到了全院职工的热情响应全院共征集书画摄影作品50余件经过评比、优选出优秀作品35件入选此次展览其中书法作品&ldquo;三严三实&rdquo;,笔锋流畅有力、大气潇洒,充分展现了作者对&ldquo;严与实&rdquo;的深刻理解;绘画作品《庆》,用花开盛世的美好景象,祝福祖国欣欣向荣,繁荣昌盛;摄影作品内容积极向上,传递着正能量,其中有的歌颂祖国大好河山,有的缅怀历史,勿忘国耻,有的记录丰富多彩的业余生活。通过此次展览,全面地展示出省能源院职工爱自然、爱生活,爱工作的情怀。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145634K6.JPG\" style=\"width: 558px; height: 419px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145645360.JPG\" style=\"width: 558px; height: 419px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 6月30日省能源院开展了庆&ldquo;七一&rdquo;系列活动之二《党员带头捐书、共建院图书共享平台》。经过积极策划、精心准备,党员干部带头捐书活动顺利开展,同时建立了省能源院自己的图书共享平台&mdash;&mdash;博知苑,并且制定了相关借阅准则。此次捐书活动得到了省能源院全院职工的积极响应,大家纷纷把自己喜欢的书籍放到博知苑与大家一起分享,此次活动共收到书籍近百本,类别涵盖文史、社科、电子、机械、化工、生物、心理类等。在成立博知苑的当天,院里的很多同志就已经借阅了自己喜欢的书籍,相信在省能源院全院职工的共同努力下,博知苑一定会越办越好。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145H0330.JPG\" style=\"width: 504px; height: 395px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145H9262.JPG\" style=\"width: 386px; height: 470px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 7月1日省能源院开展了庆&ldquo;七一&rdquo;系列活动之三《欢庆&ldquo;七一 &rdquo;为党庆生》。此次活动得到了省科学院直属机关党委的大力支持,刘颖同志参加了系列活动。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145K0959.JPG\" style=\"width: 558px; height: 372px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145Q1261.JPG\" style=\"width: 558px; height: 372px;\" /></span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">&nbsp;</span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 活动第一项,举行老党员重温入党誓词、新党员入党宣誓仪式,新党员张帆、陆海玲同志及全体党员面对党旗庄严宣誓。入党宣誓是对党员进行教育的一种形式,体现了入党的庄重性和严肃性,同时激励新党员牢记党的誓言,更加严格地要求自己,也让老党员重温对党的承诺。宣誓活动结束后,作为领誓人的优秀老党员刘岩同志激动不已,表示即为省能源院得到新鲜力量的充实感到高兴,也为自己是省能源院的一员感到由衷的自豪。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145S11X.JPG\" style=\"width: 558px; height: 372px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 活动第二项,举行&ldquo;三严三实&rdquo;知识竞答活动。省能源院按照&ldquo;三严三实&rdquo;专题教育实施方案的工作安排,固定将每周三定为&ldquo;三严三实&rdquo;专题学习日,本次竞答活动即是一次对&ldquo;三严三实&rdquo;的学习,也是对多次开展的专题学习进行一次检验,并通过问答活动,让广大党员进一步加深了对&ldquo;三严三实&rdquo;深刻内涵和意义的理解,使全院党员干部以更加严谨的工作作风和更加积极的工作态度投入到科研工作中,推动能源院不断向前发展。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145US57.JPG\" style=\"width: 558px; height: 372px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 活动最后一项,集体观看专题电视片《周总理的严与实》,在严肃认真的氛围中,省能源院全体党员共同感受了伟人对待工作的认真与严谨,同时周总理严于律己的优秀品质和实干兴邦的治国理念,也让大家得到了深刻的启示,并认识到在科学研究的道路上要求真务实,用责任和担当坚守自己平凡的岗位,用真招实措换来实实在在的进步,用自身行动向社会传递正确的价值导向。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150706/1-150F6145914518.JPG\" style=\"width: 558px; height: 372px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此次系列活动通过不同的形式使省能源院广大党员干部受到了教育,也充分展现了省能源院全体党员的精神风貌和对党的无限热爱,在祥和、愉悦的气氛中,省能源院庆&ldquo;七一&rdquo;系列活动圆满落幕。</span><br />\r\n', 1, 0, '未知', '黑龙江省,能源,环境,研究院,开展,系列,为,', '2015-07-06 05:28:00', '2020-06-02 02:11:01', NULL),
(132, 143, 7, '我院与加拿大阿尔伯塔技术创新研究院签订框架协议', 'admin', '2015年7月3日在省科学院四楼会议室黑龙江省科学院与加拿大阿尔伯塔省技术创新研究院合作协议签约仪式正式举行。省科学院院长郭春景、黑龙江省能源环境研究院院长徐晓秋及加', '/uploads/allimg/150713/1-150G30U9244D.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年7月3日在省科学院四楼会议室黑龙江省科学院与加拿大阿尔伯塔省技术创新研究院合作协议签约仪式正式举行。省科学院院长郭春景、黑龙江省能源环境研究院院长徐晓秋及加方代表等参加签约仪式。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150713/1-150G30Z140c7.JPG\" style=\"width: 429px; height: 285px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省科学院以国家&ldquo;十二五&rdquo;规划提出的&ldquo;推动非常规油气资源开发利用&rdquo;为契机,紧抓我省发展重油沥青资源的良好时机,以黑龙江省能源环境研究院作为合作项目承担的主体,助力我省重油沥青资源精/深加工和综合利用。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150713/1-150G30Z155555.JPG\" style=\"width: 429px; height: 285px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 根据协议内容,双方将在中国黑龙江省和加拿大阿尔伯塔省同时建立&ldquo;黑龙江省/阿尔伯塔省沥青及重油联合研究中心&rdquo;,并以该中心作为依托,利用重油及沥青等非常规能源作为原料,共同研究开发该领域的最新技术和产品,推进高端技术和产品融入黑龙江省的重点石化工业园区。协议内容还包括信息共享、成果转化、市场推广和人才培养等方面。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/150713/1-150G30Z223194.JPG\" style=\"width: 429px; height: 285px;\" /></span></div>\r\n', 1, 0, '未知', '我院,与,加拿大,阿尔伯塔,技术创新,研究院,', '2015-07-13 01:05:06', '2020-06-02 02:11:02', NULL),
(133, 144, 7, '我院组织全体职工观看记录片《筑梦中国》', 'admin', '根据省科学院机关党委关于观看大型历史文献记录片《筑梦中国》相关要求我院高度重视积极部署观看学习活动。于7月24日、27日、28日每天下午13:30在能源院一楼会议室组织全院职', '/uploads/allimg/150731/1-150I1100346239.JPG', '<span style=\"font-size: 22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 根据省科学院机关党委关于观看大型历史文献记录片《筑梦中国》相关要求我院高度重视积极部署观看学习活动。于7月24日、27日、28日每天下午13:30在能源院一楼会议室组织全院职工进行观看。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size: 22px;\"><img src=\"/storage/uploads/allimg/150731/1-150I1100346239.JPG\" style=\"width: 494px; height: 328px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 《筑梦中国》纪录片内容丰富生动详实振奋人心。该片展示了1840年鸦片战争以来中国人民在屈辱苦难中奋起抗争为实现民族复兴进行的种种探索特别是中国共产党领导全国各族人民争取民族独立、人民解放和国家富强、人民幸福的光辉历程充分诠释了中华民族的复兴之路生动阐释了中国梦的深刻内涵。</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size: 22px;\"><img src=\"/storage/uploads/allimg/150731/1-150I1100412104.JPG\" style=\"width: 505px; height: 337px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 观看结束后,院职工表示,该片不仅仅是重温了中国的革命史,更重要的是看到了中国共产党在实现中华民族伟大复兴的道路上的披荆斩棘与力挽狂澜。该片同时教育我们要增强&ldquo;三个自信&rdquo;,要坚定不移走中国特色社会主义道路,为实现中华民族伟大复兴的中国梦而不懈奋斗。</span>', 1, 0, '未知', '我院,组织,全体,职工,观看,记录片,《,根据省,', '2015-07-31 05:28:00', '2020-06-02 02:11:02', NULL),
(134, 145, 7, '我院参加全国科学院联盟能源分会启动仪式', 'admin', '2015年8月13日-14日黑龙江省能源环境研究院院长徐晓秋同志应邀参加了全国科学院联盟能源分会启动仪式。本次会议由中国科学院科技促进发展局和中国科学院沈阳分院主办由中国科学', '/uploads/allimg/150819/1-150Q9130104925-lp.jpg', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年8月13日-14日黑龙江省能源环境研究院院长徐晓秋同志应邀参加了全国科学院联盟能源分会启动仪式。本次会议由中国科学院科技促进发展局和中国科学院沈阳分院主办由中国科学院大连化学物理研究所和新兴能源科技有限公司承办。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 参加会议的有中国科学院科技促进发展局陈文开副局长、中国科学院沈阳分院马越红副院长、中国科学院大连化学物理研究所党委书记王华研究员及各研究院所的领导同志等。英国石油公司、LUMMUS等国外公司的总裁、项目经理和国内石化产业相关企业的人员参加了此次会议。参会的能源领域领导、专家及企业家多达160人盛况空前。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"QQ图片20150819103946.jpg\" src=\"/storage/uploads/allimg/150819/1-150Q9130104925.jpg\" style=\"width: 554px; height: 416px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年8月13日900中国科学院科技促进发展局、山东省科学院、大连市政府、大连化学物理所领导致辞并且进行全国科学院联盟能源分会揭牌仪式全国科学院联盟能源分会正式启动。8月14日与会专家审议了分会章程成立能源分会理事会推选理事长、副理事长、秘书长等领导机构对各参会单位的合作模式进行研讨。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 两天的会议在热烈的气氛中结束,全国科学院联盟能源分会成立标志着中国科学院系统能源领域强强联合,谱写共同发展的新篇章。</span>', 1, 0, '未知', '我院,参加,全国,科学院,联盟,能源,分会,启动,', '2015-08-19 02:59:00', '2020-06-02 02:11:02', NULL),
(135, 146, 7, '省科学院督研委对能源环境研究院</br>科研基金项目的执行情况进行督导和检查', 'admin', '2015年8月26日省科学院督研委对院基金项目页岩油深加工工艺关键技术的执行情况进行阶段性督导和检查。会议由院科研处隋月梅副处长主持。 督研委专家们听取了课题组的工作汇报', '/uploads/allimg/150827/1-150RG14423309-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年8月26日省科学院督研委对院基金项目&ldquo;页岩油深加工工艺关键技术&rdquo;的执行情况进行阶段性督导和检查。会议由院科研处隋月梅副处长主持。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/150827/1-150RG14423309.JPG\" style=\"width: 406px; height: 272px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 督研委专家们听取了课题组的工作汇报,对项目充分利用黑龙江省赋存丰富的非常规能源&mdash;油页岩资源,开发页岩油深加工制取运输燃料和化工轻油技术,助力我省替代能源的开发和利用给予高度评价。经认真质询、讨论,对该项目阶段总结工作给予充分肯定,同意继续支持该项目研发,并对下阶段的研发工作提出了合理化建议。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 最后,隋月梅副处长做了总结性发言,希望课题组按照专家们的建议修改调整研发思路,圆满完成科研项目,为我院的学科发展提供有力的技术支撑。</span>', 1, 0, '未知', '省,科学院,督研,委,对,能源,环境,研究院,科研,', '2015-08-27 03:42:18', '2020-06-02 02:11:02', NULL),
(136, 147, 7, '热烈祝贺我院选手在省科学院“三严三实”青年党史知识竞赛中获三等奖', 'admin', '9 月9日 ,由省科学院团委主办的 三严三实 青年党史知识竞赛在嵩山路15号8楼会议室拉开帷幕。此次竞赛内容涵盖了党章党史十八大报告十八届三中、四中全会精神习总书记系', '/uploads/allimg/150916/1-15091614595c35-lp.JPG', '<st1:chsdate day=\"9\" islunardate=\"False\" isrocdate=\"False\" month=\"9\" w:st=\"on\" year=\"2015\"><span lang=\"EN-US\" style=\"font-size: 12pt; font-family: \'Times New Roman\', serif; background-position: initial initial; background-repeat: initial initial;\">&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:22px;\">9</span></span><span style=\"font-size:22px;\"><span style=\"font-family: 宋体;\">月9日</span></span></st1:chsdate><span style=\"font-size:22px;\"><span style=\"font-family: 宋体;\">,由省科学院团委主办的</span><span style=\"font-family: \'Times New Roman\', serif;\">&ldquo;</span><span style=\"font-family: 宋体;\">三严三实</span><span style=\"font-family: \'Times New Roman\', serif;\">&rdquo;</span><span style=\"font-family: 宋体;\"> 青年党史知识竞赛在嵩山路15号8楼会议室拉开帷幕。此次竞赛内容涵盖了党章党史十八大报告十八届三中、四中全会精神习总书记系列重要讲话精神时事政治等内容旨在通过此竞赛使全体青年党员重温党的光辉历程进一步推动</span><span style=\"font-family: \'Times New Roman\', serif;\">&ldquo;</span><span style=\"font-family: 宋体;\">三严三实</span><span style=\"font-family: \'Times New Roman\', serif;\">&rdquo;</span></span><span style=\"font-size: 12pt; font-family: 宋体; background-position: initial initial; background-repeat: initial initial;\"><span style=\"font-size:22px;\">专题教育工作。比赛共有9支代表队参加代表我院参赛的杨光、陆佳、潘良3名队员团结拼搏经过必答题、抢答题和风险题三轮激烈比拼获得三等奖为我院争得了荣誉。</span></span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size: 12pt; font-family: 宋体; background-position: initial initial; background-repeat: initial initial;\"><img alt=\"\" src=\"/storage/uploads/allimg/150916/1-15091614595c35.JPG\" style=\"width: 519px; height: 346px;\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/150916/1-15091615001QV.JPG\" style=\"width: 519px; height: 346px;\" /></span></div>\r\n', 1, 0, '未知', '热烈,祝贺,我院,选手,在,省,科学院,“,月,9日,', '2015-09-09 07:05:00', '2020-06-02 02:11:02', NULL),
(137, 148, 7, '黑龙江省科学院党组书记赵梅同志莅临黑龙江省能源环境研究院调研指导工作', 'admin', '10月13日下午省科学院党组书记赵梅同志在院办公室主任章力同志的陪同下莅临黑龙江省能源环境研究院调研指导工作。省能源院徐晓秋院长、关春玲副院长参加了此次调研。 调研会', '/uploads/allimg/151015/1-151015113633c1-lp.JPG', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:22px;\">10月13日下午省科学院党组书记赵梅同志在院办公室主任章力同志的陪同下莅临黑龙江省能源环境研究院调研指导工作。省能源院徐晓秋院长、关春玲副院长参加了此次调研。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/151015/1-151015113633c1.JPG\" style=\"width: 644px; height: 428px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 调研会议上赵梅书记与参会同志进行了广泛讨论。徐晓秋院长首先向赵梅书记详细汇报了能源院的发展概况,其间,赵书记询问了能源院的人员结构和发展历程。随后,赵书记就能源院重点项目、学科建设、人才培养、发展规划等方面进行了调研。赵书记对省能源院近几年在能源环境领域取得的成绩和进步给予了充分肯定,赵书记指出,能源院的重点项目在能源环境领域的特点突出,作为公益一类科研单位,在科研工作的推进过程中应准确把握需求、调动好各方的积极性,要最大程度发挥领域优势,为我省经济社会发展和政府决策提供支撑和保障。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/151015/1-151015113F9102.JPG\" style=\"width: 553px; height: 367px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会后,赵梅书记一行参观了能源院各实验室,并与科研人员进行了交流探讨。</span>', 1, 0, '未知', '黑龙江省,科学院,党组书记,赵梅,同志,莅临,', '2015-10-14 05:44:00', '2020-06-02 02:11:02', NULL),
(138, 149, 7, '黑龙江省能源环境学会成立大会暨首届学术年会在哈顺利召开', 'admin', '2015年10月18日黑龙江省能源环境学会成立大会暨首届学术年会在哈隆重举行。此次活动由省能源环境学会筹备委员会主办省能源环境研究院、哈工大城市水资源与水环境国家重点实', '/uploads/allimg/151021/1-15102112162D17.jpg', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年10月18日黑龙江省能源环境学会成立大会暨首届学术年会在哈隆重举行。此次活动由省能源环境学会筹备委员会主办省能源环境研究院、哈工大城市水资源与水环境国家重点实验室承办。黑龙江省科学院郭春景院长、省环保厅李平厅长、哈尔滨工业大学安实副校长、黑龙江省科学院王刚副院长、黑龙江省科协苏凤仙副主席、省民间组织管理局孙俭太副局长、城市水资源与水环境国家重点实验室常务副主任马放教授出席了此次会议。&nbsp;</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/151021/1-15102112162D17.jpg\" style=\"width: 478px; height: 203px;\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 省内能源环境领域的领导、各研究院所、高校学科带头人和骨干教师等共计110人出席了大会。会议通过了黑龙江省能源环境学会章程并按照相关规定投票选举出了黑龙江省能源环境学会第一届理事及学会领导人员。马放当选为首届能源环境学会理事长、高德玉当选为秘书长。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/151021/1-151021121G4X7.jpg\" style=\"text-align: center; width: 365px; height: 320px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省能源环境学会HSEEHeilongjiang Society for Energy and Environment是经黑龙江省科学技术协会批准在黑龙江省民间组织管理登记注册的学术性、公益性、非盈利性法人社会团体办事机构常设在黑龙江能源环境研究院。黑龙江省能源环境学会集中了全省最优秀的能源环境领域科技人才首批个人会员为123人团体会员为5个。学会将根据业务发展情况设立相关专业技术委员会。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/151021/1-151021121K2913.jpg\" style=\"width: 395px; height: 395px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 上午9点成立大会正式举行会议由省能源环境研究院徐晓秋院长主持。省科学院王钢副院长致开幕词。省民间组织管理局孙俭太副局长宣读了关于同意成立省能源环境学会的批复文件。省科学院郭春景院长、省环保厅李平厅长、哈工大安实副校长、省科协苏凤仙副主席、城市水资源与水环境国家重点实验室马放主任分别围绕能源环境学会成立的意义和成立后的各项工作发表重要讲话。<br />\r\n郭春景院长指出学会近期工作要围绕两点一要主动作为敢于担当。要充分调动发挥本学会中的专业技术优势积极参与解决我省能源供求矛盾突出的现状。二是不断创新培养人才。要探索创新型科研技术培养综合型科技人才积极为我省能源环境研究工作提供技术支持搭建科研平台为我省新能源的开发与环境保护工作开辟出一条自主创新的发展之路。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/151021/1-151021121Q51S.jpg\" style=\"width: 365px; height: 395px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 下午,省内能源环境领域的专家一起就环境保护、能源发展等方面进行了学术研讨。</span>', 1, 0, '未知', '黑龙江省,能源,环境,学会,成立,大会,暨,首届,', '2015-10-19 04:20:00', '2020-06-02 02:11:02', NULL),
(139, 150, 7, '关于转发《中国共产党廉政自律准则》和《中国共产党纪律处分条例》的通知', 'admin', '能源院全体党员: 为扎实开展三严三实专题教育工作,紧扣《中国共产党巡视工作条例》对六大纪律的要求,引导和教育全体党员牢固树立自觉遵守党章党纪党规的政治意识和大局观念', '', '<div>\r\n <span style=\"font-size:22px;\">能源院全体党员:</span></div>\r\n<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 为扎实开展&ldquo;三严三实&rdquo;专题教育工作,紧扣《中国共产党巡视工作条例》对&ldquo;六大纪律&rdquo;的要求,引导和教育全体党员牢固树立自觉遵守党章党纪党规的政治意识和大局观念,守住&ldquo;不想腐&rdquo;的思想防线,筑牢&ldquo;不能腐&rdquo;的制度笼子,坚持&ldquo;不敢腐&rdquo;的高压态势,营造风清气正的发展环境。现将《中国共产党廉政自律准则》及《中国共产党纪律处分条例》转发给你们,请全体党员认真自学。</span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 附件1</span><span style=\"font-size: 21.81818199157715px;\">《</span><u style=\"font-size: 21.81818199157715px;\"><a href=\"/uploads/soft/151103/1-151103112P2.doc\" style=\"font-size: 21.81818199157715px;\" target=\"_blank\">中国共产党廉政自律准则</a></u><span style=\"font-size: 21.81818199157715px;\">》</span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 附件2</span><span style=\"font-size: 21.81818199157715px;\">《</span><u style=\"font-size: 21.81818199157715px;\"><a href=\"/uploads/soft/151103/1-151103112926.doc\" style=\"font-size: 21.81818199157715px;\" target=\"_blank\">中国共产党纪律处分条例</a></u><span style=\"font-size: 21.81818199157715px;\">》</span><br />\r\n', 1, 0, '未知', '关于,转发,《,中国共产党廉政自律准则,》,和,', '2015-11-03 03:32:43', '2020-06-02 02:11:02', NULL),
(140, 151, 7, '中共中央关于制定国民经济和社会发展第十三个五年规划的建议', 'admin', '2015年10月29日中国共产党第十八届中央委员会第五次全体会议通过 到二〇二〇年全面建成小康社会,是我们党确定的两个一百年奋斗目标的第一个百年奋斗目标。十三五时期是全面', '', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\">2015年10月29日中国共产党第十八届中央委员会第五次全体会议通过</span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 到二〇二〇年全面建成小康社会,是我们党确定的&ldquo;两个一百年&rdquo;奋斗目标的第一个百年奋斗目标。&ldquo;十三五&rdquo;时期是全面建成小康社会决胜阶段,&ldquo;十三五&rdquo;规划必须紧紧围绕实现这个奋斗目标来制定。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;中国共产党第十八届中央委员会第五次全体会议全面分析国际国内形势,认为如期全面建成小康社会既具有充分条件也面临艰巨任务,必须在新中国成立特别是改革开放以来打下的坚实基础上坚定信心、锐意进取、奋发有为。全会研究了&ldquo;十三五&rdquo;时期我国发展的一系列重大问题,就制定&ldquo;十三五&rdquo;规划提出以下建议。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>一、全面建成小康社会决胜阶段的形势和指导思想</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)&ldquo;十二五&rdquo;时期我国发展取得重大成就。&ldquo;十二五&rdquo;时期是我国发展很不平凡的五年。面对错综复杂的国际环境和艰巨繁重的国内改革发展稳定任务,我们党团结带领全国各族人民顽强拼搏、开拓创新,奋力开创了党和国家事业发展新局面。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;我们妥善应对国际金融危机持续影响等一系列重大风险挑战,适应经济发展新常态,不断创新宏观调控方式,推动形成经济结构优化、发展动力转换、发展方式转变加快的良好态势。我国经济总量稳居世界第二位,十三亿多人口的人均国内生产总值增至七千八百美元左右。第三产业增加值占国内生产总值比重超过第二产业,基础设施水平全面跃升,农业连续增产,常住人口城镇化率达到百分之五十五,一批重大科技成果达到世界先进水平。公共服务体系基本建立、覆盖面持续扩大,新增就业持续增加,贫困人口大幅减少,生态文明建设取得新进展,人民生活水平和质量加快提高。全面深化改革有力推进,人民民主不断扩大,依法治国开启新征程。全方位外交取得重大进展,对外开放不断深入,我国成为全球第一货物贸易大国和主要对外投资大国。中华民族伟大复兴的中国梦和社会主义核心价值观深入人心,国家文化软实力不断增强。中国特色军事变革成就显著,强军兴军迈出新步伐。全面从严治党开创新局面,党的群众路线教育实践活动成果丰硕,党风廉政建设成效显著,赢得了党心民心。&ldquo;十二五&rdquo;规划目标即将胜利实现,我国经济实力、科技实力、国防实力、国际影响力又上了一个大台阶。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;尤为重要的是,党的十八大以来,以习近平同志为总书记的党中央毫不动摇坚持和发展中国特色社会主义,勇于实践、善于创新,深化对共产党执政规律、社会主义建设规律、人类社会发展规律的认识,形成一系列治国理政新理念新思想新战略,为在新的历史条件下深化改革开放、加快推进社会主义现代化提供了科学理论指导和行动指南。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)&ldquo;十三五&rdquo;时期我国发展环境的基本特征。和平与发展的时代主题没有变,世界多极化、经济全球化、文化多样化、社会信息化深入发展,世界经济在深度调整中曲折复苏,新一轮科技革命和产业变革蓄势待发,全球治理体系深刻变革,发展中国家群体力量继续增强,国际力量对比逐步趋向平衡。同时,国际金融危机深层次影响在相当长时期依然存在,全球经济贸易增长乏力,保护主义抬头,地缘政治关系复杂变化,传统安全威胁和非传统安全威胁交织,外部环境不稳定不确定因素增多。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;我国物质基础雄厚、人力资本丰富、市场空间广阔、发展潜力巨大,经济发展方式加快转变,新的增长动力正在孕育形成,经济长期向好基本面没有改变。同时,发展不平衡、不协调、不可持续问题仍然突出,主要是发展方式粗放,创新能力不强,部分行业产能过剩严重,企业效益下滑,重大安全事故频发;城乡区域发展不平衡;资源约束趋紧,生态环境恶化趋势尚未得到根本扭转;基本公共服务供给不足,收入差距较大,人口老龄化加快,消除贫困任务艰巨;人们文明素质和社会文明程度有待提高;法治建设有待加强;领导干部思想作风和能力水平有待提高,党员、干部先锋模范作用有待强化。我们必须增强忧患意识、责任意识,着力在优化结构、增强动力、化解矛盾、补齐短板上取得突破性进展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;综合判断,我国发展仍处于可以大有作为的重要战略机遇期,也面临诸多矛盾叠加、风险隐患增多的严峻挑战。我们要准确把握战略机遇期内涵的深刻变化,更加有效地应对各种风险和挑战,继续集中力量把自己的事情办好,不断开拓发展新境界。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)&ldquo;十三五&rdquo;时期我国发展的指导思想。高举中国特色社会主义伟大旗帜,全面贯彻党的十八大和十八届三中、四中全会精神,以马克思列宁主义、毛泽东思想、邓小平理论、&ldquo;三个代表&rdquo;重要思想、科学发展观为指导,深入贯彻习近平总书记系列重要讲话精神,坚持全面建成小康社会、全面深化改革、全面依法治国、全面从严治党的战略布局,坚持发展是第一要务,以提高发展质量和效益为中心,加快形成引领经济发展新常态的体制机制和发展方式,保持战略定力,坚持稳中求进,统筹推进经济建设、政治建设、文化建设、社会建设、生态文明建设和党的建设,确保如期全面建成小康社会,为实现第二个百年奋斗目标、实现中华民族伟大复兴的中国梦奠定更加坚实的基础。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;如期实现全面建成小康社会奋斗目标,推动经济社会持续健康发展,必须遵循以下原则。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持人民主体地位。人民是推动发展的根本力量,实现好、维护好、发展好最广大人民根本利益是发展的根本目的。必须坚持以人民为中心的发展思想,把增进人民福祉、促进人的全面发展作为发展的出发点和落脚点,发展人民民主,维护社会公平正义,保障人民平等参与、平等发展权利,充分调动人民积极性、主动性、创造性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持科学发展。发展是硬道理,发展必须是科学发展。我国仍处于并将长期处于社会主义初级阶段,基本国情和社会主要矛盾没有变,这是谋划发展的基本依据。必须坚持以经济建设为中心,从实际出发,把握发展新特征,加大结构性改革力度,加快转变经济发展方式,实现更高质量、更有效率、更加公平、更可持续的发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持深化改革。改革是发展的强大动力。必须按照完善和发展中国特色社会主义制度、推进国家治理体系和治理能力现代化的总目标,健全使市场在资源配置中起决定性作用和更好发挥政府作用的制度体系,以经济体制改革为重点,加快完善各方面体制机制,破除一切不利于科学发展的体制机制障碍,为发展提供持续动力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持依法治国。法治是发展的可靠保障。必须坚定不移走中国特色社会主义法治道路,加快建设中国特色社会主义法治体系,建设社会主义法治国家,推进科学立法、严格执法、公正司法、全民守法,加快建设法治经济和法治社会,把经济社会发展纳入法治轨道。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持统筹国内国际两个大局。全方位对外开放是发展的必然要求。必须坚持打开国门搞建设,既立足国内,充分运用我国资源、市场、制度等优势,又重视国内国际经济联动效应,积极应对外部环境变化,更好利用两个市场、两种资源,推动互利共赢、共同发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持党的领导。党的领导是中国特色社会主义制度的最大优势,是实现经济社会持续健康发展的根本政治保证。必须贯彻全面从严治党要求,不断增强党的创造力、凝聚力、战斗力,不断提高党的执政能力和执政水平,确保我国发展航船沿着正确航道破浪前进。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>二、&ldquo;十三五&rdquo;时期经济社会发展的主要目标和基本理念</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)全面建成小康社会新的目标要求。党的十六大提出全面建设小康社会奋斗目标以来,全党全国各族人民接续奋斗,各项事业取得重大进展。今后五年,要在已经确定的全面建成小康社会目标要求的基础上,努力实现以下新的目标要求。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;经济保持中高速增长。在提高发展平衡性、包容性、可持续性的基础上,到二〇二〇年国内生产总值和城乡居民人均收入比二〇一〇年翻一番。主要经济指标平衡协调,发展空间格局得到优化,投资效率和企业效率明显上升,工业化和信息化融合发展水平进一步提高,产业迈向中高端水平,先进制造业加快发展,新产业新业态不断成长,服务业比重进一步上升,消费对经济增长贡献明显加大。户籍人口城镇化率加快提高。农业现代化取得明显进展。迈进创新型国家和人才强国行列。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;人民生活水平和质量普遍提高。就业比较充分,就业、教育、文化、社保、医疗、住房等公共服务体系更加健全,基本公共服务均等化水平稳步提高。教育现代化取得重要进展,劳动年龄人口受教育年限明显增加。收入差距缩小,中等收入人口比重上升。我国现行标准下农村贫困人口实现脱贫,贫困县全部摘帽,解决区域性整体贫困。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;国民素质和社会文明程度显著提高。中国梦和社会主义核心价值观更加深入人心,爱国主义、集体主义、社会主义思想广泛弘扬,向上向善、诚信互助的社会风尚更加浓厚,人民思想道德素质、科学文化素质、健康素质明显提高,全社会法治意识不断增强。公共文化服务体系基本建成,文化产业成为国民经济支柱性产业。中华文化影响持续扩大。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;生态环境质量总体改善。生产方式和生活方式绿色、低碳水平上升。能源资源开发利用效率大幅提高,能源和水资源消耗、建设用地、碳排放总量得到有效控制,主要污染物排放总量大幅减少。主体功能区布局和生态安全屏障基本形成。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;各方面制度更加成熟更加定型。国家治理体系和治理能力现代化取得重大进展,各领域基础性制度体系基本形成。人民民主更加健全,法治政府基本建成,司法公信力明显提高。人权得到切实保障,产权得到有效保护。开放型经济新体制基本形成。中国特色现代军事体系更加完善。党的建设制度化水平显著提高。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)完善发展理念。实现&ldquo;十三五&rdquo;时期发展目标,破解发展难题,厚植发展优势,必须牢固树立创新、协调、绿色、开放、共享的发展理念。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;创新是引领发展的第一动力。必须把创新摆在国家发展全局的核心位置,不断推进理论创新、制度创新、科技创新、文化创新等各方面创新,让创新贯穿党和国家一切工作,让创新在全社会蔚然成风。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;协调是持续健康发展的内在要求。必须牢牢把握中国特色社会主义事业总体布局,正确处理发展中的重大关系,重点促进城乡区域协调发展,促进经济社会协调发展,促进新型工业化、信息化、城镇化、农业现代化同步发展,在增强国家硬实力的同时注重提升国家软实力,不断增强发展整体性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;绿色是永续发展的必要条件和人民对美好生活追求的重要体现。必须坚持节约资源和保护环境的基本国策,坚持可持续发展,坚定走生产发展、生活富裕、生态良好的文明发展道路,加快建设资源节约型、环境友好型社会,形成人与自然和谐发展现代化建设新格局,推进美丽中国建设,为全球生态安全作出新贡献。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;开放是国家繁荣发展的必由之路。必须顺应我国经济深度融入世界经济的趋势,奉行互利共赢的开放战略,坚持内外需协调、进出口平衡、引进来和走出去并重、引资和引技引智并举,发展更高层次的开放型经济,积极参与全球经济治理和公共产品供给,提高我国在全球经济治理中的制度性话语权,构建广泛的利益共同体。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;共享是中国特色社会主义的本质要求。必须坚持发展为了人民、发展依靠人民、发展成果由人民共享,作出更有效的制度安排,使全体人民在共建共享发展中有更多获得感,增强发展动力,增进人民团结,朝着共同富裕方向稳步前进。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持创新发展、协调发展、绿色发展、开放发展、共享发展,是关系我国发展全局的一场深刻变革。全党同志要充分认识这场变革的重大现实意义和深远历史意义,统一思想,协调行动,深化改革,开拓前进,推动我国发展迈上新台阶。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>三、坚持创新发展,着力提高发展质量和效益</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;在国际发展竞争日趋激烈和我国发展动力转换的形势下,必须把发展基点放在创新上,形成促进创新的体制架构,塑造更多依靠创新驱动、更多发挥先发优势的引领型发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)培育发展新动力。优化劳动力、资本、土地、技术、管理等要素配置,激发创新创业活力,推动大众创业、万众创新,释放新需求,创造新供给,推动新技术、新产业、新业态蓬勃发展,加快实现发展动力转换。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发挥消费对增长的基础作用,着力扩大居民消费,引导消费朝着智能、绿色、健康、安全方向转变,以扩大服务消费为重点带动消费结构升级。促进流通信息化、标准化、集约化。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发挥投资对增长的关键作用,深化投融资体制改革,优化投资结构,增加有效投资。发挥财政资金撬动功能,创新融资方式,带动更多社会资本参与投资。创新公共基础设施投融资体制,推广政府和社会资本合作模式。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发挥出口对增长的促进作用,增强对外投资和扩大出口结合度,培育以技术、标准、品牌、质量、服务为核心的对外经济新优势。实施优进优出战略,推进国际产能和装备制造合作,提高劳动密集型产品科技含量和附加值,营造资本和技术密集型产业新优势,提高我国产业在全球价值链中的地位。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)拓展发展新空间。用发展新空间培育发展新动力,用发展新动力开拓发展新空间。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展区域发展空间。以区域发展总体战略为基础,以&ldquo;一带一路&rdquo;建设、京津冀协同发展、长江经济带建设为引领,形成沿海沿江沿线经济带为主的纵向横向经济轴带。发挥城市群辐射带动作用,优化发展京津冀、长三角、珠三角三大城市群,形成东北地区、中原地区、长江中游、成渝地区、关中平原等城市群。发展一批中心城市,强化区域服务功能。支持绿色城市、智慧城市、森林城市建设和城际基础设施互联互通。推进重点地区一体发展,培育壮大若干重点经济区。推进城乡发展一体化,开辟农村广阔发展空间。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展产业发展空间。支持节能环保、生物技术、信息技术、智能制造、高端装备、新能源等新兴产业发展,支持传统产业优化升级。推广新型孵化模式,鼓励发展众创、众包、众扶、众筹空间。发展天使、创业、产业投资,深化创业板、新三板改革。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展基础设施建设空间。实施重大公共设施和基础设施工程。实施网络强国战略,加快构建高速、移动、安全、泛在的新一代信息基础设施。加快完善水利、铁路、公路、水运、民航、通用航空、管道、邮政等基础设施网络。完善能源安全储备制度。加强城市公共交通、防洪防涝等设施建设。实施城市地下管网改造工程。加快开放电力、电信、交通、石油、天然气、市政公用等自然垄断行业的竞争性业务。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展网络经济空间。实施&ldquo;互联网+&rdquo;行动计划,发展物联网技术和应用,发展分享经济,促进互联网和经济社会融合发展。实施国家大数据战略,推进数据资源开放共享。完善电信普遍服务机制,开展网络提速降费行动,超前布局下一代互联网。推进产业组织、商业模式、供应链、物流链创新,支持基于互联网的各类创新。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展蓝色经济空间。坚持陆海统筹,壮大海洋经济,科学开发海洋资源,保护海洋生态环境,维护我国海洋权益,建设海洋强国。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)深入实施创新驱动发展战略。发挥科技创新在全面创新中的引领作用,加强基础研究,强化原始创新、集成创新和引进消化吸收再创新。推进有特色高水平大学和科研院所建设,鼓励企业开展基础性前沿性创新研究,重视颠覆性技术创新。实施一批国家重大科技项目,在重大创新领域组建一批国家实验室。积极提出并牵头组织国际大科学计划和大科学工程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动政府职能从研发管理向创新服务转变。完善国家科技决策咨询制度。坚持战略和前沿导向,集中支持事关发展全局的基础研究和共性关键技术研究,加快突破新一代信息通信、新能源、新材料、航空航天、生物医药、智能制造等领域核心技术。瞄准瓶颈制约问题,制定系统性技术解决方案。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;强化企业创新主体地位和主导作用,形成一批有国际竞争力的创新型领军企业,支持科技型中小企业健康发展。依托企业、高校、科研院所建设一批国家技术创新中心,形成若干具有强大带动力的创新型城市和区域创新中心。完善企业研发费用加计扣除政策,扩大固定资产加速折旧实施范围,推动设备更新和新技术应用。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化科技体制改革,引导构建产业技术创新联盟,推动跨领域跨行业协同创新,促进科技与经济深度融合。加强技术和知识产权交易平台建设,建立从实验研究、中试到生产的全过程科技创新融资模式,促进科技成果资本化、产业化。构建普惠性创新支持政策体系,加大金融支持和税收优惠力度。深化知识产权领域改革,加强知识产权保护。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扩大高校和科研院所自主权,赋予创新领军人才更大人财物支配权、技术路线决策权。实行以增加知识价值为导向的分配政策,提高科研人员成果转化收益分享比例,鼓励人才弘扬奉献精神。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)大力推进农业现代化。农业是全面建成小康社会、实现现代化的基础。加快转变农业发展方式,发展多种形式适度规模经营,发挥其在现代农业建设中的引领作用。着力构建现代农业产业体系、生产体系、经营体系,提高农业质量效益和竞争力,推动粮经饲统筹、农林牧渔结合、种养加一体、一二三产业融合发展,走产出高效、产品安全、资源节约、环境友好的农业现代化道路。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;稳定农村土地承包关系,完善土地所有权、承包权、经营权分置办法,依法推进土地经营权有序流转,构建培育新型农业经营主体的政策体系。培养新型职业农民。深化农村土地制度改革。完善农村集体产权权能。深化农村金融改革,完善农业保险制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持最严格的耕地保护制度,坚守耕地红线,实施藏粮于地、藏粮于技战略,提高粮食产能,确保谷物基本自给、口粮绝对安全。全面划定永久基本农田,大规模推进农田水利、土地整治、中低产田改造和高标准农田建设,加强粮食等大宗农产品主产区建设,探索建立粮食生产功能区和重要农产品生产保护区。优化农业生产结构和区域布局,推进产业链和价值链建设,开发农业多种功能,提高农业综合效益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进农业标准化和信息化。健全从农田到餐桌的农产品质量安全全过程监管体系、现代农业科技创新推广体系、农业社会化服务体系。发展现代种业,提高农业机械化水平。持续增加农业投入,完善农业补贴政策。改革农产品价格形成机制,完善粮食等重要农产品收储制度。加强农产品流通设施和市场建设。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)构建产业新体系。加快建设制造强国,实施《中国制造二〇二五》。引导制造业朝着分工细化、协作紧密方向发展,促进信息技术向市场、设计、生产等环节渗透,推动生产方式向柔性、智能、精细转变。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施工业强基工程,开展质量品牌提升行动,支持企业瞄准国际同行业标杆推进技术改造,全面提高产品技术、工艺装备、能效环保等水平。更加注重运用市场机制、经济手段、法治办法化解产能过剩,加大政策引导力度,完善企业退出机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;支持战略性新兴产业发展,发挥产业政策导向和促进竞争功能,更好发挥国家产业投资引导基金作用,培育一批战略性产业。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施智能制造工程,构建新型制造体系,促进新一代信息通信技术、高档数控机床和机器人、航空航天装备、海洋工程装备及高技术船舶、先进轨道交通装备、节能与新能源汽车、电力装备、农机装备、新材料、生物医药及高性能医疗器械等产业发展壮大。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;开展加快发展现代服务业行动,放宽市场准入,促进服务业优质高效发展。推动生产性服务业向专业化和价值链高端延伸、生活性服务业向精细和高品质转变,推动制造业由生产型向生产服务型转变。大力发展旅游业。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)构建发展新体制。加快形成有利于创新发展的市场环境、产权制度、投融资体制、分配制度、人才培养引进使用机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化行政管理体制改革,进一步转变政府职能,持续推进简政放权、放管结合、优化服务,提高政府效能,激发市场活力和社会创造力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持公有制为主体、多种所有制经济共同发展。毫不动摇巩固和发展公有制经济,毫不动摇鼓励、支持、引导非公有制经济发展。推进产权保护法治化,依法保护各种所有制经济权益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化国有企业改革,增强国有经济活力、控制力、影响力、抗风险能力。分类推进国有企业改革,完善现代企业制度。完善各类国有资产管理体制,以管资本为主加强国有资产监管,防止国有资产流失。健全国有资本合理流动机制,推进国有资本布局战略性调整,引导国有资本更多投向关系国家安全、国民经济命脉的重要行业和关键领域,坚定不移把国有企业做强做优做大,更好服务于国家战略目标。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;鼓励民营企业依法进入更多领域,引入非国有资本参与国有企业改革,更好激发非公有制经济活力和创造力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;优化企业发展环境。开展降低实体经济企业成本行动,优化运营模式,增强盈利能力。限制政府对企业经营决策的干预,减少行政审批事项。清理和规范涉企行政事业性收费,减轻企业负担,完善公平竞争、促进企业健康发展的政策和制度。激发企业家精神,依法保护企业家财产权和创新收益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加快形成统一开放、竞争有序的市场体系,建立公平竞争保障机制,打破地域分割和行业垄断。深化市场配置要素改革,促进人才、资金、科研成果等在城乡、企业、高校、科研机构间有序流动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化财税体制改革,建立健全有利于转变经济发展方式、形成全国统一市场、促进社会公平正义的现代财政制度,建立税种科学、结构优化、法律健全、规范公平、征管高效的税收制度。建立事权和支出责任相适应的制度,适度加强中央事权和支出责任。调动各方面积极性,考虑税种属性,进一步理顺中央和地方收入划分。建立全面规范、公开透明预算制度,完善政府预算体系,实施跨年度预算平衡机制和中期财政规划管理。建立规范的地方政府举债融资体制。健全优先使用创新产品、绿色产品的政府采购政策。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加快金融体制改革,提高金融服务实体经济效率。健全商业性金融、开发性金融、政策性金融、合作性金融分工合理、相互补充的金融机构体系。构建多层次、广覆盖、有差异的银行机构体系,扩大民间资本进入银行业,发展普惠金融,着力加强对中小微企业、农村特别是贫困地区金融服务。积极培育公开透明、健康发展的资本市场,推进股票和债券发行交易制度改革,提高直接融资比重,降低杠杆率。开发符合创新需求的金融服务,推进高收益债券及股债相结合的融资方式。推进汇率和利率市场化,提高金融机构管理水平和服务质量,降低企业融资成本。规范发展互联网金融。加快建立巨灾保险制度,探索建立保险资产交易机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强金融宏观审慎管理制度建设,加强统筹协调,改革并完善适应现代金融市场发展的金融监管框架,健全符合我国国情和国际标准的监管规则,实现金融风险监管全覆盖。完善国有金融资本和外汇储备管理制度,建立安全高效的金融基础设施,有效运用和发展金融风险管理工具。防止发生系统性区域性金融风险。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(七)创新和完善宏观调控方式。按照总量调节和定向施策并举、短期和中长期结合、国内和国际统筹、改革和发展协调的要求,完善宏观调控,采取相机调控、精准调控措施,适时预调微调,更加注重扩大就业、稳定物价、调整结构、提高效益、防控风险、保护环境。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;依据国家中长期发展规划目标和总供求格局实施宏观调控,稳定政策基调,增强可预期性和透明度,创新调控思路和政策工具,在区间调控基础上加大定向调控力度,增强针对性和准确性。完善以财政政策、货币政策为主,产业政策、区域政策、投资政策、消费政策、价格政策协调配合的政策体系,增强财政货币政策协调性。运用大数据技术,提高经济运行信息及时性和准确性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;减少政府对价格形成的干预,全面放开竞争性领域商品和服务价格,放开电力、石油、天然气、交通运输、电信等领域竞争性环节价格。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;建立风险识别和预警机制,以可控方式和节奏主动释放风险,重点提高财政、金融、能源、矿产资源、水资源、粮食、生态环保、安全生产、网络安全等方面风险防控能力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>四、坚持协调发展,着力形成平衡发展结构</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;增强发展协调性,必须坚持区域协同、城乡一体、物质文明精神文明并重、经济建设国防建设融合,在协调发展中拓宽发展空间,在加强薄弱领域中增强发展后劲。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)推动区域协调发展。塑造要素有序自由流动、主体功能约束有效、基本公共服务均等、资源环境可承载的区域协调发展新格局。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深入实施西部大开发,支持西部地区改善基础设施,发展特色优势产业,强化生态环境保护。推动东北地区等老工业基地振兴,促进中部地区崛起,加大国家支持力度,加快市场取向改革。支持东部地区率先发展,更好辐射带动其他地区。支持革命老区、民族地区、边疆地区、贫困地区加快发展,加大对资源枯竭、产业衰退、生态严重退化等困难地区的支持力度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;培育若干带动区域协同发展的增长极。推动京津冀协同发展,优化城市空间布局和产业结构,有序疏解北京非首都功能,推进交通一体化,扩大环境容量和生态空间,探索人口经济密集地区优化开发新模式。推进长江经济带建设,改善长江流域生态环境,高起点建设综合立体交通走廊,引导产业优化布局和分工协作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)推动城乡协调发展。坚持工业反哺农业、城市支持农村,健全城乡发展一体化体制机制,推进城乡要素平等交换、合理配置和基本公共服务均等化。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发展特色县域经济,加快培育中小城市和特色小城镇,促进农产品精深加工和农村服务业发展,拓展农民增收渠道,完善农民收入增长支持政策体系,增强农村发展内生动力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进以人为核心的新型城镇化。提高城市规划、建设、管理水平。深化户籍制度改革,促进有能力在城镇稳定就业和生活的农业转移人口举家进城落户,并与城镇居民有同等权利和义务。实施居住证制度,努力实现基本公共服务常住人口全覆盖。健全财政转移支付同农业转移人口市民化挂钩机制,建立城镇建设用地增加规模同吸纳农业转移人口落户数量挂钩机制。维护进城落户农民土地承包权、宅基地使用权、集体收益分配权,支持引导其依法自愿有偿转让上述权益。深化住房制度改革。加大城镇棚户区和城乡危房改造力度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;促进城乡公共资源均衡配置,健全农村基础设施投入长效机制,把社会事业发展重点放在农村和接纳农业转移人口较多的城镇,推动城镇公共服务向农村延伸。提高社会主义新农村建设水平,开展农村人居环境整治行动,加大传统村落民居和历史文化名村名镇保护力度,建设美丽宜居乡村。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)推动物质文明和精神文明协调发展。坚持&ldquo;两手抓、两手都要硬&rdquo;,坚持社会主义先进文化前进方向,坚持以人民为中心的工作导向,坚持把社会效益放在首位、社会效益和经济效益相统一,坚定文化自信,增强文化自觉,加快文化改革发展,加强社会主义精神文明建设,建设社会主义文化强国。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持用邓小平理论、&ldquo;三个代表&rdquo;重要思想、科学发展观和习近平总书记系列重要讲话精神武装全党、教育人民,用中国梦和社会主义核心价值观凝聚共识、汇聚力量。深化马克思主义理论研究和建设工程,加强思想道德建设和社会诚信建设,增强国家意识、法治意识、社会责任意识,倡导科学精神,弘扬中华传统美德,注重通过法律和政策向社会传导正确价值取向。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扶持优秀文化产品创作生产,加强文化人才培养,繁荣发展文学艺术、新闻出版、广播影视事业。实施哲学社会科学创新工程,建设中国特色新型智库。构建中华优秀传统文化传承体系,加强文化遗产保护,振兴传统工艺,实施中华典籍整理工程。加强和改进基层宣传思想文化工作,深化各类群众性精神文明创建活动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化文化体制改革,实施重大文化工程,完善公共文化服务体系、文化产业体系、文化市场体系。推动基本公共文化服务标准化、均等化发展,引导文化资源向城乡基层倾斜,创新公共文化服务方式,保障人民基本文化权益。推动文化产业结构优化升级,发展骨干文化企业和创意文化产业,培育新型文化业态,扩大和引导文化消费。普及科学知识。倡导全民阅读。发展体育事业,推广全民健身,增强人民体质。做好二〇二二年北京冬季奥运会筹办工作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;牢牢把握正确舆论导向,健全社会舆情引导机制,传播正能量。加强网上思想文化阵地建设,实施网络内容建设工程,发展积极向上的网络文化,净化网络环境。推动传统媒体和新兴媒体融合发展,加快媒体数字化建设,打造一批新型主流媒体。优化媒体结构,规范传播秩序。加强国际传播能力建设,创新对外传播、文化交流、文化贸易方式,推动中华文化走出去。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)推动经济建设和国防建设融合发展。坚持发展和安全兼顾、富国和强军统一,实施军民融合发展战略,形成全要素、多领域、高效益的军民深度融合发展格局。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;同全面建成小康社会进程相一致,全面推进国防和军队建设。以党在新形势下的强军目标为引领,贯彻新形势下军事战略方针,加强军队党的建设和思想政治建设,加强各方向各领域军事斗争准备,加强新型作战力量建设,加快推进国防和军队改革,深入推进依法治军、从严治军。到二〇二〇年,基本完成国防和军队改革目标任务,基本实现机械化,信息化取得重大进展,构建能够打赢信息化战争、有效履行使命任务的中国特色现代军事力量体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;健全军民融合发展的组织管理体系、工作运行体系、政策制度体系。建立国家和各省(自治区、直辖市)军民融合领导机构。制定统筹经济建设和国防建设专项规划。深化国防科技工业体制改革,建立国防科技协同创新机制。推进军民融合发展立法。在海洋、太空、网络空间等领域推出一批重大项目和举措,打造一批军民融合创新示范区,增强先进技术、产业产品、基础设施等军民共用的协调性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强全民国防教育和后备力量建设。加强现代化武装警察部队建设。密切军政军民团结。党政军警民合力强边固防。各级党委和政府要积极支持国防建设和军队改革,人民解放军和武警部队要积极支援经济社会建设。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>五、坚持绿色发展,着力改善生态环境</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持绿色富国、绿色惠民,为人民提供更多优质生态产品,推动形成绿色发展方式和生活方式,协同推进人民富裕、国家富强、中国美丽。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)促进人与自然和谐共生。有度有序利用自然,调整优化空间结构,划定农业空间和生态空间保护红线,构建科学合理的城市化格局、农业发展格局、生态安全格局、自然岸线格局。设立统一规范的国家生态文明试验区。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;根据资源环境承载力调节城市规模,依托山水地貌优化城市形态和功能,实行绿色规划、设计、施工标准。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;支持绿色清洁生产,推进传统制造业绿色改造,推动建立绿色低碳循环发展产业体系,鼓励企业工艺技术装备更新改造。发展绿色金融,设立绿色发展基金。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强资源环境国情和生态价值观教育,培养公民环境意识,推动全社会形成绿色消费自觉。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)加快建设主体功能区。发挥主体功能区作为国土空间开发保护基础制度的作用,落实主体功能区规划,完善政策,发布全国主体功能区规划图和农产品主产区、重点生态功能区目录,推动各地区依据主体功能定位发展。以主体功能区规划为基础统筹各类空间性规划,推进&ldquo;多规合一&rdquo;。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动京津冀、长三角、珠三角等优化开发区域产业结构向高端高效发展,防治&ldquo;城市病&rdquo;,逐年减少建设用地增量。推动重点开发区域提高产业和人口集聚度。重点生态功能区实行产业准入负面清单。加大对农产品主产区和重点生态功能区的转移支付力度,强化激励性补偿,建立横向和流域生态补偿机制。整合设立一批国家公园。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;维护生物多样性,实施濒危野生动植物抢救性保护工程,建设救护繁育中心和基因库。强化野生动植物进出口管理,严防外来有害物种入侵。严厉打击象牙等野生动植物制品非法交易。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;以市县级行政区为单元,建立由空间规划、用途管制、领导干部自然资源资产离任审计、差异化绩效考核等构成的空间治理体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)推动低碳循环发展。推进能源革命,加快能源技术创新,建设清洁低碳、安全高效的现代能源体系。提高非化石能源比重,推动煤炭等化石能源清洁高效利用。加快发展风能、太阳能、生物质能、水能、地热能,安全高效发展核电。加强储能和智能电网建设,发展分布式能源,推行节能低碳电力调度。有序开放开采权,积极开发天然气、煤层气、页岩气。改革能源体制,形成有效竞争的市场机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进交通运输低碳发展,实行公共交通优先,加强轨道交通建设,鼓励自行车等绿色出行。实施新能源汽车推广计划,提高电动车产业化水平。提高建筑节能标准,推广绿色建筑和建材。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;主动控制碳排放,加强高能耗行业能耗管控,有效控制电力、钢铁、建材、化工等重点行业碳排放,支持优化开发区域率先实现碳排放峰值目标,实施近零碳排放区示范工程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施循环发展引领计划,推行企业循环式生产、产业循环式组合、园区循环式改造,减少单位产出物质消耗。加强生活垃圾分类回收和再生资源回收的衔接,推进生产系统和生活系统循环链接。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)全面节约和高效利用资源。坚持节约优先,树立节约集约循环利用的资源观。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;强化约束性指标管理,实行能源和水资源消耗、建设用地等总量和强度双控行动。实施全民节能行动计划,提高节能、节水、节地、节材、节矿标准,开展能效、水效领跑者引领行动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实行最严格的水资源管理制度,以水定产、以水定城,建设节水型社会。合理制定水价,编制节水规划,实施雨洪资源利用、再生水利用、海水淡化工程,建设国家地下水监测系统,开展地下水超采区综合治理。坚持最严格的节约用地制度,调整建设用地结构,降低工业用地比例,推进城镇低效用地再开发和工矿废弃地复垦,严格控制农村集体建设用地规模。探索实行耕地轮作休耕制度试点。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;建立健全用能权、用水权、排污权、碳排放权初始分配制度,创新有偿使用、预算管理、投融资机制,培育和发展交易市场。推行合同能源管理和合同节水管理。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;倡导合理消费,力戒奢侈浪费,制止奢靡之风。在生产、流通、仓储、消费各环节落实全面节约。管住公款消费,深入开展反过度包装、反食品浪费、反过度消费行动,推动形成勤俭节约的社会风尚。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)加大环境治理力度。以提高环境质量为核心,实行最严格的环境保护制度,形成政府、企业、公众共治的环境治理体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进多污染物综合防治和环境治理,实行联防联控和流域共治,深入实施大气、水、土壤污染防治行动计划。实施工业污染源全面达标排放计划,实现城镇生活污水垃圾处理设施全覆盖和稳定运行。扩大污染物总量控制范围,将细颗粒物等环境质量指标列入约束性指标。坚持城乡环境治理并重,加大农业面源污染防治力度,统筹农村饮水安全、改水改厕、垃圾处理,推进种养业废弃物资源化利用、无害化处置。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;改革环境治理基础制度,建立覆盖所有固定污染源的企业排放许可制,实行省以下环保机构监测监察执法垂直管理制度。建立全国统一的实时在线环境监控系统。健全环境信息公布制度。探索建立跨地区环保机构。开展环保督察巡视,严格环保执法。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)筑牢生态安全屏障。坚持保护优先、自然恢复为主,实施山水林田湖生态保护和修复工程,构建生态廊道和生物多样性保护网络,全面提升森林、河湖、湿地、草原、海洋等自然生态系统稳定性和生态服务功能。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;开展大规模国土绿化行动,加强林业重点工程建设,完善天然林保护制度,全面停止天然林商业性采伐,增加森林面积和蓄积量。发挥国有林区林场在绿化国土中的带动作用。扩大退耕还林还草,加强草原保护。严禁移植天然大树进城。创新产权模式,引导各方面资金投入植树造林。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强水生态保护,系统整治江河流域,连通江河湖库水系,开展退耕还湿、退养还滩。推进荒漠化、石漠化、水土流失综合治理。强化江河源头和水源涵养区生态保护。开展蓝色海湾整治行动。加强地质灾害防治。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>六、坚持开放发展,着力实现合作共赢</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;开创对外开放新局面,必须丰富对外开放内涵,提高对外开放水平,协同推进战略互信、经贸合作、人文交流,努力形成深度融合的互利合作格局。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)完善对外开放战略布局。推进双向开放,促进国内国际要素有序流动、资源高效配置、市场深度融合。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善对外开放区域布局,加强内陆沿边地区口岸和基础设施建设,开辟跨境多式联运交通走廊,发展外向型产业集群,形成各有侧重的对外开放基地。支持沿海地区全面参与全球经济合作和竞争,培育有全球影响力的先进制造基地和经济区。提高边境经济合作区、跨境经济合作区发展水平。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加快对外贸易优化升级,从外贸大国迈向贸易强国。完善对外贸易布局,创新外贸发展模式,加强营销和售后服务网络建设,提高传统优势产品竞争力,巩固出口市场份额,推动外贸向优质优价、优进优出转变,壮大装备制造等新的出口主导产业。发展服务贸易。实行积极的进口政策,向全球扩大市场开放。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善投资布局,扩大开放领域,放宽准入限制,积极有效引进境外资金和先进技术。支持企业扩大对外投资,推动装备、技术、标准、服务走出去,深度融入全球产业链、价值链、物流链,建设一批大宗商品境外生产基地,培育一批跨国企业。积极搭建国际产能和装备制造合作金融服务平台。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)形成对外开放新体制。完善法治化、国际化、便利化的营商环境,健全有利于合作共赢并同国际贸易投资规则相适应的体制机制。建立便利跨境电子商务等新型贸易方式的体制,健全服务贸易促进体系,全面实施单一窗口和通关一体化。提高自由贸易试验区建设质量,在更大范围推广复制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;全面实行准入前国民待遇加负面清单管理制度,促进内外资企业一视同仁、公平竞争。完善境外投资管理,健全对外投资促进政策和服务体系。有序扩大服务业对外开放,扩大银行、保险、证券、养老等市场准入。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扩大金融业双向开放。有序实现人民币资本项目可兑换,推动人民币加入特别提款权,成为可兑换、可自由使用货币。转变外汇管理和使用方式,从正面清单转变为负面清单。放宽境外投资汇兑限制,放宽企业和个人外汇管理要求,放宽跨国公司资金境外运作限制。加强国际收支监测,保持国际收支基本平衡。推进资本市场双向开放,改进并逐步取消境内外投资额度限制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动同更多国家签署高标准双边投资协定、司法协助协定,争取同更多国家互免或简化签证手续。构建海外利益保护体系。完善反洗钱、反恐怖融资、反逃税监管措施,完善风险防范体制机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)推进&ldquo;一带一路&rdquo;建设。秉持亲诚惠容,坚持共商共建共享原则,完善双边和多边合作机制,以企业为主体,实行市场化运作,推进同有关国家和地区多领域互利共赢的务实合作,打造陆海内外联动、东西双向开放的全面开放新格局。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进基础设施互联互通和国际大通道建设,共同建设国际经济合作走廊。加强能源资源合作,提高就地加工转化率。共建境外产业集聚区,推动建立当地产业体系,广泛开展教育、科技、文化、旅游、卫生、环保等领域合作,造福当地民众。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强同国际金融机构合作,参与亚洲基础设施投资银行、金砖国家新开发银行建设,发挥丝路基金作用,吸引国际资金共建开放多元共赢的金融合作平台。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)深化内地和港澳、大陆和台湾地区合作发展。全面准确贯彻&ldquo;一国两制&rdquo;、&ldquo;港人治港&rdquo;、&ldquo;澳人治澳&rdquo;、高度自治的方针,发挥港澳独特优势,提升港澳在国家经济发展和对外开放中的地位和功能,支持港澳发展经济、改善民生、推进民主、促进和谐。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;支持香港巩固国际金融、航运、贸易三大中心地位,参与国家双向开放、&ldquo;一带一路&rdquo;建设。支持香港强化全球离岸人民币业务枢纽地位,推动融资、商贸、物流、专业服务等向高端高增值方向发展。支持澳门建设世界旅游休闲中心、中国与葡语国家商贸合作服务平台,促进澳门经济适度多元可持续发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加大内地对港澳开放力度,加快前海、南沙、横琴等粤港澳合作平台建设。加深内地同港澳在社会、民生、科技、文化、教育、环保等领域交流合作。深化泛珠三角等区域合作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持&ldquo;九二共识&rdquo;和一个中国原则,秉持&ldquo;两岸一家亲&rdquo;,以互利共赢方式深化两岸经济合作。推动两岸产业合作协调发展、金融业合作及贸易投资等双向开放合作。推进海峡西岸经济区建设,打造平潭等对台合作平台。扩大两岸人员往来,深化两岸农业、文化、教育、科技、社会等领域交流合作,增进两岸同胞福祉,让更多台湾普通民众、青少年和中小企业受益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)积极参与全球经济治理。推动国际经济治理体系改革完善,积极引导全球经济议程,促进国际经济秩序朝着平等公正、合作共赢的方向发展。加强宏观经济政策国际协调,促进全球经济平衡、金融安全、经济稳定增长。积极参与网络、深海、极地、空天等新领域国际规则制定。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动多边贸易谈判进程,促进多边贸易体制均衡、共赢、包容发展,形成公正、合理、透明的国际经贸规则体系。支持发展中国家平等参与全球经济治理,促进国际货币体系和国际金融监管改革。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加快实施自由贸易区战略,推进区域全面经济伙伴关系协定谈判,推进亚太自由贸易区建设,致力于形成面向全球的高标准自由贸易区网络。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)积极承担国际责任和义务。坚持共同但有区别的责任原则、公平原则、各自能力原则,积极参与应对全球气候变化谈判,落实减排承诺。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扩大对外援助规模,完善对外援助方式,为发展中国家提供更多免费的人力资源、发展规划、经济政策等方面咨询培训,扩大科技教育、医疗卫生、防灾减灾、环境治理、野生动植物保护、减贫等领域对外合作和援助,加大人道主义援助力度。主动参与二〇三〇年可持续发展议程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;维护国际公共安全,反对一切形式的恐怖主义,积极支持并参与联合国维和行动,加强防扩散国际合作,参与管控热点敏感问题,共同维护国际通道安全。加强多边和双边协调,参与维护全球网络安全。推动国际反腐败合作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>七、坚持共享发展,着力增进人民福祉</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;按照人人参与、人人尽力、人人享有的要求,坚守底线、突出重点、完善制度、引导预期,注重机会公平,保障基本民生,实现全体人民共同迈入全面小康社会。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)增加公共服务供给。坚持普惠性、保基本、均等化、可持续方向,从解决人民最关心最直接最现实的利益问题入手,增强政府职责,提高公共服务共建能力和共享水平。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强义务教育、就业服务、社会保障、基本医疗和公共卫生、公共文化、环境保护等基本公共服务,努力实现全覆盖。加大对革命老区、民族地区、边疆地区、贫困地区的转移支付。加强对特定人群特殊困难的帮扶。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;创新公共服务提供方式,能由政府购买服务提供的,政府不再直接承办;能由政府和社会资本合作提供的,广泛吸引社会资本参与。加快社会事业改革。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)实施脱贫攻坚工程。农村贫困人口脱贫是全面建成小康社会最艰巨的任务。必须充分发挥政治优势和制度优势,坚决打赢脱贫攻坚战。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施精准扶贫、精准脱贫,因人因地施策,提高扶贫实效。分类扶持贫困家庭,对有劳动能力的支持发展特色产业和转移就业,对&ldquo;一方水土养不起一方人&rdquo;的实施扶贫搬迁,对生态特别重要和脆弱的实行生态保护扶贫,对丧失劳动能力的实施兜底性保障政策,对因病致贫的提供医疗救助保障。实行低保政策和扶贫政策衔接,对贫困人口应保尽保。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扩大贫困地区基础设施覆盖面,因地制宜解决通路、通水、通电、通网络等问题。对在贫困地区开发水电、矿产资源占用集体土地的,试行给原住居民集体股权方式进行补偿,探索对贫困人口实行资产收益扶持制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;提高贫困地区基础教育质量和医疗服务水平,推进贫困地区基本公共服务均等化。建立健全农村留守儿童和妇女、老人关爱服务体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实行脱贫工作责任制。进一步完善中央统筹、省(自治区、直辖市)负总责、市(地)县抓落实的工作机制。强化脱贫工作责任考核,对贫困县重点考核脱贫成效。加大中央和省级财政扶贫投入,发挥政策性金融和商业性金融的互补作用,整合各类扶贫资源,开辟扶贫开发新的资金渠道。健全东西部协作和党政机关、部队、人民团体、国有企业定点扶贫机制,激励各类企业、社会组织、个人自愿采取包干方式参与扶贫。把革命老区、民族地区、边疆地区、集中连片贫困地区作为脱贫攻坚重点。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)提高教育质量。全面贯彻党的教育方针,落实立德树人根本任务,加强社会主义核心价值观教育,培养德智体美全面发展的社会主义建设者和接班人。深化教育改革,把增强学生社会责任感、创新精神、实践能力作为重点任务贯彻到国民教育全过程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动义务教育均衡发展,全面提高教育教学质量。普及高中阶段教育,逐步分类推进中等职业教育免除学杂费,率先从建档立卡的家庭经济困难学生实施普通高中免除学杂费。发展学前教育,鼓励普惠性幼儿园发展。完善资助方式,实现家庭经济困难学生资助全覆盖。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;促进教育公平。加快城乡义务教育公办学校标准化建设,加强教师队伍特别是乡村教师队伍建设,推进城乡教师交流。办好特殊教育。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;提高高校教学水平和创新能力,使若干高校和一批学科达到或接近世界一流水平。建设现代职业教育体系,推进产教融合、校企合作。优化学科专业布局和人才培养机制,鼓励具备条件的普通本科高校向应用型转变。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;落实并深化考试招生制度改革和教育教学改革。建立个人学习账号和学分累计制度,畅通继续教育、终身学习通道。推进教育信息化,发展远程教育,扩大优质教育资源覆盖面。完善教育督导,加强社会监督。支持和规范民办教育发展,鼓励社会力量和民间资本提供多样化教育服务。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)促进就业创业。坚持就业优先战略,实施更加积极的就业政策,创造更多就业岗位,着力解决结构性就业矛盾。完善创业扶持政策,鼓励以创业带就业,建立面向人人的创业服务平台。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;统筹人力资源市场,打破城乡、地区、行业分割和身份、性别歧视,维护劳动者平等就业权利。加强对灵活就业、新就业形态的支持,促进劳动者自主就业。落实高校毕业生就业促进和创业引领计划,带动青年就业创业。加强就业援助,帮助就业困难者就业。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推行终身职业技能培训制度。实施新生代农民工职业技能提升计划。开展贫困家庭子女、未升学初高中毕业生、农民工、失业人员和转岗职工、退役军人免费接受职业培训行动。推行工学结合、校企合作的技术工人培养模式,推行企业新型学徒制。提高技术工人待遇,完善职称评定制度,推广专业技术职称、技能等级等同大城市落户挂钩做法。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;提高劳动力素质、劳动参与率、劳动生产率,增强劳动力市场灵活性,促进劳动力在地区、行业、企业之间自由流动。建立和谐劳动关系,维护职工和企业合法权益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善就业服务体系,提高就业服务能力。完善就业失业统计指标体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)缩小收入差距。坚持居民收入增长和经济增长同步、劳动报酬提高和劳动生产率提高同步,持续增加城乡居民收入。调整国民收入分配格局,规范初次分配,加大再分配调节力度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;健全科学的工资水平决定机制、正常增长机制、支付保障机制,推行企业工资集体协商制度。完善最低工资增长机制,完善市场评价要素贡献并按贡献分配的机制,完善适应机关事业单位特点的工资制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实行有利于缩小收入差距的政策,明显增加低收入劳动者收入,扩大中等收入者比重。加快建立综合和分类相结合的个人所得税制。多渠道增加居民财产性收入。规范收入分配秩序,保护合法收入,规范隐性收入,遏制以权力、行政垄断等非市场因素获取收入,取缔非法收入。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;支持慈善事业发展,广泛动员社会力量开展社会救济和社会互助、志愿服务活动。完善鼓励回馈社会、扶贫济困的税收政策。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)建立更加公平更可持续的社会保障制度。实施全民参保计划,基本实现法定人员全覆盖。坚持精算平衡,完善筹资机制,分清政府、企业、个人等的责任。适当降低社会保险费率。完善社会保险体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善职工养老保险个人账户制度,健全多缴多得激励机制。实现职工基础养老金全国统筹,建立基本养老金合理调整机制。拓宽社会保险基金投资渠道,加强风险管理,提高投资回报率。逐步提高国有资本收益上缴公共财政比例,划转部分国有资本充实社保基金。出台渐进式延迟退休年龄政策。发展职业年金、企业年金、商业养老保险。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;健全医疗保险稳定可持续筹资和报销比例调整机制,研究实行职工退休人员医保缴费参保政策。全面实施城乡居民大病保险制度。改革医保支付方式,发挥医保控费作用。改进个人账户,开展门诊费用统筹。实现跨省异地安置退休人员住院医疗费用直接结算。整合城乡居民医保政策和经办管理。鼓励发展补充医疗保险和商业健康保险。鼓励商业保险机构参与医保经办。将生育保险和基本医疗保险合并实施。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;统筹救助体系,强化政策衔接,推进制度整合,确保困难群众基本生活。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(七)推进健康中国建设。深化医药卫生体制改革,实行医疗、医保、医药联动,推进医药分开,实行分级诊疗,建立覆盖城乡的基本医疗卫生制度和现代医院管理制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;全面推进公立医院综合改革,坚持公益属性,破除逐利机制,建立符合医疗行业特点的人事薪酬制度。优化医疗卫生机构布局,健全上下联动、衔接互补的医疗服务体系,完善基层医疗服务模式,发展远程医疗。促进医疗资源向基层、农村流动,推进全科医生、家庭医生、急需领域医疗服务能力提高、电子健康档案等工作。鼓励社会力量兴办健康服务业,推进非营利性民营医院和公立医院同等待遇。加强医疗质量监管,完善纠纷调解机制,构建和谐医患关系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持中西医并重,促进中医药、民族医药发展。完善基本药物制度,健全药品供应保障机制,理顺药品价格,增加艾滋病防治等特殊药物免费供给。提高药品质量,确保用药安全。加强传染病、慢性病、地方病等重大疾病综合防治和职业病危害防治,通过多种方式降低大病慢性病医疗费用。倡导健康生活方式,加强心理健康服务。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施食品安全战略,形成严密高效、社会共治的食品安全治理体系,让人民群众吃得放心。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(八)促进人口均衡发展。坚持计划生育的基本国策,完善人口发展战略。全面实施一对夫妇可生育两个孩子政策。提高生殖健康、妇幼保健、托幼等公共服务水平。帮扶存在特殊困难的计划生育家庭。注重家庭发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;积极开展应对人口老龄化行动,弘扬敬老、养老、助老社会风尚,建设以居家为基础、社区为依托、机构为补充的多层次养老服务体系,推动医疗卫生和养老服务相结合,探索建立长期护理保险制度。全面放开养老服务市场,通过购买服务、股权合作等方式支持各类市场主体增加养老服务和产品供给。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持男女平等基本国策,保障妇女和未成年人权益。支持残疾人事业发展,健全扶残助残服务体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>八、加强和改善党的领导,为实现&ldquo;十三五&rdquo;规划提供坚强保证</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发展是党执政兴国的第一要务。各级党委必须深化对发展规律的认识,提高领导发展能力和水平,推进国家治理体系和治理能力现代化,更好推动经济社会发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)完善党领导经济社会发展工作体制机制。坚持党总揽全局、协调各方,发挥各级党委(党组)领导核心作用,加强制度化建设,改进工作体制机制和方式方法,强化全委会决策和监督作用。提高决策科学化水平,完善党委研究经济社会发展战略、定期分析经济形势、研究重大方针政策的工作机制,健全决策咨询机制。完善信息发布制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;优化领导班子知识结构和专业结构,注重培养选拔政治强、懂专业、善治理、敢担当、作风正的领导干部,提高专业化水平。深化干部人事制度改革,完善政绩考核评价体系和奖惩机制,调动各级干部工作积极性、主动性、创造性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强党的各级组织建设,强化基层党组织整体功能,发挥战斗堡垒作用和党员先锋模范作用,激励广大干部开拓进取、攻坚克难,更好带领群众全面建成小康社会。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;反腐倡廉建设永远在路上,反腐不能停步、不能放松。要坚持全面从严治党,落实&ldquo;三严三实&rdquo;要求,严明党的纪律和规矩,落实党风廉政建设主体责任和监督责任,健全改进作风长效机制,强化权力运行制约和监督,巩固反腐败成果,构建不敢腐、不能腐、不想腐的有效机制,努力实现干部清正、政府清廉、政治清明,为经济社会发展营造良好政治生态。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)动员人民群众团结奋斗。充分发扬民主,贯彻党的群众路线,提高宣传和组织群众能力,加强经济社会发展重大问题和涉及群众切身利益问题的协商,依法保障人民各项权益,激发各族人民建设祖国的主人翁意识。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强思想政治工作,创新群众工作体制机制和方式方法,注重发挥工会、共青团、妇联等群团组织的作用,正确处理人民内部矛盾,最大限度凝聚全社会推进改革发展、维护社会和谐稳定的共识和力量。高度重视做好意识形态领域工作,切实维护意识形态安全。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;巩固和发展最广泛的爱国统一战线,全面落实党的知识分子、民族、宗教、侨务等政策,充分发挥民主党派、工商联和无党派人士作用,深入开展民族团结进步宣传教育,引导宗教与社会主义社会相适应,促进政党关系、民族关系、宗教关系、阶层关系、海内外同胞关系和谐,巩固全国各族人民大团结,加强海内外中华儿女大团结。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)加快建设人才强国。深入实施人才优先发展战略,推进人才发展体制改革和政策创新,形成具有国际竞争力的人才制度优势。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动人才结构战略性调整,突出&ldquo;高精尖缺&rdquo;导向,实施重大人才工程,着力发现、培养、集聚战略科学家、科技领军人才、企业家人才、高技能人才队伍。实施更开放的创新人才引进政策,更大力度引进急需紧缺人才,聚天下英才而用之。发挥政府投入引导作用,鼓励企业、高校、科研院所、社会组织、个人等有序参与人才资源开发和人才引进。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;优化人力资本配置,清除人才流动障碍,提高社会横向和纵向流动性。完善人才评价激励机制和服务保障体系,营造有利于人人皆可成才和青年人才脱颖而出的社会环境,健全有利于人才向基层、中西部地区流动的政策体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)运用法治思维和法治方式推动发展。厉行法治是发展社会主义市场经济的内在要求。必须坚持依法执政,全面提高党依据宪法法律治国理政、依据党内法规管党治党的能力和水平。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强党对立法工作的领导。加快重点领域立法,坚持立改废释并举,深入推进科学立法、民主立法,加快形成完备的法律规范体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强法治政府建设,依法设定权力、行使权力、制约权力、监督权力,依法调控和治理经济,推行综合执法,实现政府活动全面纳入法治轨道。深化司法体制改革,尊重司法规律,促进司法公正,完善对权利的司法保障、对权力的司法监督。弘扬社会主义法治精神,增强全社会特别是公职人员尊法学法守法用法观念,在全社会形成良好法治氛围和法治习惯。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)加强和创新社会治理。建设平安中国,完善党委领导、政府主导、社会协同、公众参与、法治保障的社会治理体制,推进社会治理精细化,构建全民共建共享的社会治理格局。健全利益表达、利益协调、利益保护机制,引导群众依法行使权利、表达诉求、解决纠纷。增强社区服务功能,实现政府治理和社会调节、居民自治良性互动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强社会治理基础制度建设,建立国家人口基础信息库、统一社会信用代码制度和相关实名登记制度,完善社会信用体系,健全社会心理服务体系和疏导机制、危机干预机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善社会治安综合治理体制机制,以信息化为支撑加快建设社会治安立体防控体系,建设基础综合服务管理平台。落实重大决策社会稳定风险评估制度,完善社会矛盾排查预警和调处化解综合机制,加强和改进信访和调解工作,有效预防和化解矛盾纠纷。严密防范、依法惩治违法犯罪活动,维护社会秩序。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;牢固树立安全发展观念,坚持人民利益至上,加强全民安全意识教育,健全公共安全体系。完善和落实安全生产责任和管理制度,实行党政同责、一岗双责、失职追责,强化预防治本,改革安全评审制度,健全预警应急机制,加大监管执法力度,及时排查化解安全隐患,坚决遏制重特大安全事故频发势头。实施危险化学品和化工企业生产、仓储安全环保搬迁工程,加强安全生产基础能力和防灾减灾能力建设,切实维护人民生命财产安全。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;贯彻总体国家安全观,实施国家安全战略,落实重点领域国家安全政策,完善国家安全审查制度,完善国家安全法治,建立国家安全体系。依法严密防范和严厉打击敌对势力渗透颠覆破坏活动、暴力恐怖活动、民族分裂活动、极端宗教活动,坚决维护国家政治、经济、文化、社会、信息、国防等安全。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)确保&ldquo;十三五&rdquo;规划建议的目标任务落到实处。制定&ldquo;十三五&rdquo;规划纲要和专项规划,要坚决贯彻党中央决策部署,落实本建议确定的发展理念、主要目标、重点任务、重大举措。各地区要从实际出发,制定本地区&ldquo;十三五&rdquo;规划。各级各类规划要增加明确反映创新、协调、绿色、开放、共享发展理念的指标,增加政府履行职责的约束性指标,把全会确定的各项决策部署落到实处。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实现&ldquo;十三五&rdquo;时期发展目标,前景光明,任务繁重。全党全国各族人民要更加紧密地团结在以习近平同志为总书记的党中央周围,万众一心,艰苦奋斗,共同夺取全面建成小康社会决胜阶段的伟大胜利!<br />\r\n&nbsp;</span><br />\r\n', 1, 0, '未知', '中共中央,关于,制定,国民经济,和,社会发展,', '2015-11-13 05:53:00', '2020-06-02 02:11:02', NULL),
(141, 152, 7, '关于转发《黑龙江省人民政府关于深化体制机制改革加快实施创新驱动发展战略的实施意见》的通知', 'admin', '按照赵梅书记批示和我院16日会议部署现将《黑龙江省人民政府关于深化体制机制改革加快实施创新驱动发展战略的实施意见》黑政发[2015]32号上传到院网站和群共享请各部门认', '', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 按照赵梅书记批示和我院16日会议部署现将《黑龙江省人民政府关于深化体制机制改革加快实施创新驱动发展战略的实施意见》黑政发[2015]32号上传到院网站和群共享请各部门认真学习贯彻落实。</span><br />\r\n <br />\r\n <span style=\"font-size: 22px;\">附件:</span><span style=\"font-size:22px;\"><u><a href=\"/uploads/soft/151116/1-1511161A206.doc\" target=\"_blank\">黑政发[2015]32号</a></u></span></div>\r\n', 1, 0, '未知', '关于,转发,《,黑龙江省,人民政府,深化,体制,', '2015-11-16 08:51:09', '2020-06-02 02:11:02', NULL),
(142, 153, 7, '黑龙江省能源环境研究院召开中心组学习(扩大)会议', 'admin', '11月16日在省能源院会议室省能源院党委中心组召开学习贯彻十八届五中全会精神和三严三实专题教育第三专题研讨扩大会议。省能源院领导班子、省科学院机关党委刘颖书记及能源', '/uploads/allimg/151120/1-15112014063YY-lp.JPG', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 11月16日在省能源院会议室省能源院党委中心组召开学习贯彻十八届五中全会精神和&ldquo;三严三实&rdquo;专题教育第三专题研讨扩大会议。省能源院领导班子、省科学院机关党委刘颖书记及能源院中层干部参加了会议。会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/151120/1-15112014063YY.JPG\" style=\"width: 644px; height: 428px;\" /></span><br />\r\n &nbsp;</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议全文传达了《中共中央关于制定国民经济和社会发展第十三个五年规划的建议》内容,省能源院领导班子与参会人员交流了学习体会,并围绕&ldquo;严以用权、为民务实创业&rdquo;作了主题发言。徐晓秋院长指出,严以用权,要树立正确的政绩观、发挥监督作用,同时强化制度落实。务实创业,要真抓实干敢于担当,面对改革的关键时刻要不讲条件、不计得失、敢于承担、敢于负责。关春玲副院长指出,&ldquo;修身&rdquo;和&ldquo;律己&rdquo;主要是为用好权。权力是人民赋予的,行使权力必须为人民服务,一丝一毫都不能私用。官越大、权越重,为人民服务的担子就越重,越应该做出成绩。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长围绕&ldquo;十三五规划&rdquo;谈了自己的学习体会并部署了近期工作,强调&ldquo;十三五规划&rdquo;中提出要坚持绿色发展,着力改善生态环境,这与省能源院研究方向和研究领域相符合,同时也为省能源院未来的发展提供了指引和机会。省能源院全体科研人员要认真学习领会&ldquo;十三五规划&rdquo;中各项重要政策、举措、计划,充分结合各自研究领域开展科研工作,大胆扩展思路、树立超前发展理念,把握契机,执行好各项决策部署,确保我院的各项发展目标和任务圆满完成。</span></div>\r\n', 1, 0, '未知', '黑龙江省,能源,环境,研究院,召开,中心组,11月,', '2015-11-20 06:12:38', '2020-06-02 02:11:02', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(143, 154, 7, '我院承办国家行业标准《住宅建筑室内装修污染控制技术规程》编制组第二次工作会议', 'admin', '2015年12月15日由深圳市建筑科学研究院股份有限公司主办的国家行业标准《住宅建筑室内装修污染控制技术规程》编制组第二次工作会议在哈尔滨召开黑龙江省能源环境研究院作为', '/uploads/allimg/151225/1-151225110013332-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年12月15日由深圳市建筑科学研究院股份有限公司主办的国家行业标准《住宅建筑室内装修污染控制技术规程》编制组第二次工作会议在哈尔滨召开黑龙江省能源环境研究院作为参编单位承办了此次大会。来自深圳市建筑科学研究院股份有限公司、清华大学、黑龙江省能源环境研究院、中国建筑科学研究院、中国林科院木材工业研究所、上海市建筑科学研究院集团有限公司、福建第一建筑集团公司、河南省建筑科学研究院有限公司、甘肃省建材科研设计院以及建筑装饰企业的23位代表参加了此次会议。省科学院王钢副院长和能源院徐晓秋院长在会议上发言并对与会各单位代表表示热烈欢迎。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/151225/1-151225110013332.JPG\" style=\"width: 519px; height: 346px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议上,各编制组成员单位分别介绍了工作开展情况及研究工作中出现的问题,并由主编单位介绍了该标准编制的情况。会议围绕《住宅建筑室内装修污染控制技术规程》讨论稿初稿展开了广泛而深入的交流与讨论,各参编单位均发表了各自的观点和建议。最后,各参编单位讨论了下一步的工作计划及任务分工。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/151225/1-15122511003KY.JPG\" style=\"width: 519px; height: 346px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 此次会议的召开,广泛征求了编制组各成员单位与会专家的意见和建议,有利于促进标准编制工作顺利有序进行,同时,也全面考虑了我国各地区的特殊气候情况,对提高该标准的适用范围和准确性起到了积极的推动作用。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: right;\">\r\n <span style=\"font-size:22px;\">黑龙江省能源环境研究院 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></div>\r\n', 1, 0, '未知', '我院,承办,国家,行业标准,《,2015年,12月,15日,', '2015-12-16 02:56:00', '2020-06-02 02:11:02', NULL),
(144, 155, 7, '省科学院科研处莅临省能源环境研究院指导检查学科创新团队建设工作', 'admin', '2015年12月17日院科研处王阳处长一行3人莅临能源环境研究院检查学科创新团队发展情况和团队一年来的主要工作。 王阳处长逐一听取了能源院三个学科创新团队2015年的工作进展情况', '/uploads/allimg/151225/1-15122511042EC-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年12月17日院科研处王阳处长一行3人莅临能源环境研究院检查学科创新团队发展情况和团队一年来的主要工作。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/151225/1-15122511042EC.JPG\" style=\"width: 553px; height: 369px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 王阳处长逐一听取了能源院三个学科创新团队2015年的工作进展情况和2016年的发展规划针对学科创新团队发展过程中存在的突出问题与能源院领导和团队带头人进行了深入分析和讨论同时对各学科创新团队未来的发展方向人员结构年度目标等提出了具体要求。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/151225/1-151225110501a8.JPG\" style=\"width: 553px; height: 369px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 王阳处长指出1、能源院的三个团队要积极把握好国家&ldquo;十三五&rdquo;发展规划努力寻求合作积极拓展科研合作伙伴把握好方向找准定位合理制定发展目标2、要优化团队人员结构、努力培养科研骨干促进团队科研能力整体提升3、要积极开展国际合作与交流不断提升学科团队在国内外的学术影响力4、要加强高水平基金项目的申报和SCI/EI高水平论文的产出。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: right;\">\r\n <span style=\"font-size:22px;\">黑龙江省能源环境研究院 &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span></div>\r\n', 1, 0, '未知', '省,科学院,科研处,莅临省,能源,环境,研究院,', '2015-12-18 03:02:00', '2020-06-02 02:11:02', NULL),
(145, 156, 7, '黑龙江省能源环境研究院省院科技合作项目顺利通过鉴定', 'admin', '2016年1月14日黑龙江省科技厅在哈尔滨市组织专家对黑龙江省能源环境研究院承担的省院科技合作项目寒区农业固体废弃物高值化利用关键技术研究进行了成果鉴定。 鉴定委员会由哈', '/uploads/allimg/160122/1-160122093932Z9-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年1月14日黑龙江省科技厅在哈尔滨市组织专家对黑龙江省能源环境研究院承担的省院科技合作项目&ldquo;寒区农业固体废弃物高值化利用关键技术研究&rdquo;进行了成果鉴定。</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/160122/1-160122093932Z9.JPG\" style=\"width: 519px; height: 346px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会由哈尔滨工业大学、哈尔滨工程大学等高校专家组成,会议由省科技厅成果处领导主持,省院士办、省科学院科研处领导参加会议。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 与会专家认真听取了项目组的工作总结报告和技术报告,审查了相关技术资料,经质询、讨论,对项目组研究的高温湿法-干法耦合工艺给予了较高的评价,鉴定委员会认为,研究成果达到了国内领先水平,并建议进一步扩大农业废弃物处理范围。&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此项目的圆满完成,标志中我院在农业废弃物利用领域又迈出坚实的一步,与中科院的合作又结出新的硕果。</span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院省,院,科技,2016年,', '2016-01-15 01:41:00', '2020-06-02 02:11:02', NULL),
(146, 157, 7, '我院两项黑龙江省应用技术研究与开发计划项目通过验收', 'admin', '2015年1月黑龙江省科技厅组织鉴定委员会对黑龙江省能源环境研究院和科技孵化中心承担的省应用技术研究与开发计划项目《煤与废弃有机制品共焦化技术开发与应用》和《M25车用甲', '', '<span style=\"font-size:24px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年1月黑龙江省科技厅组织鉴定委员会对黑龙江省能源环境研究院和科技孵化中心承担的省应用技术研究与开发计划项目《煤与废弃有机制品共焦化技术开发与应用》和《M25车用甲醇汽油应用技术研究》进行函审鉴定。鉴定委员会由哈工大、哈工程、哈理工的5位专家组成。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 鉴定专家认真审查了项目组提供的技术材料并听取了二个项目组的工作汇报后对各项目组的工作给予了充分肯定认为项目组完成了课题任务书要求的各项内容煤与废弃有机制品共焦化技术有良好的经济和社会效益其技术性能达到国内领先水平。M25车用甲醇汽油应用技术拓展煤基甲醇替代石油资源其技术性能达到国内先进水平。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 我院(中心)在煤化工领域及其下游产品应用领域又开拓出新的出路,为我省产业结构调整,提供新思路。这两项省级项目顺利通过鉴定,标志着我院(中心)煤化工领域部分成果水平已处于省内乃至国内的前列, 对能源化学省级领军人才梯队建设和发展也</span><span style=\"font-size: 24px;\">起</span><span style=\"font-size:24px;\">到了重要的支撑作用。</span>', 1, 0, '未知', '我院,两项,黑龙江省,应用技术,研究,与,开发,', '2016-01-29 02:38:00', '2020-06-02 02:11:02', NULL),
(147, 158, 19, '黑龙江省能源环境研究院</br>部分科技成果汇编目录2008-2015', 'admin', '序号 成果名称 鉴定时间 1 油页岩低温热解条件对页岩油性质的影响研究 2015 2 煤与废弃有机制品共焦化技术开发与应用 2015 3 M25车用甲醇汽油应用技术研究 2015 4 寒区农业固体废弃物高', 'images/2020/06/03/878bb5fb31b3b02b416190e082d32acc.jpg', '<table border=\"2\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px;\" width=\"452\"><colgroup><col style=\"text-align: center;\"/><col style=\"text-align: center;\"/><col style=\"text-align: center;\"/></colgroup><tbody><tr height=\"51\"><td height=\"51\" style=\"height: 51px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">序号</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">成果名称</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">鉴定时间</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">1</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">油页岩低温热解条件对页岩油性质的影响研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">2</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">煤与废弃有机制品共焦化技术开发与应用</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">3</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">M25车用甲醇汽油应用技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">4</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">寒区农业固体废弃物高值化利用关键技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">5</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">重质油乳化剂及乳化方式的优化研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">6</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">乳化柴油提高燃烧效率研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">7</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">一种亲水性无纺布的制备方法研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">8</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">水包油型乳化重油的稳定性研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">9</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">太阳能等清洁能源替代小型燃煤锅炉建筑采暖的关键技术研究及示范</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">10</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">太阳能空气采暖智能控制装置的应用研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">11</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">基于“一村一厂”生物质加工和清洁利用的寒区“无煤生态村”应用技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">12</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">中试沼气发酵系统节能控制研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">13</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">基于ZigBee和WLAN技术的中试沼气发酵监测系统</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">14</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">沼液回流喷淋对秸秆沼气产量的影响研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">15</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">酸预处理玉米秸秆与奶牛粪便混合厌氧消化工艺优化研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">16</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">三塔变压吸附沼气提纯技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">17</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">沼液超滤膜分离浓缩方法优化及膜再生机理研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">18</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">液相色谱法分析鸡粪中残留四环素类抗生素的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">19</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">调和国Ⅴ标准车用汽油的抗爆剂技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">20</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">太阳能空气采暖系统的优化控制研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">21</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">页岩油加氢精制-延迟焦化组合工艺的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">22</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">沼气工程进料固含量在线监测方法的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2015</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">23</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">轻质木焦油加氢提质转化运输燃料油调和组分的工艺研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">24</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">寒地沼气发电机余热回收仿真优化研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">25</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">秸秆高温厌氧发酵过程关键技术参数研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">26</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">沼液高效回用及综合处理工艺研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">27</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">沼液回流对牛粪厌氧发酵沼气产量的影响及机理研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">28</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">厌氧发酵反应器温度监控及补偿系统的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">29</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">复合调节剂(润滑性能)中试研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">30</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">利用炼厂90#汽油生产国Ⅳ标准93#汽油的复合添加剂应用</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">31</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">产油微藻的一体式培养及柴油提取的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">32</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">从废源培养的产油微藻中提取生物柴油的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">33</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">甲醇乳化柴油技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2014</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">34</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">利用页岩油制取油砂分离剂的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">35</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">全馏分页岩油改质转化轻质运输燃料工艺的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">36</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">膜生物反应器中改性复合膜的制备与性能研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">37</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">车用汽油复合调节剂技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">38</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">油页岩中有机质的分离和分析</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">39</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">发酵原料水解率对提高CSTR反应器产气率的机理研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">40</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">寒区牛粪两级厌氧高效发酵工艺研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">41</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">不同搅拌方式对反应器上层浮渣影响高温厌氧发酵产气率的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">42</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">高温厌氧发酵过程中沼气净化系统的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">43</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">基于混合模型的牛粪高温厌氧发酵过程参量监测</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">44</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">环氧树脂固化程度在线监测系统</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">45</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">沼气工程无线网络化系统控制与方法设计</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2013</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">46</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">工业化封闭环式沼气、发电系统</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">47</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">集成牛粪便综合利用系统IMUS示范工程</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">48</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">生物质资源综合利用的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">49</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">厌氧消化过程中发酵原料的不同滞留时间对发酵过程的影响研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">50</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">厌氧发酵工艺过程仿真系统的研制</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">51</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">牛粪碱法与生物法联合预处理方法及机理研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">52</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">物理参数对提高牛粪高温厌氧性能影响机理的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">53</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">接种物对牛粪高温厌氧消化过程的影响机理研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">54</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">大掺量甲醇汽油催化燃烧技术</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">55</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">黑龙江省油页岩分布及含油率分析研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">56</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">全馏分页岩油改质转化轻质运输燃料工艺的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">57</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">M15车用甲醇汽油复合添加剂</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2012</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">58</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">加拿大直贮热太阳能技术</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">59</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">γ-射线辐照对牛粪厌氧消化过程影响的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">60</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">牛粪高温厌氧消化动力学研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">61</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">奶牛场粪污水综合处理工艺研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">62</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">直贮热太阳能技术DHS示范温室</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">63</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">M20甲醇汽油工业应用及性能考核</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"19\"><td height=\"19\" style=\"height: 19px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">64</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">工业燃煤锅炉烟气净化技术</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">65</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">褐煤低温催化制油气研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">66</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">燃煤锅炉催化脱硫技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">67</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">烟气中二氧化硫催化固硫性能研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">68</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">油气分离系统的研究科技成果</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">69</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">中国加拿大油砂炼制技术合作研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2011</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">70</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">牛粪高温厌氧发酵机理研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2009</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">71</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">沼气生物脱硫机理研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2009</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">72</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">牛粪厌氧发酵工艺关键技术参数研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2009</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">73</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">沼气脱硫技术研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2009</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">74</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">高寒地区牛粪高温发酵工艺研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2009</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">75</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">以沼气为纽带的生态农场模式及经济评价体系</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2008</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">76</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">黑龙江省省属科研机构科技孵化器建设</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2008</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\"><span style=\"font-size:16px;\">77</span></td><td style=\"width: 332px; text-align: center;\"><span style=\"font-size:16px;\">黑龙江省科学院院属科研机构科技孵化器建设的研究</span></td><td style=\"width: 76px; text-align: center;\"><span style=\"font-size:16px;\">2008</span></td></tr></tbody></table><p><br/></p>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,部分,科技成果,', '2016-02-15 01:37:22', '2020-06-03 09:12:57', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(148, 159, 21, '黑龙江省能源环境研究院</br>专利目录2008-2015', 'admin', '序号 专利名称 专利号 类型 1 利用高温厌氧发酵运行参数无线实时监测系统对高温厌氧发酵运行参数监测的方法 ZL201310364454.2 发明专利 2 一种基于沼气发电的余热回收利用系统 ZL201310', 'images/2020/06/03/0c14a33a8a5685c4077d63b1dd792155.jpg', '<table border=\"2\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px;\" width=\"474\"><colgroup><col style=\"text-align: center;\"/><col style=\"text-align: center;\"/><col style=\"text-align: center;\"/><col style=\"text-align: center;\"/></colgroup><tbody><tr height=\"43\"><td height=\"43\" style=\"height: 43px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">序号</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">专利名称</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">专利号</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">类型</span></td></tr><tr height=\"77\"><td height=\"77\" style=\"height: 77px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">1</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">利用高温厌氧发酵运行参数无线实时监测系统对高温厌氧发酵运行参数监测的方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310364454.2</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">2</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种基于沼气发电的余热回收利用系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310674344.6</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">3</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种车用燃料油抗水复合添加剂</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201410445460.5</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">4</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种含超细稀土粉体润滑油添加剂</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310631999.5</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">5</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">车用汽油复合调节剂</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310140441.7</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">6</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">有机无灰类M15车用甲醇汽油复合添加剂</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201210258097.7</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">7</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">采用全馏分页岩油生产低硫低凝柴油的方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310484593.9</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">8</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种沼气旋转冷凝的装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310381690.5</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">9</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种搅拌破壳于一体的发酵反应器</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310367177</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"58\"><td height=\"58\" style=\"height: 58px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">10</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种改性聚对苯二甲酸乙二醇酯无纺布复合膜的制备方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310484592.4</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">11</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">甲醇乳化柴油及其制备方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201410091283.5</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">12</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种利用啤酒厂污水培养产油微藻的方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201310625139.0</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">13</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种基于沼气发电的余热回收利用系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310674345</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">14</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种温度自控风力制热装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310692604</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"77\"><td height=\"77\" style=\"height: 77px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">15</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种环氧树脂固化程度在线监控系统及采用该系统对环氧树脂固化程度监控的方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310511396</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">16</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种太阳能集热控制系统及其集热控制方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310421572</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">17</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">可测定出料位置的CSTR反应器</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310470071</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"77\"><td height=\"77\" style=\"height: 77px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">18</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">利用高温厌氧发酵运行参数无线实时监测系统对高温厌氧发酵运行参数监测的方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310364454</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">19</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种厌氧发酵分段控温系统及方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310364456</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">20</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种沼气旋转冷凝的装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310381691</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">21</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种搅拌破壳于一体的发酵反应器及搅拌破壳方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201310367177</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">22</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">联合使用的厌氧发酵反应器</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201210338447</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"58\"><td height=\"58\" style=\"height: 58px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">23</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">厌氧发酵罐体沼气贮量的测量方法及实现该方法的装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201110078502</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"58\"><td height=\"58\" style=\"height: 58px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">24</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种原料预处理装置及利用该装置实现沼气收集的系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201110058808</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">25</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种利用太阳能的直贮热厌氧消化装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201110056367</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">26</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">厌氧往复折流复合消化装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201110042375</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">27</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种用于牛场污水处理的二次厌氧消化装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201010611390</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">28</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种60Coγ-射线辐照牛粪提高沼气产量的方法</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\"> </span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发明专利</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">29</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">可测定出料位置的CSTR反应器</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201320623818</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">30</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种高温厌氧发酵运行参数的无线实时监测系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201320509482</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">31</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">联合使用的厌氧发酵反应器</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201220466304</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">32</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种沼气发酵过程状态检测系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420711902.1</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">33</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">太阳能空气智能采暖装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420688401.6</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">34</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种厌氧发酵分段控温系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201320509483.9</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">35</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种高温厌氧发酵运行参数的无线实时监测系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201320509482.4&nbsp;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">36</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种太阳能集热控制系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201320573185.6</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">37</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">基于Buck变换器的无刷直流电机驱动电路</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420663823.8</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">38</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">无刷直流电机反电动势三次谐波检测电路</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420678192.7</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">39</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种高温厌氧发酵装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420670351.9</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">40</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">太阳能助力式风力发电装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420759477.3</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">41</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">电线固定装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420711843.8</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">42</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种带有供热系统的恒温建筑</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420697172.4&nbsp;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">43</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种带有沼液回流管线的畜禽粪便厌氧发酵装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420697135.3</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">44</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种利用回收的沼液喷淋秸秆的干式厌氧发酵装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420707710.3</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">45</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种高温厌氧发酵装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420670351.9</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">46</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">可测定出料位置的CSTR反应器</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201320623817.5</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">47</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种沼气旋转冷凝的装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201320529632.8</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">48</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种搅拌破壳于一体的发酵反应器</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201320512530.5</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">49</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">产油微藻的一体式培养装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">ZL201420312552.1</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">50</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种太阳能集热控制系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201320573186</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">51</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种厌氧发酵分段控温系统</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201320509484</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"20\"><td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">52</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种沼气旋转冷凝的装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201320529633</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">53</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种搅拌破壳于一体的发酵反应器</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201320512531</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">54</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">厌氧往复折流复合消化装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201120045415</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"58\"><td height=\"58\" style=\"height: 58px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">55</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">一种用于牛场污水沉降净化处理的二次厌氧消化装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">201020686844</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr><tr height=\"39\"><td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\"><span style=\"font-size:14px;\">56</span></td><td style=\"width: 215px; text-align: center;\"><span style=\"font-size:14px;\">用于恒温实验室的相转变太阳能贮热装置</span></td><td style=\"width: 140px; text-align: center;\"><span style=\"font-size:14px;\">200920317606</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">实用新型</span></td></tr></tbody></table><p><br/></p>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,专利,目录,序号,', '2016-02-15 02:16:49', '2020-06-03 09:16:13', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(149, 160, 21, '黑龙江省能源环境研究院</br>论文目录2012-2015', 'admin', '序号 文章名称 类别 期刊名 作者 发表时间 1 沼气脱碳提纯技术研究进展 一般 黑龙江科学 潘良;徐晓秋;高德玉;王欣;刘伟; 2015 2 依兰油页岩逐级氧化/萃取及其产物的红外分析 一般 黑龙', 'images/2020/06/03/f5d3940b203b10ea68e0e7a5f9441369.jpg', '<table border=\"2\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px;\" width=\"536\"><colgroup><col style=\"text-align: center;\"/><col style=\"text-align: center;\"/><col style=\"text-align: center;\"/><col style=\"text-align: center;\"/><col span=\"2\" style=\"text-align: center;\"/></colgroup><tbody><tr height=\"58\"><td height=\"58\" style=\"height: 58px; width: 39px; text-align: center;\"><span style=\"font-size:14px;\">序号</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">文章名称</span></td><td style=\"width: 77px; text-align: center;\"><span style=\"font-size:14px;\">类别</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">期刊名</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">作者</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">发表时间</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">1</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">沼气脱碳提纯技术研究进展</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">潘良;徐晓秋;高德玉;王欣;刘伟;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"108\"><td height=\"108\" style=\"height: 108px; text-align: center;\"><span style=\"font-size:14px;\">2</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">依兰油页岩逐级氧化/萃取及其产物的红外分析</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科技大学学报</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">吴鹏;张星宇;周扬;解丽萍;朱秀栋;宋微娜;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"90\"><td height=\"90\" style=\"height: 90px; text-align: center;\"><span style=\"font-size:14px;\">3</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">微米稀土粉体表面改性技术研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">唐诗洋;张树华;刘岩;李健;陈庆海;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">4</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">寒地《M25车用煤基甲醇汽油》企业标准</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化工管理</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;唐诗洋;刘岩;刘维;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"90\"><td height=\"90\" style=\"height: 90px; text-align: center;\"><span style=\"font-size:14px;\">5</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">寒地M25车用(煤基)甲醇汽油性能研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;唐诗洋;刘岩;李健;陈庆海;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">6</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">页岩油深加工产业发展评述</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陈松;周扬;王晓栋;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">7</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">水包油型乳化重油的制备条件及稳定性研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张玥;张宇;马宁;王志成;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"90\"><td height=\"90\" style=\"height: 90px; text-align: center;\"><span style=\"font-size:14px;\">8</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">基于ZigBee和WLAN技术的厌氧发酵中试监控系统</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">秦国辉;王钢;王玉鹏;周闯;罗向东;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">9</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">油页岩抚顺炉低温干馏的影响因素分析</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">周扬;陈松;王晓栋;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"90\"><td height=\"90\" style=\"height: 90px; text-align: center;\"><span style=\"font-size:14px;\">10</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">沼气发酵过程状态监控系统设计</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">李福裿;王玉鹏;周闯;秦国辉;罗向东;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">11</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">分子印迹固相萃取技术在抗生素检测中的应用进展</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">杨光;徐晓秋;高德玉;陆佳;潘良;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">12</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">浅谈沼液处理与纳滤膜技术</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陆佳;徐晓秋;高德玉;刘伟;王欣;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">13</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">页岩油预处理制取加氢原料的研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陈松;周扬;王晓栋;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">14</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">紫外辐照接枝甲基丙烯酸对无纺布性能影响的研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学与黏合</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张玥;王志成;张宇;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">15</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">在俄罗斯境内发展炼化一体化项目的工艺论证</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陈松;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"108\"><td height=\"108\" style=\"height: 108px; text-align: center;\"><span style=\"font-size:14px;\">16</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">变性梯度凝胶电泳(DGGE)技术在畜禽粪便厌氧发酵液中的研究进展</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">王欣;苏小红;郭广亮;刘伟;徐晓秋;高德玉;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"108\"><td height=\"108\" style=\"height: 108px; text-align: center;\"><span style=\"font-size:14px;\">17</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">沼液回流对牛粪高温厌氧发酵产气性能的影响</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">苏小红;刘伟;王欣;郭广亮;徐晓秋;高德玉;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"108\"><td height=\"108\" style=\"height: 108px; text-align: center;\"><span style=\"font-size:14px;\">18</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">秸秆厌氧消化预处理技术研究进展</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">王欣;苏小红;郭广亮;刘伟;徐晓秋;高德玉;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"90\"><td height=\"90\" style=\"height: 90px; text-align: center;\"><span style=\"font-size:14px;\">19</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">寒地沼气发电机组余热回收的控制策略与设计</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">自动化技术与应用</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">秦国辉;罗向东;王志成;王玉鹏;周闯;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">20</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">太阳能空气采暖智能控制系统的研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">秦国辉;王玉鹏;周闯;罗向东;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2015</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">21</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">木焦油预处理制取加氢原料的方法</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陈松;周扬;王晓栋;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">22</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">轻质木焦油加氢脱氧的影响因素</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陈松;周扬;王晓栋;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">23</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">亲水性无纺布复合膜的制备及性能研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学与黏合</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张玥;王志成;张宇;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"90\"><td height=\"90\" style=\"height: 90px; text-align: center;\"><span style=\"font-size:14px;\">24</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">《M25车用甲醇汽油》企业标准解读</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;刘辉;唐诗洋;刘维;刘岩;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">25</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">国际标准GB 17930-2011/XG1-2012《车用汽油》的胶质指标解析</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">唐诗洋;张树华;刘岩;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">26</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">醇醚燃料在车用替代能源中的发展趋势</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陆海玲;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">27</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">调和国IV标准车用汽油的抗爆剂研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">唐诗洋;张树华;刘岩;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">28</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">石油产品脱硫技术研究进展</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">马宁;张宇;张玥;王志成;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">29</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">生物柴油的应用前景</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">马宁;张玥;张宇;王志成;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">30</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">国有单位科技人员培养的实践与思考</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陆海玲;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">31</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">科技计划项目全过程管理研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张帆;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">32</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">我国科技计划项目管理现状与对策分析</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陆海玲;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">33</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">科研单位对科研仪器设备管理方案</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张帆;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">34</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">微藻培养条件优化研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">应用能源技术</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张宇;王志成;张玥;马宁;周红霞;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">35</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">应用浮选技术分离油砂的实验研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">周扬;陈松;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"90\"><td height=\"90\" style=\"height: 90px; text-align: center;\"><span style=\"font-size:14px;\">36</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">太阳能空气集热控制系统的研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">应用能源技术</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">王阳;秦国辉;罗向东;王玉鹏;刘旭丹;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"108\"><td height=\"108\" style=\"height: 108px; text-align: center;\"><span style=\"font-size:14px;\">37</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">发酵原料水解率对CSTR反应器产气率影响的研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">应用能源技术</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">王欣;刘伟;徐晓秋;赵娴;王玉鹏;秦国辉;刘旭丹;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">38</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">沼气工程工艺参数的优化模型研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">自动化技术与应用</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">秦国辉;罗向东;王玉鹏;刘旭丹;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"90\"><td height=\"90\" style=\"height: 90px; text-align: center;\"><span style=\"font-size:14px;\">39</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">不同搅拌方式对浮渣层影响高温厌氧发酵产气率的研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">王欣;王玉鹏;刘伟;苏小红;徐晓秋;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2014</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">40</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">油砂分离剂的实验研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">周扬;陈松;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">41</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">科研成果转化中科技管理部门作用的探析</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张帆;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">42</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">反应条件对轻质页岩油加氢脱氮性能的影响</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陈松;周扬;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">43</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">我国中小企业技术创新的现状及对策</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科技信息</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陆海玲;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"18\"><td height=\"18\" style=\"height: 18px; text-align: center;\"><span style=\"font-size:14px;\">44</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">大掺量甲醇汽油初步探讨</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学与黏合</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">王志成;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">45</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">油页岩综合开发利用现状</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">周红霞;王志成;陆海玲;张帆;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">46</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">车用醇基燃料及其应用性能评价</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">47</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">解读新修订的《科学事业单位财务管理制度》</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">关春玲;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">48</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">微藻研究进展及产油的影响因素</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张宇;王志成;张玥;周红霞;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">49</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">全馏分页岩油改质转化运输燃料技术进展及其评价</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">陈松;周扬;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">50</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">汽油含硫量对排放的影响研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;唐诗洋;刘岩;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">51</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">沼气发电工程沼气净化技术研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">刘伟;王欣;徐晓秋;赵娴;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">52</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">使用数学方法监测热固树脂固化程度的研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">科技创新与应用</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">刘旭丹;秦国辉;王玉鹏;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">53</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">沼气发电工程的无线监测系统</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">秦国辉;罗向东;王玉鹏;刘旭丹;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"108\"><td height=\"108\" style=\"height: 108px; text-align: center;\"><span style=\"font-size:14px;\">54</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">寒区牛粪两级厌氧高效发酵工艺参数研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">王欣;刘伟;赵娴;王玉鹏;秦国辉;刘旭丹;徐晓秋;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">55</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">基于最小二乘向量机的厌氧发酵沼气产量建模研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">秦国辉;刘伟;刘旭丹;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">56</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">混合建模方法研究及其在牛粪高温厌氧发酵过程中的监测应用</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">范庆丽;秦国辉;章力;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">57</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">Marathon 5kpro复用器配置介绍</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">韩涛;刘旭丹;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">58</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">ADWR多普勒天气雷达伺服系统故障分析与处理</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">韩涛;刘旭丹;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"36\"><td height=\"36\" style=\"height: 36px; text-align: center;\"><span style=\"font-size:14px;\">59</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">基于单片机的高温厌氧发酵罐温度控制系统</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">赵娴;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2013</span></td></tr><tr height=\"54\"><td height=\"54\" style=\"height: 55px; text-align: center;\"><span style=\"font-size:14px;\">60</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">MTBE的国内外研究进展</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">鞠春红;张伟君;李福裿;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">61</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">褐煤热水干燥改质后的性能研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学与黏合</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">鞠春红;张伟君;王志成;李福裿;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">62</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">光催化还原二氧化碳的发展</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">黑龙江科学</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">鞠春红;张伟君;王志成;李福裿;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">63</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">M15车用甲醇汽油复合添加剂的技术研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">64</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">对我国醇醚燃料产业的发展思路与对策探讨</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">农机使用与维修</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">刘岩;张树华;唐诗洋;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">65</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">臭氧助燃技术在柴油发动机中的应用</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">农机使用与维修</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">66</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">蛇纹石粉体作为机械摩擦副磨损表面自修复添加剂的研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">67</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">焦化废水中苯酚含量的测定方法研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">中国给水排水</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张宏森;周国江;周扬;王彦彪;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">68</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">车用汽油复合调节剂技术研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">核心</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">化学工程师</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">69</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">关于车用替代燃料的发展状况与前景探析</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">农机使用与维修</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"72\"><td height=\"72\" style=\"height: 72px; text-align: center;\"><span style=\"font-size:14px;\">70</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">内燃机替代燃料的尴尬境地</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">农机使用与维修</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr><tr height=\"108\"><td height=\"108\" style=\"height: 108px; text-align: center;\"><span style=\"font-size:14px;\">71</span></td><td style=\"width: 179px; text-align: center;\"><span style=\"font-size:14px;\">搅拌时间对高固含量奶牛粪便高温厌氧消化的影响研究</span></td><td style=\"text-align: center;\"><span style=\"font-size:14px;\">一般</span></td><td style=\"width: 99px; text-align: center;\"><span style=\"font-size:14px;\">应用能源技术</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">刘伟;王欣;徐晓秋;秦国辉;王玉鹏;刘旭丹;</span></td><td style=\"width: 72px; text-align: center;\"><span style=\"font-size:14px;\">2012</span></td></tr></tbody></table><p><br/></p>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,论文目录,2012-2015,', '2016-02-15 02:17:17', '2020-06-03 09:15:55', NULL),
(150, 161, 7, '黑龙江能源环境研究院召开会议学习贯彻2016年省科学院党风廉政建设工作会议和省科学院工作会议精神', 'admin', '2月15日下午省能源院召开会议传达和贯彻2016年省科学院党风廉政建设工作会议和院工作会议精神。会议由省能源院党委书记、院长徐晓秋同志主持。 徐晓秋院长首先传达了省科学', '/uploads/allimg/160225/1-160225123025Z2-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2月15日下午省能源院召开会议传达和贯彻2016年省科学院党风廉政建设工作会议和院工作会议精神。会议由省能源院党委书记、院长徐晓秋同志主持。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/160225/1-160225123025Z2.JPG\" style=\"width: 561px; height: 373px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长首先传达了省科学院赵梅书记在院2016年党风廉政建设工作会议上的讲话精神同时全文学习了省科学院郭春景院长在院工作会议上的工作报告和赵梅书记在院工作会议上的总结讲话参会人员结合省能源院工作实际对 &ldquo;一院(所)两制&rdquo;、搭建&ldquo;三大工作平台&rdquo;、激励科研人员制度措施、学科团队建设、成果转化等方面进行了深入交流和讨论。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长围绕贯彻两个工作会议精神提出了几点要求一是继续强化学习贯彻落实各级精神要求制定相关学习制度要细化到具体日期对需要长期学习、常态化学习和已经学习过的内容进行再学习、再巩固、再提高。二是将省科学院工作会议文件印发到各部门各部门要围绕文件要求把各项工作任务落到实处。最后徐晓秋院长强调各部门要提高认识准确领会会议精神把握好改革机遇提高创新发展意识在省科学院党组的领导下全面推进省能源院2016年相关工作稳步开展。</span><br />\r\n', 1, 0, '未知', '黑龙江,能源,环境,研究院,召开,会议,2月,15日,', '2016-02-16 04:31:00', '2020-06-02 02:11:02', NULL),
(151, 162, 7, '省科学院人事处党支部与能源院能源化学创新团队召开党建联系点工作对接会', 'admin', '2016年3月23日省科学院人事处党支部与省能源环境研究院能源化学创新团队党建联系点工作对接会在能源院会议室召开。人事处党支部书记、处长张兴、副处长王向伟、盛力、曲恒峰、', '/uploads/allimg/160325/1-160325100Z33M-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年3月23日省科学院人事处党支部与省能源环境研究院能源化学创新团队党建联系点工作对接会在能源院会议室召开。人事处党支部书记、处长张兴、副处长王向伟、盛力、曲恒峰、周磊省能源院党委书记、院长徐晓秋及能源化学创新团队全体党员参加了会议。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/160325/1-160325100Z33M.JPG\" style=\"width: 517px; height: 342px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 首先院人事处党支部成员与能源化学创新团队成员就人员、工作内容、研究方向等情况进行了介绍。随后由院人事处张兴同志和能源化学创新团队负责人王志成同志分别宣读了《黑龙江省科学院2016年度党建联系点机关党支部与创新团队责任书》及《科学院人事处党支部与能源院创新团队建立党建联系点工作方案》。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 座谈中张兴处长表示要全面落实《黑龙江省科学院2016年度党建联系点机关党支部与创新团队责任书》及《院人事处党支部与创新团队党建联系点工作方案》内容不但做到积极互动、互相带动还要帮助培养基层科研人员、创造良好科研环境。此外还将持续深入开展共建活动积极为创新团队探寻解决实际问题的有效举措同时形成良好的沟通机制提升党建工作水平、加强创新团队建设。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/160325/1-16032510091Y31.JPG\" style=\"width: 529px; height: 350px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长指出,院人事处党支部与能源化学创新团队建立党建联系点将机关和基层党建工作融为一体,极大地促进了能源院的党建及科研工作。创新团队全体成员决心以党建联系点工作为契机,在人事处党支部的支持与帮助下,以院党组&ldquo;四管四严&rdquo;的要求为核心,积极开展党建活动,将党建联系点工作落到实处,同时将以科研发展为中心,为能源院培养尖端科技人才、建设一流的科研队伍而努力奋斗。</span>', 1, 0, '未知', '省,科学院,人事处,党支部,与,能源,院,化学,', '2016-03-24 02:10:00', '2020-06-02 02:11:02', NULL),
(152, 163, 7, '创学习型组织 做知识型女性</br>省能源院召开“三八”妇女节女职工座谈会', 'admin', '3月7日上午省能源院召开以创学习型组织、做知识型女性为主题的女职工座谈会。省能源院领导班子及全体女职工参加了会议会议由能源院党委书记、院长徐晓秋同志主持。 参会人', '/uploads/allimg/160328/1-16032P9321T09.jpg', '<span style=\"font-size:24px;\">&nbsp; &nbsp; &nbsp; &nbsp; 3月7日上午省能源院召开以&ldquo;创学习型组织、做知识型女性&rdquo;为主题的女职工座谈会。省能源院领导班子及全体女职工参加了会议,会议由能源院党委书记、院长徐晓秋同志主持。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:24px;\"><img src=\"/storage/uploads/allimg/160328/1-16032P9321T09.jpg\" style=\"width: 485px; height: 321px;\" /></span></div>\r\n<span style=\"font-size:24px;\">&nbsp; &nbsp; &nbsp; &nbsp; 参会人员首先观看了2015年诺贝尔医学奖获得者屠呦呦女士的记录片。随后大家围绕此次座谈会的主题就女职工的工作、生活、健康等方面进行了交流大家积极建言献策提出了许多宝贵的意见和建议会议在热烈的氛围中进行参加会议女职工踊跃发言。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 最后徐晓秋院长强调,省能源院女职工人数约占全院人数的一半,女职工立足岗位,恪尽职守,为省能源院的发展和建设做出了积极贡献,充分体现了女职工的责任意识,大局意识,希望省能源院全体女职工在今后的工作中要沉得下心来,继续发挥女性专注与坚韧的特点,不断提高自己,十年磨一剑,取得更好的成绩。</span>', 1, 0, '未知', '创,学习型,组织,做,知识型,女性,省,能源,院,', '2016-03-08 01:38:00', '2020-06-02 02:11:02', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(153, 164, 7, '黑龙江省能源环境研究院召开全体职工大会学习贯彻落实习近平总书记参加黑龙江代表团审议时的重要讲话精神', 'admin', '3月29日上午黑龙江省能源环境研究院召开全体职工专题学习会议学习宣传和贯彻落实习近平总书记参加黑龙江代表团审议时的重要讲话精神、王宪魁同志在省委中心组学习上的讲话', '/uploads/allimg/160329/1-160329163HYG-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 3月29日上午黑龙江省能源环境研究院召开全体职工专题学习会议学习宣传和贯彻落实习近平总书记参加黑龙江代表团审议时的重要讲话精神、王宪魁同志在专题研讨班上的讲话、杨汭部长在研讨班上的总结讲话等3个文件精神以及《中共黑龙江省委关于深入学习宣传贯彻落实习近平总书记重要讲话精神的决定》。会议由省能源院党委书记、院长徐晓秋同志主持。</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <br />\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/160329/1-160329163HYG.JPG\" style=\"width: 492px; height: 325px;\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长首先传达了习近平总书记在黑龙江省代表团参加审议时的重要讲话和《中共黑龙江省委关于深入学习宣传贯彻落实习近平总书记重要讲话精神的决定》,关春玲副院长全文传达了王宪魁同志在省管主要领导干部专题研讨班上的讲话,和杨汭部长在研讨班上的总结讲话。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长强调,今后我院将根据科学院的安排部署,联系实际继续持续、深入地学习宣传贯彻落实习总书记重要讲话和王宪魁同志、杨汭同志的讲话精神,同时结合我院每周三学习日,把学习纳入 &ldquo;两学一做&rdquo;长期的学习内容,以支部为单位组织学习研讨,真正做到&ldquo;铺满盖严,不留死角&rdquo;,对照讲话谈思想、谈措施。增强广大职工的创新意识,坚定信心,明确工作方向,将科研工作落到实处,切实营造我院创新发展的浓厚氛围。</span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,召开,全体,职工,', '2016-03-29 08:23:00', '2020-06-02 02:11:02', NULL),
(154, 165, 7, '黑龙江省能源环境研究院召开“两学一做”学习教育工作会议', 'admin', '2016年4月27日省能源院召开两学一做学习教育工作会议省科学院人事处全体党员和省能源院全体党员参加了会议会议由省能源院党委书记徐晓秋同志主持。 徐晓秋书记传达了省科', '/uploads/allimg/160427/1-16042G02P31c-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年4月27日省能源院召开&ldquo;两学一做&rdquo;学习教育工作会议,省科学院人事处全体党员和省能源院全体党员参加了会议,会议由省能源院党委书记徐晓秋同志主持。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/160427/1-16042G02P31c.JPG\" style=\"width: 553px; height: 383px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记传达了省科学院&ldquo;两学一做&rdquo;学习教育工作会议精神,宣读了省能源院关于开展&ldquo;两学一做&rdquo;学习教育实施方案。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记强调,省能源院各党支部要按照省科学院统一安排,全体党员干部要严格认真进行每日一学、半月研讨、每月一测,通过&ldquo;两学一做&rdquo;学习教育的开展,切实加强自我提升,进一步增强党性意识和宗旨意识,始终保持干事创业、开拓进取的精气神,在省能源院振兴发展中当标兵、作模范。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/160427/1-16042G02U9343.jpg\" style=\"width: 553px; height: 311px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 省科学院人事处张兴处长指出,要将&ldquo;两学一做&rdquo;学习教育与省科学院党建联系点制度紧密结合,加强与基层院所的联系沟通,切实解决相关实际问题,要充分调动广大党员干事创业的积极性与创造性,有效指导各领域工作。<br />\r\n<br />\r\n<br />\r\n&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;黑龙江省科学院人事处&nbsp;&nbsp;&nbsp;&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;黑龙江省能源环境研究院&nbsp;&nbsp;&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2016年4月27日 &nbsp; &nbsp; &nbsp;</span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,召开,“,2016年,', '2016-04-27 02:31:24', '2020-06-02 02:11:02', NULL),
(155, 166, 7, '中共黑龙江省能源环境研究院委员会召开换届选举大会', 'admin', '根据《中国共产党章程》和相关规定经省能源院党委研究报请省科学院机关党委批准中共黑龙江省能源环境研究院委员会于2016年5月19日召开全体党员大会省能源院党委书记、院', '/uploads/allimg/160520/1-1605200P531419-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 根据《中国共产党章程》和相关规定经省能源院党委研究报请省科学院机关党委批准中共黑龙江省能源环境研究院委员会于2016年5月19日召开全体党员大会省能源院党委书记、院长徐晓秋同志主持会议省科学院机关党委副书记刘颖同志参加会议并讲话。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/160520/1-1605200P531419.JPG\" style=\"width: 545px; height: 361px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 大会共有两项议程:一是听取和审议《中共黑龙江省能源环境研究院第一届委员会工作报告》,二是选举产生中共黑龙江省能源环境研究院第二届委员会。<br />\r\n徐晓秋同志作了题为《党建工作是第一要务》的工作报告总结回顾了第一届党委成立以来的主要工作情况并对下一步的党建工作提出了思路和建议。<br />\r\n大会通过了第一届党委工作报告、大会选举办法和监票人、计票人名单。本次大会选举产生了徐晓秋、关春玲、刘伟、王欣、李福裿五名同志为中共黑龙江省能源环境研究院第二届委员会委员徐晓秋同志为中共黑龙江省能源环境研究院第二届委员会书记。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/storage/uploads/allimg/160520/1-1605200P554L7.jpg\" style=\"width: 460px; height: 630px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 最后,刘颖同志对能源院党建工作给予了肯定,她指出,在省科学院党组的领导下,省能源院党委始终把抓党建作为工作中的重中之重,严格按照省科学党组的相关部署,持续推进学习型、服务型和创新型党组织建设,切实履行两个责任,在思想建设、班子建设、创先争优、特色活动、统战工作等多方面都取得了不错的成绩,希望省能源院党委再接再厉,持续发挥先锋模范带头作用和战斗堡垒作用,不断创新党建工作的思维方式,结合新形势、新任务开拓党建工作的新格局。</span>', 1, 0, '未知', '中共,黑龙江省,能源,环境,研究院,委员会,', '2016-05-19 05:10:00', '2020-06-02 02:11:02', NULL),
(156, 167, 7, '黑龙江省能源环境研究院召开中心组学习扩大会议', 'admin', '6月8日上午黑龙江省能源环境研究院召开中心组学习扩大会议学习贯彻落实省科学院党组中心组扩大会议精神和省委十一届七次全体会议上王宪魁书记的讲话及陆昊省长的总结讲话', '/uploads/allimg/160608/1-16060Q421404Q-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 6月8日上午黑龙江省能源环境研究院召开中心组学习扩大会议学习贯彻落实省科学院党组中心组扩大会议精神和省委十一届七次全体会议上王宪魁书记的讲话及陆昊省长的总结讲话精神。能源院领导班子及全体职工参加了此次会议会议由省能源院党委书记、院长徐晓秋同志主持。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/160608/1-16060Q421404Q.JPG\" style=\"width: 605px; height: 454px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 会上,徐晓秋书记传达了省科学院党组中心组扩大会议精神和省委十一届七次全体会议的主要内容,强调要深刻领会、准确把握全面振兴指导思想、&ldquo;三个方面&rdquo;解放思想、&ldquo;六个着力&rdquo;走出新路子、做好&ldquo;三篇大文章&rdquo;和强化五个&ldquo;进一步&rdquo;的指示精神;深入学习&ldquo;五头五尾&rdquo;、&ldquo;五个发展&rdquo;工作要求、把握&ldquo;四个四&rdquo;精神实质、要牢固树立&ldquo;四个意识&rdquo;、强化领导干部的&ldquo;四个过硬&rdquo;、要重点把握&ldquo;四个坚持&rdquo;重要要求指导工作实践、深刻领会&ldquo;九个三&rdquo;重要意义。要结合省能源院实际情况继续推动创新创业发展,激发内生动力,抓住机遇,真正做到&ldquo;走进去,走下去,走出去&rdquo;,不惧艰难,奋力走出能源院创新发展的新路子。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/160608/1-16060Q422095H.JPG\" style=\"width: 605px; height: 454px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 最后,徐晓秋书记指出,省能源院广大职工要将此次学习精神作为今后一段时期内首要学习内容,制定切实有效的工作计划,做到&ldquo;铺满盖严、不留死角&rdquo;,同时对青年科技工作者提出殷切希望,鼓励年轻人奋发图强、创新创业,敢于担当,为大科学院的创新发展贡献力量。</span><br />\r\n', 1, 0, '未知', '黑龙江省,能源,环境,研究院,召开,中心组,6月,', '2016-06-08 06:19:35', '2020-06-02 02:11:02', NULL),
(157, 168, 7, '缅怀先烈 铭记历史--省能源院开展纪念建党95周年活动', 'admin', '为纪念中国共产党建党九十五周年,省能源院全体职工及党建联系点院机关人事处党支部部分成员共同参观了爱国主义教育基地东北烈士纪念馆,一同缅怀先烈,深受教育,全体党员重', '/uploads/allimg/160720/1-160H01002402E-lp.JPG', '&nbsp; &nbsp; &nbsp; &nbsp; 为纪念中国共产党建党九十五周年,省能源院全体职工及党建联系点院机关人事处党支部部分成员共同参观了爱国主义教育基地&mdash;&mdash;东北烈士纪念馆,一同缅怀先烈,深受教育,全体党员重温入党誓词。\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/160720/1-160H01002402E.JPG\" style=\"width: 640px; height: 480px;\" /><br />\r\n &nbsp;</div>\r\n&nbsp; &nbsp; &nbsp; &nbsp; 纪念馆分为《黑土英魂&mdash;&mdash;东北抗日战争时期烈士事迹》和《伪满哈尔滨警察厅遗址及罪恶展》两部分。直观的图片、雕塑、实物及影像资料真实地再现了自九一八事件以来一直到抗日战争胜利的十四年间,东北抗日烈士的英雄事迹。大家在参观过程中感触很深,表示要继承党的优良传统,坚定革命理想信念,弘扬先烈们面对流血牺牲不改气节的无私奉献精神,努力做弘扬正气的楷模。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 在重温入党誓词仪式中,全体党员们面对党旗庄严宣誓,立下对党忠诚的誓言,表达了为党的事业奋斗终身的决心。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此次活动让广大职工受到了一次深刻的党性洗礼,使大家牢记职责使命,激发攻坚克难、乘势而进的动力,以求真务实的精神深入开展&ldquo;两学一做&rdquo;学习教育,同时立足本职岗位,推动能源院又好又快发展,不断开创各项工作的新局面。<br />\r\n', 1, 0, '未知', '缅怀,先烈,铭记,历史,省,能源,院,开展,纪念,', '2016-07-04 01:59:00', '2020-06-02 02:11:02', NULL),
(158, 169, 7, '黑龙江省能源环境研究院两项课题顺利通过鉴定', 'admin', '2016年7月13日由黑龙江省科学院组织专家对省能源环境研究院承担的两项黑龙江省院所基本应用技术研究专项《车用甲醇汽油抗水复合添加剂技术研究》、《太阳能空气采暖智能控制装', '/uploads/allimg/160720/1-160H0101Q4226-lp.JPG', '<span style=\"font-family:times new roman,times,serif;\"><span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年7月13日由黑龙江省科学院组织专家对省能源环境研究院承担的两项黑龙江省院所基本应用技术研究专项《车用甲醇汽油抗水复合添加剂技术研究》、《太阳能空气采暖智能控制装置的应用研究》进行了成果鉴定。鉴定委员会由哈尔滨工程大学、哈尔滨理工大学、哈尔滨703研究所、哈尔滨电站设备成套所、黑龙江省节能技术中心等单位的7位学科专家组成。省科学院科研处王阳处长主持了此次鉴定会。</span></span><br />\r\n<div style=\"text-align: center;\">\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-family:times new roman,times,serif;\"><span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/160720/1-160H0101Q4226.JPG\" style=\"width: 563px; height: 375px;\" /></span></span></div>\r\n<br />\r\n<span style=\"font-family:times new roman,times,serif;\"><span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会专家认真听取了各项目负责人的工作汇报,审议了项目组提供的全部鉴定材料。经充分质询、讨论,鉴定专家委员会认为项目组提供的鉴定材料齐全、研究路线合理,对项目的实用性给予了较高的评价:抗水复合添加剂解决了甲醇汽油在实际应用中出现的问题,提高了煤基甲醇的经济利用效益;太阳能空气采暖智能装置实现了系统运行的高效性、实用性和室内生活的舒适性,经审议一致同意两个项目的研究成果均达到了国内领先水平。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 这两个项目的顺利鉴定,将进一步促进我院在节能技术方向的深入研究,对学科团队的建设和发展起到了重要的支撑作用。</span></span>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,两项,课题,顺利,', '2016-07-14 02:20:00', '2020-06-02 02:11:02', NULL),
(159, 170, 6, '省科学院与牡丹江市举行院市合作会议-省能源院两项成果成功签约', 'admin', '8月2日黑龙江省科学院与牡丹江市政府举行院市合作会议暨合作协议签约仪式省科学院党组书记赵梅、院长郭春景、牡丹江市市委书记 张雨浦、 市长刘忻、副市长王钢出席会议。签', '/uploads/allimg/160804/1-160P411225D57-lp.jpg', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 8月2日黑龙江省科学院与牡丹江市政府举行院市合作会议暨合作协议签约仪式省科学院党组书记赵梅、院长郭春景、牡丹江市市委书记<span style=\"color: rgb(51, 51, 51); font-family: arial; line-height: 16.016px;\">张雨浦、</span>市长刘忻、副市长王钢出席会议。签约仪式上,省能源环境研究院党委书记、院长徐晓秋代表省能源院与宁安市佳清化工有限公司、奥通汽车部件制造有限公司成功签订合作协议,未来省能源院将与上述企业在煤基燃料甲醇应用技术、生物质压缩燃料领域开展全面产学研合作。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:26px;\"><img alt=\"\" src=\"/storage/uploads/allimg/160804/1-160P4112459117.jpg\" style=\"width: 432px; height: 362px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/160804/1-160P4112510637.jpg\" style=\"width: 432px; height: 365px;\" /></span></div>\r\n', 1, 0, '未知', '省,科学院,与,牡丹江市,举行,院市,合作,会议,', '2016-08-04 03:24:47', '2020-06-02 02:11:02', NULL),
(160, 171, 6, '省科学院郭春景院长一行到省能源院调研检查学科团队发展建设情况', 'admin', '2016年7月13日下午省科学院郭春景院长沙长青副院长科研处王阳处长隋月梅副处长赴能源院调研检查学科团队发展建设情况。在听取完两个团队的工作汇报后郭院长结合团队现', '/uploads/allimg/161007/1-16100GH0102Q-lp.jpg', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年7月13日下午省科学院郭春景院长沙长青副院长科研处王阳处长隋月梅副处长赴能源院调研检查学科团队发展建设情况。在听取完两个团队的工作汇报后郭院长结合团队现状对团队学科方向、人才队伍构建、未来定位进行了细致点评沙长青副院长也对团队建设中的关键问题进行了点评。通过此次会议使能源院两个团队更明确了发展定位更明确了今后自主创新的发力点。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GH0102Q.jpg\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GH030524.jpg\" style=\"width: 540px; height: 405px;\" /></div>\r\n', 1, 0, '未知', '省,科学院,郭春景,郭,春景,院长,一行,到,能源,', '2016-07-14 09:17:00', '2020-06-02 02:11:02', NULL),
(161, 172, 6, '穆棱市长一行到省能源院考察调研', 'admin', '8月17日穆棱市长、工信局局长和相关企业负责人一行到省能源院考察调研洽谈合作。 省能源院党委书记、院长徐晓秋同志、副院长关春玲同志对来访人员表示欢迎,相关研究室科研', '/uploads/allimg/161007/1-16100GJT1227-lp.JPG', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8月17日穆棱市长、工信局局长和相关企业负责人一行到省能源院考察调研洽谈合作。 省能源院党委书记、院长徐晓秋同志、副院长关春玲同志对来访人员表示欢迎,相关研究室科研人员向来访人员介绍我院科研成果。</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GJT1227.JPG\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GJULP.JPG\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GK045224.JPG\" style=\"width: 540px; height: 405px;\" /></div>\r\n', 1, 0, '未知', '穆棱,市长,一行,到,省,能源,院,考察,调研,8月,', '2016-08-18 09:56:00', '2020-06-02 02:11:02', NULL),
(162, 173, 6, '省能源院党委召开中心组学习扩大会议,深入学习贯彻落实全省“两学一做”学习教育工作座谈会上省委常委、组织部长杨汭同志讲话精神和院党组书记赵梅同志的重要讲话精神', 'admin', '8月18日省能源院党委召开中心组学习扩大会议深入学习贯彻落实全省两学一做学习教育工作座谈会上省委常委、组织部长杨汭同志讲话精神和院党组书记赵梅同志的重要讲话精神会', '/uploads/allimg/161007/1-16100GK510356-lp.JPG', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8月18日省能源院党委召开中心组学习扩大会议深入学习贯彻落实全省&ldquo;两学一做&rdquo;学习教育工作座谈会上省委常委、组织部长杨汭同志讲话精神和院党组书记赵梅同志的重要讲话精神,会议由省能源院党委书记、院长徐晓秋同志主持,随后召开支部书记会议,部署下一步&ldquo;两学一做&rdquo;学习教育工作任务。&nbsp;</span><br />\r\n <br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GK510356.JPG\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GK53E42.JPG\" style=\"width: 540px; height: 405px;\" /></div>\r\n', 1, 0, '未知', '省能源院党委召开中心组学习扩大会议,深入学', '2016-08-19 09:52:00', '2020-06-02 02:11:02', NULL),
(163, 174, 6, '省能源院召开会议,传达全省科技创新大会精神和王宪魁书记、陆昊省长及省科学院党组赵梅书记的讲话精神', 'admin', '8月29日上午省能源院召开会议传达全省科技创新大会精神和王宪魁书记、陆昊省长及省科学院党组赵梅书记的讲话精神省能源院党委成员及中层干部参加了会议。按照赵梅书记的', '/uploads/allimg/161007/1-16100GQ01S34-lp.JPG', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 8月29日上午省能源院召开会议传达全省科技创新大会精神和王宪魁书记、陆昊省长及省科学院党组赵梅书记的讲话精神省能源院党委成员及中层干部参加了会议。按照赵梅书记的指示省能源院党委书记、院长徐晓秋同志部署了近期相关工作要求省能源院全体干部职工将各文件精神、相关政策学深、深透围绕国家、省委及省科学院改革总体要求结合省能源院工作实际经全体职工充分研究讨论形成《黑龙江省能源环境研究院科技改革实施方案》。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GQ01S34.JPG\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GQ033441.JPG\" style=\"width: 540px; height: 405px;\" /></div>\r\n', 1, 0, '未知', '省,能源,院,召开,会议,传达,全省,科技创新,', '2016-08-29 10:09:00', '2020-06-02 02:11:02', NULL),
(164, 175, 6, '第十八届中国科协年会-暨全国科技工作者创新创业总决赛在西安举行,我院两选手参加比赛', 'admin', '9月22日 第十八届中国科协年会-暨全国科技工作者创新创业总决赛在西安举行省能源院关春玲副院长担任领队省能源院周闯和陆佳两位选手携《工业化封闭环式沼气发电系统1.0》', '/uploads/allimg/161007/1-16100GR35MG-lp.JPG', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 9月22日 第十八届中国科协年会-暨全国科技工作者创新创业总决赛在西安举行省能源院关春玲副院长担任领队省能源院周闯和陆佳两位选手携《工业化封闭环式沼气发电系统1.0》参加此次总决赛。&nbsp;</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GR35MG.JPG\" style=\"width: 800px; height: 600px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GR41TS.JPG\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GR44X09.JPG\" style=\"width: 576px; height: 324px;\" /></span></div>\r\n', 1, 0, '未知', '第十,八届,中国科协,年会,暨,全国,科技,9月,', '2016-09-23 10:19:00', '2020-06-02 02:11:02', NULL),
(165, 176, 6, '省能源院举办“情系青山绿水 共庆祖国华诞” 关爱环境社会实践活动', 'admin', '2016年9月30日能源环境研究院与自动化研究所举行情系青山绿水共庆祖国华诞关爱环境社会实践活动。国庆前夕艳阳天环保志愿松峰山能源自动化齐携手助建环保美家园。沿途尽', '/uploads/allimg/161007/1-16100GS00a37-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年9月30日能源环境研究院与自动化研究所举行&ldquo;情系青山绿水&nbsp;共庆祖国华诞&rdquo;&nbsp;关爱环境社会实践活动。&mdash;&mdash;国庆前夕艳阳天,环保志愿松峰山,能源自动化齐携手,助建环保美家园。沿途尽览秋景色,车内尽情把言欢,兄弟院所增友谊,双创争优齐向前。&nbsp;</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GS00a37.JPG\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161007/1-16100GS026409.JPG\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,举办,“,情系,青山绿水,共庆,祖国,', '2016-09-30 10:27:00', '2020-06-02 02:11:02', NULL),
(166, 177, 7, '与时俱进,知识产权工作再上新台阶', 'admin', '2016年10月12-14日黑龙江省能源环境研究院参加了由黑龙江省知识产权局举办的关于举办全省高校、科研院所知识产权管理工作经验交流会为进一步提升我院所知识产权工作管理水平', '/uploads/allimg/161021/1-1610210Q2193D-lp.jpg', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年10月12-14日黑龙江省能源环境研究院参加了由黑龙江省知识产权局举办的&ldquo;关于举办全省高校、科研院所知识产权管理工作经验交流会&rdquo;,为进一步提升我院所知识产权工作管理水平和能力奠定了基础。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161021/1-1610210Q2193D.jpg\" style=\"width: 784px; height: 441px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议在鸡西市委机关招待所举行,省知识产权局张毅副局长和中科院、哈工程专家教授就高校、科研院所知识产权战略实施,专利转化运用等内容进行发言。并选取部分典型单位在会上就本单位知识产权管理体制机制建设进行经验介绍。黑龙江省科学院科研处隋月梅副处长介绍了专利创造、运用、保护、管理等方面情况和知识产权文化建设情况。为我院知识产权及成果转化制定工作策略、启发创新思路提供了有益参考与帮助。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161021/1-1610210Q244227.jpg\" /></span></div>\r\n', 1, 0, '未知', '与时俱进,知识产权,工作,再上,新台阶,新,', '2016-10-14 10:06:00', '2020-06-02 02:11:02', NULL),
(167, 178, 7, '我院参加省科协创新方法培训班-丁会敏同志荣获优秀学员光荣称号', 'admin', '2016年10月13日省能源院郭广亮、丁会敏、范超三人参加了黑龙江省科协双创活动周一线工程师创新方法培训班课程三人带着各自在工作中遇到的一些技术机械难题参加培训在6天的', '/uploads/allimg/161021/1-1610210R624I8-lp.jpg', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; 2016年10月13日省能源院郭广亮、丁会敏、范超三人参加了黑龙江省科协双创活动周一线工程师创新方法培训班课程三人带着各自在工作中遇到的一些技术机械难题参加培训在6天的高强度紧张的培训学习中积极参与小组讨论、与老师沟通探讨经过培训不但解决了各自的技术机械问题且顺利通过答辩表现突出。其中我院丁会敏同志荣获优秀学员光荣称号。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161021/1-1610210R624I8.jpg\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161021/1-1610210R64G58.jpg\" /></span></div>\r\n', 1, 0, '未知', '我院,参加省,科协,创,新方法,培训班,丁会敏,', '2016-10-18 11:17:00', '2020-06-02 02:11:02', NULL),
(168, 179, 7, '我院参加全国科学院联盟能源分会会议', 'admin', '10月13日我院参加全国科学院联盟能源分会会议。 我院作为全国科学院联盟能源分会的会员单位,与其他成员单位共同推动中科院、地方科学院和骨干院所企业在能源领域的战略合作', '/uploads/allimg/161021/1-1610210T230Y6-lp.jpg', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 我院参加全国科学院联盟能源分会会议。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 我院作为全国科学院联盟能源分会的会员单位,与其他成员单位共同推动中科院、地方科学院和骨干院所企业在能源领域的战略合作和协同创新,提升能源领域技术创新和产业转型升级。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161021/1-1610210T230Y6.jpg\" style=\"width: 558px; height: 314px;\" /></span></div>\r\n', 1, 0, '未知', '我院,参加,全国,科学院,联盟,能源,分会,会议,', '2016-10-14 00:44:00', '2020-06-02 02:11:02', NULL),
(169, 180, 7, '省能源院参加全国科学院洁净能源知识产权联盟成立大会', 'admin', '10月13日省能源院参加全国科学院洁净能源知识产权联盟成立大会。 会上,我院与联盟单位共商能源产业布局、低碳经济发展和知识产权运营事宜,提升产业创新能力,探索实践科技', '/uploads/allimg/161021/1-1610210TZ3J7-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 10月13日省能源院参加全国科学院洁净能源知识产权联盟成立大会。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 会上,我院与联盟单位共商能源产业布局、低碳经济发展和知识产权运营事宜,提升产业创新能力,探索实践科技与经济相结合的体制机制。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161021/1-1610210TZ3J7.JPG\" style=\"width: 720px; height: 540px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,参加,全国,科学院,洁净,知识产权,', '2016-10-14 00:50:00', '2020-06-02 02:11:02', NULL),
(170, 181, 8, '我院召开“两学一做”“双创争优”延安学习培训汇报会', 'admin', '10月19日我院召开两学一做双创争优延安学习培训汇报会能源院领导班子和全体党员参加了本次汇报会。 参加省科学院延安培训班的两名党员代表李福裿和王欣,分别做了以学习光', '/uploads/allimg/161021/1-1610210ZK02R-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 10月19日我院召开&ldquo;两学一做&rdquo;&ldquo;双创争优&rdquo;延安学习培训汇报会,能源院领导班子和全体党员参加了本次汇报会。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161021/1-1610210ZK02R.JPG\" style=\"width: 640px; height: 480px;\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161021/1-1610210ZPN08.JPG\" style=\"width: 640px; height: 480px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 参加省科学院延安培训班的两名党员代表李福裿和王欣,分别做了以&rdquo;学习光荣历史,汲取精神力量&rdquo;和&ldquo;胜利延安,红色之旅&rdquo;的学习汇报,与全体党员同志一同分享了延安之行的所见、所学、所悟,并表示将会把延安精神与自身工作结合好,更好的为省能源院的发展贡献力量。</span>', 1, 0, '未知', '我院,召开,“,两学一做,”,双创争优,延安,', '2016-10-19 00:53:00', '2020-06-02 02:11:02', NULL),
(171, 182, 6, '我院组织全院职工观看纪录片《永远在路上》', 'admin', '根据省科学院关于学习贯彻落实《中国共产党问责条例》的相关部署,我院结合两学一做学习教育工作,利用午休时间,组织广大职工观看纪录《永远在路上》。', '/uploads/allimg/161026/1-161026091U3336-lp.JPG', '&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:22px;\"> 根据省科学院关于学习贯彻落实《中国共产党问责条例》的相关部署,我院结合&ldquo;两学一做&rdquo;学习教育工作,利用午休时间,组织广大职工观看纪录《永远在路上》。</span><br />\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161026/1-161026091U3336.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161026/1-161026091910512.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n', 1, 0, '未知', '我院,组织,全院,职工,观看,纪录片,《,根据省,', '2016-10-26 01:09:39', '2020-06-02 02:11:02', NULL),
(172, 183, 6, '召开职工大会学习共产党成立95周年各项讲话精神', 'admin', '7月7日下午能源院召开了全体职工大会会议传达了中央办公厅关于学习贯彻习近平总书记在庆祝中国共产党成立95周年大会上的讲话学习贯彻王宪魁书记在中共黑龙江省委庆祝中国共', '/uploads/allimg/161026/1-16102610150I35-lp.JPG', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7月7日下午能源院召开了全体职工大会会议传达了中央办公厅关于学习贯彻习近平总书记在庆祝中国共产党成立95周年大会上的讲话学习贯彻王宪魁书记在中共黑龙江省委庆祝中国共产党成立95周年暨表彰大会上的讲话以及学习赵梅书记在省科学院纪念建党95周年&ldquo;两学一做、双创争优&rdquo;暨先优表彰大会上的讲话,并部署了下一步党建工作。&nbsp;</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161026/1-16102610150I35.JPG\" style=\"width: 600px; height: 338px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161026/1-161026101529145.JPG\" style=\"width: 600px; height: 338px;\" /></span></div>\r\n', 1, 0, '未知', '召开,职工,大会,学习,共产党,成立,95周年,7月,', '2016-07-08 02:14:00', '2020-06-02 02:11:02', NULL),
(173, 184, 6, '我院组织全体职工认真学习贯彻习长征精神', 'admin', '按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求10月28日省能源院召开全体职工会议会', '/uploads/allimg/161111/1-161111093936144-lp.JPG', '&nbsp; &nbsp; &nbsp; &nbsp; 按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求10月28日省能源院召开全体职工会议会议围绕赵梅书记在省科学院《中国共产党问责条例》学习大会上的讲话及提出的要求认真学习习近平总书记在纪念红军长征80周年大会上的讲话全文宣读学习了十八届六中全会公报并进行了讨论。\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161111/1-161111093936144.JPG\" style=\"height: 800px; width: 600px;\" /></div>\r\n&nbsp; &nbsp; &nbsp; &nbsp; 通过学习,大家一致认为,习近平总书记的重要讲话回顾了红军长征这一革命壮举、壮丽史诗和巍峨丰碑,总结了长征的伟大意义和深刻精神内涵,提出了弘扬伟大长征精神、走好今天的长征路的六方面要求,对于我们不忘初心、继续前进,全面做好各项工作,具有重要指导意义,会议要求各党支部要开展好长征精神的学习,并进行集中讨论,会议同时对我院近期科研和党建工作做了进一步部署。<br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161111/1-161111095315118.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/161111/1-16111109553Q60.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n &nbsp;</div>\r\n', 1, 0, '未知', '我院,组织,全体,职工,认真,学习贯彻,习,长征,', '2016-10-28 09:30:00', '2020-06-02 02:11:02', NULL),
(174, 185, 6, '我院组织全体职工认真学习贯彻习长征精神', 'admin', '按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求10月28日省能源院召开全体职工会议会', '/uploads/allimg/161111/1-161111093936144-lp.JPG', '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求10月28日省能源院召开全体职工会议会议围绕赵梅书记在省科学院《中国共产党问责条例》学习大会上的讲话及提出的要求认真学习习近平总书记在纪念红军长征80周年大会上的讲话全文宣读学习了十八届六中全会公报并进行了讨论。</span><br />\r\n<div style=\"text-align: center;\">\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161111/1-16111109553Q60.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 通过学习,大家一致认为,习近平总书记的重要讲话回顾了红军长征这一革命壮举、壮丽史诗和巍峨丰碑,总结了长征的伟大意义和深刻精神内涵,提出了弘扬伟大长征精神、走好今天的长征路的六方面要求,对于我们不忘初心、继续前进,全面做好各项工作,具有重要指导意义,会议要求各党支部要开展好长征精神的学习,并进行集中讨论,会议同时对我院近期科研和党建工作做了进一步部署。</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/161111/1-161111093936144.JPG\" style=\"height: 800px; width: 600px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/161111/1-161111095315118.JPG\" style=\"width: 600px; height: 450px;\" /></span><br />\r\n <br />\r\n <br />\r\n &nbsp;</div>\r\n', 1, 0, '未知', '我院,组织,全体,职工,认真,学习贯彻,习,长征,', '2014-10-28 08:57:00', '2020-06-02 02:11:02', NULL),
(175, 186, 7, '公示-“黑龙江省能源环境研究院(黑龙江省科学院科技孵化中心)间接费用管理办法(试行)”', 'admin', '黑龙江省能源环境研究院黑龙江省科学院科技孵化中心间接费用管理办法试行经2017年3月20日全体职工大会审议通过即日起进行公示公示期五个工作日。如有任何异议请与', '', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省能源环境研究院黑龙江省科学院科技孵化中心间接费用管理办法试行经2017年3月20日全体职工大会审议通过即日起进行公示公示期五个工作日。如有任何异议请与综合办联系。</span><br />\r\n <table width=\"450\">\r\n <tbody>\r\n <tr>\r\n <td height=\"30\" width=\"20\">\r\n <a href=\"/uploads/soft/170320/1-1F320110110.docx\" target=\"_blank\"><img align=\"middle\" alt=\"\" border=\"0\" src=\"/plus/img/addon.gif\" /></a></td>\r\n <td>\r\n <a href=\"/uploads/soft/170320/1-1F320110110.docx\" target=\"_blank\"><u>黑龙江省能源环境研究院(黑龙江省科学院科技孵化中心)间接费用管理办法(试行)</u></a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n</div>\r\n<br />\r\n', 1, 0, '未知', '“,黑龙江省,能源,环境,研究院,科学院,科技,', '2017-03-20 03:02:53', '2020-06-02 02:11:02', NULL),
(176, 187, 7, '我院召开党风廉政建设扩大会议', 'admin', '4月28日省能源院召开党风廉政建设扩大会议迅速传达省科学院月报会上关于党风廉政建设的相关要求并部署各项工作省能源院领导班子全体职工参加了会议会议由省能源院', '/uploads/allimg/170502/1-1F5020QH6427-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4月28日省能源院召开党风廉政建设扩大会议迅速传达省科学院月报会上关于党风廉政建设的相关要求并部署各项工作省能源院领导班子全体职工参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170502/1-1F5020QH6427.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170502/1-1F5020R423534.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;徐晓秋同志全文传达了省委纪委&ldquo;关于&lsquo;五一&rsquo;和&lsquo;端午节&rsquo;节日期间纪律要求的通知&rdquo;&ldquo;关于加强车辆管理严防节假日期间公车私用的通知&rdquo;同时要求省能源院全体干部职工要围绕省科学院2017年党风廉政工作会议上党组书记赵梅同志和纪检组长宫杰同志的讲话要求时刻严明政治纪律、严肃劳动纪律严格遵守各项法律及规章条例、严格执行各项制度用高标准规范自身行为各部门负责人要发挥&ldquo;一岗双责&rdquo;积极作用,坚决杜绝迟到早退、工作态度散漫、从事与无关的事宜,公车私用等现象,并再次强调要严格履行钉钉平台请假审批手续。最后,关春玲副院长指出各部门要做好节假日期间相关安全工作。</span><br />\r\n &nbsp;</div>\r\n', 1, 0, '未知', '我院,召开,党风,廉政建设,扩大会议,4月,28日,', '2017-04-20 02:04:00', '2020-06-02 02:11:02', NULL),
(177, 188, 7, '我院承担的省院所基本应用技术研究专项顺利通过鉴定', 'admin', '2017年4月19日由黑龙江省科学院组织专家对省能源环境研究院承担的黑龙江省院所基本应用技术研究专项《基于一村一厂生物质加工和清洁利用的寒区无煤生态村应用技术研究》进行了', '/uploads/allimg/170502/1-1F502100322b4-lp.JPG', '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2017年4月19日由黑龙江省科学院组织专家对省能源环境研究院承担的黑龙江省院所基本应用技术研究专项《基于&ldquo;一村一厂&rdquo;生物质加工和清洁利用的寒区&ldquo;无煤生态村&rdquo;应用技术研究》进行了成果鉴定。鉴定委员会由哈尔滨工程大学、哈尔滨理工大学、哈尔滨电站设备成套所等单位的7位专家组成。省科学院科研处王阳处长主持了此次鉴定会。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170502/1-1F502100322b4.JPG\" style=\"width: 450px; height: 600px;\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170502/1-1F502100352450.JPG\" style=\"width: 450px; height: 600px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会专家认真听取了项目组的工作汇报,审议了项目组提供的全部鉴定材料。经充分质询、讨论,鉴定专家委员会认为项目组提供的鉴定材料齐全、技术路线合理,对项目的实用性给予了较高的评价:采用&ldquo;一村一厂&rdquo;运营模式,大幅降低家户式炊事及采暖的煤炭和薪柴消耗,实现了秸秆生物质加工和清洁利用,减轻了环境污染,通过示范村应用,为农村住宅用能提供了节能环保手段,为我国北方&ldquo;无煤村&rdquo;建设推广提供了示范。经审议一致同意项目的研究成果达到了国内领先水平。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 该成果的鉴定和应用为我省秸秆综合利用提供新思路,可以有效处置秸秆,减少环境,节省煤炭资源,产业前景广阔。</span>', 1, 0, '未知', '我院,承担,的,省,院所,基本,应用技术,研究,', '2017-04-19 01:53:00', '2020-06-02 02:11:02', NULL),
(178, 189, 7, '“成长 责任 理想”我院召开青年职工交流座谈会', 'admin', '为纪念并弘扬五四精神展现青春风采激发广大青年科技人员立足本职岗位、投身科研事业的热情5月5日上午省能源环境研究院开展了成长责任理想为主题的五四青年节座谈会', '/uploads/allimg/170512/1-1F512152GCM-lp.JPG', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;为纪念并弘扬五四精神展现青春风采激发广大青年科技人员立足本职岗位、投身科研事业的热情5月5日上午省能源环境研究院开展了&ldquo;成长&nbsp;责任&nbsp;理想&rdquo;为主题的五四青年节座谈会,院班子成员和全院青年进行了交流座谈。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512152GCM.JPG\" style=\"width: 600px; height: 600px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:22px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会上,院领导与参会青年人一起围绕主题,结合个人经历,立足岗位,分享了成长中的感悟,青年人敞开心扉,畅谈了工作、学习、生活中的体会,展示了当代青年思想活跃,蓬勃朝气的精神风貌。徐晓秋院长在认真听取了青年员工的发言后,鼓励青年员工要敢于担当、勇于创新创造,善于运用科学的工作方法,加强交流沟通,充分利用我院为年轻人搭建的学习交流平台,借鉴先进经验,创造性地开展工作。&nbsp;<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; 最后,院所班子成员对全体青年人寄予厚望,希望青年人有理想有担当,不断加强业务学习锻炼,脚踏实地开展工作,全面提升自身素质修养,肩负起青年人建设能源院的责任,在激情奋斗中绽放青春光芒。&nbsp;</span></div>\r\n', 1, 0, '未知', '“,成长,责任,理想,”,我院,召开,青年,职工,', '2017-05-05 07:19:00', '2020-06-02 02:11:02', NULL),
(179, 190, 7, '省能源院召开全体职工大会传达黑龙江省第十二次党代会精神、科学院党组扩大会议精神及赵梅书记讲话精神', 'admin', '5日上午黑龙江省能源环境研究院组织召开全体职工大会院班子成员参加会议会议由党委书记兼院长徐晓秋同志主持。 会议传达了黑龙江省第十二次党代会精神、科学院党组扩大', '/uploads/allimg/170512/1-1F512153040C1-lp.JPG', '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5日上午黑龙江省能源环境研究院组织召开全体职工大会院班子成员参加会议会议由党委书记兼院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512153040C1.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F51215311DT.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:22px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议传达了黑龙江省第十二次党代会精神、科学院党组扩大会议精神及赵梅书记讲话精神,同时对下阶段工作进行部署。会议指出,省第十二次党代会是凝心聚力、团结奋进、风清气正的会议,全体职工要把深入学习贯彻省第十二次党代会精神作为当前和今后一个时期的重要政治任务。要围绕中心工作谋实招,积极把各项工作融入到单位新一轮发展的总体布局之中加以谋划和部署。党员干部要起模范带头作用,以支部为单位开展学习活动,强化制度机制建设、作风效能建设,强化政治纪律,抓细抓小,进一步开拓工作的领域、创新工作的机制。会议还传达了科学院党组扩大会议精神及赵梅书记讲话精神,以新理念引领新路子,要求各支部将把此次学习活动与&ldquo;两学一做&rdquo;活动结合起来,坚持学以致用,知行合一,不断团结广大党员干部和群众,加大力气抓建设,以更加富有成效的工作推动党代会精神的全面落实,为决战决胜全面小康贡献力量。&nbsp;</span></div>\r\n', 1, 0, '未知', '省,能源,院,召开,全体,职工,大会,传达,5日,', '2017-05-05 04:29:00', '2020-06-02 02:11:02', NULL),
(180, 191, 7, '省能源院顺利通过省直精神文明单位标兵验收', 'admin', '5日上行省能源院与其他3家院所一起参加省省直工委文明办文明单位创建工作验收会并顺利通过验收。', '/uploads/allimg/170512/1-1F512153K3D0-lp.JPG', '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 5日上午省能源院与其他3家院所一起参加省&nbsp;省直工委文明办文明单位创建工作验收会,并顺利通过验收。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512153K3D0.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,顺利,通过,省直,精神,文明单位,', '2017-05-05 05:12:00', '2020-06-02 02:11:02', NULL),
(181, 192, 7, '省能源院召开党风廉政建设扩大会议迅速传达省科学院党风廉政建设相关要求', 'admin', '4月28日省能源院召开党风廉政建设扩大会议迅速传达省科学院月报会上关于党风廉政建设的相关要求并部署各项工作省能源院领导班子全体职工参加了会议会议由省能源院', '/uploads/allimg/170512/1-1F512154321335-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4月28日省能源院召开党风廉政建设扩大会议迅速传达省科学院月报会上关于党风廉政建设的相关要求并部署各项工作省能源院领导班子全体职工参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512154321335.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F51215433C20.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;徐晓秋同志全文传达了省委纪委&ldquo;关于&lsquo;五一&rsquo;和&lsquo;端午节&rsquo;节日期间纪律要求的通知&rdquo;&ldquo;关于加强车辆管理严防节假日期间公车私用的通知&rdquo;同时要求省能源院全体干部职工要围绕省科学院2017年党风廉政工作会议上党组书记赵梅同志和纪检组长宫杰同志的讲话要求时刻严明政治纪律、严肃劳动纪律严格遵守各项法律及规章条例、严格执行各项制度用高标准规范自身行为各部门负责人要发挥&ldquo;一岗双责&rdquo;积极作用,坚决杜绝迟到早退、工作态度散漫、从事与无关的事宜,公车私用等现象,并再次强调要严格履行钉钉平台请假审批手续。最后,关春玲副院长指出各部门要做好节假日期间相关安全工作。</span><br />\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,能源,院,召开,党风,廉政建设,扩大会议,4月,', '2017-04-28 07:41:00', '2020-06-02 02:11:02', NULL),
(182, 193, 7, '省能源院党委召开中心组学习扩大会议学习贯彻落实省科学院党风廉政会议精神', 'admin', '4月19日省能源院党委召开中心组学习扩大会议学习贯彻落实省科学院党风廉政会议精神省能源院领导班子、党委委员各党支部书记、部门负责人、职工代表参加了会议会议由', '/uploads/allimg/170512/1-1F51215542O40-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 4月19日省能源院党委召开中心组学习扩大会议学习贯彻落实省科学院党风廉政会议精神省能源院领导班子、党委委员各党支部书记、部门负责人、职工代表参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F51215542O40.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 孵化中心主任姜宏宇同志全文传达了省科学院党组书记赵梅同志的讲话及派驻纪检组组长宫杰同志的讲话精神。随后,徐晓秋同志指出,各部门要持续加强党风廉政建设工作,按照中央、省委及省科学院的要求,牢固树立&ldquo;四个意识&rdquo;,严格遵守相关&ldquo;条例&rdquo;&ldquo;准则&rdquo;,认真落实&ldquo;一岗双责&rdquo;,有效执行好已签订的党风廉政建设责任书中的相关工作,全体党员干部要以身作则,做好表率,为省能源院的发展打牢思想基础。最后,徐晓秋同志对近期相关工作进行了部署,副院长关春玲同志对安全工作做出了相应安排。&nbsp;</span></div>\r\n', 1, 0, '未知', '省,能源,院,党委,召开,中心组,学习,扩大会议,', '2017-04-19 09:14:00', '2020-06-02 02:11:02', NULL),
(183, 194, 7, '省能源院党委召开中心组学习会议', 'admin', '3月31日省能源院党委召开中心组学习会议院领导班子参加会议会议由徐晓秋同志主持。 参会人员学习了省科学院第二期关键少数政治理论能力提升班相关学习内容及党组书记赵梅', '/uploads/allimg/170512/1-1F5121556302J-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 3月31日省能源院党委召开中心组学习会议院领导班子参加会议会议由徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121556302J.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 参会人员学习了省科学院第二期&ldquo;关键少数&rdquo;政治理论能力提升班相关学习内容及党组书记赵梅同志在学习贯彻党的十八届六中会精神中组心学习研讨班上的讲话,围绕讲政治、强意识、重行动,结合自身学习,相互交流学习心得,同时针对科技体制改革工作,聚集省能源院未来发展,就如何发挥好&ldquo;关键少数&rdquo;带头作用,将十八届六中全会精神及赵梅书记讲话精神落实到实处,开展讨论。与会人员一致认为,在今后的工作中,要带头增强&ldquo;四个意识&rdquo;,带头坚定理想信念,带头严守党规党纪,不断促进省能源院各项工作取得新成绩、新发展。&nbsp;</span></div>\r\n', 1, 0, '未知', '省,能源,院,党委,召开,中心组,学习,会议,3月,', '2017-03-31 07:55:00', '2020-06-02 02:11:02', NULL),
(184, 195, 7, '省能源院举办女职工观影活动喜迎“三八”妇女节', 'admin', '值此三八妇女节来临之际,省能源院举行庆祝活动,组织全体女职工观看电影,这次活动营造出了浓郁的节日气氛,使广大女职工能在平日繁忙的工作中,放松身心,以更好的状态投入', '/uploads/allimg/170512/1-1F512155PHC-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 值此&ldquo;三八&rdquo;妇女节来临之际,省能源院举行庆祝活动,组织全体女职工观看电影,这次活动营造出了浓郁的节日气氛,使广大女职工能在平日繁忙的工作中,放松身心,以更好的状态投入工作,创出新业绩。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512155PHC.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512155R0M9.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,举办,女,职工,观影,活动,喜迎,“,', '2017-03-08 08:00:00', '2020-06-02 02:11:02', NULL),
(185, 196, 7, '省能源环境研究院党委召开“两学一做”专题民主生活会', 'admin', '2月15日黑龙江省能源环境研究院党委召开两学一做专题民主生活会省能源院党委书记、院长徐晓秋同志和省能源院党委委员、副院长关春玲同志参加会议省科学院党组书记赵梅同', '/uploads/allimg/170512/1-1F51216023S96-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2月15日黑龙江省能源环境研究院党委召开&ldquo;两学一做&rdquo;专题民主生活会,省能源院党委书记、院长徐晓秋同志和省能源院党委委员、副院长关春玲同志参加会议,省科学院党组书记赵梅同志和院机关党委书记刘颖同志列席会议,会议由徐晓秋书记主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F51216023S96.JPG\" style=\"width: 578px; height: 800px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;民主生活会上,省能源院党委书记徐晓秋同志代表班子及个人紧扣&ldquo;两学一做&rdquo;学习教育主题,围绕全面学习党的十八届六中全会精神,重点对照《关于新形势下党内政治生活的若干准则》和《中国共产党党内监督条例》,针对省科学院党建联系点及&ldquo;三走&rdquo;战略要求,紧密联系班子和个人思想、工作实际,深入查找剖析了各方面存在的问题及原因,同时坚持问题导向、准确、中恳地对班子成员和个人开展了批评与自我批评,并提出了明确具体、切实可行的整改措施。关春玲同志随后进行了发言,进行了深刻的剖析和批评与自我批评。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会上,省科学院党组书记赵梅同志就如何深入落实好党的十八届六中全会的学习,如何高质量的开展、规范、执行好党内政治生活、提高政治生活严肃性,如何把党建工作抓实抓细,如何申报重大事项,如何提高领导班子示范性和如何落实责任等若干问题提出了要求,围绕党内政治生活&ldquo;怎么看、怎么做、怎么抓&rdquo;与省能源院领导班子进行了深入交流探讨,最后赵梅书记对省能源院专题民主生活会给予肯定,指出此次会议准备充分,态度端正,希望省能源院领导班子根据自身查找的问题,迅速积极制定出方向性措施,全面推进省能源院党建工作。&nbsp;</span></div>\r\n', 1, 0, '未知', '省,能源,环境,研究院,党委,召开,“,两学一做,', '2017-02-15 08:00:00', '2020-06-02 02:11:02', NULL),
(186, 197, 7, '省能源院各党支部组织全体党员及广大干部职工集体观看省科学院党组赵梅书记受邀坐客人民网视频访谈', 'admin', '20日省能源院各党支部组织全体党员及广大干部职工集体观看省科学院党组赵梅书记受邀坐客人民网视频访谈。', '/uploads/allimg/170512/1-1F5121605241R-lp.JPG', '<div>\r\n &nbsp; &nbsp; &nbsp;<span style=\"font-size:20px;\"> &nbsp; &nbsp;20日省能源院各党支部组织全体党员及广大干部职工集体观看省科学院党组赵梅书记受邀坐客人民网视频访谈。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121605241R.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F51216053U01.JPG\" style=\"width: 600px; height: 800px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512160612226.JPG\" style=\"width: 600px; height: 338px;\" /></div>\r\n', 1, 0, '未知', '省,能源,院各,党支部,组织,全体,党员,及,20日,', '2017-02-20 08:04:00', '2020-06-02 02:11:02', NULL),
(187, 198, 7, '省能源院召开全体职工会议宣布关于任命姜宏宇同志为孵化中心主任的任命文件', 'admin', '2月17日上午省能源院召开全体职工会议省科学院党组成员曾祥俊同志、人事处处长张兴同志参加了会议会议由省能源院院长徐晓秋同志主持。会上张兴处长宣读了关于任命姜宏', '/uploads/allimg/170512/1-1F512160QNN-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp;2月17日上午省能源院召开全体职工会议省科学院党组成员曾祥俊同志、人事处处长张兴同志参加了会议会议由省能源院院长徐晓秋同志主持。会上张兴处长宣读了关于任命姜宏宇同志为孵化中心主任参与省能源院班子分工的任职文件省能源院领导班子及全体职工对姜宏宇同志表示热烈的欢迎姜宏宇同志对日后的工作做出了表态最后曾祥俊同志对省能源院的工作给予肯定同时对姜宏宇同志今后的工作提出了五点要求祝愿省能源院在班子的带领下一定会有更加美好的未来。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512160QNN.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512160S0Q8.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,召开,全体,职工,会议,宣布,关于,', '2017-02-17 08:07:00', '2020-06-02 02:11:02', NULL),
(188, 199, 7, '省科学院郭春景院长与我院人员一共赴伊春调研', 'admin', '2月16日省科学院郭春景院长、能源院徐晓秋院长和生物能团队带头人刘伟一同前往伊春格润生态养殖公司的大型沼气工程进行调研郭院长要求能源院要结合我省养殖业现状在废弃', '/uploads/allimg/170512/1-1F512161255R0-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2月16日省科学院郭春景院长、能源院徐晓秋院长和生物能团队带头人刘伟一同前往伊春格润生态养殖公司的大型沼气工程进行调研郭院长要求能源院要结合我省养殖业现状在废弃物处理与利用领域以&ldquo;坑口电站&rdquo;模式打造寒地沼气全产业链。&nbsp;</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512161255R0.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512161309236.JPG\" style=\"width: 600px; height: 800px;\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121613233B.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '省,科学院,郭春景,郭,春景,院长,与,我院,人员,', '2017-02-16 08:10:00', '2020-06-02 02:11:02', NULL),
(189, 200, 7, '省能源环境研究院召开职工大会传达省科学院2017年工作会议精神', 'admin', '2017年1月24日上午省能源环境研究院召开职工大会传达省科学院2017年工作会议精神会上徐晓秋院长传达了省科学院2017年工作报告及院党组书记赵梅同志的讲话精神要求各部门会后', '/uploads/allimg/170512/1-1F512161H3134-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2017年1月24日上午省能源环境研究院召开职工大会传达省科学院2017年工作会议精神会上徐晓秋院长传达了省科学院2017年工作报告及院党组书记赵梅同志的讲话精神要求各部门会后系统学习领会会议精神并按照省科学院工作的总体思路和工作目标明确工作重点开展好2017年度相关工作最后对春节期间安全工作进行了部署。&nbsp;</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512161H3134.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512161I3I3.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,环境,研究院,召开,职工,大会,传达省,', '2017-01-24 08:16:00', '2020-06-02 02:11:02', NULL),
(190, 201, 7, '省能源院三项课题顺利通过鉴定', 'admin', '2017年1月10日由黑龙江省科学院组织专家对省能源环境研究院和科技孵化中心承担的三项课题省科学院预研项目《寒区农业固体废弃物循环厌氧发酵关键技术研究》、学部委员指导专项', '/uploads/allimg/170512/1-1F5121619492K-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2017年1月10日由黑龙江省科学院组织专家对省能源环境研究院和科技孵化中心承担的三项课题省科学院预研项目《寒区农业固体废弃物循环厌氧发酵关键技术研究》、学部委员指导专项《抗生素对鸡粪厌氧消化过程影响的研究》和院所基本应用技术研究专项《污泥超声预处理对厌氧消化工艺性能的影响研究》进行了成果鉴定。鉴定委员会由来自东北农业大学等多家单位的专家组成。省科学院科研处王阳处长主持了此次鉴定会。</span></div>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121619492K.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512162003622.JPG\" style=\"width: 600px; height: 450px;\" /></span><br />\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;鉴定委员会专家认真听取了各课题组的工作汇报,审议了课题组提供的全部鉴定材料。经充分质询、讨论,鉴定专家委员会认为课题组提供的鉴定材料齐全、研究路线合理,并对项目的现实指导意义和取得的成果给予了较高的评价,经审议一致同意三个课题的研究成果达到了国内领先水平。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; 这三个课题顺利通过鉴定,将进一步促进我院在废弃物处理技术方向的深入研究,对生物能学科团队的建设和发展起到了重要的支撑作用。&nbsp;</span></div>\r\n', 1, 0, '未知', '省,能源,院,三项,课题,顺利,通过鉴定,2017年,', '2017-01-10 08:18:00', '2020-06-02 02:11:02', NULL),
(191, 202, 7, '省能源院召开全体党员大会及全体职工大会', 'admin', '12月21日省能源院召开全体党员大会省能源院党建联系点、党组成员曾祥俊同志院人事处副处长王向伟同志参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。 首先,', '/uploads/allimg/170512/1-1F512162430E7-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 12月21日省能源院召开全体党员大会省能源院党建联系点、党组成员曾祥俊同志院人事处副处长王向伟同志参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512162430E7.JPG\" style=\"width: 600px; height: 831px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;首先,徐晓秋书记就一年的党委书记工作情况进行了述职,述职报告经全体党员表决,全票通过。曾祥俊同志对省能源院党委一年的工作情况给予充分肯定,指出省能源院在班子带领下,无论是在硬实力还是软实力方面都取得了长足突破式的进步,希望省能源院坚定走改革发展探索之路,要重点突破,做到有所为有所不为;内引外联,实现协同创新;注重人才培养,充分发挥青年生力军的优势。王向伟副处长对省能源院与院人事处党建联系点一年来的工作给予了肯定,并希望有更多的机会与省能源院相互学习,共同进步。<br />\r\n <br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;随后省能源院召开全体职工大会会议由徐晓秋院长主持首先中层干部进行了述职并选举出2016年先进个人和先进集体最后徐晓秋院长就全年工作情况及2017年工作要点做了题为《深化改革凝聚力量创新发展提质增效》的工作报告报告经全体职工表决全票通过。&nbsp;</span></div>\r\n', 1, 0, '未知', '省,能源,院,召开,全体,党员,大会,及,职工,12月,', '2016-12-21 08:23:00', '2020-06-02 02:11:02', NULL),
(192, 203, 7, '省能源院召开会议学习贯彻落实省委十一届八次全会精神、省委书记王宪魁同志讲话精神及省科学院党组书记赵梅同志在省科学院学习全会精神会议上的讲话', 'admin', '11月28日省能源院召开会议学习贯彻落实省委十一届八次全会精神、省委书记王宪魁同志讲话精神及省科学院党组书记赵梅同志在省科学院学习全会精神会议上的讲话会议由省能源', '/uploads/allimg/170512/1-1F512163002V9-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 11月28日省能源院召开会议学习贯彻落实省委十一届八次全会精神、省委书记王宪魁同志讲话精神及省科学院党组书记赵梅同志在省科学院学习全会精神会议上的讲话会议由省能源院党委书记、院长徐晓秋同志主持省能源院全体班子成员、中层干部、党支部书记、党员和民主人士参加了会议。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512163002V9.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512163013144.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议学习了省委十一届八次全会精神、省委书记王宪魁同志讲话精神及省科学院党组书记赵梅同志在省科学院学习全会精神会议上的讲话。徐晓秋书记强调,各党支部要组织好党员群众,深入认真学习相关会议精神,准确把握&ldquo;五位一体&rdquo;总体布局和&ldquo;四个全面&rdquo;战略布局,不断提高&ldquo;四个意识&rdquo;,坚持开展好周三学习工作,按照省科学院党组的要求,制定好党的十八届六中全会学习方案,把理论学习与科研工作有机结合,抓住深入开展科技体制改革的有利时机,全面推进省能源院长足发展。&nbsp;</span></div>\r\n', 1, 0, '未知', '省,能源,院,召开,会议,学习贯彻,落实,省委,', '2016-11-28 08:29:00', '2020-06-02 02:11:02', NULL),
(193, 204, 7, '黑龙江省能源环境学会召开第二次年会', 'admin', '11月26日作为黑龙江省科学技术协会学术年会的重要组成部分也是第八届黑龙江省科学技术协会学术年会暨太阳岛科技论坛分会场由黑龙江省能源环境学会,黑龙江省自然辩证法研', '/uploads/allimg/170512/1-1F512163406459-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;11月26日作为黑龙江省科学技术协会学术年会的重要组成部分也是第八届黑龙江省科学技术协会学术年会暨太阳岛科技论坛分会场由黑龙江省能源环境学会,黑龙江省自然辩证法研究会,城市水资源水环境国家重点实验室共同组织的&ldquo;环境伦理与废弃物循环再利用技术学术研讨会&rdquo;在哈尔滨工业大学城市水资源与水环境国家重点实验室召开。本次研讨会的主题是废弃物的循环利用与环境伦理思想透析,会议由省能源环境研究院徐晓秋院长主持,省科学院副院长沙长青做重要讲话,多名知名专家学者作精彩学术报告,本次会议对促进我省废弃物循环利用起到积极的推动作用。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512163406459.JPG\" style=\"width: 600px; height: 831px;\" /></span></div>\r\n', 1, 0, '未知', '黑龙江省,能源,环境,学会,召开,第二次,年会,', '2016-11-26 08:32:00', '2020-06-02 02:11:02', NULL),
(194, 205, 7, '省能源院召开党委中心组学习扩大会议', 'admin', '11月4日省能源院召开党委中心组学习扩大会议省能源院领导班子、党委委员、党支部书记、各部门负责人和党外人士出席了会议会议由党委书记、院长徐晓秋同志主持。 会议第一', '/uploads/allimg/170512/1-1F512164025935-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp;11月4日省能源院召开党委中心组学习扩大会议省能源院领导班子、党委委员、党支部书记、各部门负责人和党外人士出席了会议会议由党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512164025935.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F51216403X10.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议第一项,全文学习十八届六中全会公报,徐晓秋书记从政治立场、思想意识、行为要求、党内民主、群众监督等方面对公报进行了详细解读,参会人员就学习内容进行了认真的讨论。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议第二项,认真学习《关于新形势下党内政治生活的若干准则》和《中国共产党党内监督条例》,并将上述文件共享到工作群,方便广大党员干部及职工学习。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;徐晓秋书记强调,政治学习不能只局限于党内学习,各党支部会后要组织全体党员干部、党外人士、群众,认真学习十八届六中全会公报内容、政策及要求,并严格执行《关于新形势下党内政治生活的若干准则》和《中国共产党党内监督条例》。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;最后,徐晓秋书记对近期相关工作作了具体安排及部署。&nbsp;</span></div>\r\n', 1, 0, '未知', '省,能源,院,召开,党委,中心组,学习,扩大会议,', '2016-11-04 08:40:00', '2020-06-02 02:11:02', NULL),
(195, 206, 7, '省能源院召开全体职工会议学习习近平总书记在纪念红军长征80周年大会上的讲话', 'admin', '按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求28日省能源院召开全体职工会议会议围', '/uploads/allimg/170512/1-1F512164420353-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求28日省能源院召开全体职工会议会议围绕赵梅书记在省科学院《中国共产党问责条例》学习大会上的讲话及提出的要求认真学习习近平总书记在纪念红军长征80周年大会上的讲话全文宣读学习了十八届六中全会公报并继续观看纪录片《永远在路上》会议同时对我院近期科研和党建工作做了进一步部署。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512164420353.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F51216443AS.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F512164451M8.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,召开,全体,职工,会议,学,习习,近,', '2016-10-28 08:44:00', '2020-06-02 02:11:02', NULL),
(196, 207, 20, '省科学院科技进步一等奖', 'admin', '', '/uploads/allimg/170512/1-1F5121AJEc-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121AJEc.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n<div style=\"text-align: center;\">\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,科学院,科技,进步,一等奖,', '2017-05-12 09:29:41', '2020-06-02 02:11:02', NULL),
(197, 208, 20, '省科学院TRIZ大赛三等奖', 'admin', '', '/uploads/allimg/170512/1-1F5121A922X3-lp.JPG', '<img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121A922X3.JPG\" style=\"width: 800px; height: 600px;\" />', 1, 0, '未知', '省,科学院,TRIZ,大赛,三等奖,', '2017-05-12 08:59:09', '2020-06-02 02:11:02', NULL),
(198, 209, 20, '省科学院书写党章优秀组织奖', 'admin', '', '/uploads/allimg/170512/1-1F5121F0261R-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121F0261R.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', 1, 0, '未知', '省,科学院,书写,党章,优秀,组织奖,', '2017-05-12 09:00:07', '2020-06-02 02:11:02', NULL),
(199, 210, 20, '省科学院TRIZ大赛三等奖', 'admin', '', '/uploads/allimg/170512/1-1F5121F133421-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121F133421.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', 1, 0, '未知', '省,科学院,TRIZ,大赛,三等奖,', '2017-05-12 09:01:18', '2020-06-02 02:11:02', NULL),
(200, 211, 20, '黑龙江省科学技术三等奖', 'admin', '', '/uploads/allimg/170512/1-1F5121F353P8-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121F353P8.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', 1, 0, '未知', '黑龙江省,科学技术,三等奖,', '2017-05-12 09:33:58', '2020-06-02 02:11:02', NULL),
(201, 212, 20, '黑龙江省科学技术发明一等奖', 'admin', '', '/uploads/allimg/170512/1-1F5121F522936-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121F522936.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n', 1, 0, '未知', '黑龙江省,科学技术,发明,一等奖,', '2017-05-12 09:39:59', '2020-06-02 02:11:02', NULL),
(202, 213, 20, '中国环境科学学会团体会员', 'admin', '', '/uploads/allimg/170512/1-1F5121F614C7-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121F614C7.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n', 1, 0, '未知', '中国,环境科学,学会,团体,会员,', '2017-05-12 09:05:58', '2020-06-02 02:11:02', NULL),
(203, 214, 20, '省科技厅共享服务平台先进集体、先进个人', 'admin', '', '/uploads/allimg/170512/1-1F5121FH4S2-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121FH4S2.JPG\" style=\"width: 800px; height: 1067px;\" /></div>\r\n', 1, 0, '未知', '省,科技厅,共享,服务平台,先进集体,、,', '2017-05-12 09:07:03', '2020-06-02 02:11:02', NULL),
(204, 215, 20, '省科技厅共享服务平台先进集体、先进个人', 'admin', '', '/uploads/allimg/170512/1-1F5121FT2441-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121FT2441.JPG\" style=\"width: 800px; height: 1067px;\" /></div>\r\n', 1, 0, '未知', '省,科技厅,共享,服务平台,先进集体,、,', '2017-05-12 09:08:29', '2020-06-02 02:11:02', NULL),
(205, 216, 20, '省科技厅共享服务平台先进集体、先进个人', 'admin', '', '/uploads/allimg/170512/1-1F5121F930448-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121F930448.JPG\" style=\"width: 800px; height: 1067px;\" /></div>\r\n', 1, 0, '未知', '省,科技厅,共享,服务平台,先进集体,、,', '2017-05-12 09:09:11', '2020-06-02 02:11:02', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(206, 217, 20, '省直文明单位', 'admin', '', '/uploads/allimg/170512/1-1F5121G015V4-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121G015V4.JPG\" style=\"width: 800px; height: 1067px;\" /></div>\r\n', 1, 0, '未知', '省直,文明单位,', '2017-05-12 09:09:55', '2020-06-02 02:11:02', NULL),
(207, 218, 20, '省直“五一巾帼奖”集体', 'admin', '', '/uploads/allimg/170512/1-1F5121G10KQ-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121G10KQ.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', 1, 0, '未知', '省直,“,五一巾帼奖,”,集体,', '2017-05-12 09:10:46', '2020-06-02 02:11:02', NULL),
(208, 219, 20, '省科学院先进党组织', 'admin', '', '/uploads/allimg/170512/1-1F5121G212551-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121G212551.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', 1, 0, '未知', '省,科学院,先进,党组织,', '2017-05-12 09:11:53', '2020-06-02 02:11:02', NULL),
(209, 220, 20, '省直精神文明单位', 'admin', '', '/uploads/allimg/170512/1-1F5121G405D6-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121G405D6.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', 1, 0, '未知', '省直,精神,文明单位,', '2017-05-12 09:13:01', '2020-06-02 02:11:02', NULL),
(210, 221, 20, '省直青年文明号', 'admin', '', '/uploads/allimg/170512/1-1F5121G44a92-lp.JPG', '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170512/1-1F5121G44a92.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', 1, 0, '未知', '省直,青年文明号,', '2017-05-12 09:14:36', '2020-06-02 02:11:02', NULL),
(211, 222, 7, '省科学院审计部进驻我院开展2016年度审计工作', 'admin', '6月5日上午根据院党组关于开展全院2016年度财务收支审计工作的部署院党组成员副院长沙长青同志审计部副处长曹海虹同志率院审计部协同审计师事务所进驻省能源院开展2016年度', '/uploads/allimg/170616/1-1F616091925Y9-lp.jpg', '&nbsp; &nbsp; &nbsp;<span style=\"font-size:20px;\"> &nbsp; 6月5日上午根据院党组关于开展全院2016年度财务收支审计工作的部署院党组成员副院长沙长青同志审计部副处长曹海虹同志率院审计部协同审计师事务所进驻省能源院开展2016年度财务收支情况审计工作省能源院党委书记院长徐晓秋同志孵化中心主任姜宏宇同志及省能源院财务人员参加了会议。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170616/1-1F616091925Y9.jpg\" style=\"width: 800px; height: 600px;\" /></span></div>\r\n', 1, 0, '未知', '省,科学院,审计部,进驻,我院,开展,2016,年度,', '2017-06-06 01:14:00', '2020-06-02 02:11:02', NULL),
(212, 223, 7, '能源院党委组织全体职工观看中国人民解放军建军90周年大会直播', 'admin', '8月1日上午10:00庆祝中国人民解放军建军90周年大会在人民大会堂举行中共中央总书记、国家主席、中央军委主席习近平出席大会并发表重要讲话。按照省委办公厅及省科学院机关党', '/uploads/allimg/170809/1-1FPZ939495X-lp.jpg', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8月1日上午10:00庆祝中国人民解放军建军90周年大会在人民大会堂举行中共中央总书记、国家主席、中央军委主席习近平出席大会并发表重要讲话。按照省委办公厅及省科学院机关党委通知要求省能源院党委组织能源院全体职工集体观看大会直播。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170809/1-1FPZ939495X.jpg\" style=\"width: 600px; height: 450px;\" /></div>\r\n', 1, 0, '未知', '能源,院,党委,组织,全体,职工,观看,8月,1日,', '2017-08-09 01:35:07', '2020-06-02 02:11:02', NULL),
(213, 224, 7, '中国科学院广州能源院所庄新姝研究员、孔晓英博士到我院调研', 'admin', '7月27日上午作为龙广结合首批抵哈的科研单位中国科学院广州能源院所庄新姝研究员、孔晓英博士一行到省能源环境研究院调研就涉及的研究领域进行洽谈交流同时与生物能创', '/uploads/allimg/170809/1-1FP9151G6105-lp.jpg', '<div style=\"text-align: center;\">\r\n <div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7月27日上午作为龙广结合首批抵哈的科研单位中国科学院广州能源院所庄新姝研究员、孔晓英博士一行到省能源环境研究院调研就涉及的研究领域进行洽谈交流同时与生物能创新团队开展科研对接省科学院产业化处、省科技厅成果转化中心及省能源院的领导和部</span></div>\r\n <div style=\"text-align: left;\">\r\n <span style=\"font-size:20px;\">分科研人员参加了会议。</span></div>\r\n <img alt=\"\" src=\"/storage/uploads/allimg/170809/1-1FP9151G6105.jpg\" style=\"width: 600px; height: 450px;\" /><br />\r\n &nbsp;</div>\r\n<br />\r\n', 1, 0, '未知', '中国科学院,广州,能源,院所,庄新,姝,研究员,', '2017-07-27 07:56:00', '2020-06-02 02:11:02', NULL),
(214, 225, 7, '山东大学鲍晓明教授,黑龙江中丹建业生物能源公司总经理王建业一行两人来我院进行洽谈交流', 'admin', '2017年8月22日山东大学鲍晓明教授黑龙江中丹建业生物能源公司总经理王建业一行两人来到省能源环境研究院就纤维素秸秆乙醇工业所涉及的纤维素降解菌及酵母菌的研发与应用进', '/uploads/allimg/170823/1-1FR30T21M20-lp.jpg', '<div>\r\n <div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2017年8月22日山东大学鲍晓明教授黑龙江中丹建业生物能源公司总经理王建业一行两人来到省能源环境研究院就纤维素秸秆乙醇工业所涉及的纤维素降解菌及酵母菌的研发与应用进行洽谈交流并就今后的合作方向、优势互补和合作模式等方面进行了深入探讨能源院院长徐晓秋和相关科研人员参加了此次会议。</span></div>\r\n <span style=\"font-size:24px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170823/1-1FR30T21M20.jpg\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div>\r\n<br />\r\n', 1, 0, '未知', '山东,大学,鲍,晓明,教授,黑龙,江中,丹,建业,', '2017-08-23 00:39:57', '2020-06-02 02:11:02', NULL),
(215, 226, 7, '能源院开展科普活动', 'admin', '9月20日省能源环境学会到漠河县宏林菌业种植有限公司进行林下产业废弃物再利用技术及室内空气污染控制技术科普活动并与石忠斌董事长探讨了菌业废弃物综合利用方案等问题。', '/uploads/allimg/170925/1-1F925143Q0603-lp.jpg', '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9月20日省能源环境学会到漠河县宏林菌业种植有限公司进行林下产业废弃物再利用技术及室内空气污染控制技术科普活动并与石忠斌董事长探讨了菌业废弃物综合利用方案等问题。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/170925/1-1F925143Q0603.jpg\" style=\"width: 400px; height: 300px;\" /></span></div>\r\n', 1, 0, '未知', '能源,院,开展,科普活动,9月,20日,省,能源,环境,', '2017-09-25 06:32:33', '2020-06-02 02:11:02', NULL),
(216, 227, 7, '18日9:00 省能源环境研究院党委组织全体干部职工共同观看十九大召开盛况直播', 'admin', '18日9:00按照省科学院相关部署省能源环境研究院党委组织全体干部职工共同观看十九大召开盛况直播共唱国歌以饱满的精神工作状态庆祝十九大胜利召开', '/uploads/allimg/171020/1-1G020095H4433-lp.jpg', '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;18日9:00按照省科学院相关部署省能源环境研究院党委组织全体干部职工共同观看十九大召开盛况直播共唱国歌以饱满的精神工作状态庆祝十九大胜利召开</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/171020/1-1G020095H4433.jpg\" style=\"height: 600px; width: 600px;\" /></span></div>\r\n', 1, 0, '未知', '18日,省,能源,环境,研究院,党委,组织,全体,', '2017-10-18 01:55:00', '2020-06-02 02:11:02', NULL),
(217, 228, 7, '10月19日上午省能源院领导班子、全体党员干部对十九大报告全文进行了学习参会人员围绕省能源院发展实际进行了解读学习和讨论', 'admin', ' 10月19日上午省能源院召开全体职工大会全面部署学习贯彻落实十九大会议精神省能源院党委书记、院长徐晓秋同志主持会议省能源院领导班子、全体党员干部及民主人士', '/uploads/allimg/171020/1-1G020100J41X-lp.jpg', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10月19日上午省能源院召开全体职工大会全面部署学习贯彻落实十九大会议精神省能源院党委书记、院长徐晓秋同志主持会议省能源院领导班子、全体党员干部及民主人士参加会议会议对报告全文进行了学习参会人员围绕省能源院发展实际进行了解读学习和讨论徐晓秋书记指出各党支部要按照十九大报告中对科研工作提出的新任务、新要求开展形式多样的学习活动全体党员干部要不忘初心牢记使命强化党建引领推动创新发展要通过系统学习广泛讨论加强宣传以十九大会议精神武装头脑指导实践推进省能源院各项工作再上新台阶满怀信心迈向新征程。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/171020/1-1G020100J41X.jpg\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '10月,19日,上午省,能源,院,领导班子,、,全体,', '2017-10-19 02:02:20', '2020-06-02 02:11:02', NULL),
(218, 229, 7, '以向善、向上、向阳、向党精气神 打造一流科研创新团队 --省能源院生物能创新团队党支部开展“说讲谈”活动', 'admin', '为深入贯彻落实党的十九大精神落实院党组提出关于“新思想引领改革发展思路新征程凝聚创新创业力量”工作的相关部署11月15日上午省能源环境研究院生物能创新团队党支部', '/uploads/allimg/171116/1-1G11616001V39-lp.JPG', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; 为深入贯彻落实党的十九大精神,落实院党组提出关于&ldquo;新思想引领改革发展思路,新征程凝聚创新创业力量&rdquo;工作的相关部署11月15日上午省能源环境研究院生物能创新团队党支部支部开展了&ldquo;以向善、向上、向阳、向党精气神 打造一流科研创新团队&rdquo;为主题的&ldquo;说讲谈&rdquo;活动,院党组书记赵梅同志,院直属机关党委、人事处领导,省能源院领导班子、党员代表及石化院、塑料所代表参加了此次活动。会议由生物能创新团队党支部书记王欣同志主持。</span>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 活动开始,王欣同志首先介绍了生物能创新团队党支部概况,展示了支部建在团队上的发展理念及支部&ldquo;三创&rdquo;(创新学、创新做、创新用)工作成果,并围绕&ldquo;向善、向上、向阳、向党&rdquo;,从党务工作者的角度解读了要以积极向上,风雨兼程的精气神的开展各项工作;党支部其他成员和生物能创新团队民主人士代表,围绕十九大报告中与自身研究领域和工作实际联系最紧密的内容,与参会同事一同分享了学习工作心得,并结合对&ldquo;向善、向上、向阳、向党&rdquo;深刻理解,分别从科研建设、创新工作、科研新思路、学习感想、人文关怀和团队合作等多角度多视角,深入谈及党对自身工作的引领和对学习生活的积极影响;期间,在北京出差的支部成员也通过语音连线的方式参加了活动。与会同志一致表示,作为一名科技工作者,在党的十九大精神指引下,要不忘初心,牢记使命,以&ldquo;加快生态文明体制改革 建设美丽中国&rdquo;为目标,扎实做好本职工作,不负重托,做科技创新的引领者、成果转化的实践者、科学知识的传播者,在科研领域干事创业,共建大科学院。随后,省能源院党建联系点院人事处张兴处长与大家交流了学习党的十九大报告的方法和对本次活动的观摩体会,石化院、塑料所代表也分别谈了观摩体会。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 院党组书记赵梅同志对省能源院生物能创新团队党支部&ldquo;说讲谈&rdquo;活动给予了充分肯定,并对此次活动作出点评,赵书记指出,此次活动一是从不同角度展示了活动主题,丰富了党建文化;二是活动方向明确,主题紧密联系科研工作实际;三是党建文化开展的好,体现出对十九大报告的突出学习能力,同时赵书记对下一阶段学习重点进行了部署,指出要进一步深入学习贯彻落实党的十九大精神和加强基层党支部建设,一是要进一步深入学习领会理解党的十九大精神,这是一项长期的政治任务,将这&ldquo;说讲谈&rdquo;活动持续开展下去,将十九大的学习常态化;二是要强化基层党支部的政治功能建设,以政治建设作为统领,促进科研工作与政治功能互相融合推进,构建政治生态良好的党建文化;三是,通过对十九大会议精神的学习带动科研创新,立足岗位,发挥作用,为国家和社会做出贡献。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 活动最后,与会全体人员全体起立,与习总书记一起重温入党誓词,不忘初心,牢记使命,不断激发前进动力。<br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/171116/1-1G11616001V39.JPG\" style=\"width: 450px; height: 600px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/171116/1-1G116160146348.JPG\" style=\"height: 600px; width: 450px;\" /></span></div>\r\n', 1, 0, '未知', '以,向善,、,向上,向阳,向,党,精气神,打造,为,', '2017-11-16 07:56:45', '2020-06-02 02:11:02', NULL),
(219, 230, 7, ' 为进一步巩固并发挥省能源院生物能创新团队在寒区固体废弃物处理处置、清洁能源领域的科研技术优势经过省能源院与农业部沼气科学研究所的前期准备11月13日上午省科学院郭春景院长与来访的农业部沼气科学研究所邓宇副所长一行在省科学院会议室进行了座谈省科学院产业化处李骏处长省能源院徐晓秋院长省能源院相关科研人员参加了会议。 双方就在省能源院建立“寒区生物能源利用联合实验室”相关工作进行了深入交流。郭院长首先对邓副所长一行的到来表示欢迎,郭院长指出,要充分发挥好沼气所和能源院各自在生物质', 'admin', ' 为进一步巩固并发挥省能源院生物能创新团队在寒区固体废弃物处理处置、清洁能源领域的科研技术优势经过省能源院与农业部沼气科学研究所的前期准备11月13日上午省科学院郭', '/uploads/allimg/171116/1-1G116161130414-lp.JPG', '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;为进一步巩固并发挥省能源院生物能创新团队在寒区固体废弃物处理处置、清洁能源领域的科研技术优势经过省能源院与农业部沼气科学研究所的前期准备11月13日上午省科学院郭春景院长与来访的农业部沼气科学研究所邓宇副所长一行在省科学院会议室进行了座谈省科学院产业化处李骏处长省能源院徐晓秋院长省能源院相关科研人员参加了会议。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 双方就在省能源院建立&ldquo;寒区生物能源利用联合实验室&rdquo;相关工作进行了深入交流。郭院长首先对邓副所长一行的到来表示欢迎,郭院长指出,要充分发挥好沼气所和能源院各自在生物质能源上的技术优势,拿出更好的技术和成果,解决好养殖业末端处理能力不强的问题,更好的为省域经济服务,要用&ldquo;场口气站&rdquo;模式,建设寒区沼气示范工程,实现寒区养殖业、种植业废弃物的高效循环利用,打造以沼气为纽带的循环经济产业。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 随后邓副所长介绍了农业部沼气科学研究所的相关情况,包括历史沿革、科学设置、平台条件、团队配置,邓副所长表示,此次合作即是机遇也是挑战,第一要通过建立联合实验室,针对黑龙江省农村生态环境、产业转型进行准确的战略布局;第二要建立更加完善的合作运行机制;第三要真正把合作落实落靠,让寒区生物质成果成规模成体系,实现预期目标。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 最后,郭院长与邓副所长共同签署了《农业部沼气科学研究所与黑龙江省科学院共建&ldquo;寒区生物能源利用联合实验室&rdquo;》协议。<br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/171116/1-1G116161130414.JPG\" style=\"width: 800px; height: 600px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/171116/1-1G116161154463.JPG\" style=\"width: 800px; height: 600px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '为,进一步,巩固,并,发挥省,能源,院,生物能,为,', '2017-11-13 08:10:00', '2020-06-02 02:11:02', NULL),
(220, 231, 7, '省能源院召开全体职工会议 传达贯彻落实省委第十二届二次全会精神', 'admin', '11月27日下午省能源院召开全体党员会议传达贯彻落实省委第十二届二次全会精神省能源院领导班子全体党员干部民主人士代表参加了会议会议由省能源院党委书记、院长徐', '/uploads/allimg/171204/1-1G2040S9332A-lp.jpg', '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;11月27日下午省能源院召开全体党员会议传达贯彻落实省委第十二届二次全会精神省能源院领导班子全体党员干部民主人士代表参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议首先学习传达了省委第十二届二次全会精神和全文学习了陆昊省长到自动化所调研时的讲话。会议要求,省能源院全体党员干部要认真学习、深入领会省委第十二届二次全会精神和陆昊省长讲话精神,切实提高认识,深刻理解全会鲜明主题;深刻理解建设现代化新龙江时代特征;深刻理解建设现代化新龙江战略安排;深刻理解建设现代化新龙江政治保证。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;最后,徐晓秋同志强调,学习贯彻党的十九大和省委第十二届二次全会精神,是当前和今后一个时期的重要政治任务。各党支部要以多种形式,组织、指导、推动全体党员干部开展学习,班子成员要以身作则、率先垂范、先学深学,作出表率,要把学习宣传贯彻党的十九大精神和省委第十二届二次全会精神紧密结合,围绕陆昊省长讲话精神,学深悟透、知行合一,迅速掀起学习宣传贯彻热潮,确保学习贯彻落实取得实效。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<img alt=\"\" src=\"/storage/uploads/allimg/171204/1-1G2040S9332A.jpg\" style=\"height: 450px; width: 600px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,召开,全体,职工,会议,传达,贯彻,', '2017-11-28 00:30:00', '2020-06-02 02:11:02', NULL),
(221, 232, 7, '省能源院召开2017年度总结表彰大会', '李福裿', '1月2日上午省能源院在会议室隆重召开2017年度总结表彰大会,省科学院郭春景院长,省能源院领导班子及全体职工参加了大会,会议由院长徐晓秋同志主持。', '/uploads/allimg/180108/1-1P10PZ0464B-lp.JPG', '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1月2日上午省能源院在会议室隆重召开2017年度总结表彰大会,省科学院郭春景院长,省能源院领导班子及全体职工参加了大会,会议由院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180108/1-1P10PZ0464B.JPG\" style=\"width: 600px; height: 571px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长首先代表省能源院全体干部职工对郭春景院长一年来对省能源院的关心、支持表示衷心感谢。随后孵化中心主任姜宏宇同志、省能源院副院长关春玲同志分别做了2107年度省能源院工作总结报告及2018年度工作要点报告徐晓秋院长宣读了2017年省能源院表彰决定并由郭春景院长为获得表彰的集体和个人颁奖。郭院长对省能源院过去一年的工作情况给予肯定指出未来一年省能源院要持续围绕科研创新、学科团队建设、创新工程、人才培养、对外交流等方面重点开展工作。会上郭院长还与职工亲切座谈鼓舞广大青年科技工作者要立足岗位不驰于空想不骛于虚声脚踏实地努力工作。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180108/1-1P10PZ15SV.JPG\" style=\"width: 430px; height: 490px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/180108/1-1P10PZ21T03.JPG\" style=\"width: 430px; height: 490px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 会后,全体职工纷纷表示此次大会深受鼓舞,在新的一年中将牢记使命,实干担当,走好能源院创新发展之路。</span></div>\r\n', 1, 0, '未知', '省,能源,院,召开,2017,年度,总结,表彰大会,1月,', '2018-01-05 08:58:00', '2020-06-02 02:11:02', NULL),
(222, 233, 7, '省能源院组织全体党员干部集中收看全国人大一次会议开幕盛况', 'admin', '3月5日上午900时按照省科学院部署省能源院组织全体党员干部集中收看全国人大一次会议开幕盛况', '/uploads/allimg/180305/1-1P305114129A6-lp.JPG', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:18px;\"> &nbsp; &nbsp; 3月5日上午900时按照省科学院部署省能源院组织全体党员干部集中收看全国人大一次会议开幕盛况</span>\r\n<div>\r\n <span style=\"font-size:18px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180305/1-1P305114129A6.JPG\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/180305/1-1P305120550360.JPG\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/180305/1-1P3051210555B.JPG\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/180305/1-1P305121624X7.JPG\" style=\"width: 681px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,组织,全体,党员,干部,集中,收看,', '2018-03-12 01:26:54', '2020-06-02 02:11:02', NULL),
(223, 234, 7, '能源院开展庆祝“三八国际妇女节"系列活动', 'admin', '为庆祝全国人大召开喜迎三八国际妇女节的到来省能院开展系列活动3月7日召开“聪慧时尚自信坚韧创新进取”主题女职工座谈会能源院领导班子与全体女职工一同畅谈工作', '/uploads/allimg/180309/1-1P309105GR46-lp.jpg', '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;为庆祝全国人大召开喜迎三八国际妇女节的到来省能院开展系列活动3月7日召开&ldquo;聪慧时尚,自信坚韧,创新进取&rdquo;主题女职工座谈会能源院领导班子与全体女职工一同畅谈工作心得共叙新时代女性风貌3月8日组织全体职工观看爱国题材影片《厉害了我的国》共同领略祖国桑田碧海须臾改的巨大变化以及取得的卓著成就共同感受中国共产党直挂云帆济沧海的伟大信念。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180309/1-1P309105GR46.jpg\" style=\"width: 600px; height: 800px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '能源,院,开展,庆祝,“,三八国际妇女节,系列,', '2018-03-12 01:26:18', '2020-06-02 02:11:02', NULL),
(224, 235, 7, '省能源院召开全中心组学习扩大会议学习传达3月23日省科学院党组扩大会议精神', 'admin', ' 3月26日上午9:00省能源院召开全中心组学习扩大会议学习传达3月23日省科学院党组扩大会议精神。会议由党委书记、院长徐晓秋同志主持能源院全体职工参加了会议。', '/uploads/allimg/180328/1-1P32Q513193L-lp.jpg', '<div>\r\n <span style=\"font-size:18px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; 3月26日上午9:00省能源院召开全中心组学习扩大会议学习传达3月23日省科学院党组扩大会议精神。会议由党委书记、院长徐晓秋同志主持能源院全体职工参加了会议。</span></div>\r\n<div>\r\n <span style=\"font-size:18px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会上,徐晓秋同志、姜宏宇同志、关春玲同志分别传达了&ldquo;第十三届全国人民代表大会第一次会议&rdquo;、&ldquo;十三届全国人大一次会议期间习总书记重要讲话&rdquo;、&ldquo;栗战书同志在十三届全国人大一次会议闭幕会上的讲话&rdquo;、&ldquo;中国人民政治协商会议第十三届全国委员会第一次会议&rdquo;的主要内容和&ldquo;张庆伟同志在全省领导干部大会上的讲话&rdquo;。</span></div>\r\n<div>\r\n <span style=\"font-size:18px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记要求能源院全体职工要把学习贯彻两会精神作为当前重要的政治任务及工作目标,持续加强基层支部建设及作风整顿工作,要把学习重要讲话与贯彻习近平新时代中国特色社会主义思想结合起来,与贯彻党的十九大精神部署结合起来,切实将两会精神学在深处落在实处。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:18px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180328/1-1P32Q513193L.jpg\" style=\"width: 600px; height: 600px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,能源,院,召开,全,中心组,学习,扩大会议,', '2018-03-28 07:16:58', '2020-06-02 02:11:02', NULL),
(225, 236, 7, '能源院开展“汇聚读书力量 托起明日希望”文化扶贫慰问活动', 'admin', ' 按照省科学院团委的安排部署,省能源院组织全体干部职工开展“汇聚阅读力量 托起明日希望”文化扶贫慰问活动。\r\n', '/uploads/allimg/180517/1-1P51G61053292-lp.jpg', '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp;按照省科学院团委的安排部署,省能源院组织全体干部职工开展&ldquo;汇聚阅读力量 托起明日希望&rdquo;文化扶贫慰问活动。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp;省能源院全院上下对此次文化扶贫工作高度重视2018年5月14日全体职工在江北会议室举办捐书仪式班子成员带头为贫困村的孩子们捐献了儿童文学、儿童教育、青少年成长等方面的书籍共计170余本。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp;2018年5月15日省能源院副院长关春玲同志等一行4人到我院精准扶贫对接点七台河市勃利县吉兴乡合庆村进行帮扶活动。 活动中首先对扶贫点进行文化帮扶将职工捐赠的170余本爱心书籍送到合庆村委会主任手中。然后关春玲同志详细询问了合庆村新建住房的室内环境情况我院专业人员为其进行了室内甲醛等有害气体的检测及室内环境的评估并为改善其室内环境提出了合理化建议。扶贫工作从&ldquo;扶志&rdquo;与&ldquo;扶智&rdquo;做起,生物质领域的专家还对帮扶点进行了秸秆综合利用的科普宣传,此次帮扶工作圆满完成。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 吉兴乡合庆村委会主任对省科学院给予的支持和对帮扶工作的高度重视表示感谢,同时对我院此次的文化扶贫慰问活动表示感谢。&nbsp; &nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180517/1-1P51G61053292.jpg\" style=\"height: 600px; width: 431px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '能源,院,开展,“,汇聚,读书,力量,托起,明日,', '2018-05-17 08:12:20', '2020-06-02 02:11:02', NULL),
(226, 237, 7, '省科学院科研处到省能源院进行科研情况调研', 'admin', '5月24日上午在院科研处倪宏伟处长带领下院科研处一行三人到省能源院开展科研情况调研工作省能源院领导班子及科研办相关人员参加了调研省能源院分别从科研总体情况、项', '/uploads/allimg/180709/1-1PF9153620917-lp.JPG', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\"> &nbsp;5月24日上午在院科研处倪宏伟处长带领下院科研处一行三人到省能源院开展科研情况调研工作省能源院领导班子及科研办相关人员参加了调研省能源院分别从科研总体情况、项目情况、研究领域、研究方向、创新团队等方面进行了汇报。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180709/1-1PF9153620917.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180709/1-1PF9153I2218.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,科学院,科研处,到,能源,院,进行,科研,情况,', '2018-07-09 07:29:07', '2020-06-02 02:11:02', NULL),
(227, 238, 7, '省能源环境研究院与化工学院项目对接会', 'admin', '6月28日下午能源院徐晓秋院长带队一行4人赴理工大学化学与环境工程学院洽谈合作事宜双方围绕废弃物厌氧处理、木质纤维素降解转化等方面展开深入交流并对学生培养、互聘导', '/uploads/allimg/180709/1-1PF91546132Y-lp.jpg', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\"> &nbsp; 6月28日下午能源院徐晓秋院长带队一行4人赴理工大学化学与环境工程学院洽谈合作事宜双方围绕废弃物厌氧处理、木质纤维素降解转化等方面展开深入交流并对学生培养、互聘导师、建立联合实验室等方面进行商讨。双方最终商定将建立联合科研教学基地、学生实践实习基地及互聘导师机制。会后双方座谈人员建立了微信群便于后续工作开展。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180709/1-1PF91546132Y.jpg\" style=\"width: 600px; height: 338px;\" /></span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180709/1-1PF9154643Q9.jpg\" style=\"width: 600px; height: 338px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,能源,环境,研究院,与,化工学院,项目,对接,', '2018-06-28 07:43:00', '2020-06-02 02:11:02', NULL),
(228, 239, 7, '2018年斯里兰卡城市固体废弃物处理研修班访问黑龙江省能源环境研究院', '刘伟', '2018年7月4-6日2018年斯里兰卡城市固体废弃物处理研修班在哈尔滨举办。本次研修班由商务部主办农业农村部沼气科学研究所承办共有20名来自斯里兰卡不同地区的市政官员参加了此', '/uploads/allimg/180709/1-1PF9155404438-lp.jpg', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp;2018年7月4-6日2018年斯里兰卡城市固体废弃物处理研修班在哈尔滨举办。本次研修班由商务部主办农业农村部沼气科学研究所承办共有20名来自斯里兰卡不同地区的市政官员参加了此次培训黑龙江省能源环境研究院作为协办单位组织了本次研修班。7月4日上午培训专题讲座在省科学院会议中心举行能源院徐晓秋院长首先对来自斯里兰卡的20名学员表示热烈欢迎随后王欣副研究员做了&ldquo;城市固废处理的方法和技术&rdquo;的专题培训报告普及了中国先进的城市固废处理技术对斯里兰卡学员的提问做了专业解答。7月5日研修班在徐晓秋院长的陪同下来到了方正县方正县县委书记董文琴代表县委县政府对斯里兰卡友人的到来表示了热烈的欢迎并且在董文琴书记的陪同下研修班来到天门乡垃圾处理中心参观了ERCM垃圾处理示范项目董文琴书记、徐晓秋院长及企业技术人员在现场给研修班学员进行了项目讲解。7月6日能源院刘伟副研究员与斯里兰卡学员进行了深入交流学员们对能源院的协办工作给予肯定和感谢希望将中国先进的有机固废处理技术引进到斯里兰卡提高斯里兰卡的有机固废处理水平。通过此次培训加强了能源院在有机固废处理领域的宣传力度为一带一路发展中国家的发展提供了帮助。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180709/1-1PF9155404438.jpg\" style=\"width: 600px; height: 817px;\" /></span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180709/1-1PF9155431957.jpg\" style=\"width: 600px; height: 817px;\" /></span></div>\r\n', 1, 0, '未知', '2018年,斯里兰卡,城市,固体,废弃物,处理,2018年,', '2018-07-09 07:51:55', '2020-06-02 02:11:02', NULL),
(229, 240, 7, '省能源环境研究院党委开展庆“七一”不忘初心跟党走、牢记使命有作为系列主题活动', 'admin', '为热烈庆祝中国共产党成立97周年进一步增强党组织的凝聚力和战斗力不断深入学习贯彻党的十九大精神不断强化党员\"四个意识\",不断深化“两学一做”学习教育,不断夯实基层', '/uploads/allimg/180710/1-1PG0113625596-lp.jpg', '<div style=\"text-align: center;\">\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:18px;\"> &nbsp;省能源环境研究院党委开展庆&ldquo;七一&rdquo;不忘初心跟党走、牢记使命有作为系列主题活动</span></div>\r\n&nbsp;<br />\r\n&nbsp; &nbsp;<span style=\"font-size:14px;\"> &nbsp; &nbsp; 为热烈庆祝中国共产党成立97周年进一步增强党组织的凝聚力和战斗力不断深入学习贯彻党的十九大精神不断强化党员&quot;四个意识&quot;,不断深化&ldquo;两学一做&rdquo;学习教育,不断夯实基层党建全面提升工程基础,不断提升基层党组织的引导力、号召力和凝聚力,&ldquo;七一&rdquo;期间,省能源院党委开展了以&ldquo;不忘初心跟党走、牢记使命有作为&rdquo;为主题的系列纪念活动,持续展现省能源院党员干部的精神风貌。<br />\r\n一、重温入党誓词<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;省能源院党委与党建联系点院人事处党支部全体同志共同重温入党誓词,不忘初心牢记使命,坚定入党信念和为共产主义奋斗终生的决心,激励党员以自身的实际行动积极实践誓词,以更加饱满的热情发挥共产党员的先锋模范作用,永葆共产党员的政治本色。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:12px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180710/1-1PG0113625596.jpg\" style=\"width: 600px; height: 799px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:14px;\">二、参观爱国主义教育基地<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;省能源院与党建联系点院人事处党支部全体党员沿着习近平总书记考察调研的足迹,重温总书记的殷切嘱托及东北抗日联军的英雄事迹,牢记历史、不忘过去,从思想和心灵深处接受了一次深刻的党性教育,使大家倍加珍惜无数先烈用生命给我们换来的幸福生活,激励大家克服一切艰难险阻,勤勉务学,努力工作,珍爱和平、开创未来!<br />\r\n&nbsp; &nbsp; &nbsp; 1.&ldquo;东北抗日联军政治军事干部学校遗址纪念碑&rdquo;</span>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/180710/1-1PG0113I1963.JPG\" style=\"width: 600px; height: 334px;\" /></div>\r\n<br />\r\n<span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp;2.&ldquo;抗联遗址老钱柜纪念碑&rdquo;</span>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/180710/1-1PG0113S1U0.JPG\" style=\"width: 600px; height: 461px;\" /></div>\r\n<div>\r\n <span style=\"font-size:14px;\">三、钉钉&ldquo;两学一做&ldquo;答题活动<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;围绕今年中央和省委重要会议精神、领导重要讲话精神和习近平谈治国理政内容,能源院全体党员干部每日登陆钉钉&ldquo;&nbsp;两学一做&rdquo;进行学习和答题,既检验了党员&ldquo;两学一做&rdquo;学习教育的成果,以及掌握党章党规知识水平,又激发了广大党员的学习热情,在今后的工作和生活中积极发挥党员的先锋模范带头作用。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/180710/1-1PG011404X04.PNG\" style=\"width: 600px; height: 1067px;\" /></div>\r\n<div>\r\n <span style=\"font-size:14px;\">四、井冈山红色教育学习心得报告会<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;为纪念建党97周年我院陈松同志以&ldquo;不忘初心牢记使命,坚定理想信念跟党走&rdquo;为题,分享培训心得。会上反响热烈,与会人员深受鼓舞,表示在今后潜心专研本职工作,增强党性修养,在科研战线上为党和国家做出贡献。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/180710/1-1PG011413I48.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n<div>\r\n <span style=\"font-size:14px;\">五、基层支部&ldquo;说讲谈&rdquo;<br />\r\n &nbsp; &nbsp; &nbsp; 为纪念建党97周年和改革开放40周年三个党支部组织党员重温入党志愿书并结合个人成长历程和组织发展历程围绕&ldquo;习近平看重的&#39;三个担当&#39;&rdquo;内容,分别开展一了次支部&ldquo;说讲谈&rdquo;活动,每名支部党员充分结合实际阐述观点、讲述感悟。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/180710/1-1PG011421V18.JPG\" style=\"width: 600px; height: 599px;\" /></div>\r\n<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp;1. 省能源院行政管理党支部召开了&ldquo;坚定理想信念,敢于担当尽职,牢记初心使命,助力科研一线&rdquo;说讲谈活动,整场座谈会气氛热烈。&nbsp;王书可同志表示 ,发展没有终点,改革没有停顿,未来还有更多的四十年需要我们去拼搏奋斗。姜宏宇同志表示人民美好的生活离不开党的领导,我们由原来的贫穷落后发展到现在的小康社会,人民的幸福感和满意度极大的增强。大家表示,坚决贯彻院党委的决策部署,立足岗位,踏实肯干,实实在在为一线办实事。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;2. 省能源院能源化学创新团队党支部结合建党97周年和改革开放40周年以及习近平看重的&ldquo;三个担当&rdquo;内容,召开了主题为&ldquo;初心逐梦诵改革,砥砺迈进新时代&rdquo;的说讲谈活动。会上支部同志踊跃发言,气氛热烈。关春玲同志讲述了赵一曼、赵尚志、杨靖宇等东北抗联战士的英雄事迹,大家从不忘初心艰苦奋斗的老一辈红色精神说起,谈到了改革开放四十年来国家发生的巨大变化,都感到无比自豪,表示在今后工作中要不忘初心,坚守信仰,勇于担当,开拓未来。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;3. 正时七一建党97周年和改革开放40周年纪念之际省能源院生物能创新团队党支部组织党员谈认识&nbsp;、谈感受。王欣同志深情诵读入党志愿书,畅谈心路历程、表明践诺决心。徐晓秋同志表示合格党员就要有敢担当、能担当、善担当的样子。党建联系点院人事处党支部张兴同志表示这次说讲谈气氛热烈,同志们理解深刻,在新时代我们应该初心如磐、使命在肩,坚守入党时的信仰信念,始终铭记誓言和志愿、始终永葆共产党员政治本色。<br />\r\n 六、&nbsp;基层党建提升工程总结表彰活动<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;为巩固基层党建全面提升工程成果,推进服务型党组织建设,总结党建工作的成效和经验,发挥先进典型的示范引领作用,我院开展&ldquo;2017年党建提升工程优秀个人、优秀基层组织、优秀团队&rdquo;等评选表彰活动。此次表彰活动推动了党建工作落地见效,形成了&ldquo;党委有号召力、党支部有凝聚力、党员有向心力&rdquo;的党建发展局面,有效推动了各项工作上台阶上水平。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/180710/1-1PG0114259252.JPG\" style=\"width: 600px;\" /></div>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n &nbsp;</div>\r\n<br />\r\n', 1, 0, '未知', '省,能源,环境,研究院,党委,开展,庆,“,七一,', '2018-07-01 03:34:00', '2020-06-02 02:11:02', NULL),
(230, 241, 7, '省能源院同哈理工化学与工程学院签署共建协议,成立教学科研实践基地', 'admin', '7月12日下午哈尔滨理工大学化学与环境工程学院党委书记徐春霖带队到能源院进行第二次深入交流。双方首先签署了“教学科研实践基地共建协议”和“研究生导师互聘协议”共同', '/uploads/allimg/180712/1-1PG2205959203-lp.jpg', '<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7月12日下午哈尔滨理工大学化学与环境工程学院党委书记徐春霖带队到能源院进行第二次深入交流。双方首先签署了&ldquo;教学科研实践基地共建协议&rdquo;和&ldquo;研究生导师互聘协议&rdquo;,共同为&ldquo;哈尔滨理工大学教学科研实践基地&rdquo;揭牌,随后,徐春霖书记走访了实验室,对双方的合作的交叉点进行了细致探讨。通过第二次交流和合作协议的签订,为双方在科研、教学、互聘导师等方面的长久合作奠定了基础。石化院王阳书记带队一行,也到我院和哈尔滨理工大学化学与环境工程学院进行了深入交流。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180712/1-1PG2205959203.jpg\" style=\"width: 600px; height: 600px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,能源,院同,哈理工,哈,理工,化学,与,7月,', '2018-07-12 12:58:41', '2020-06-02 02:11:02', NULL),
(231, 242, 7, '省能源院召开 “深入学习张庆伟书记调研讲话精神”会议', 'admin', '8月16日上午省能源院召开 “深入学习张庆伟书记调研讲话精神”会议,会议由徐晓秋院长主持,全体职工参加了会议。', '/uploads/allimg/180816/1-1PQ6141P1545-lp.jpg', '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8月16日上午省能源院召开 &ldquo;深入学习张庆伟书记调研讲话精神&rdquo;会议,会议由徐晓秋院长主持,全体职工参加了会议。徐院长传达和讲解了&ldquo;关于在省科学院系统开展学习贯彻落实张庆伟书记调研讲话精神的通知&rdquo;、&ldquo;张庆伟书记在省科学院调研座谈会上的讲话&rdquo;两项重要文件,要求全体职工立足本职岗位,认真学习贯彻张庆伟书记调研时的讲话精神,采取行之有效的学习方式,积极组织开展支部&ldquo;说讲坛&rdquo;等专题学习活动。创新团队要以庆伟书记在我院的调研精神为引领加强顶层设计,合理规划构建协同创新体系。院所要牢牢把握正确的改革方向,探索改革创新发展新思路,推动科研事业单位深化改革。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180816/1-1PQ6141P1545.jpg\" style=\"height: 450px; width: 600px;\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/180816/1-1PQ6141T95b.jpg\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,能源,院,召开,“,深入,学习,张庆伟,书记,', '2018-08-16 06:12:48', '2020-06-02 02:11:02', NULL),
(232, 243, 7, '能源院召开2019年度储备项目评审会', 'admin', '8月17日能源院组织召开2019年度储备项目评审会两个创新团队共组织10项科研项目参与本次储备项目评审。评审委员会由来自哈尔滨工业大学、哈尔滨工程大学、黑龙江大学等七名省', '/uploads/allimg/180817/1-1PQGH33B13-lp.jpg', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\">8月17日能源院组织召开2019年度储备项目评审会两个创新团队共组织10项科研项目参与本次储备项目评审。评审委员会由来自哈尔滨工业大学、哈尔滨工程大学、黑龙江大学等七名省内知名专家组成。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;上午,先进行了院所基本应用技术研究专项和中试基地建设项目的评审,省科学院条财处陆凯参加会议。专家结合指南分别对院所基本应用技术储备项目给与了充分的建议和评价,对团队提出科研仪器设备进行了相关性、均衡性和匹配性的评价,并对储备项目进行了量化打分,一致同意进入项目储备库。</span>\r\n<div>\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180817/1-1PQGH33B13.jpg\" style=\"width: 600px; height: 600px;\" /></span><br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\">下午,召开了院基金项目、院青年基金项目、中试熟化项目、院长基金项目的储备项目评审会,与会专家对项目的选题、研究思路、技术路<br />\r\n 线、考核指标等方面提出了细致的修改意见,并对入库项目进行的打分排序,形成推荐意见。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/180817/1-1PQGH54a25.jpg\" style=\"width: 600px; height: 600px;\" /></span><br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\"> 本次评审会本着公开、公平、公正的原则,聘请的专家全部由系统外专家组成,同时,专家组对项目给与了充分、细致的评价,充分发挥了专家的咨询作用,对提升储备项目质量具有重要的指导作用。</span><br />\r\n <br />\r\n &nbsp;</div>\r\n', 1, 0, '未知', '能源,院,召开,2019,年度,储备,项目,评审会,8月,', '2018-08-17 09:20:38', '2020-06-02 02:11:02', NULL),
(233, 244, 7, '省能源院贯彻落实中央、省委及省科学院党组各项精神', 'admin', '为深入贯彻落实中央、省委及省科学院相关精神同时围绕法制年建设11月5日省能源院党委召开中心组学习扩大会议能源院全体党员参加会议会议由党委书记、院长徐晓秋同志', '/uploads/allimg/181109/1-1Q10Z929492R-lp.jpg', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">为深入贯彻落实中央、省委及省科学院相关精神同时围绕法制年建设11月5日省能源院党委召开中心组学习扩大会议能源院全体党员参加会议会议由党委书记、院长徐晓秋同志主持。</span>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会前徐晓秋同志带领全体党员再学新修订的《中国共产党纪律处分条例》。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议传达了中共黑龙江省第十二届委员会第四次全体会议决议、省科学院党组《关于学习宣传贯彻习近平总书记在深入推进东北振兴座谈会上重要讲话和考察黑龙江时重要指示精神的通知》和院党组书记赵梅同志在11月2日全院处级以上干部会议上提出的三点学习贯彻落实意见。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议要求全体党员要将上述各项学习精神作为当前和今后一个时期首要政治任务,深刻领会全会精神实质。坚持以问题为导向,结合自身工作学以致用,进一步解放思想、统一思想、形成共识,认真开展&ldquo;支部说讲谈&rdquo;活动,每一名职工都要自觉肩负创新驱动的历史重任,要以实际行动助力我院振兴发展。<br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/181109/1-1Q10Z929492R.jpg\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/181109/1-1Q10Z93020E8.jpg\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,能源,院,贯彻,落实,中央,、,省委,及,为,', '2018-11-09 01:16:02', '2020-06-02 02:11:02', NULL),
(234, 245, 7, '2018能源环境可持续发展论坛 暨省能源环境学会第四届学术年会召开', 'admin', '2018年11月17日太阳岛科技论坛系列活动——2018能源环境可持续发展论坛暨省能源环境学会第四届学术年会在哈尔滨工业大学城市水资源与水环境国家重点实验室隆重举行。本次会议的', '/uploads/allimg/181121/1-1Q12110005D08-lp.png', '<span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2018年11月17日太阳岛科技论坛系列活动&mdash;&mdash;2018能源环境可持续发展论坛暨省能源环境学会第四届学术年会在哈尔滨工业大学城市水资源与水环境国家重点实验室隆重举行。本次会议的主题为&ldquo;能源环境可持续发展&rdquo;,围绕秸秆综合利用技术、乡村厕所革命关键技术、生物制氢、土壤修复等主要议题进行大会报告。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;哈尔滨工业大学副校长任南琪院士、黑龙江省科学院院长郭春景研究员、城市水资源开发利用北方国家工程研究中心主任石广济教授、哈尔滨工业大学环境学院党委书记齐晶瑶教授、黑龙江省能源环境研究院院长徐晓秋研究员、东北农业大学资源与环境学院院长张颖教授等领导出席论坛。省内能源环境领域的高校、院所、企业的领导、学科带头人和骨干教师、学生等共计140余人参加了论坛。&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 论坛邀请了哈工大副校长、中国工程院院士任南琪教授、同济大学周雪飞教授、东北农业大学资源与环境学院院长张颖教授等七位知名专家学者做了精彩的学术报告。此次论坛的召开使科技人员能够结合我省的实际情况,立足服务发展需要,把握领域前沿动态,在提升学术水平的同时把理论应用于实践,最终实现我省能源环境的可持续发展。这次论坛对生态文明理念的提升、环境污染源头治理的加强以及资源循环利用能力的升级,具有重大的现实意义。<br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q12110005D08.png\" style=\"width: 600px; height: 400px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q121100113Y8.png\" style=\"width: 600px;\" /><br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q12110013a03.png\" style=\"width: 600px; height: 397px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q121100156295.png\" style=\"width: 600px; height: 384px;\" /><br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q121100215c9.png\" style=\"width: 600px; height: 397px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q12110022aG.png\" style=\"width: 600px; height: 396px;\" /><br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q121100255c5.png\" style=\"width: 600px; height: 400px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q1211003232c.png\" style=\"width: 600px; height: 397px;\" /><br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q121100344251.png\" style=\"width: 600px; height: 398px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q121100403363.png\" style=\"width: 600px; height: 399px;\" /><br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/181121/1-1Q121100425556.png\" style=\"width: 600px; height: 398px;\" /></span><br />\r\n', 1, 0, '未知', '2018,能源,环境,可,持续,发展论坛,暨省,学会,', '2018-11-21 01:58:35', '2020-06-02 02:11:02', NULL),
(235, 246, 7, '“解放思想,开放办院,协同创新”副院长赵立涛同志来能源院调研', 'admin', ' 12月7日上午省科学院党组成员、副院长赵立涛同志、院对外合作处处长刘志忠同志以及对外合作处全体同志来到能源院调研座谈。此次调研的主题为“解放思想开放办院协同创新', '/uploads/allimg/181210/1-1Q210094431926-lp.jpg', '<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; 12月7日上午省科学院党组成员、副院长赵立涛同志、院对外合作处处长刘志忠同志以及对外合作处全体同志来到能源院调研座谈。此次调研的主题为&ldquo;解放思想,开放办院,协同创新&rdquo;。</span></div>\r\n<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; 能源院介绍了2018年外事工作情况、合作平台建设及运转情况、海外人才工作站专家及聘请院级客座研究员情况 、明年外事工作计划。赵院长对我院外事工作给予较高评价,并对每项具体工作都进行了点评,直接指导我院外事工作健康有序推进。特别是叮嘱我院要高度关注各种渠道的国合项目,提前谋划,签署合作协议,争取参与指南编写,认真对待项目申报和答辩,才有可能获得资助。明确了技术引进、消化吸收再创新、服务第三世界国家的工作思路。对引智工作和援外培训等工作也给予了指导。</span></div>\r\n<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; 赵院长一行的到来明晰了我院外事工作思路给我院树立起对外合作工作的信心和决心2019年我院要解放思想、提前谋划、凝心聚力外事工作再谱新篇。<br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/181210/1-1Q210094431926.jpg\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/181210/1-1Q2100944524c.jpg\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '“,解放思想,开放,办院,协同,创新,”,副院长,', '2018-12-07 05:43:00', '2020-06-02 02:11:02', NULL),
(236, 247, 7, '省能源院集体观看中共中央国务院庆祝改革开放40周年大会', 'admin', '12月18上午10点根据省委办公厅要求能源环境研究院认真组织全体职工收看中共中央国务院召开的庆祝改革开放40周年大会。', '/uploads/allimg/181220/1-1Q220103332364-lp.png', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">12月18上午10点根据省委办公厅要求能源环境研究院认真组织全体职工收看中共中央国务院召开的庆祝改革开放40周年大会。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/181220/1-1Q220103332364.png\" style=\"width: 600px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/181220/1-1Q2201034015F.png\" style=\"width: 600px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,集体,观看,中共中央,国务院,庆祝,', '2018-12-20 02:32:18', '2020-06-02 02:11:02', NULL),
(237, 248, 7, '能源院全体党员干部收看第十三届全国人民代表大会第二次会议开幕', 'admin', '3月5日上午9时能源院全体党员干部集体收看第十三届全国人民代表大会第二次会议开幕。', '/uploads/allimg/190305/1-1Z305093T4X8-lp.JPG', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp;3月5日上午9时能源院全体党员干部集体收看第十三届全国人民代表大会第二次会议开幕。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/190305/1-1Z305093T4X8.JPG\" style=\"width: 600px; height: 315px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/190305/1-1Z305093ZI36.JPG\" style=\"width: 600px; height: 328px;\" /></span></div>\r\n', 1, 0, '未知', '能源,院,全体,党员,干部,收看,第十,三届,全国,', '2019-03-05 01:36:27', '2020-06-02 02:11:02', NULL),
(238, 249, 7, '能源院召开全体职工大会 传达学习贯彻省科学院2019年工作会议精神', 'admin', '2019年03月28日能源院召开全体职工大会传达学习贯彻省科学院2019年工作会议精神', '/uploads/allimg/190319/1-1Z31Z93452143-lp.JPG', '<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2019年2月28日省能源院召开了全体职工大会传达学习贯彻省科学院2019年工&nbsp;作会议精神,能源院领导班子及全体职工参加了会议。<br />\r\n &nbsp; &nbsp; &nbsp; 会议全文传达了郭春景院长的工作会议报告及赵梅书记的总结讲话。省能源院党&nbsp;委书记、院长徐晓秋同志围绕&ldquo;双提行动计划&rdquo;和打造&ldquo;五新&rdquo;科学院的发展目标,&nbsp;及认真学习贯彻落实2019年各项工作任务及9项重点工作进行了深入全面部署同时&nbsp;加强三点工作,一是加强政治建设,引领优良工作作风;二是着力攻坚克难,为科研&nbsp;高质量发展提供科技和人才支撑;三是加强科技宣传,营造和谐安全稳定发展环境,&nbsp;能源院全体干部职工将以百倍的热情深入学习贯彻落实中央、省委及省科学院各项精神不断加强支部建设树立优良作风加快实现创新引领和关键核心技术突破扎实推进科研工作完善机制落实责任以优异成绩向中华人民共和国成立70周年献礼。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\"><img alt=\"\" src=\"/storage/uploads/allimg/190319/1-1Z31Z93452143.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '能源,院,召开,全体,职工,大会,传达,2019年,2月,', '2019-03-19 01:30:49', '2020-06-02 02:11:02', NULL),
(239, 250, 7, '能源院举办“聚巾帼力量 筑美丽未来”座谈会庆祝“三八”国际妇女节', 'admin', ' 为庆祝“三八”国际妇女节,省能源院举办“聚巾帼力量 筑美丽未来”座谈会,全院女职工和班子成员参加了座谈会,能源院党委书记、院长徐晓秋同志主持会议。', '/uploads/allimg/190319/1-1Z31Z94359601-lp.JPG', '<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 为庆祝&ldquo;三八&rdquo;国际妇女节,省能源院举办&ldquo;聚巾帼力量 筑美丽未来&rdquo;座谈会,全院女职工和班子成员参加了座谈会,能源院党委书记、院长徐晓秋同志主持会议。</span></div>\r\n<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp;徐院长首先对全体女职工致以节日的祝福,对女同胞们多年来在能源院的建设和发展过程中做出的贡献给予了充分的肯定。女职工们纷纷发言,一致表示,作为新时代的女性,要认真学习领会全国&ldquo;两会&rdquo;精神,落实院工作会议精神,立足本职岗位,解放思想、勇于担当、锐意进取、奋发作为,不断提升科技创新能力和质量,为实现全院&ldquo;双提&rdquo;目标任务和我院创新发展做贡献。随后,我院邀请的专业老师为女职工们奉上了一堂精彩的服装搭配课程,受到了女职工们的热烈欢迎。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\"><img alt=\"\" src=\"/storage/uploads/allimg/190319/1-1Z31Z94359601.JPG\" style=\"width: 600px; height: 900px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '能源,院,举办,“,聚巾帼力量,筑,美丽,未来,”,', '2019-03-08 01:42:00', '2020-06-02 02:11:02', NULL),
(240, 251, 7, '省能源院参加的国家重点研发计划“村镇低成本清洁能源供暖及蓄热技术研究”项目启动会顺利召开', 'admin', '2019年3月27日由中国建筑科学研究院有限公司作为项目牵头单位、建筑环境与节能研究院李忠研究员作为项目负责人的“十三五”国家重点研发计划“绿色宜居村镇技术创新”重点专项', '/uploads/allimg/190409/1-1Z40Z929251W-lp.JPG', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><strong>国家重点研发计划&ldquo;村镇低成本清洁能源供暖及蓄热技术研究&rdquo;项目启动会顺利召开</strong></span></div>\r\n<div>\r\n <div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2019年3月27日由中国建筑科学研究院有限公司作为项目牵头单位、建筑环境与节能研究院李忠研究员作为项目负责人的&ldquo;十三五&rdquo;国家重点研发计划&ldquo;绿色宜居村镇技术创新&rdquo;重点专项&ldquo;村镇低成本清洁能源供暖及蓄热技术研究&rdquo;项目启动会在北京顺利召开。</span></div>\r\n <div style=\"text-align: center;\">\r\n <span style=\"font-size:10px;\"><img alt=\"\" src=\"/storage/uploads/allimg/190409/1-1Z40Z929251W.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n <div>\r\n &nbsp;</div>\r\n <div>\r\n &nbsp;</div>\r\n</div>\r\n<div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; 项目主管、中国农村技术开发中心副处长王峻项目专员朱浩、流动专员张志伟、张志强住房和城乡建设部标准定额司副调研员姚秋实中国建筑科学研究院有限公司副总经理王清勤、科技处副处长张靖岩、财务处副处长杨如冰建筑环境与节能研究院副院长邹瑜专项及项目咨询专家、21家项目参与单位共60余名研究人员参加了此次会议。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:10px;\"><img alt=\"\" src=\"/storage/uploads/allimg/190409/1-1Z40Z9304T56.JPG\" style=\"width: 600px; height: 400px;\" /></span></div>\r\n<div>\r\n <div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 项目启动会由建筑环境与节能研究院副院长邹瑜主持。院公司王清勤副总经理代表项目承担单位致辞,住房和城乡建设部标准定额司副调研员姚秋实代表项目推荐单位、中国农村技术开发中心王峻副处长代表项目管理团队发表讲话。</span></div>\r\n <div style=\"text-align: center;\">\r\n <span style=\"font-size:10px;\"><img alt=\"\" src=\"/storage/uploads/allimg/190409/1-1Z40Z93200225.JPG\" style=\"width: 600px; height: 413px;\" />&nbsp;</span></div>\r\n <div>\r\n <div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; 项目专员朱浩详细讲解了国家层面关于&ldquo;十三五&rdquo;重点研发计划的各项制度文件,以及中国农村技术开发中心对项目管理的各项要求。华建会计师事务所张小艳高级会计师就重点研发计划项目资金管理的相关事项做出了细致的培训与专业的讲解。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; 随后,会议进入实施方案咨询阶段。项目启动会咨询专家组由专项咨询专家中国建设科技集团股份有限公司教授级高工李宏,天津大学教授朱能,华建会计师事务所高级会计师张小艳;项目咨询专家中国建筑标准设计研究院有限公司教授级高工李军,北京工业大学教授陈超,中国建筑节能协会秘书长李德英共六人组成。此次启动会的咨询专家也被聘为项目的特聘专家,并由项目负责人李忠研究员向各位专家颁发了聘书。&nbsp;</span></div>\r\n </div>\r\n</div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/190409/1-1Z40Z93332P6.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n<div>\r\n <div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; 项目实施方案讨论会由李宏教授级高工主持。项目负责人李忠研究员汇报项目实施方案,重点介绍研究内容、统筹与分解、年度计划、组织保障和风险控制对策及加强项目内部控制的各项措施等内容。随后,各课题负责人李忠研究员、朱民教授、谭羽非教授、刘猛教授、张景高级工程师就课题实施方案进行汇报。</span></div>\r\n <div style=\"text-align: center;\">\r\n <span style=\"font-size:10px;\"><img alt=\"\" src=\"/storage/uploads/allimg/190409/1-1Z40Z93513J6.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n <div>\r\n &nbsp;</div>\r\n</div>\r\n<div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp;汇报结束后,专家组通过质询和论证,并为项目和课题后期实施提出了意见和建议,指出项目的实施按照以课题服务于项目为宗旨,课题各项考核指标应制定详实周密的研究计划,落实到具体时间节点,同时对于国拨经费的使用应严格按照研究进度支出。另外,示范工程建设项目任务繁重,需要周密计划与部署,为后续测试、总结与验收预留充足的时间。</span></div>\r\n<div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp;最后,项目负责人李忠研究员做总结发言,他感谢与会专家提出的宝贵意见,指出项目实施之前需要定好规矩,将项目考核指标进展落到实处,确保项目能够顺利完成,不负嘱托,切实为推动乡村振兴战略的落实提供有力的技术支撑。</span></div>\r\n<div>\r\n <span style=\"font-size:10px;\">此次启动会的顺利召开标志着本项目正式启动。该项目中央财政经费4295万元项目执行周期为2018年12月到2022年12月。项目针对我国绿色宜居村镇建设的需求将为绿色宜居村镇建设提供战略和技术决策支撑。</span></div>\r\n<div>\r\n &nbsp;</div>\r\n', 1, 0, '未知', '省,能源,院,参加,的,国家,重点,研发,计划,“,', '2019-04-09 01:22:02', '2020-06-02 02:11:02', NULL),
(241, 252, 7, '省能源院召开全院职工大会,学习传达贯彻省科学院落实机构改革方案动员大会的精神', 'admin', '5月6日下午14时省能源院召开全院职工大会学习传达贯省科学院落实机构改革方案动员大会的精神。会议由党委书记、院长徐晓秋同志主持。', '/uploads/allimg/190507/1-1Z50G44049615-lp.JPG', '<span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (一) 5月6日下午14时省能源院召开全院职工大会学习传达贯彻省科学院落实机构改革方案动员大会的精神。会议由党委书记、院长徐晓秋同志主持。<br />\r\n&nbsp;&nbsp;&nbsp; 会上,徐晓秋同志传达了《关于印发&lt;黑龙江省科学院及所属事业单位机构改革方案&gt;的通知》、全文传达了赵梅书记在省科学院落实机构改革方案动员大会上的讲话精神及郭春景院长提出的三点要求。会议要求全体干部职工,认真领会机构改革方案的精神,结合实际抓好落实,要按照科学院党组的要求,把会上布置的十一项工作落实落靠,要以改革为动力,为实现我院&ldquo;双提&rdquo;计划,打造"五新"科学院继续努力。动员全体党员积极开展&ldquo;说讲谈&rdquo;活动,要求各支部围绕落实动员大会精神,切实全面推进改革工作。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;下午15时许省科学院党组赵梅书记一行来到省能源院与省能源院领导班子进行了亲切的交流省能源院党委书记、院长徐晓秋同志将省能源院基本情况及改革涉及工作开展情况向赵书记一行进行了汇报赵梅书记和四位院机关部门领导根据省能源院实际情况给予了现场指导赵梅书记对落实改革工作中的责任任务、时间节点、人员组织、职能融合、队伍建设等重点工作做了进一步部署。</span>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/190507/1-1Z50G44049615.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/190507/1-1Z50G44115393.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n', 1, 0, '未知', '省,能源,院,召开,全院,职工,大会,学习,传达,', '2019-05-07 06:45:14', '2020-06-02 02:11:02', NULL),
(242, 253, 7, '守初心、担使命、找差距、抓落实', 'admin', '--省能源环境研究院党委“不忘初心、牢记使命”主题教育开展情况汇总\r\n\r\n“不忘初心、牢记使命”主题教育活动开展以来省能源院党委始终把党的政治建设摆在突出位置坚定政治', '', '<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\">守初心、担使命、找差距、抓落实</span></div>\r\n&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;--省能源环境研究院党委&ldquo;不忘初心、牢记使命&rdquo;主题教育开展情况汇总<br />\r\n&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &ldquo;不忘初心、牢记使命&rdquo;主题教育活动开展以来,省能源院党委始终把党的政治建设摆在突出位置,坚定政治信仰、增强&ldquo;四个意识&rdquo;、维护党中央权威和集中统一领导、严明党的政治纪律和政治规矩、加强和规范新形势下党内政治生活,确保各项工作取得实效。现将主题教育开展情况汇报如下。<br />\r\n一、以理论学习为基础<br />\r\n1.坚持读原著学原文悟原理。以习近平新时代中国特色社会主义思想为主题教育的主线,在学懂弄通做实上下功夫。组织党员干部学习党章、十九大报告,学习《习近平新时代中国特色社会主义思想学习纲要》《习近平关于&ldquo;不忘初心、牢记使命&rdquo;重要论述选编》《中共共产党党内法规汇编》,深入学习习近平总书记在振兴东北座谈会和到我省视察时的重要指示精神,以及习近平总书记最新重要讲话精神。党委成员带头认真开展学习,深学细悟,深入开展研讨,各党支部、各部门坚持自学、集中学习相结合,夯实学习基础。<br />\r\n2.开展集中学习研讨。召开中心组学习扩大学习会,带头深入开展专题研讨,集中研讨将自学、研讨、交流相结合,将革命传统教育和先进典型教育相结合,坚持领导带头、上下联动、同频共振。<br />\r\n3.丰富学习教育形式。结合观看纪录片《丰碑》、《楷模》,组织全体党员干部和党外人士集体参观《丰碑》中&ldquo;北大荒精神&rdquo;的代表-农垦北大荒博物馆,学习践行&ldquo;艰苦奋斗、勇于开拓、顾全大局、无私奉献&rdquo;的北大荒精神;组织全体党员干部与党建联系点省科学院人事处党支部共赴纪录片《楷模》中尚志市元宝村,开展&ldquo;观《丰碑》 学《楷模》 促&lsquo;双提&rsquo; 助&lsquo;落地&rsquo;&rdquo;主题教育活动,此行受到了元宝村村委会成员的亲切接待,村党总支书记也是&ldquo;楷模&rdquo;人物之一的张宝金同志对我们的到来表示热烈欢迎。全体人员首先来到抗日烈士赵尚志赵一曼纪念馆,追寻英雄足迹,缅怀英雄事迹,随后参观了以作家周立波长篇小说命名的暴风骤雨纪念馆,深入了解土地改革运动,以及改革前后元宝村发生的翻天覆地的变化,并重温入党誓词,以坚定有力的宣誓表达时刻不忘初心、牢记使命的信念和决心,并在元宝村围绕活动主题,现场召开了&ldquo;不忘初心、牢记使命&rdquo;主题座谈会。<br />\r\n二、以调查研究为载体<br />\r\n1.坚持问题导向。按照主题教育要求认真制定调研方案,聚焦党中央重大决策部署、群众反映突出的热点问题、党的建设面临的突出矛盾,切实把调查研究与履职尽责结合起来。在调研中紧盯问题,摸清实情,分析症结,理清思路,找出办法。<br />\r\n2.调查研究注重实际。紧密结合履职实际,分别制定调研方案,领导班子成员带头开展调研,聚焦问题,及时了解掌握干部职工思想动态,分别召开各层面座谈会,听取相关意见建议。<br />\r\n3.讲好专题党课。在学习调研的基础上,领导班子认真撰写党课提纲,为党员干部讲授党课。党委书记围绕&ldquo;学党史、知党情、强党性&rdquo;为全体党员干部讲授专题党课,并在支部围绕&ldquo;聚焦两会,助力科院&rdquo;、&ldquo;守初心 严律己 担使命&rdquo;分别讲授党课2次。<br />\r\n三、以检视问题为契机<br />\r\n1.广泛听取意见建议。突出主题教育目标之一&ldquo;为民服务解难题&rdquo;,通过谈话、问卷、座谈、设置征求意见箱等方式,广泛征集广大党员群众意见。<br />\r\n2.自觉对标查摆问题,深刻剖析反思。带头坚持高标准、严要求,按照总书记关于&ldquo;四个对照&rdquo;、&ldquo;四个找一找&rdquo;的要求,在征求意见基础上,把职责摆进去,把问题找出来,进一步细化问题,列出清单,从思想、政治、作风、能力、廉政方面全面检视,不留死角。认领问题,深入剖析症结,深刻反思原因,逐一对标,逐条逐项制定整改措施。<br />\r\n四、以整改落实为驱动<br />\r\n1.突出重点整改。认真研究制定主题教育专项整治实施方案,进一步强化宗旨意识,从政治站位上找差距,从思想深处找根源,从工作落实上找不足,从责任担当上找缺失。集中开展问题治理,对调硏发现的重点问题、群众反映强烈的问题和专项整治的问题列出清单、建立台账,逐条研究制定具体的解决办法和整改方案,有序有力抓整改,确保整改到位。<br />\r\n2.坚持立行立改。坚持把&ldquo;改&rdquo;字贯穿始终,注重将学习教育、调查研究和检视反思发现的问题纳入其中,明确整改任务。召开专项整治工作推进会议,对调研发现的问题、群众反映的问题、自身查找的问题列出清单、建立台账,逐条研究制定具体的解决办法和整改措施,能够当下改的,立行立改、即知即改,确保各项问题整改全部落实到位。<br />\r\n3.高质量开好专题民主生活会。高度重视、精心筹备、进一步认真开展学习、广泛征集意见,深入谈心交心,严格査摆问题并撰写检视剖析材料,为高质量的召开民主生活会夯实基础。<br />\r\n<br />\r\n', 1, 0, '未知', '守初,心,、,担,使命,找,差距,抓,落实,守初,心,', '2019-11-06 07:19:13', '2020-06-02 02:11:02', NULL),
(243, 254, 7, '能源院全体职工学习贯彻落实传达党的十九届四中全会精神', 'admin', '11月7日上午省能源院召开全体职工大会学习贯彻落实传达党的十九届四中全会精神全文学习了中国共产党第十九届中央委员会第四次全体会议公报会议由能源院党委书记、院长', '/uploads/allimg/191107/1-19110G45100394-lp.jpg', '<span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 11月7日上午省能源院召开全体职工大会学习贯彻落实传达党的十九届四中全会精神全文学习了中国共产党第十九届中央委员会第四次全体会议公报会议由能源院党委书记、院长徐晓秋同志主持。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议要求全体职工,坚持以马克思列宁主义、毛泽东思想、邓小平理论、&ldquo;三个代表&rdquo;重要思想、科学发展观、习近平新时代中国特色社会主义思想为指导,全面贯彻党的十九届四中全会精神,准确把握大局,着力抓好发展,攻坚克难、砥砺前行,推动能源院科研事业取得新的进展。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/191107/1-19110G45100394.jpg\" style=\"width: 600px; height: 800px;\" /></span></div>\r\n', 1, 0, '未知', '能源,院,全体,职工,学习贯彻,落实,传达,党的,', '2019-11-07 06:45:49', '2020-06-02 02:11:02', NULL),
(244, 255, 7, '能源院全体党员干部观看《榜样4》', 'admin', ' 10月24日按照省委“不忘初心、牢记使命”主题教育领导小组办公室《关于转发<关于认真做好《榜样4》专题节目学习收看工作的通知>的通知》和省科学院机关党委通知要求,省能源院', '/uploads/allimg/191107/1-19110G501592Q-lp.jpg', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:18px;\"> 10月24日按照省委&ldquo;不忘初心、牢记使命&rdquo;主题教育领导小组办公室《关于转发&lt;关于认真做好《榜样4》专题节目学习收看工作的通知&gt;的通知》和省科学院机关党委通知要求省能源院组织全体党员干部集体观看《榜样4》。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;《榜样4》讲述了&ldquo;本色英雄&rdquo;张富清、&ldquo;吃亏&rdquo;书记李连成、&ldquo;扶贫之花&rdquo;黄文秀、&ldquo;大湖鸿雁&rdquo;唐真亚、&ldquo;环卫天使&rdquo;李萌、扶贫&ldquo;硬汉&rdquo;隋耀达、揽月&ldquo;天团&rdquo;嫦娥四号参研参试人员群体代表的感人故事,彰显了优秀共产党员坚定入党初心、无私敬业奉献、热心服务群众的精神风貌,深刻诠释了中国共产党人不忘初心、牢记使命的执着坚守。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;全体党员干部纷纷表示深受感动和鼓舞,作为一名共产党员,要以榜样为镜,在以后的工作中自觉向榜样看齐,自足本职、主动作为、敢于担当。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:18px;\"><img alt=\"\" src=\"/storage/uploads/allimg/191107/1-19110G501592Q.jpg\" style=\"width: 600px; height: 449px;\" /></span></div>\r\n', 1, 0, '未知', '能源,院,全体,党员,干部,观看,《,榜样4,》,', '2019-10-24 07:00:00', '2020-06-02 02:11:02', NULL),
(245, 256, 7, '能源院协办“2019年刚果环保可持续发展研修班”在哈尔滨举办', 'admin', '2019年8月11-15日“2019年刚果环保和可持续发展研修班”在哈尔滨举办。本次研修班由商务部主办农业农村部沼气科学研究所承办共有25名来自刚果政府部门、企业协会', '/uploads/allimg/191107/1-19110G52120A4-lp.jpg', '&nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp; &nbsp;2019年8月11-15日&ldquo;2019年刚果环保和可持续发展研修班&rdquo;在哈尔滨举办。本次研修班由商务部主办农业农村部沼气科学研究所承办共有25名来自刚果政府部门、企业协会、基金会的官员和学者参加了此次培训黑龙江省能源环境研究院作为协办单位组织了本次研修班。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8月12日研修班在徐晓秋院长和方正县农业局的陪同下来到了得莫利镇参观了得莫利镇垃圾处理中心鼎地科技公司技术人员对ERCM垃圾处理示范项目给研修班学员进行了详细讲解。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8月13日研修班参观了黑龙江省能源环境研究院生物质能实验室生物质能团队刘伟副研究员对实验室的研究领域、研究内容进行了详细介绍并与研修班学员进行了细致交流。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8月14日生物质能团队王欣副研究员做了&ldquo;城市固废处理的方法和技术&rdquo;的专题培训报告,普及了中国先进的城市固废处理技术,对研修班学员的提问做了专业解答。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;通过此次培训,加强了能源院在有机固废处理领域的宣传力度,为&ldquo;一带一路&rdquo;发展中国家的发展提供了帮助。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/191107/1-19110G52120A4.jpg\" style=\"width: 600px; height: 600px;\" /><br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/191107/1-19110G52144546.jpg\" style=\"width: 600px; height: 600px;\" /></span></div>\r\n<br />\r\n', 1, 0, '未知', '能源,院,协办,“,2019年,刚果,金,环保,2019年,', '2019-08-15 07:32:00', '2020-06-02 02:11:02', NULL),
(246, 257, 7, '省能源院与七台河市相关门、企业赴湖南省、江西省就低热值固废(煤矸石)资源化利用开展项目对接', 'admin', '为贯彻落实张庆伟同志《在全省工业强省暨产业发展大会上的讲话》精神和《黑龙江省委、省政府关于加快煤炭资源型城市转型推动高质量发展的指导意见》,进一步做好低热值固废(', '/uploads/allimg/191112/1-19111209164Y48-lp.png', '<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style=\"font-size:14px;\">为贯彻落实张庆伟同志《在全省工业强省暨产业发展大会上的讲话》精神和《黑龙江省委、省政府关于加快煤炭资源型城市转型推动高质量发展的指导意见》进一步做好低热值固废煤矸石燃烧项目对接工作应七台河市相关企业要求2019年10月20日至23日省科学院能源环境研究院徐晓秋院长带队由七台河市科技局牵头市直部门及七台河市吉伟煤焦有限公司、黑龙江省德利能源股份有限公司、亿达信煤焦化能源有限公司、联顺能源有限责任公司等相关企业赴湖南乾能新能源科技开发有限公司、江西省萍乡市安源电厂等地对低热值固废煤矸石燃烧35吨&mdash;40吨项目进行实地考察。</span><br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/191112/1-19111209164Y48.png\" style=\"width: 600px; height: 799px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/191112/1-191112091FbE.png\" style=\"width: 600px; height: 800px;\" />\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/storage/uploads/allimg/191112/1-191112091I2460.png\" style=\"width: 600px; height: 446px;\" /></div>\r\n', 1, 0, '未知', '赴,湖南省,、,江西省,对接,低,热值,固废,赴,', '2019-10-20 05:05:00', '2020-06-02 02:11:02', NULL);
INSERT INTO `articles` (`id`, `oldid`, `category_id`, `title`, `writer`, `description`, `cover`, `content`, `status`, `sort`, `source`, `keywords`, `created_at`, `updated_at`, `deleted_at`) VALUES
(247, 258, 7, '省能源院组织全体党员干部,集体学习省委关于《切实加强党的建设、严明党的政治纪律和政治规矩》主题教育宣传片', 'admin', '8月21日上午省能源院组织全体党员干部集体学习省委关于《切实加强党的建设、严明党的政治纪律和政治规矩》主题教育宣传片“不忘初心、牢记使命”主题教育活动开展以来', '/uploads/allimg/191118/1-19111Q11400524-lp.JPG', '&nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp; &nbsp; 8月21日上午省能源院组织全体党员干部集体学习省委关于《切实加强党的建设、严明党的政治纪律和政治规矩》主题教育宣传片&ldquo;不忘初心、牢记使命&rdquo;主题教育活动开展以来,省能源院党委始终把党的政治建设摆在突出位置,坚定政治信仰、增强&ldquo;四个意识&rdquo;、维护党中央权威和集中统一领导、严明党的政治纪律和政治规矩、加强和规范新形势下党内政治生活,确保在各项工作中取得实效。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/191118/1-19111Q11400524.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', 1, 0, '未知', '省,能源,院,组织,全体,党员,干部,集体,学习,', '2019-08-21 03:10:00', '2020-06-02 02:11:02', NULL),
(248, 259, 7, '省能源院党委组织全体党员干部与党建联系点省科学院人事处党支部共赴纪录片《楷模》中尚志市元宝村,开展观《丰碑》,学《楷模》,促“双提”,助落地主题教育活动', 'admin', '省能源院党委组织全体党员干部与党建联系点省科学院人事处党支部共赴纪录片《楷模》中尚志市元宝村,开展观《丰碑》,学《楷模》,促“双提”,助落地主题教育活动', '/uploads/allimg/191118/1-19111Q13RCL-lp.jpg', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\">7月10日省能源院党委组织全体党员干部与党建联系点省科学院人事处党支部共赴纪录片《楷模》中尚志市元宝村开展观《丰碑》学《楷模》促&ldquo;双提&rdquo;,助落地主题教育活动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;上午10时许全体人员来到抗日烈士赵尚志赵一曼纪念馆追寻英雄足迹缅怀英雄事迹深刻感受革命先烈不怕牺牲、艰苦奋斗、矢志报国的爱国情怀。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下午13时许全体人员抵达&ldquo;中国土改文化第一村&rdquo;元宝镇元宝村,受到了元宝村村委会成员的亲切接待,村总支张宝金书记对我们的到来表示热烈欢迎。全体人员参观了以作家周立波长篇小说命名的暴风骤雨纪念馆,深入了解土地改革运动,以及改革前后元宝村发生的翻天覆地的变化,并重温入党誓词,以坚定有力的宣誓表达时刻不忘初心、牢记使命的信念和决心。随后全体人员在元宝村围绕活动主题现场召开了&ldquo;不忘初心、牢记使命&rdquo;主题座谈会,并参观了元宝村雪莲笔业有限公司。<br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/191118/1-19111Q13RCL.jpg\" style=\"width: 600px; height: 823px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/191118/1-19111Q13T5a6.jpg\" style=\"width: 497px; height: 677px;\" /><br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/191118/1-19111Q13ZI28.jpg\" style=\"width: 600px; height: 823px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/191118/1-19111Q13926161.jpg\" style=\"width: 600px; height: 399px;\" /></span><br />\r\n<br />\r\n', 1, 0, '未知', '省,能源,院,党委,组织,全体,党员,干部,与,7月,', '2019-07-10 03:18:00', '2020-06-02 02:11:02', NULL),
(249, 260, 7, '黑龙江省能源环境研究院党委组织全体党员和部分党外人士参观北大荒博物馆', 'admin', '为进一步深入开展“不忘初心、牢记使命”主题教育活动7月4日黑龙江省能源环境研究院党委组织全体党员和部分党外人士参观北大荒博物馆学习践行“艰苦奋斗、勇于开拓、顾全', 'images/2020/06/03/fffe441dd743b4d2aea299587b4f1fd5.jpg', '<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\">为进一步深入开展“不忘初心、牢记使命”主题教育活动7月4日黑龙江省能源环境研究院党委组织全体党员和部分党外人士参观北大荒博物馆学习践行“艰苦奋斗、勇于开拓、顾全大局、无私奉献”的北大荒精神。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;通过此次参观学习,大家都深刻体会到几代北大荒人献青春、献终身的无私伟大,大家纷纷表示本次活动不仅是一次学习教育,更是一次深刻的精神洗礼,应铭记历史,在今后工作生活中继续弘扬北大荒精神,初心不改,敢担当、顾大局、乐于奉献、奋勇向前!</span><br/></p>', 1, 0, '未知', '黑龙江省,能源,环境,研究院,党委,组织,全体,', '2019-07-04 05:06:00', '2020-06-03 09:10:42', NULL),
(250, 261, 7, '能源院组织全体党员干部开展“不忘初心,牢记使命”主题教育启动会', 'admin', '根据中央、省委和省科学院党组关于开展“不忘初心,牢记使命”主题教育相关部署,省能源院迅速响应,组织全体党员干部,以主题教育为主导,将各项工作全面推向深入。', '/uploads/allimg/191118/1-19111Q314514H-lp.jpg', '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style=\"font-size:16px;\"> 根据中央、省委和省科学院党组关于开展&ldquo;不忘初心,牢记使命&rdquo;主题教育相关部署,省能源院迅速响应,组织全体党员干部,以主题教育为主导,将各项工作全面推向深入。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.6月13日省能源院召开全体党员大会暨省能源院&ldquo;不忘初心、牢记使命&rdquo;主题教育启动会,省能源院领导班子,全体党员参加会议,会议由省能源院党委书记、院长徐晓秋同志主持。<br />\r\n会议深入学习贯彻落实了中央、省委及省科学院关于开展&ldquo;不忘初心、牢记使命&rdquo;主题教育各项工作精神,全文学习了《关于开展&ldquo;不忘初心、牢记使命&rdquo;主题教育实施方案》、赵梅书记重要讲话精神、第九巡回督导组组长刘杰同志讲话精神。会议强调,要紧跟上级主题教育各项步伐,根据相关要求,迅速制定实施方案,准确把握目标要求,明确学习内容,强加组织领导,以上率下,层层传导,各支部要严格按照方案要求,切实行动起来,确保主题教育高质量完成。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.6月14日省能源院召开党委会议为保障主题教育全面开展成立&ldquo;不忘初心、牢记使命&rdquo;主题教育领导小组,研讨制定省能源环境研究院&ldquo;不忘实心、牢记使命&rdquo;主题教育理论学习方案。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;省能源院党委书记、院长徐晓秋同志在会议中指出:一要提高认识站位。要站在战略和全局的高度,充分认识主题教育的重要意义,坚定不移贯彻落实中央、省委和省科学院的部署要求,把理论学习作为严肃党内政治生活、强化党性修养的重要举措,切实把学习任务落到实处。二要突出学习重点。要坚持以学习贯彻习近平总书记系列重要讲话精神为重点,以学习贯彻习近平新时代中国特色社会主义思想为首要任务,原原本本学、原汁原味学,结合&ldquo;不忘初心、牢记使命&rdquo;主题教育,对标思想和工作实际,明方向、找差距、定措施,提升境界,改进工作。三要创新学习形式。要根据学习内容及实际情况,不断改进学习方式和拓展学习载体。坚持把个人自学思考与集体学习研讨相结合、把理论学习与专题调研相结合、把常规学习与线上学习相结合,进一步增强学习的吸引力、感染力。积极拓宽学习渠道、丰富学习手段,运用网络、移动新媒体、客户端等新技术新应用,不断激发学习兴趣,提高学习的主动性和自觉性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3.6月21日根据省科学院相关要求和省能源院理论学习方案安排组织全体党员干部集体观看纪录片《丰碑》抗联精神北大荒精神大庆铁人精神、《楷模》于海河张宝金张秀林星火变电所前哨林场、《英雄的本色-张富清》、《初心无悔-马旭》,省能源院全体党员干部身受感动与鼓舞,会后主动撰写观后感,纷纷表示,这些英雄和楷模经在经历困难和面对牺牲时,心中始终怀揣着共产党人坚定不移的共产主义信念以及不畏艰难、不怕牺牲的大无畏精神,是共产党人舍己为公、无私奉献、忠诚担当的高贵品质,是共产党人为人民谋幸福、为民族谋复兴的高尚情怀,是所有共产党员学习的楷模和标准。回顾过去的艰苦创业、奋斗历程和光辉成就,是为了坚定今天的理想信念,激励全省党员干部不忘初心、牢记使命,锐意进取、担当作为,不断开创龙江全面振兴全方位振兴新局面。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4.6月26日省能源院召开党委中心组学习扩大会议党委委员、支部书记参加会议。党委书记、院长徐晓秋同志主持并领学习近平关于&ldquo;不忘初心,牢记使命&rdquo;重要论述选编中《走的再远都不能忘记来时的路》《党必须勇于自我革命》。副院长关春玲同志领学习近平关于&ldquo;不忘初心,牢记使命&rdquo;重要论述选编中《牢固树立&ldquo;四个意识&rdquo;,维护党中央权威》《坚持和发展中国特色社会主义要一以贯之》,徐晓秋同志强调,全体党员干部要提高政治站位,增强思想自觉、政治自觉、行动自觉。开展主题教育是初心所在,是党心所系,是民心所向,党员领导干部只有打牢思想之基,不断增强&ldquo;四个意识&rdquo;、坚定&ldquo;四个自信&rdquo;、做到&ldquo;两个维护&rdquo;,才能确保改革发展沿着正确方向前进;只有勇于自我革命,坚持不懈地推动全面从严治党向纵深发展,才能全身心的投入改革发展大业中去;只有牢固树立群众观念、自觉践行群众路线,才能使职工群众满意,最终凝聚成砥砺奋进的强大力量。<br />\r\n<img alt=\"\" src=\"/storage/uploads/allimg/191118/1-19111Q314514H.jpg\" style=\"width: 552px; height: 552px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/191118/1-19111Q3150G10.jpg\" style=\"width: 553px; height: 737px;\" /></span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/storage/uploads/allimg/191118/1-19111Q3153G44.jpg\" style=\"width: 600px; height: 799px;\" /></span></div>\r\n', 1, 0, '未知', '能源,院,组织,全体,党员,干部,开展,“,根据,', '2019-06-26 05:13:00', '2020-06-02 02:11:02', NULL),
(251, 262, 7, '能源院承办第五届学术年会暨生态文明建设与资源环境技术研讨会', 'admin', '2019年11月30日由黑龙江省能源环境学会主办黑龙江省能源环境研究院承办的“2019黑龙江省能源环境学会第五届学术年会暨生态文明建设与资源环境技术研讨会”在哈尔滨北大荒国际', '/uploads/allimg/191220/1-191220110U3Q4-lp.jpg', '<div>\r\n &nbsp; &nbsp; &nbsp; &nbsp; 2019年11月30日由黑龙江省能源环境学会主办黑龙江省能源环境研究院承办的&ldquo;2019黑龙江省能源环境学会第五届学术年会暨生态文明建设与资源环境技术研讨会&rdquo;在哈尔滨北大荒国际饭店举行。</div>\r\n<div>\r\n &nbsp; &nbsp; &nbsp; &nbsp; 省科协学会部吕强部长到会,并发表贺词。他感谢省能源环境学会对科协工作的支持,对学会的发展壮大表示祝贺,对今后加强学会建设、促进创新驱动助力龙江发展等方面提出殷切希望。会议以&ldquo;生态文明建设与资源环境&rdquo;为主题,特邀了哈尔滨工业大学马放教授、城市水资源开发利用(北方)国家工程研究中心陈志强教授、黑龙江省农业科学院农村能源与环保研究所刘杰研究员、黑龙江八一农垦大学王伟东教授、黑龙江省能源环境研究院王志成研究员级高工做会议主旨报告。</div>\r\n<div>\r\n &nbsp; &nbsp; &nbsp; &nbsp; 与会专家学者围绕&ldquo;生态文明建设与资源环境技术&rdquo;等方面,开展学术交流和研讨,探讨如何发挥资源环境技术的作用,促进我省生态文明建设,为龙江经济社会发展服务。</div>\r\n<div>\r\n &nbsp; &nbsp; &nbsp; &nbsp; 2019黑龙江省能源环境学会学术年会在浓重的学术氛围中取得了圆满成功。</div>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/storage/uploads/allimg/191220/1-191220111PCJ.jpg\" style=\"width: 500px; height: 283px;\" /><br />\r\n <br />\r\n &nbsp;</div>\r\n', 1, 0, '未知', '能源,院,承办,第五届,学术年会,暨,生态,简讯,', '2019-12-20 05:53:00', '2020-06-02 02:11:02', NULL),
(252, 263, 7, '省能源环境研究院召开2019年度总结大会', 'admin', '2019年12月31日省能源院召开2019年度总结大会院领导班子全体职工参加会议会议由省能源院党委书记、院长徐晓秋同志主持。', '/uploads/allimg/200115/1-200115150132C6-lp.jpg', '<span style=\"font-size:18px;\">&nbsp; &nbsp;&nbsp;</span>&nbsp; 2019年12月31日省能源院召开2019年度总结大会院领导班子全体职工参加会议会议由省能源院党委书记、院长徐晓秋同志主持。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;会议认真总结了省能源院2019年各项工作情况并对全体职工进行了年终考核。2019年在省科学院党组的正确领导下省能源紧跟新时代奋斗新征程以&ldquo;双提行动&rdquo;和&ldquo;省科学院新时代科技创新发展规划&rdquo;为工作重点,以全面推进高质量发展为总要求,不断发扬&ldquo;双创争优&rdquo;精神,明确发展目标、坚持发展战略,建团队、强机制,全体科研人员用品质和创新突破自我,真抓实干,勇于奉献,圆满完成了各项目标任务。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;随后开展了省能源院&ldquo;学习强国&rdquo;知识竞赛,竞赛分三个部分,分别为&ldquo;持续巩固主题教育成果&rdquo;&ldquo;不断夯实党建提升工程&rdquo;&ldquo;突出党建全面引领中心工作&rdquo;,此次活动意在提高全体干部职工善于学习、善于总结、善于提高的能力,激励干部职工不懈努力,为省能源院全面发展贡献力量。\r\n<div>\r\n <img alt=\"\" src=\"/storage/uploads/allimg/200115/1-200115150509D1.jpg\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/200115/1-200115150529C7.jpg\" style=\"width: 600px; height: 450px;\" /></div>\r\n<div style=\"text-align: center;\">\r\n &nbsp;</div>\r\n&nbsp;<br />\r\n', 1, 0, '未知', '省,能源,环境,研究院,召开,2019,年度,总结,省,', '2019-12-31 07:23:00', '2020-06-02 02:11:02', NULL),
(253, 264, 7, '省科学院伍跃辉院长一行 莅临省能源院指导工作', 'admin', '1月3日下午省科学院伍跃辉院长人事处机、关党委相关同志一行莅临省能源院对省能源院领导班子及成员进行年终考核并指导工作。省能源院全体干部职工参加会议。', '/uploads/allimg/200115/1-200115154154124-lp.jpg', '&nbsp; &nbsp; &nbsp; <span style=\"font-size:12px;\">1月3日下午省科学院伍跃辉院长人事处机、关党委相关同志一行莅临省能源院对省能源院领导班子及成员进行年终考核并指导工作。省能源院全体干部职工参加会议。<br />\r\n&nbsp; &nbsp; &nbsp; 省能源院党委书记、院长徐晓秋代表领导班子就省能源院2019年目标完成情况、重点亮点工作、改革情况、存在问题及取得成绩等方面向伍院长一行进行全面了汇报随后班子成员就分管领域工作完成情况进行了汇报。伍院长对省能源院2019年度工作给予了充分肯定高度评价省能源院领导班子在各项工作中发挥的强有力作用指出省能源院班子、团队坚强有力、科研工作稳中创新并希望省能源院在2020年取得更大的成绩。<br />\r\n&nbsp; &nbsp; &nbsp; 随后,为更好的调动和鼓舞广大干部职工干事创业的积极性和创造性,伍院长为省能源院在创新发展中取得显著业绩获得表彰的先进个人颁奖。<br />\r\n&nbsp; &nbsp; &nbsp;&nbsp;<img alt=\"\" src=\"/storage/uploads/allimg/200115/1-200115154154124.jpg\" style=\"width: 600px; height: 600px;\" /><img alt=\"\" src=\"/storage/uploads/allimg/200115/1-200115154212610.jpg\" style=\"width: 600px; height: 600px;\" /><br />\r\n&nbsp;</span><br />\r\n', 1, 0, '未知', '省,科学院,伍跃,辉,院长,一行,莅临省,能源,院,', '2019-12-31 07:43:00', '2020-06-02 02:11:02', NULL),
(254, 0, 1, '简介', 'admin', NULL, 'images/2020/06/03/644875e12c15da180ccd9612b8407159.jpg', '<p>&nbsp;</p><h1 style=\"text-align: center\"><strong><span style=\"font-size: 20px\">黑龙江省能源环境研究院(孵化中心)组织结构</span></strong></h1><h2>\r\n &nbsp;</h2><h1><span style=\"font-size: 20px\">1、科研开发部门</span></h1><p><span style=\"font-size: 20px\"><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span>环境科学与节能技术研究室</span></p><p><span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>·</strong></span><span style=\"font-size: 20px\">能源化学研究室</span></p><p><span style=\"font-size: 28px\">&nbsp; &nbsp;<strong>&nbsp;·</strong></span><span style=\"font-size: 20px\">油品助剂研发中心</span></p><p><span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>·</strong></span><span style=\"font-size: 20px\">控制实验室</span></p><p><span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>·</strong></span><span style=\"font-size: 20px\">生物质能源实验室</span></p><p><span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>·</strong></span><span style=\"font-size: 20px\">寒区生物质能源基地</span></p><h1><span style=\"font-size: 20px\">2、行政管理部门</span></h1><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">科研与产业化办公室</span></p><p><span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>·</strong></span><span style=\"font-size: 20px\">综合管理办公室</span></p><p><span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>·</strong></span><span style=\"font-size: 20px\">财务管理办公室</span></p><h1><span style=\"font-size: 20px\">3、</span><span style=\"font-size: 20px\">领军人才梯队</span></h1><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">能源化学</span></p><h1><span style=\"font-size: 20px\">4、省重点室验室</span></h1><p style=\"margin-top: 0px; margin-bottom: 0px\"><strong><span style=\"font-size: 28px\">&nbsp;&nbsp;&nbsp; ·</span></strong><span style=\"font-size: 20px\"><span style=\"font-family: 宋体\">燃油燃煤清洁能源重点实验室</span></span></p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:08:18', NULL),
(255, 0, 2, '能源院简介', 'admin', '黑龙江省能源环境研究院创建于1995年前身为“黑龙江省节油技术开发中心”隶属于黑龙江省科技厅2003年更名为“黑龙江省能源环境研究院”。2010年隶属于黑龙江省科学院属公益一类事业单位。黑龙江省能源环境研究院在能源和环境领域是一个基础研究与应用研究并重、公益服务与技术创新相结合的综合性研究院。二十多年来黑龙江省能源环境研究院根据地域特点不断完善学科体系稳步提高科研水平形成了鲜明的科研特色。\r\n黑龙江省能源环境研究院创建于1995年前身为“黑龙江省节油技术开发中心”\r\n黑龙江省能源环境研究院创建于1995年前身为“黑龙江省节油技术开发中心”\r\n黑龙江省能源环境研究院创建于1995年前身为“黑龙江省节油技术开发中心”', 'images/2020/06/03/1c356b5861880114bf640fc8a175783c.jpg', '<h1 style=\"text-align: center\"><span style=\"font-size:26px;\">黑龙江省能源环境研究院简介</span></h1><p><span style=\"font-size:28px;\">&nbsp; &nbsp; &nbsp; &nbsp;黑龙江省能源环境研究院创建于1995年前身为“黑龙江省节油技术开发中心”隶属于黑龙江省科技厅2003年更名为“黑龙江省能源环境研究院”。2010年隶属于黑龙江省科学院属公益一类事业单位。</span></p><p><span style=\"font-size:28px;\">&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省能源环境研究院在能源和环境领域是一个基础研究与应用研究并重、公益服务与技术创新相结合的综合性研究院。二十多年来,黑龙江省能源环境研究院根据地域特点,不断完善学科体系,稳步提高科研水平,形成了鲜明的科研特色。其职能为“围绕国家重大战略需求,面向黑龙江省政府决策和公益事业发展的战略需求,在环境工程、一次能源、二次能源等学科领域开展基础性、系统性和前瞻性研究,掌握和突破关键核心技术,为国家和黑龙江省战略、经济和社会发展提供科技支撑”。拥有能源化学省级领军人才梯队和黑龙江省燃油燃煤清洁能源重点实验室。<br/>&nbsp; &nbsp; &nbsp; &nbsp; 近年来形成了能源化学、生物质能和固废处理与环境改善三个学科领域六个重点研究方向的科研体系。在黑龙江省建成了首座可全年连续稳定运行的大型沼气发电工程,在催化油浆制备新材料形成技术创新,在油页岩综合利用形成技术储备。在煤矸石处理、室内空气质量改善、农村垃圾、厕所革命、秸秆固体燃料等方向积极与国内知名高校、科研院所和企业开展联合,大力推进废弃物处理技术联合研发和成果落地,改善农村和城市环境,助推污染防治攻坚战。<br/>&nbsp; &nbsp; &nbsp; &nbsp; 建院以来累计完成国家攻关项目4项科技部国际科技合作项目2项黑龙江省重大项目1项黑龙江省科技攻关项目11项省自然科学基金2项各级科研项目120余项。获得省科技进步一等奖1项省科技发明一等奖2项中国石油和化学协会科技进步二等奖1项省科技进步三等奖1项省科学院科技进步一等奖2项二等奖1项获得国家专利100余项发表科技论文200余篇。<br/>&nbsp; &nbsp; &nbsp; &nbsp; 进入新时代的黑龙江省能源环境研究院,将“不忘初心,牢记使命”,面向政府战略需求,面向技术创新前沿,面向公益事业发展,通过“协同创新、开放合作”的办院理念,推动高质量发展,为黑龙江省在能源和环境领域的全方位发展提供技术引领,为国家和地方经济、社会发展做出应有的贡献。</span></p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:24:21', NULL),
(256, 0, 3, '历史沿革', 'admin', NULL, 'images/2020/06/03/5c71322a112ecd7f552a02b0b317b3b6.jpg', '<h1><span style=\"font-size: 22px\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院成立于1995年前身为黑龙江省节油技术开发中心单位性质为公益三类事业单位隶属于黑龙江省科学技术厅2003年更名为黑龙江省能源环境研究院2006年单位性质转变为公益一类事业单位2010年隶属关系由黑龙江省科学技术厅变更为黑龙江省科学院2013年3月与黑龙江省科学院科技孵化中心合并。</strong></span></h1><p>&nbsp;</p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:08:28', NULL),
(258, 0, 10, '联系我们', 'admin', NULL, 'images/2020/06/03/9fb0929bafd7d70db892cb705a83de9a.jpg', '<h1><span style=\"font-size: 20px\">邮箱:<a href=\"mailto:lifuqihappy@163.com\">hljnyfh@163.com</a>&nbsp;&nbsp;&nbsp;<a href=\"mailto:hljnyhj@163.com\">hljnyhj@163.com</a></span></h1><h1><span style=\"font-size: 20px\">电话0451-88071351&nbsp;&nbsp; 0451-82387268</span></h1>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:08:08', NULL),
(259, 0, 11, '机构设置', 'admin', NULL, 'images/2020/06/03/4013993fe12d4c5f0de82eedec144e03.jpg', '<p>&nbsp;</p><h1 style=\"text-align: center\"><strong><span style=\"font-size: 20px\">黑龙江省能源环境研究院组织结构</span></strong></h1><h2>\r\n &nbsp;</h2><h1><span style=\"font-size: 20px\">1、科研开发部门</span></h1><p><span style=\"font-size: 20px\"><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span>环境科学研究室</span></p><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">能源化学研究室</span></p><p><span style=\"font-size: 28px;\"><strong>&nbsp; &nbsp; ·</strong></span><span style=\"font-size: 20px;\">能源微生物研究室</span></p><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">节能技术研究室</span></p><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">生物质能源实验室</span></p><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">控制实验室</span></p><h1><span style=\"font-size: 20px\">2、行政管理部门</span></h1><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">科研管理办公室</span></p><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">综合管理办公室</span></p><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">财务管理办公室</span></p><h1><span style=\"font-size: 20px\">3、</span><span style=\"font-size: 20px\">领军人才梯队</span></h1><p><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; ·</strong></span><span style=\"font-size: 20px\">能源化学</span></p><h1><span style=\"font-size: 20px\">4、省重点室验室</span></h1><p style=\"margin-top: 0px; margin-bottom: 0px\"><strong><span style=\"font-size: 28px\">&nbsp;&nbsp;&nbsp; ·</span></strong><span style=\"font-size: 20px\"><span style=\"font-family: 宋体\">燃油燃煤清洁能源重点实验室</span></span></p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:08:00', NULL),
(260, 0, 12, '环境科学研究室', 'admin', NULL, 'images/2020/06/03/86194e4c360f2abc9f5dc850fae68cac.jpg', '<p><span style=\"font-size: 22px\"><strong>环境科学研究室简介</strong></span></p><p>&nbsp;</p><p><span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>环境科学研究室一直致力于节能减排技术和室内环境污染分析方面的研究工作。主要从事生物法处理生活、工业污水和室内空气中污染物的源解析及治理研究。</strong><br/>\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>环境科学研究室曾完成过多项省部级科研项目,如:《奥里油脱硫技术研制及应用</strong>&nbsp;<strong>》、《燃煤锅炉催化脱硫技术研究》和《工业燃煤锅炉烟气净化技术</strong>&nbsp;<strong>》等项目,为我国固定污染源减排提供新技术</strong><strong>,</strong><strong>并分别获得黑龙江省科技一等奖</strong><strong>1</strong><strong>项、中国石油和化学工业科技进步类二等奖</strong><strong>1</strong><strong>项。还完成了基于废碳源的产油微藻提取生物油脂技术,既解决污水排放问题,又提供生物能源,为排污综合利用储备了基础技术。研究室正在参与编制国家行业标准《住宅建筑室内装修污染控制技术规程》,并承担室内环境相关课题两项。</strong><br/>\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>环境科学研究室下设生物环境实验室、室内环境实验室、乳化实验室等,具有较为完备的分析测试仪器设备,如热脱附仪,粉尘检测仪,臭氧检测仪,甲醛便携检测仪,</strong><strong>TVOC</strong><strong>便携检测仪,测氡仪,</strong><strong>1m<sup>3</sup></strong><strong>环境气候箱等。同时,研究室成员专业互补,高中初级分布合理,并拥有多年的实验室工作经验,可以处理各种环境、节能实验,科研实力较强。</strong><br/>\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>研究室主任介绍:</strong><br/>\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>王志成,</strong><strong>1973</strong><strong>年出生,学士,研究员级高级工程师,能源化学省级领军人才梯队后备带头人,省级燃油燃煤清洁能源重点实验室成员,兼任:省能源环境学会常务理事、省化学会理事。从事新型醇醚燃料催化剂和乳化燃料催化剂及合成工艺研究,以及室内空气污染研究工作。主持和主研科研课题</strong><strong>22</strong><strong>项,其中包括国家攻关计划项目</strong><strong>3</strong><strong>项,省自然科学基金项目</strong><strong>1</strong><strong>项,国家政府间国际合作项目</strong><strong>1</strong><strong>项,省攻关计划项目</strong><strong>6</strong><strong>项。获省科技进步一等奖</strong><strong>1</strong><strong>项,省科技发明一等奖</strong><strong>2</strong><strong>项,三等奖</strong><strong>1</strong><strong>项,国家石化协会科技二等奖</strong><strong>1</strong><strong>项,发表学术论文</strong><strong>11</strong><strong>篇。</strong></span></p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:07:51', NULL),
(261, 0, 13, '能源化学研究室', 'admin', NULL, 'images/2020/06/03/f505c733ed817d09db7d6464dfd88395.jpg', '<p><strong><span style=\"font-size: 22px\">能源化学研究室简介</span></strong></p><p><strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源化学研究室主要从事常规能源、非常规能源、生物质能及清洁能源技术的研究研究范围涉及石油化工、煤化工、生物化工和燃料化工等领域。近三年先后承担省级、市级各类科技开发项目10余项取得了一批达到国内先进水平的标志性成果。目前该研究室在科研领域已初步形成四条技术开发链条页岩油加氢提质转化技术页岩油制取油砂分离剂技术煤与废弃有机制品共焦化技术木焦油加氢提质转化技术。<br/>\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源化学研究室经过多年的实践,逐步形成一支结构合理、自主研发能力强的创新型科研梯队。与中科院大连物化所、大庆石化研究院、大连理工大学、哈尔滨工业大学等多家科研院所和高校在基础研究、信息交流、资源共享等方面建立了良好的科研互联关系。</span><br/><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 研究室主任介绍:<br/>\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 陈松1969年出生高级工程师现任黑龙江省能源环境研究院能源化学研究室主任。黑龙江省节能评估审查中心化工专家黑龙江科技大学校外研究生导师。主要从事能源化学领域前沿技术的研究研究范围包括常规、非常规能源的加工工艺和工程的研究高硫高酸原油、稠油的改质及转化工艺的研究。其成果在石油化工、煤化工、油页岩资源综合利用等方面具有较高理论指导意义和实用价值。</span></strong></p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:07:42', NULL),
(262, 0, 14, '节能技术研究室', 'admin', NULL, 'images/2020/06/03/24d9fa7e056583d61adc7c0e68f94ad8.jpg', '<p><strong><span style=\"font-size: 22px\">节能技术研究室简介</span></strong><br/>\r\n &nbsp;</p><p><strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院节能技术研究室先后承担和参与承担完成了国家“九五”重点科技攻关计划项目国家“十五”重点科技攻关项目获得了国家级、省级科研成果20多项。获黑龙江省科技发明一等奖一项。获黑龙江省科技进步一等奖一项、获得了全国石油化工系统二等奖一项获黑龙江省科技进步三等一项奖等。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院</span></strong><strong><span style=\"font-size: 20px;\">节能技术研究室</span></strong><strong><span style=\"font-size: 20px\">秉承“崇尚科学,求实创新”的指导方针,具有人员素质高、仪器种类齐全、测试手段标准可靠和可达到测试要求的工作环境等特点。<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></strong></p><p>\r\n &nbsp;</p><p>&nbsp;</p><p><img alt=\"\" src=\"/uploads/allimg/130802/1-130P21041315P.jpg\" style=\"width: 562px; height: 398px\"/></p><p>&nbsp;</p><p>\r\n &nbsp;</p><p>&nbsp;</p><p>\r\n &nbsp;</p><p>&nbsp;<br/></p><p>\r\n &nbsp;</p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:07:33', NULL),
(263, 0, 15, '生物质能源实验室', 'admin', NULL, 'images/2020/06/03/c8754ba3288f72be5a294402008cb10d.jpg', '<p><strong><span style=\"font-size: 22px\">生物质能源实验室简介</span></strong></p><p><strong><span style=\"font-size: 20px\">&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 生物质能源实验室主要从事寒区沼气工程、固体废弃物利用、农村生物质资源、厌氧微生物机理、厌氧消化技术以及农村资源与环境综合研究与开发等工作涉及微生物学、生物化学与分子生物学、环境工程、能源工程、农业资源与环境等学科。拥有先进科研仪器设备40余台具有较完备的研究平台和实验条件。实验室已承担和在研的有国家国际科技合作专项课题、黑龙江省科技攻关计划、黑龙江省科学院科学研究基金、黑龙江省科学院青年创新基金等十余项课题。已经在高温厌氧消化技术、寒区沼气发电工程研究等寒区生物质资源能源化利用技术方面取得了突破性研究进展另外还开展了高效产甲烷菌的分子生物学、沼液高效回用、厌氧菌影响因素等研究为在我国寒区兴建大型沼气工程奠定了理论及技术基础。目前已发表研究论文10余篇申报专利10项。</span></strong></p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:07:22', NULL),
(264, 0, 16, '能源微生物研究室', 'admin', NULL, 'images/2020/06/03/10256263434621af89f130b512859e01.jpg', '<p><strong><span style=\"font-size: 20px\"><span style=\"font-size: 22px\">能源微生物研究室简介</span></span><br/>\r\n &nbsp;</strong></p><p><strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源微生物研究室致力于环境工程、二次能源技术和生物工程三大学科交叉领域的应用基础研究。主要研究方向是:<br/>\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、畜禽粪便资源化技术<br/>\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、秸秆资源化技术。</span><br/><br/>\r\n &nbsp;</strong></p><p><br/><strong><img alt=\"\" src=\"/uploads/allimg/130808/1-130PQ00H9120.JPG\" style=\"width: 516px; height: 343px\"/><br/>\r\n &nbsp;</strong></p><p><strong><span style=\"font-size: 20px\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></strong><strong><span style=\"font-size: 20px\">近年来,</span></strong><strong><span style=\"font-size: 20px;\">能源微生物研究室</span></strong><strong><span style=\"font-size: 20px\">承担国家级、省市级、院基金项目20余项多项成果获奖。其中畜禽粪便高温厌氧消化技术与牛粪沼液秸秆联用技术是我国唯一成功应用于高寒地区连续作业的技术并取得了显著的社会效益。</span></strong></p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:07:13', NULL),
(265, 0, 17, '控制实验室', 'admin', NULL, 'images/2020/06/03/a83e426f373c13ae1f64b7807b7d682a.jpg', '<h1 style=\"text-align: center;\"><span style=\"font-size: 22px;\">控制实验室简介</span></h1><p><strong><span style=\"font-size: 20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 控制实验室主要进行</span></strong><strong><span style=\"font-size: 20px;\">电气设计、自控设计、仪表安装调试及控制系统的设计和编制工作,工作中善于提出改进措施,解决项目中遇到的关键性的技术难题。</span></strong><br/><strong><span style=\"font-size: 20px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></strong><strong><span style=\"font-size: 20px;\">控制实验室</span></strong><strong><span style=\"font-size: 20px;\">参与研制建设的国家级国际科技合作项目《工业化封闭环式沼气、发电系统》以及省国际科技合作项目《加拿大直贮热太阳能技术》提升了我省高寒地区高温厌氧发酵和光伏发酵温室控制领域在国际上的知名度,该项目得到了加拿大阿尔伯塔研究院业内专家的一致好评。</span></strong></p>', 1, 0, '未知', '', '2020-06-02 02:26:56', '2020-06-03 09:06:33', NULL),
(266, NULL, 4, '徐 晓 秋', NULL, '中共党员\r\n黑龙江省能源环境研究院院长、党委书记\r\n研究员级高级工程师', 'images/2020/06/03/dbca445220ff03f4bcd187620b36622c.jpg', '<p><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">中共党员</span><br style=\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\"/><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">黑龙江省能源环境研究院院长、党委书记</span><br style=\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\"/><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">研究员级高级工程师</span></p>', 0, 0, NULL, NULL, '2020-06-03 02:40:08', '2020-06-03 09:25:12', NULL),
(267, NULL, 4, '关 春 玲', NULL, '中共党员\r\n黑龙江省能源环境研究院副院长、党委委员\r\n高级会计师', 'images/2020/06/03/4272bfe798871eb962310e8fc3f32877.jpg', '<p><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">中共党员</span><br style=\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\"/><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">黑龙江省能源环境研究院副院长、党委委员</span><br style=\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\"/><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">高级会计师</span></p>', 0, 0, NULL, NULL, '2020-06-03 02:41:37', '2020-06-03 09:25:29', NULL),
(268, NULL, 4, '刘 伟', NULL, '中共党员\r\n黑龙江省能源环境研究院副院长、党委委员\r\n副研究员', 'images/2020/06/03/02c1e5e9988fd2e4305d669ac057dc2c.jpg', '<p><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">中共党员</span><br style=\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\"/><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">黑龙江省能源环境研究院副院长、党委委员</span><br style=\"padding: 0px; margin: 0px; color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px; white-space: normal;\"/><span style=\"color: rgb(61, 47, 27); font-family: &quot;courier new&quot;, courier, monospace; font-size: 20px;\">副研究员</span></p>', 0, 0, NULL, NULL, '2020-06-03 02:43:38', '2020-06-03 09:25:51', NULL);
-- --------------------------------------------------------
--
-- 表的结构 `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`oldid` int(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT '老网站分类id 校验没有问题后删除',
`cover` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`parent_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`article_id` int(10) UNSIGNED DEFAULT '0' COMMENT '分类跳转的文章id',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'article' COMMENT '分类的类型。article 文章等等',
`description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` int(10) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
`content` text COLLATE utf8mb4_unicode_ci,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='分类';
--
-- 转存表中的数据 `categories`
--
INSERT INTO `categories` (`id`, `oldid`, `cover`, `parent_id`, `article_id`, `title`, `type`, `description`, `order`, `status`, `content`, `created_at`, `updated_at`) VALUES
(1, 1, NULL, 0, 254, '简介', 'show', NULL, 0, 1, '&nbsp;\r\n<h1 style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\">黑龙江省能源环境研究院(孵化中心)组织结构</span></strong></h1>\r\n<h2>\r\n &nbsp;</h2>\r\n<h1>\r\n <span style=\"font-size: 20px\">1、科研开发部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 20px\"><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span>环境科学与节能技术研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">能源化学研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;<strong>&nbsp;&middot;</strong></span><span style=\"font-size: 20px\">油品助剂研发中心</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">控制实验室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">生物质能源实验室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">寒区生物质能源基地</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">2、行政管理部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">科研与产业化办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">综合管理办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">财务管理办公室</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">3、</span><span style=\"font-size: 20px\">领军人才梯队</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">能源化学</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">4、省重点室验室</span></h1>\r\n<p style=\"margin-top: 0px; margin-bottom: 0px\">\r\n <strong><span style=\"font-size: 28px\">&nbsp;&nbsp;&nbsp; &middot;</span></strong><span style=\"font-size: 20px\"><span style=\"font-family: 宋体\">燃油燃煤清洁能源重点实验室</span></span></p>\r\n', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(2, 2, NULL, 1, 255, '院所简介', 'show', NULL, 0, 1, '<h1 style=\"text-align: center\">\r\n <span style=\"font-size:26px;\">黑龙江省能源环境研究院简介</span></h1>\r\n<p>\r\n <span style=\"font-size:28px;\">&nbsp; &nbsp; &nbsp; &nbsp;黑龙江省能源环境研究院创建于1995年前身为&ldquo;黑龙江省节油技术开发中心&rdquo;隶属于黑龙江省科技厅2003年更名为&ldquo;黑龙江省能源环境研究院&rdquo;。2010年隶属于黑龙江省科学院属公益一类事业单位。</span></p>\r\n<span style=\"font-size:28px;\">&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省能源环境研究院在能源和环境领域是一个基础研究与应用研究并重、公益服务与技术创新相结合的综合性研究院。二十多年来,黑龙江省能源环境研究院根据地域特点,不断完善学科体系,稳步提高科研水平,形成了鲜明的科研特色。其职能为&ldquo;围绕国家重大战略需求,面向黑龙江省政府决策和公益事业发展的战略需求,在环境工程、一次能源、二次能源等学科领域开展基础性、系统性和前瞻性研究,掌握和突破关键核心技术,为国家和黑龙江省战略、经济和社会发展提供科技支撑&rdquo;。拥有能源化学省级领军人才梯队和黑龙江省燃油燃煤清洁能源重点实验室。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 近年来形成了能源化学、生物质能和固废处理与环境改善三个学科领域六个重点研究方向的科研体系。在黑龙江省建成了首座可全年连续稳定运行的大型沼气发电工程,在催化油浆制备新材料形成技术创新,在油页岩综合利用形成技术储备。在煤矸石处理、室内空气质量改善、农村垃圾、厕所革命、秸秆固体燃料等方向积极与国内知名高校、科研院所和企业开展联合,大力推进废弃物处理技术联合研发和成果落地,改善农村和城市环境,助推污染防治攻坚战。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 建院以来累计完成国家攻关项目4项科技部国际科技合作项目2项黑龙江省重大项目1项黑龙江省科技攻关项目11项省自然科学基金2项各级科研项目120余项。获得省科技进步一等奖1项省科技发明一等奖2项中国石油和化学协会科技进步二等奖1项省科技进步三等奖1项省科学院科技进步一等奖2项二等奖1项获得国家专利100余项发表科技论文200余篇。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 进入新时代的黑龙江省能源环境研究院,将&ldquo;不忘初心,牢记使命&rdquo;,面向政府战略需求,面向技术创新前沿,面向公益事业发展,通过&ldquo;协同创新、开放合作&rdquo;的办院理念,推动高质量发展,为黑龙江省在能源和环境领域的全方位发展提供技术引领,为国家和地方经济、社会发展做出应有的贡献。</span>', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(3, 24, NULL, 1, 256, '历史沿革', 'show', NULL, 0, 1, '<h1>\r\n <span style=\"font-size: 22px\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院成立于1995年前身为黑龙江省节油技术开发中心单位性质为公益三类事业单位隶属于黑龙江省科学技术厅2003年更名为黑龙江省能源环境研究院2006年单位性质转变为公益一类事业单位2010年隶属关系由黑龙江省科学技术厅变更为黑龙江省科学院2013年3月与黑龙江省科学院科技孵化中心合并。</strong></span></h1>\r\n&nbsp;', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(4, 42, NULL, 1, 257, '领导班子', 'article', NULL, 0, 1, '&nbsp;\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <img alt=\"\" src=\"/uploads/allimg/130826/1-130R613423TS.JPG\" style=\"height: 320px; width: 500px\" /></td>\r\n <td style=\"width: 5px\">\r\n &nbsp;</td>\r\n <td style=\"width: 200px; line-height: 24px\">\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td colspan=\"3\" style=\"line-height: 24px\">\r\n &nbsp;<br />\r\n <span style=\"font-family: courier new, courier, monospace\"><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 26px\"><strong>徐 晓 秋</strong></span><br />\r\n <br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中共党员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院院长、党委书记<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;研究员级高级工程师</span></span><br />\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n&nbsp;\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <img alt=\"\" src=\"/uploads/allimg/130826/1-130R61403405M.JPG\" style=\"height: 320px; width: 500px\" /></td>\r\n <td style=\"width: 5px\">\r\n &nbsp;</td>\r\n <td style=\"width: 200px; line-height: 24px\">\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td colspan=\"3\" style=\"line-height: 24px\">\r\n &nbsp;<br />\r\n <span style=\"font-family: courier new, courier, monospace\"><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 26px\"><strong>关 春 玲</strong></span><br />\r\n <br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中共党员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院副院长、党委委员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;高级会计师</span></span><br />\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n&nbsp;<br />\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <img alt=\"\" src=\"/uploads/allimg/191220/1-19122011363R19.jpg\" style=\"height: 398px; width: 500px;\" /></td>\r\n <td style=\"width: 5px\">\r\n &nbsp;</td>\r\n <td style=\"width: 200px; line-height: 24px\">\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td colspan=\"3\" style=\"line-height: 24px\">\r\n &nbsp;<br />\r\n <span style=\"font-family: courier new, courier, monospace\"><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 26px\"><strong>刘&nbsp; &nbsp; 伟</strong></span><br />\r\n <br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中共党员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院副院长、党委委员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;副研究员</span></span><br />\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n&nbsp;<br />\r\n', '2020-06-02 01:52:07', '2020-06-03 02:44:18'),
(5, 8, NULL, 0, 0, '能源院动态', 'article', NULL, 0, 1, '&nbsp;', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(6, 9, NULL, 5, 0, '简讯', 'article', NULL, 0, 1, '&nbsp;', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(7, 10, NULL, 5, 0, '能源院新闻', 'article', NULL, 0, 1, '', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(8, 16, NULL, 0, 0, '党政建设', 'article', NULL, 0, 1, '&nbsp;', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(9, 17, NULL, 0, 0, '学习园地', 'article', NULL, 0, 1, '', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(10, 22, NULL, 0, 258, '联系我们', 'show', NULL, 0, 1, '<h1>\r\n <span style=\"font-size: 20px\">邮箱:<a href=\"mailto:lifuqihappy@163.com\">hljnyfh@163.com</a>&nbsp;&nbsp;&nbsp;<a href=\"mailto:hljnyhj@163.com\">hljnyhj@163.com</a></span></h1>\r\n<h1>\r\n <span style=\"font-size: 20px\">电话0451-88071351&nbsp;&nbsp; 0451-82387268</span></h1>\r\n', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(11, 25, NULL, 0, 259, '机构设置', 'show', NULL, 0, 1, '&nbsp;\r\n<h1 style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\">黑龙江省能源环境研究院组织结构</span></strong></h1>\r\n<h2>\r\n &nbsp;</h2>\r\n<h1>\r\n <span style=\"font-size: 20px\">1、科研开发部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 20px\"><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span>环境科学研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">能源化学研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px;\"><strong>&nbsp; &nbsp; &middot;</strong></span><span style=\"font-size: 20px;\">能源微生物研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">节能技术研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">生物质能源实验室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">控制实验室</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">2、行政管理部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">科研管理办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">综合管理办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">财务管理办公室</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">3、</span><span style=\"font-size: 20px\">领军人才梯队</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">能源化学</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">4、省重点室验室</span></h1>\r\n<p style=\"margin-top: 0px; margin-bottom: 0px\">\r\n <strong><span style=\"font-size: 28px\">&nbsp;&nbsp;&nbsp; &middot;</span></strong><span style=\"font-size: 20px\"><span style=\"font-family: 宋体\">燃油燃煤清洁能源重点实验室</span></span></p>\r\n', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(12, 36, NULL, 11, 260, '环境科学研究室', 'show', NULL, 0, 1, '<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><strong>环境科学研究室简介</strong></span></div>\r\n&nbsp;\r\n<p>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>环境科学研究室一直致力于节能减排技术和室内环境污染分析方面的研究工作。主要从事生物法处理生活、工业污水和室内空气中污染物的源解析及治理研究。</strong><br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>环境科学研究室曾完成过多项省部级科研项目,如:《奥里油脱硫技术研制及应用</strong>&nbsp;<strong>》、《燃煤锅炉催化脱硫技术研究》和《工业燃煤锅炉烟气净化技术</strong>&nbsp;<strong>》等项目,为我国固定污染源减排提供新技术</strong><strong>,</strong><strong>并分别获得黑龙江省科技一等奖</strong><strong>1</strong><strong>项、中国石油和化学工业科技进步类二等奖</strong><strong>1</strong><strong>项。还完成了基于废碳源的产油微藻提取生物油脂技术,既解决污水排放问题,又提供生物能源,为排污综合利用储备了基础技术。研究室正在参与编制国家行业标准《住宅建筑室内装修污染控制技术规程》,并承担室内环境相关课题两项。</strong><br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>环境科学研究室下设生物环境实验室、室内环境实验室、乳化实验室等,具有较为完备的分析测试仪器设备,如热脱附仪,粉尘检测仪,臭氧检测仪,甲醛便携检测仪,</strong><strong>TVOC</strong><strong>便携检测仪,测氡仪,</strong><strong>1m<sup>3</sup></strong><strong>环境气候箱等。同时,研究室成员专业互补,高中初级分布合理,并拥有多年的实验室工作经验,可以处理各种环境、节能实验,科研实力较强。</strong><br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>研究室主任介绍:</strong><br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>王志成,</strong><strong>1973</strong><strong>年出生,学士,研究员级高级工程师,能源化学省级领军人才梯队后备带头人,省级燃油燃煤清洁能源重点实验室成员,兼任:省能源环境学会常务理事、省化学会理事。从事新型醇醚燃料催化剂和乳化燃料催化剂及合成工艺研究,以及室内空气污染研究工作。主持和主研科研课题</strong><strong>22</strong><strong>项,其中包括国家攻关计划项目</strong><strong>3</strong><strong>项,省自然科学基金项目</strong><strong>1</strong><strong>项,国家政府间国际合作项目</strong><strong>1</strong><strong>项,省攻关计划项目</strong><strong>6</strong><strong>项。获省科技进步一等奖</strong><strong>1</strong><strong>项,省科技发明一等奖</strong><strong>2</strong><strong>项,三等奖</strong><strong>1</strong><strong>项,国家石化协会科技二等奖</strong><strong>1</strong><strong>项,发表学术论文</strong><strong>11</strong><strong>篇。</strong></span></p>\r\n', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(13, 37, NULL, 11, 261, '能源化学研究室', 'show', NULL, 0, 1, '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 22px\">能源化学研究室简介</span></strong></div>\r\n<p>\r\n <strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源化学研究室主要从事常规能源、非常规能源、生物质能及清洁能源技术的研究研究范围涉及石油化工、煤化工、生物化工和燃料化工等领域。近三年先后承担省级、市级各类科技开发项目10余项取得了一批达到国内先进水平的标志性成果。目前该研究室在科研领域已初步形成四条技术开发链条页岩油加氢提质转化技术页岩油制取油砂分离剂技术煤与废弃有机制品共焦化技术木焦油加氢提质转化技术。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源化学研究室经过多年的实践,逐步形成一支结构合理、自主研发能力强的创新型科研梯队。与中科院大连物化所、大庆石化研究院、大连理工大学、哈尔滨工业大学等多家科研院所和高校在基础研究、信息交流、资源共享等方面建立了良好的科研互联关系。</span><br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 研究室主任介绍:<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 陈松1969年出生高级工程师现任黑龙江省能源环境研究院能源化学研究室主任。黑龙江省节能评估审查中心化工专家黑龙江科技大学校外研究生导师。主要从事能源化学领域前沿技术的研究研究范围包括常规、非常规能源的加工工艺和工程的研究高硫高酸原油、稠油的改质及转化工艺的研究。其成果在石油化工、煤化工、油页岩资源综合利用等方面具有较高理论指导意义和实用价值。</span></strong></p>\r\n', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(14, 38, NULL, 11, 262, '节能技术研究室', 'show', NULL, 0, 1, '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 22px\">节能技术研究室简介</span></strong><br />\r\n &nbsp;</div>\r\n<strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院节能技术研究室先后承担和参与承担完成了国家&ldquo;九五&rdquo;重点科技攻关计划项目,国家&ldquo;十五&rdquo;重点科技攻关项目获得了国家级、省级科研成果20多项。获黑龙江省科技发明一等奖一项。获黑龙江省科技进步一等奖一项、获得了全国石油化工系统二等奖一项获黑龙江省科技进步三等一项奖等。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院</span></strong><strong><span style=\"font-size: 20px;\">节能技术研究室</span></strong><strong><span style=\"font-size: 20px\">秉承&ldquo;崇尚科学,求实创新&rdquo;的指导方针,具有人员素质高、仪器种类齐全、测试手段标准可靠和可达到测试要求的工作环境等特点。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></strong>\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n&nbsp;\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/130802/1-130P21041315P.jpg\" style=\"width: 562px; height: 398px\" /></div>\r\n&nbsp;\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n&nbsp;\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n&nbsp;<br />\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(15, 39, NULL, 11, 263, '生物质能源实验室', 'show', NULL, 0, 1, '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 22px\">生物质能源实验室简介</span></strong></div>\r\n<strong><span style=\"font-size: 20px\">&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 生物质能源实验室主要从事寒区沼气工程、固体废弃物利用、农村生物质资源、厌氧微生物机理、厌氧消化技术以及农村资源与环境综合研究与开发等工作涉及微生物学、生物化学与分子生物学、环境工程、能源工程、农业资源与环境等学科。拥有先进科研仪器设备40余台具有较完备的研究平台和实验条件。实验室已承担和在研的有国家国际科技合作专项课题、黑龙江省科技攻关计划、黑龙江省科学院科学研究基金、黑龙江省科学院青年创新基金等十余项课题。已经在高温厌氧消化技术、寒区沼气发电工程研究等寒区生物质资源能源化利用技术方面取得了突破性研究进展另外还开展了高效产甲烷菌的分子生物学、沼液高效回用、厌氧菌影响因素等研究为在我国寒区兴建大型沼气工程奠定了理论及技术基础。目前已发表研究论文10余篇申报专利10项。</span></strong>', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(16, 40, NULL, 11, 264, '能源微生物研究室', 'show', NULL, 0, 1, '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\"><span style=\"font-size: 22px\">能源微生物研究室简介</span></span><br />\r\n &nbsp;</strong></div>\r\n<div>\r\n <strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源微生物研究室致力于环境工程、二次能源技术和生物工程三大学科交叉领域的应用基础研究。主要研究方向是:<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、畜禽粪便资源化技术<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、秸秆资源化技术。</span><br />\r\n <br />\r\n &nbsp;</strong></div>\r\n<div style=\"text-align: center\">\r\n <br />\r\n <strong><img alt=\"\" src=\"/uploads/allimg/130808/1-130PQ00H9120.JPG\" style=\"width: 516px; height: 343px\" /><br />\r\n &nbsp;</strong></div>\r\n<div>\r\n <strong><span style=\"font-size: 20px\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></strong><strong><span style=\"font-size: 20px\">近年来,</span></strong><strong><span style=\"font-size: 20px;\">能源微生物研究室</span></strong><strong><span style=\"font-size: 20px\">承担国家级、省市级、院基金项目20余项多项成果获奖。其中畜禽粪便高温厌氧消化技术与牛粪沼液秸秆联用技术是我国唯一成功应用于高寒地区连续作业的技术并取得了显著的社会效益。</span></strong></div>\r\n', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(17, 41, NULL, 11, 265, '控制实验室', 'show', NULL, 0, 1, '<h1 style=\"text-align: center;\">\r\n <span style=\"font-size: 22px;\">控制实验室简介</span></h1>\r\n<p>\r\n <strong><span style=\"font-size: 20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 控制实验室主要进行</span></strong><strong><span style=\"font-size: 20px;\">电气设计、自控设计、仪表安装调试及控制系统的设计和编制工作,工作中善于提出改进措施,解决项目中遇到的关键性的技术难题。</span></strong><br />\r\n <strong><span style=\"font-size: 20px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></strong><strong><span style=\"font-size: 20px;\">控制实验室</span></strong><strong><span style=\"font-size: 20px;\">参与研制建设的国家级国际科技合作项目《工业化封闭环式沼气、发电系统》以及省国际科技合作项目《加拿大直贮热太阳能技术》提升了我省高寒地区高温厌氧发酵和光伏发酵温室控制领域在国际上的知名度,该项目得到了加拿大阿尔伯塔研究院业内专家的一致好评。</span></strong></p>\r\n', '2020-06-02 01:52:07', '2020-06-02 02:26:56'),
(18, 26, NULL, 0, 0, '科研成果', 'article', NULL, 0, 1, '', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(19, 27, NULL, 18, 0, '成果', 'article', NULL, 0, 1, '', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(20, 28, NULL, 18, 0, '获奖', 'article', NULL, 0, 1, '', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(21, 29, NULL, 18, 0, '专利/论文', 'article', NULL, 0, 1, '', '2020-06-02 01:52:07', '2020-06-02 01:52:07'),
(22, 0, NULL, 0, 0, '首页广告位', 'advert', '首页广告位', 0, 1, NULL, '2020-06-02 03:13:54', '2020-06-02 03:13:54');
-- --------------------------------------------------------
--
-- 表的结构 `dede_addonarticles`
--
CREATE TABLE `dede_addonarticles` (
`aid` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`typeid` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
`body` mediumtext,
`redirecturl` varchar(255) NOT NULL DEFAULT '',
`templet` varchar(30) NOT NULL DEFAULT '',
`userip` char(15) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `dede_addonarticles`
--
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(8, 10, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为了更好的促进科研院所与高校之间资源的优势互补黑龙江省能源环境研究院与黑龙江科技大学科技合作签约仪式于2013年3月28日在黑龙江科技大学举行标志着双方合作进入更加紧密的新阶段。<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院院长徐晓秋同志、副院长关春玲同志以及科研办、办公室负责人,黑龙江科技大学周国江主任、丁慧贤副主任、李哲教授等出席了签约仪式。双方对各自的研究方向、研究领域进行了介绍,就合作领域及项目进行了探讨,均表示要充分利用研究院所的实验条件及黑龙江科技大学的人才技术优势。并在科技立项、科学研究、成果转化、合作机制、院校实训等方面达成共识,签订合作协议。<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院将以院校合作为契机,在煤化工、新材料领域打造出一支高新技术创新团队,为我省的经济社会发展做出更大的贡献。</span>\r\n<div style=\"text-align: center\">\r\n <br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130628/1-13062Q0315N61.jpg\" style=\"width: 558px; height: 351px\" /><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 16px\">我院徐晓秋院长和黑龙江科技大学周国江主任分别代表双方在协议上签字。</span></div>\r\n&nbsp;<br />\r\n&nbsp;<br />\r\n&nbsp;<br />\r\n&nbsp;\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 16px\">黑龙江省能源环境研究院</span></div>\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 16px\"><span style=\"text-align: center\">2013年3月28日 &nbsp;</span></span></div>\r\n', '', '', '113.4.72.230'),
(9, 10, '<div>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中国绿色农业联盟刘连馥主席及国家财政部农发办项目审批专家组组长、华南农大食品学院院长杨公明一行于2013年3月23日考察了科技孵化中心位于大庆杜尔伯特的生物质能源示范项目中心主任徐晓秋同志、副主任关春玲同志、科研办、办公室负责人陪同考察。徐晓秋同志首先介绍了项目的特点和生产规模随后又详细讲解了该项目在经济、社会效益、生态及带动养殖等方面的优势情况。听取完情况介绍后双方就该项目在农业领域加强合作及复制推广进行了探讨刘连馥主席和杨公明院长都显示出了浓厚的兴趣并给予了很高的评价。</span></div>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130628/1-13062Q11552O9.jpg\" style=\"width: 511px; height: 342px\" /></div>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130628/1-13062Q11615105.jpg\" style=\"width: 492px; height: 329px\" /></div>\r\n&nbsp;<br />\r\n&nbsp;<br />\r\n&nbsp;\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 16px\">黑龙江省能源环境研究院<br />\r\n 2013年3月23日 &nbsp;</span></div>\r\n', '', '', '113.4.72.230'),
(10, 16, '<p>\r\n <span style=\"font-size: 20px; \">黑龙江省能源环境研究院孵化中心全体职工于5月10日到位于大庆市杜尔伯特蒙古族自治县的黑龙江省科学院生物质能源示范基地开展五四青年节活动-暨能源院(孵化中心)首届职工趣味运动会。</span></p>\r\n<div style=\"text-align: center; \">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-130630115203a2.jpg\" style=\"width: 446px; height: 298px; \" /><br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-13063011532I17.jpg\" style=\"width: 445px; height: 298px; \" /></span></div>\r\n<p>\r\n <span style=\"font-size:20px;\">5月10日上午全体职工首先参观了示范基地并听取了项目负责人对该套示范装置的讲解使全体职工尤其是能源院的职工对该示范装置有了进一步的了解之后全体职工参加了植树活动大家齐心协力种下了棵棵象征着希望的树苗希望它能像我们的事业一样蒸蒸日上硕果累累。下午进行的徒步活动让大家走近自然贴进自然身心得到了很好的放松。</span></p>\r\n<div style=\"text-align: center; \">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-13063011534D64.jpg\" style=\"width: 447px; height: 299px; \" /><br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-1306301154005J.jpg\" style=\"width: 443px; height: 296px; \" /></span></div>\r\n<p>\r\n <span style=\"font-size:20px;\">通过本次活动,不但增进了同事之间的友谊,放松了身心,更重要的是增强了团队意识。职工们在活动后表示,身为科技工作者,将把能源环境作为一项事业推广下去,为单位的发展贡献自己的力量。</span></p>\r\n<span style=\"font-size:20px;\">&nbsp;</span>\r\n<div style=\"text-align: right; \">\r\n <span style=\"font-size:20px;\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></div>\r\n', '', '', '125.211.131.133'),
(11, 10, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年5月7日省科学院产业化处孙宇峰处长、范延新副处长、李晓辉副处长在省能源环境研究院院长徐晓秋同志的陪同下来到位于双城的&ldquo;M15车用甲醇汽油复合添加剂&rdquo;产业化基地进行调研,指导工作。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 产业化处领导在听取了我院油品助剂研发中心主任张树华关于产业化工作的汇报之后,对我院产业化工作的示范引领作用给予了充分肯定,并对在基地工作的职工进行慰问,极大地鼓舞了职工的工作热情。同时,产业化处领导对我院&ldquo;M15车用甲醇汽油复合添加剂&rdquo;产业项化目的发展提出设想,并表示省科学院相关部门会大力支持我院的产业化工作,使&ldquo;M15车用甲醇汽油复合添加剂&rdquo;产业化项目为黑龙江区域经济建设更好的服务。</span></p>\r\n<span style=\"font-size: 20px\">&nbsp;</span>\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></div>\r\n', '', '', '113.4.72.230'),
(12, 10, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年6月7日潘忠院长率部分领导班子成员及相关处室负责人一行12人赴能源院孵化中心召开现场办公会议。能源院孵化中心班子成员、各部门负责人、副高职以上人员参加了会议。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 潘院长一行在省能源环境研究院院长徐晓秋同志陪同下先后察看了能源院实验楼、办公楼及职工食堂。</span></p>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img src=\"/kjfh/uploads/allimg/130630/1-130630120234546.jpg\" style=\"width: 567px; height: 378px\" /></span></div>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img src=\"/kjfh/uploads/allimg/130630/1-1306301202561O.jpg\" style=\"width: 554px; height: 369px\" /></span></div>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随后能源院院长、孵化中心主任徐晓秋同志就任职后的主要工作情况及存在的问题向潘院长一行进行了汇报。汇报结束后,科学院领导、相关处室负责人与能源院(孵化中心)参会人员进行了互动交流。最后潘忠院长对能源院(孵化中心)融合后的工作情况和成绩给予了充分肯定,对在艰苦的环境里坚守工作岗位的同志们表示理解和支持,并对能源院(孵化中心)的人员结构、业务体系、工作环境等方面做出了相应指示,鼓励大家靠自己的双手创造属于自己的发展之路。</span></p>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img src=\"/kjfh/uploads/allimg/130630/1-130630120354c0.jpg\" style=\"width: 567px; height: 378px\" /></span></div>\r\n<span style=\"font-size: 20px\">&nbsp;<br />\r\n&nbsp;<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></div>\r\n', '', '', '113.4.72.230'),
(13, 10, '<p style=\"text-align: left\">\r\n <span style=\"font-size: 20px\"><span style=\"color: rgb(38,39,40); line-height: 24px; text-indent: 30px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为丰富职工业余文化生活增强兄弟院所之间的交流与合作提高研究院所团队的协作能力6月5日下午省科学院技术物理研究所与能源环境研究院共同进行了一场篮球友谊赛。两院所党政领导班子成员参观了比赛。</span></span></p>\r\n<p style=\"text-align: left\">\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); line-height: 24px; text-indent: 30px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 伴随着裁判员一声号响,篮球赛如火如荼的展开,队员在场上你争我夺,从传球、运球、助攻到投篮一系列动作帅气利索,比赛场景异常激烈。两院所队员中,能源院队员老中青混搭,宝刀未老;物理所队员不甘示弱,部分领导也加入了比赛当中。在短短一个多小时的赛场上,赛出了风格,赛出了水平,充分展现了两院所职工的精神面貌和全面的优秀素质。</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); line-height: 24px; text-indent: 30px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-1306301213343G.jpg\" style=\"height: 371px; width: 571px\" /></span></p>\r\n<p style=\"text-align: left\">\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); line-height: 24px; text-indent: 30px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过这次篮球比赛,不仅丰富了两院所的业余文化生活,更是提高了锻炼身体和团结合作的意识,而且增强了两院所之间的感情交流,更重要的是为两院所今后的交流和合作奠定了良好的基础。</span><span style=\"font-size: 20px; font-family: Verdana, Arial, Helvetica, sans-serif; color: rgb(38,39,40); line-height: 24px; text-indent: 30px\">&nbsp; &nbsp;</span></p>\r\n', '', '', '1.58.195.20'),
(49, 9, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &ldquo;高效检索与文献分析&mdash;&mdash;万方数据知识服务平台使用详解&rdquo;培训大概定在本月20日或23日请大家留意。</span>', '', '', '113.4.72.230'),
(14, 10, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年06月13日省能源环境研究院孵化中心院长及相关科室人员在能源院孵化中心会议室会见了俄罗斯&ldquo;梅索-克&rdquo;科学生产应用中心总经理杰诺夫.尼古拉.杰奥里耶维奇博士一行二人。双方就润滑油复合添加剂的相关合作进行了热烈的讨论此技术特点突出、可广泛应用于多种领域。后经双方多轮协商于15日达成框架协议引进俄方相关技术用于生产润滑油复合添加剂。双方的合作为我院润滑油添加剂的产业化工作奠定了基础并使我院在该领域向世界先进水平迈进了一步。</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/130630/1-130630122053146.jpg\" style=\"width: 571px; height: 381px\" /><br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-1306301220270-L.jpg\" style=\"width: 571px; height: 322px\" /></span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></p>\r\n', '', '', '113.4.72.230'),
(15, 10, '<p>\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px\">​为了更好的完成&ldquo;收官&rdquo;之年的各项工作增强干劲凝心聚力鼓舞势气使大家能够在紧张而忙碌的工作中放松心情、愉悦身心同时为加强科学院各兄弟院所之间的感情6月14日自动化研究所与能源院部分职工一行70余人来到了风景秀丽的帽儿山共同举行了爬山活动。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px; font-family: Verdana, Arial, Helvetica, sans-serif\">微风低语,流水呢喃,鸟鸣清脆。沿着陡峭的山路,大家一路前行。天气虽然炎热,路途虽然艰辛,但每一个人的心中都有一个坚定的信念:不达目的不罢休。在行进中大家相互配合,相互鼓励,团结一致,终于在经历了一小时左右时间成功登顶。在登顶的那一刻,虽然大家已是气喘吁吁,满头大汗,但内心的激动和喜悦难以形容,大家高声欢呼&ldquo;我们登顶成功了!&rdquo;</span></p>\r\n<p>\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px; font-family: Verdana, Arial, Helvetica, sans-serif\">爬山归来,在宾馆的广场上共同举办了篝火晚会,大家载歌载舞,欢聚一堂,整场晚会充满了欢声笑语,让人难以忘怀。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px; font-family: Verdana, Arial, Helvetica, sans-serif\">此次活动把&ldquo;走进自然、增进友谊、锻炼意志、陶冶情操&rdquo;融合在一起,既锻炼了身体,又增强了团队的凝聚力,增进了兄弟院所间的沟通融合,大家决心把登山的气魄投入到工作中,&ldquo;矢志创新、勇于攀登&rdquo;,以饱满的工作热情、优异的工作业绩为实现翻番目标和&ldquo;创新2020&rdquo;发展规划做贡献,共圆&ldquo;大科学院&rdquo;梦想。</span></p>\r\n<div style=\"padding-right: 0px; padding-left: 0px; font-size: 14px; padding-bottom: 0px; margin: 20px; color: rgb(38,39,40); text-indent: 30px; line-height: 24px; padding-top: 0px; font-family: Verdana, Arial, Helvetica, sans-serif\">\r\n <p style=\"padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px\">\r\n &nbsp;</p>\r\n <p align=\"center\" style=\"padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-130630122P40-L.png\" style=\"border-top-width: 0px; padding-right: 0px; padding-left: 0px; border-left-width: 0px; border-bottom-width: 0px; padding-bottom: 0px; margin: 0px; width: 503px; padding-top: 0px; height: 334px; border-right-width: 0px\" /></span></p>\r\n <p align=\"center\" style=\"padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130630/1-130630122939A3.jpg\" style=\"border-top-width: 0px; padding-right: 0px; padding-left: 0px; border-left-width: 0px; border-bottom-width: 0px; padding-bottom: 0px; margin: 0px; width: 503px; padding-top: 0px; height: 335px; border-right-width: 0px\" /></span></p>\r\n</div>\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">黑龙江省能源环境研究院 &nbsp; &nbsp;</span></div>\r\n', '', '', '113.4.72.200'),
(16, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &ldquo;工厂化厌氧沼气发电控制系统仿真平台&rdquo;以加拿大阿尔伯塔研究院&ldquo;集成粪便综合利用系统IMUS&rdquo;设计工艺为基础,针对工业化沼气发电过程中,厌氧发酵工艺过程自动控制的复杂性和多样性,建立一套适用于工业化沼气发电控制系统的厌氧发酵过程仿真平台系统。通过仿真平台系统可在实验室内实现实际生产中很难获得的技术数据,并对开发项目进行预评估,可缩短项目开发周期、节约试验和设计费用、降低开发风险。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在设计过程中将针对生物发酵过程的时变性、非线性以及控制过程的复杂性应用工具软件和数学计算方法进行仿真平台的开发项目采用LabVIEW和MATLAB语言相结合进行系统设计依据生产过程不同控制节点进出料的情况、压力控制、产气率、温度、底物浓度、发酵及搅拌时间等的技术参数进行曲线模拟仿真并设计控制数学模型建立工厂化高温厌氧发酵沼气发电过程控制仿真平台。仿真平台通过已知的参数发酵料液的产量、环境温度的变化等进行沼气发电装置的发酵罐体、发电机等主要设备的设计参数进行预估仿真为新建&ldquo;工厂化厌氧沼气发电装置&rdquo;建设提供参数仿真模拟通过修改控制过程的参数温度、压力、底物流量、PH值变化、底物浓度、发酵时间、搅拌时间等实现沼气产气量和产气质量的变化情况模拟提供产气量变化过程控制修改方案。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该平台系统一方面它可以供研究者和建设者在分析和比较各种控制策略和诊断方法时使用;另一方面可以根据示范工程中取得的新成果、数据、发现以及新工艺不断完善数据平台,为工艺设计提供帮助,以适应新的工业需求。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该仿真平台系统采用国外先进的技术工艺进行设计,针对于工厂化厌氧沼气发电装置进行设计,具有高效的热电联用热回收工艺,不消耗新的化石能源,尤其适合高寒地区进行,工艺水平处于国际先进水平,开发完成后将对国内的工厂化沼气发电工程建议提供借鉴依据。控制系统在生产过程中,不产生二次污染,进出料连续化,控制单元模块化,采用高温厌氧发酵工艺,产气率高。</span></p>\r\n', '', '', '113.4.72.230'),
(17, 16, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 高举旗帜奋力开拓铸就辉煌业绩,领航中国信心满怀共创美好未来。举世瞩目的中国共产党第十八次全国代表大会在北京胜利闭幕以来,我院掀起了深入学习、领会和贯彻&ldquo;十八大&rdquo;精神的热潮。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为深入贯彻落实&ldquo;十八大&rdquo;精神,凝心聚力推动中心科研发展。我院组织党员、入党积极分子和科研人员参加学习贯彻十八大精神会议。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 与会同志学习了党的十八大精神,通过学习,大家一致认为党的&ldquo;十八大&rdquo;是在我国进入全面建成小康社会决定性阶段召开的一次十分重要的大会,在我们党和国家历史上都具有十分重要的里程碑意义。大会科学总结了过去五年的成就和十年的历程,确立了科学发展观的历史地位,提出了夺取中国特色社会主义新胜利的基本要求,对全面建成小康社会和深化改革开放作出了安排部署,对提高党的建设科学化水平提出了明确要求。把&ldquo;科学发展观&rdquo;、&ldquo;中国特色社会主义制度&rdquo;、&ldquo;中国特色社会主义道路&rdquo;、&ldquo;中国特色社会主义理论体系&rdquo;、&ldquo;生态文明&rdquo;、&ldquo;建设美丽中国&rdquo;、&ldquo;实现中华民族永续发展&rdquo;等等写入党章,顺应了历史发展的必然。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 大家表示,要以十八大胜利闭幕为契机,积极响应院党组号召,切实贯彻、落实院会议工作部署,落实省科学院&ldquo;创新2020&rdquo;规划,积极推进孵化中心中长期科技发展规划任务,实现明年&ldquo;双倍增&rdquo;目标。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/130802/1-130P2111431507.jpg\" style=\"width: 703px; height: 442px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/130802/1-130P2111503134.jpg\" style=\"width: 700px; height: 485px\" /></span></p>\r\n', '', '', '113.4.83.74'),
(18, 16, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为促进&ldquo;省科学院创新2020发展规划&rdquo;实施,确保三年目的全面实现,根据黑龙江省科学院关于《七一表彰的通知》的相关要求,通过全体党员投票,选举产生孵化中心支部为先进党组织,王欣同志为优秀党务工作者,刘岩同志为优秀共产党员,并上报省科学院。</span>', '', '', '113.4.83.74'),
(19, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 《M15车用甲醇汽油复合添加剂》是含有辛烷值增强剂、动力增强剂、金属腐蚀抑制剂、橡胶溶胀抑制剂、助燃剂和助溶剂的复合添加剂。通过互配性试验、溶解性试验、辛烷值加和性和调和正效应试验解决了添加剂复合后产生的较大互扰性及经济性等问题最终得出添加剂的最佳配比并对添加剂各项指标进行检测检测结果均符合标准。该添加剂有效解决和控制了M15车用甲醇汽油低温启动难、高温气阻大、动力不足、腐蚀溶胀等问题。使M15甲醇汽油长期处于稳定状态不易分层解决了汽油与甲醇互溶性差的问题。并且可以显著提高油品的辛烷值和动力性能同时使用该添加剂调和的M15甲醇汽油不需改变发动机的结构。该添加剂通过工业应用及性能考核经黑龙江省精细化工产品质量监督检验站检验合格。</span></p>\r\n', '', '', '113.4.72.230'),
(20, 27, '<div>\r\n <span style=\"font-size: 20px\">技术特点:</span></div>\r\n<p>\r\n <span style=\"font-size: 20px\">1、催化剂包括能量及辛烷值增强组份自溶合组份、尾气净化组份等。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">2、M45甲醇汽油合成工艺研究采用化学自溶合技术甲醇、催化剂、汽油三种物质不需要搅拌即可相互溶合增加燃料的稳定性。</span><span style=\"font-size: 20px\">与纯汽油及乙醇汽油互溶性优良。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">3、不改动发动机供油系统发动机正常运行。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">4、高、低温启动正常,无低温启动困难,高温气阻现象。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">5、发动机动力性能与使用93#汽油相当。</span></p>\r\n', '', '', '113.4.72.230'),
(21, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 新能源是二十一世纪世界经济发展中最具决定力的五大技术领域之一。太阳能是一种清洁、高效和永不衰竭的新能源。在新世纪中,各国政府都将太阳能资源利用作为国家可持续发展战略的重要内容。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 因为地域气候的原因在中国北方地区的建筑物维持良好的温度环境需要提供大量的能源黑龙江省的气候条件与阿尔伯塔省非常相似。在这些严酷的气候条件下建筑物的能源消耗大约2GJ/m2/年等于20美元/m2/年假设天然气耗资10/GJ 美元)。由于燃料成本上升,在未来我国北方建筑物的采暖保温方面可能导致严重的经济问题。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 直贮蓄热太阳能系统DHS太阳能集热系统可以实现在白天收集太阳能并将其直接贮存在建筑物的墙壁中以调节建筑内温度的目的。在冬季该系统可以在白天收集太阳能晚上又释放到建筑的外壳。它为建筑物创造了一个类似于保温毛毯的缓冲区在夏季该系统以相反的方式工作调节房屋内部的温度。该系统在国外已广泛应用于商业楼宇、民用住宅和农业温室为工业结构的空间供热提供新的概念与技术属国际领先水平。</span></p>\r\n', '', '', '113.4.72.230'),
(22, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩作为非常规能源,已成为当前世界范围内开发利用的热点,由于油页岩的组成和结构的未知使得油页岩的开发、利用手段单一。如何提高其有效利用途径,发挥其在能源和化工原料领域的作用,引起经济和技术界人士的重视。该项目以油页岩为原料,通过温和条件下分级萃取的方法,将得到的萃取物进行分离并进行相关的检测分析,一方面,准确提出油页岩中可萃取有机质的组成和结构,为油页岩结构的研究奠定基础;另一方面,分级萃取的方法可以选择性提取油页岩中具有应用前景的化合物,不断提高页岩油的加工深度和综合利用水平。目前,该项目已通过黑龙江省科学院组织的专家鉴定。</span><br />\r\n &nbsp;</p>\r\n', '', '', '113.4.72.230'),
(23, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 集成粪便综合利用系统IMUS是阿尔伯塔研究院开发的工业化封闭环式沼气系统它采用独特的高温消化技术将畜禽粪便转换为能源、生物肥料和可再利用的水通过高温厌氧发酵来生产沼气并用其来发电。后营养物可作为无病原体的生物肥料市场化水可以再次用于IMUS系统或者用于灌溉。IMUS 技术不仅全部利用生物废物中的能源和养分它还减轻温室气体排放和农业、城市、食品加工等废物造成的其它环境和社会压力。IMUS系统是世界上唯一正在运行的利用牛粪进行发电并回收其养分生产肥料的综合利用系统IMUS技术已经在阿尔伯塔省连续运营5年属国际领先水平。</span></p>\r\n', '', '', '113.4.72.230'),
(24, 17, '<p>\r\n <span style=\"font-size: 20px\">麦田里的守望者(The Catcher in the Rye)简介:</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">The Catcher in the Rye is a 1951 novel by J. D. Salinger. Originally published for adults, it has been translated into almost all of the world&#39;s major languages. Around 250,000 copies are sold each year, with total sales of more than sixty-five million. The novel&#39;s protagonist and antihero, Holden Caulfield, has become an icon for teenage rebellion.</span><br />\r\n <span style=\"font-size: 20px\">The novel was among the 100 best English-language novels from 1951 to 2005 as chosen by Time, and named by Modern Library and its readers as one of the 100 best English-language novels of the 20th century. It has been frequently challenged in the United States for its liberal use of profanity and portrayal of sexuality and teenage angst. It also deals with complex issues of identity, belonging, connection and alienation.</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">  本书的主人公霍尔顿是个中学生出身于富裕的中产阶级家庭。他虽只有16岁但比常人高出一头整日穿着风雨衣戴着鸭舌帽游游荡荡不愿读书。他对学校里的一切&mdash;&mdash;老师、同学、功课、球赛等等全都腻烦透了曾是学校击剑队队长3次被学校开除。又一个学期结束了他又因5门功课中4门不及格被校方开除。他丝毫不感到难受。在和同房间的同学打了一架后他深夜离开学校回到纽约城但他不敢贸然回家。当天深夜住进了一家小旅馆。他在旅馆里看到的都是些不三不四的人有穿戴女装的男人有相互喷水、喷酒的男女他们寻欢作乐忸怩作态使霍尔顿感到恶心和惊讶。他无聊之极便去夜总会厮混了一阵。回旅馆时心里仍觉得十分烦闷糊里糊涂答应电梯工毛里斯让他叫来了一个妓女。妓女一到他又紧张害怕最后按讲定的价格给了五块钱把她打发走了。<br />\r\n   第二天是星期天霍尔顿上街游荡遇见两个修女捐了10块钱。后来他的女友萨丽去看了场戏又去溜冰。看到萨丽那假情假义的样子霍尔顿很不痛快两人吵了一场分了手。接着霍尔顿独自去看了场电影又到酒吧里和一个老同学一起喝酒喝得酩酊大醉。他走进厕所把头伸进盥洗盆里用冷水浸了一阵才清醒过来。可是走出酒吧后被冷风一吹他的头发都结了冰。他想到自己也许会因此患肺炎死去永远见不着妹妹菲芘了决定冒险回家和她诀别。<br />\r\n   霍尔顿偷偷回到家里,幸好父母都出去玩了。他叫醒菲芘,向她诉说了自己的苦闷和理想。他对妹妹说,他将来要当一名&ldquo;麦田里的守望者&rdquo;&ldquo;有那么一群小孩子在一大块麦田里做游戏。几千几万个小孩子,附近没有一个人&mdash;&mdash;没有一个大人,我是说&mdash;&mdash;除了我。我呢,就在那混帐的悬崖边。我的职务是在那儿守望,要是有哪个孩子往悬崖边奔来,我就把他捉住&mdash;&mdash;我是说孩子们都在狂奔,也不知道自己是在往哪儿跑。我得从什么地方出来,把他们捉住。我整天就干这样的事。我只想当个麦田里的守望者。&rdquo;后来父母回来了,霍尔顿吓得躲进壁橱。等父母去卧室,他急忙溜出家门,到一个他尊敬的老师家中借宿。可是睡到半夜,他发觉这个老师有可能是个同性恋者,于是只好偷偷逃出来,到车站候车室过夜。<br />\r\n   霍尔顿不想再回家,也不想再念书了,决定去西部谋生,做一个又聋又哑的人,但他想在临走前再见妹妹一面,于是托人给她带去一张便条,约她到博物馆的艺术馆门边见面。过了约定时间好一阵,菲芘终于来了,可是拖着一只装满自己衣服的大箱子,她一定要跟哥哥一起去西部。最后,因对妹妹劝说无效,霍尔顿只好放弃西部之行,带她去动物园和公园玩了一阵,然后一起回家。回家后不久,霍尔顿就生了一场大病。整部小说是以回忆的方式写的</span></p>\r\n<dl>\r\n</dl>\r\n', '', '', '1.189.181.133'),
(25, 17, '<p>\r\n <span style=\"font-size: 20px\">老人与海(The Old Man and the Sea)简介:</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">  这本书讲了古巴的一个名叫圣地亚哥的老渔夫独自一个人出海打鱼在一无所获的84天之后钓到了一条无比巨大的马林鱼。这是老人从来没见过也没听说过的比他的船还长两英尺的一条大鱼。鱼的劲非常大拖着小船漂流了整整两天两夜老人在这两天两夜中经历了从未经受的艰难考验终于把大鱼刺死拴在船头。然而这时却遇上了鲨鱼老人与鲨鱼进行了殊死搏斗结果大马林鱼被鲨鱼吃光了老人最后拖回家的只剩下一副光秃秃的鱼骨架和一身的伤。最后却得到了人们的赞赏。</span></p>\r\n<dl class=\"last\">\r\n <dd>\r\n <p>\r\n <span style=\"font-size: 20px\">The Old Man and the Sea recounts an epic battle between an old, experienced fisherman and a giant marlin said to be the largest catch of his life. It opens by explaining that the fisherman, who is named Santiago, has gone 84 days without catching any fish at all (although a comment made at some point in the book reveals that he had previously gone 87 days without catching one). He is apparently so unlucky that his young apprentice, Manolin, has been forbidden by his parents to sail with the old man and been ordered to fish with more successful fishermen. Still dedicated to the old man, however, the boy visits Santiago&#39;s shack each night, hauling back his fishing gear, feeding him and discussing American baseball &mdash; most notably Santiago&#39;s idol, Joe DiMaggio. Santiago tells Manolin that on the next day, he will venture far out into the Gulf to fish, confident that his unlucky streak is near its end.<br />\r\n <br />\r\n Thus on the eighty-fifth day, Santiago sets out alone, taking his skiff far into the Gulf. He sets his lines and, by noon of the first day, a big fish that he is sure is a marlin takes his bait. Unable to pull in the great marlin, Santiago instead finds the fish pulling his skiff. Two days and two nights pass in this manner, during which the old man bears the tension of the line with his body. Though he is wounded by the struggle and in pain, Santiago expresses a compassionate appreciation for his adversary, often referring to him as a brother. He also determines that because of the fish&#39;s great dignity, no one will be worthy of eating the marlin.<br />\r\n <br />\r\n On the third day of the ordeal, the fish begins to circle the skiff, indicating his tiredness to the old man. Santiago, now completely worn out and almost in delirium, uses all the strength he has left in him to pull the fish onto its side and stab the marlin with a harpoon, thereby ending the long battle between the old man and the tenacious fish.<br />\r\n <br />\r\n Santiago straps the marlin to his skiff and heads home, thinking about the high price the fish will bring him at the market and how many people he will feed.<br />\r\n <br />\r\n While Santiago continues his journey back to the shore, sharks are attracted to the trail of blood left by the marlin in the water. The first, a great mako shark, Santiago kills with his harpoon, losing that weapon in the process. He makes a new harpoon by strapping his knife to the end of an oar to help ward off the next line of sharks; in total, five sharks are slain and many others are driven away. But by night, the sharks have almost devoured the marlin&#39;s entire carcass, leaving a skeleton consisting mostly of its backbone, its tail and its head, the latter still bearing the giant spear. The old man castigates himself for sacrificing the marlin. Finally reaching the shore before dawn on the next day, he struggles on the way to his shack, carrying the heavy mast on his shoulder. Once home, he slumps onto his bed and enters a very deep sleep.<br />\r\n <br />\r\n A group of fishermen gather the next day around the boat where the fish&#39;s skeleton is still attached. One of the fishermen measures it to be eighteen feet from nose to tail. Tourists at the nearby caf&eacute; mistakenly take it for a shark. Manolin, worried during the old man&#39;s endeavor, cries upon finding him safe asleep. The boy brings him newspapers and coffee. When the old man wakes, they promise to fish together once again. Upon his return to sleep, Santiago dreams of lions on the African beach.</span></p>\r\n </dd>\r\n</dl>\r\n', '', '', '218.9.171.14'),
(26, 17, '<dl class=\"last\">\r\n <dt>\r\n <span style=\"font-size: 20px\">傲慢与偏见(Pride and Prejudice)简介:</span></dt>\r\n <dd>\r\n <span style=\"font-size: 20px\">Few have failed to be charmed by the witty and independent spirit of Elizabeth Bennet. Her early determination to dislike Mr. Darcy is a prejudice only matched by the folly of his arrogant pride. Their first impressions give way to true feelings in a comedy profoundly concerned with happiness and how it might be achieved.</span></dd>\r\n</dl>\r\n', '', '', '113.4.87.19'),
(27, 17, '<p>\r\n <span style=\"font-size: 20px\">谁动了我的奶酪(Who Moved My Cheese)简介:</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">Change can be a blessing or a curse, depending on your perspective. The message of Who Moved My Cheese? is that all can come to see it as a blessing, if they understand the nature of cheese and the role it plays in their lives. Who Moved My Cheese? is a parable that takes place in a maze. Four beings live in that maze: Sniff and Scurry are mice--nonanalytical and nonjudgmental, they just want cheese and are willing to do whatever it takes to get it. Hem and Haw are &quot;littlepeople,&quot; mouse-size humans who have an entirely different relationship with cheese. It&#39;s not just sustenance to them; it&#39;s their self-image. Their lives and belief systems are built around the cheese they&#39;ve found. Most of us reading the story will see the cheese as something related to our livelihoods--our jobs, our career paths, the industries we work in--although it can stand for anything, from health to relationships. The point of the story is that we have to be alert to changes in the cheese, and be prepared to go running off in search of new sources of cheese when the cheese we have runs out.<br />\r\n Dr. Johnson, coauthor of The One Minute Manager and many other books, presents this parable to business, church groups, schools, military organizations--anyplace where you find people who may fear or resist change. And although more analytical and skeptical readers may find the tale a little too simplistic, its beauty is that it sums up all natural history in just 94 pages: Things change. They always have changed and always will change. And while there&#39;s no single way to deal with change, the consequence of pretending change won&#39;t happen is always the same: The cheese runs out. --Lou Schuler</span></p>\r\n<dl class=\"last\">\r\n</dl>\r\n', '', '', '113.4.87.19'),
(28, 14, '<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130701/1-130F11046360-L.jpg\" style=\"width: 176px; height: 220px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">罗向东1989年毕业于国防科技大学应用物理系黑龙江省能源环境研究院孵化中心工程实验室主任研究员。</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">具有本专业广博、坚实的基础理论知识并有深入的研究和独到的见解熟悉相关专业的基础理论和专业知识。熟悉掌握本专业及相关专业国内外发展现状和趋。熟练掌握本专业相关的技术标准、规范。熟悉国家和地方有关的法律法规、技术政策和技术法规。能根据国家或本地区经济建设需要和学科发展提出本专业的研究方向具备有选定具有重要学术意义或开创性研究课题的能力能够带领团队开拓新的研究领域。具有丰富的从事科学研究的实践经验并能够完成规定的研究任务在主持省级项目的研究过程中能够创造性地解决重大、关键性的技术问题能够在研究团队中起到学术带头人的作用主持的省攻关项目经鉴定取得了国内领先水平。具有指导本专业技术人员开展业务工作的能力培养初中级技术人员3名。具有丰富的研究、开发、科技管理工作经验。参加工作以来共组织申报国家、省市及科学院各类项目30余项获得科研及产业化项目经费1000多万元。</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">主持及能与科研项目10项其中省攻关项目2项市攻关项目1项省中小企业创新基金项目1项院基金项目6项获黑龙江省科技进步三等奖1项省科学院科技进步奖4项授权专利6项在有CN和ISSN统一刊号且公开出版发行的科技类期刊发表专业论文10篇其中第一名6篇。</span><br />\r\n &nbsp;</p>\r\n', '', '', '113.4.83.225'),
(29, 14, '<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130701/1-130F11055020-L.jpg\" style=\"width: 176px; height: 246px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">王志成1973年出生学士研究员级高级工程师能源化学省级领军人才梯队后备带头人省级燃油燃煤清洁能源重点实验室成员省能源环境研究院科研与产业化办公室主任环境科学与节能技术研究室主任。兼任省化学学会理事。</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">从事新型醇醚燃料催化剂和乳化燃料催化剂及合成工艺研究以及生物质能源研究工作。主持和在研项目20项其中包括国家攻关计划项目3项省自然科学基金项目1项国家政府间国际合作项目1项省攻关计划项目6项。获省科技进步一等奖1项省科技发明一等奖2项三等奖1项国家石化协会科技二等奖1项发表学术论文11篇。</span></p>\r\n', '', '', '113.4.83.225'),
(30, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院经过6年的努力攻关采用低档褐煤做原料通过采用催化低温热裂解国家发明专利技术成功地从褐煤中催化提炼出20.4%轻质燃料油、9.2%石油干气及70.4%焦炭。轻质燃料油经过简单处理可替代柴油石油干气可替代天然气焦炭是市场紧缺的原料。由于我国低档褐煤储藏量巨大价格每吨在200元以内所以经过催化低温热裂解后产生的轻质燃料油、石油干气、焦炭可获得巨大的经济效益。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130703/1-130F3142624405.jpg\" /></span></p>\r\n', '', '', '113.4.72.230'),
(31, 10, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年5月在院领导班子高度重视及各部门的大力配合下能源院省级重点实验室-燃油燃煤清洁能源重点实验室参加了黑龙江省科技厅展开的省级各类科技平台评估认定工作,经自评申报、省科技厅综合评审,我院重点实验室被继续保留省级科技平台资格。<br />\r\n   我院燃油燃煤清洁能源重点实验室为黑龙江省重点实验室2007年经黑龙江省科技厅批准成立。自成立以来重点实验室科技人员先后承担并完成国际科技合作重点项目、科技攻关项目、省自然科学基金等项目14项。获国家发明专利10项省科技发明一等奖一项发表论文45篇实现经济效益和社会效益累计达1000余万元在清洁能源、替代能源、污染物减排等领域形成了自己的特色和优势。<br />\r\n   能源院将以此次评估认定为契机,做好重点实验室承担的各级课题,为提高我省清洁能源、可再生能源、替代能源等领域的技术水平及解决相关技术问题做出应有的贡献。</span></p>\r\n', '', '', '113.4.72.230'),
(32, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 由黑龙江省能源环境研究院承担的国家振兴东北老工业基地科技专项&mdash;&mdash;奥里油或超重质沥青蒸馏轻质燃料油技术研究及产业化项目2007年12月18日圆满通过国家验收。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该技术不采用传统石油炼制装置在奥里油或超重质沥青中加入3%~5%的液体催化剂在非高压、不加氢气的条件下从室温加热到450℃左右时间3小时蒸馏出轻质燃料油这是石油炼制工艺的一次突破该技术达到国际领先水平。<br />\r\n   该项目获得两项国家发明专利:<br />\r\n   《一种生产轻质燃料油的催化剂和方法》专利号ZL 2005 1 0002080.5。<br />\r\n   《一种以含油岩石为原料生产轻质燃料油的催化剂和方法》专利号ZL 2005 1 0126073.6。</span></p>\r\n', '', '', '113.4.72.230'),
(33, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 由黑龙江省能源环境研究院承担的国家&ldquo;十五&rdquo;科技攻关计划 &mdash;&mdash;工业锅炉脱硫试验与性能考核项目2007年1月圆满通过国家验收。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该技术已在山西省工业锅炉上应用脱硫率高达95%。经法定环境监测中心站检测脱硫前锅炉烟气SO2排放浓度高达2423mg/m3。采用脱硫技术后SO2排放浓度150mg/m3远远优于国家标准SO2排放浓度额900mg/m3。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该项目研究成果《燃煤、燃油锅炉烟气的脱硫脱氮催化剂及其脱硫脱氮方法》已申报国家发明专利,并通过实审。</span></p>\r\n', '', '', '113.4.72.230'),
(34, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院历时两年,圆满完成国家政府间国际科技合作项目&mdash;&mdash;中加沙油炼制技术合作研究。我院科技人员研发了加拿大沙油在非高压不加氢气的条件下蒸馏出轻质燃料油直接替代0号柴油应用的创新技术。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 验收专家组对项目进行了严格的评审,最后提出结论意见:该技术成果的关键是研制出的蒸馏催化剂,它是沙油炼制技术的一次创新,它解决了加拿大沙油无法直接蒸馏轻质燃料油的难题。该技术填补了国内外的空白,达到国际领先水平。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 专家建议:将该成果拓展到东南亚含油岩石、委内瑞拉奥里油和国内含油岩石的应用开发上。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130704/1-130F4110353502.jpg\" /></span></p>\r\n', '', '', '113.4.72.230'),
(35, 15, '<p>\r\n <span style=\"font-size: 20px\">棕榈毛油直接法转换生物柴油及催化燃烧技术,是黑龙江省能源环境研究院自主研发并完全拥有该技术知识产权的创新技术。生物柴油是被当前世界公认的石化柴油的友好替代燃料,是新型环保的可再生能源。<br />\r\n   黑龙江省能源环境研究院面对世界石油能源紧张的形势,积极探索可再生的生物柴油技术。经过多年的研究与试验,建立油品改性和催化燃烧技术理论,研发出一套切实可行的工艺路线和生产方法,提出棕榈毛油直接合成生物柴油和催化燃烧理论。该技术关键在于高效降粘组分、抗腐蚀组分、能量增强组分和独特的脱酸及催化燃烧组分等,它是直接法将棕榈毛油改性成生物柴油的关键助剂。<br />\r\n   B50棕榈毛油直接法转换生物柴油是由棕榈毛油、催化剂及柴油直接调合而成比例为棕榈毛油 50 %,催化剂 5 %,柴油 45 %,它是完全可以替代柴油的新型环保燃料油。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><strong>B50</strong><strong>棕榈毛油生物质柴油的技术指标 </strong></span></p>\r\n<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <strong>序号 </strong></td>\r\n <td style=\"width: 216px\">\r\n <strong>检验项目 </strong></td>\r\n <td style=\"width: 132px\">\r\n <strong>检验方法 </strong></td>\r\n <td style=\"width: 127px\">\r\n <strong>检验结果 </strong></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 1</td>\r\n <td style=\"width: 216px\">\r\n  密度( 30 ℃ ,g/cm 3</td>\r\n <td style=\"width: 132px\">\r\n GB/T1884</td>\r\n <td style=\"width: 127px\">\r\n 0.86</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 2</td>\r\n <td style=\"width: 216px\">\r\n  密度( 40 ℃ ,g/cm 3</td>\r\n <td style=\"width: 132px\">\r\n GB/T1884</td>\r\n <td style=\"width: 127px\">\r\n 0.825</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 3</td>\r\n <td style=\"width: 216px\">\r\n  硫含量,%( m/m </td>\r\n <td style=\"width: 132px\">\r\n GB/T 380</td>\r\n <td style=\"width: 127px\">\r\n 0.05</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 4</td>\r\n <td style=\"width: 216px\">\r\n  酸度, mgKOH/100mL</td>\r\n <td style=\"width: 132px\">\r\n GB/T 258</td>\r\n <td style=\"width: 127px\">\r\n 7.55</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 5</td>\r\n <td style=\"width: 216px\">\r\n  灰分,%( m/m </td>\r\n <td style=\"width: 132px\">\r\n GB/T 508</td>\r\n <td style=\"width: 127px\">\r\n 0.01</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 6</td>\r\n <td style=\"width: 216px\">\r\n  铜片腐蚀( 50 ℃ , 3 h , 级</td>\r\n <td style=\"width: 132px\">\r\n GB/T 5096</td>\r\n <td style=\"width: 127px\">\r\n 1</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 7</td>\r\n <td style=\"width: 216px\">\r\n  水分,%( V/V </td>\r\n <td style=\"width: 132px\">\r\n GB/T 260</td>\r\n <td style=\"width: 127px\">\r\n 痕迹</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 8</td>\r\n <td style=\"width: 216px\">\r\n  机械杂质</td>\r\n <td style=\"width: 132px\">\r\n GB/T 511</td>\r\n <td style=\"width: 127px\">\r\n 无</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 9</td>\r\n <td style=\"width: 216px\">\r\n  运动粘度( 30 ℃ ,mm 2 /s</td>\r\n <td style=\"width: 132px\">\r\n GB/T 6536</td>\r\n <td style=\"width: 127px\">\r\n 12.2</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 10</td>\r\n <td>\r\n  运动粘度( 40 ℃ ,mm 2 /s</td>\r\n <td>\r\n GB/T 6536</td>\r\n <td>\r\n 6.94</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 11</td>\r\n <td style=\"width: 216px\">\r\n  凝点, ℃</td>\r\n <td style=\"width: 132px\">\r\n GB/T 570</td>\r\n <td style=\"width: 127px\">\r\n 12</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 12</td>\r\n <td style=\"width: 216px\">\r\n  闪点(闭口), ℃</td>\r\n <td style=\"width: 132px\">\r\n GB/T 261</td>\r\n <td style=\"width: 127px\">\r\n 56</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 13</td>\r\n <td style=\"width: 216px\">\r\n  十六烷值</td>\r\n <td style=\"width: 132px\">\r\n GB/T 386</td>\r\n <td style=\"width: 127px\">\r\n 49.0</td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n 14</td>\r\n <td style=\"width: 216px\">\r\n  残炭,%( m/m </td>\r\n <td style=\"width: 132px\">\r\n SH/T0170</td>\r\n <td style=\"width: 127px\">\r\n 0.3</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<div style=\"clear: both\">\r\n &nbsp;</div>\r\n<p>\r\n <span style=\"font-size: 20px\">  B40棕榈毛油直接法转换生物柴油是由棕榈毛油、催化剂及柴油直接调合而成比例为棕榈毛油 40 %,催化剂 4 %,柴油 56 %,它是完全可以替代柴油的新型环保燃料油。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><strong>B40</strong><strong>棕榈毛油生物质柴油的技术指标</strong></span><br />\r\n &nbsp;</p>\r\n<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n <strong>序号 </strong></p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n <strong>检验项目 </strong></p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n <strong>检验方法 </strong></p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n <strong>检验结果 </strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 1</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  密度( 20 ℃ ,g/cm 3</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T1884</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.856</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 2</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  硫含量,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 380</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.05</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 3</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  酸度, mgKOH/100mL</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 258</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 7.10</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 4</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  灰分,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 508</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.01</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 5</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  铜片腐蚀( 50 ℃ , 3 h , 级</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 5096</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 1</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 6</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  水分,%( V/V </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 260</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 痕迹</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 7</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  机械杂质</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 511</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 无</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 8</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  运动粘度( 20 ℃ ,mm 2 /s</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 6536</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 10.00</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 9</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  凝点, ℃</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 570</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 3</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 10</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  闪点(闭口), ℃</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 261</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 60</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 11</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  十六烷值</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 386</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 49.5</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 12</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  残炭,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n SH/T0170</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.3</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p style=\"clear: both\">\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">  B30棕榈毛油直接法转换生物柴油是由棕榈毛油、催化剂及柴油直接调合而成比例为棕榈毛油 30 %,催化剂 3 %,柴油 67 %,它是完全可以替代柴油的新型环保燃料油。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><strong>B30</strong><strong>棕榈毛油生物质柴油的技术指标</strong></span></p>\r\n<table align=\"center\" border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n <strong>序号 </strong></p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n <strong>检验项目 </strong></p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n <strong>检验方法 </strong></p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n <strong>检验结果 </strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 1</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  密度( 20 ℃ ,g/cm 3</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T1884</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.850</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 2</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  硫含量,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 380</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.05</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 3</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  酸度, mgKOH/100mL</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 258</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 7.00</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 4</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  灰分,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 508</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.01</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 5</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  铜片腐蚀( 50 ℃ , 3 h , 级</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 5096</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 1</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 6</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  水分,%( V/V </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 260</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 痕迹</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 7</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  机械杂质</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 511</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 无</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 8</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  运动粘度( 20 ℃ ,mm 2 /s</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 6536</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 6.80</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 9</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  凝点, ℃</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 570</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 2</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 10</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  闪点(闭口), ℃</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 261</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 62</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 11</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  十六烷值</p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n GB/T 386</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 49.8</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 41px\">\r\n <p>\r\n 12</p>\r\n </td>\r\n <td style=\"width: 216px\">\r\n <p>\r\n  残炭,%( m/m </p>\r\n </td>\r\n <td style=\"width: 132px\">\r\n <p>\r\n SH/T0170</p>\r\n </td>\r\n <td style=\"width: 127px\">\r\n <p>\r\n 0.3</p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<p style=\"clear: both\">\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n &nbsp;<img alt=\"\" src=\"/kjfh/uploads/allimg/130704/1-130F41223151b.jpg\" style=\"width: 405px; height: 507px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 20px\">  棕榈毛油直接法转换生物柴油已完成柴油机台架长期可靠性考核,完全可以替代柴油应用。<br />\r\n   应用B50生物柴油时发动机未做任何改动冷车启动一次成功连续运行期间无停火、爆燃现象。发动机怠速、中速、高速时运行平稳所带发电机满负荷运行正常。高压油泵柱塞付不会咬死喷油嘴不会阻塞运行安全可靠。<br />\r\n   发动机燃用棕榈生物柴油燃烧完全,长期应用后拆机检查,活塞顶部、燃烧室、进气门、排气门室的积炭接近于零,远远小于燃用柴油的积炭,发动机在大负荷和急加速状态下,排气管不冒黑烟。<br />\r\n   能源消耗方面,燃用棕榈毛油生物柴油由于采用催化燃烧技术,比燃用石化柴油在同等条件下节油 4 %。<br />\r\n   其综合性能优于柴油,完全可以在高、中、低速,大、中、小型柴油机上替代柴油应用。<br />\r\n   下面是长期应用后拆机情况:</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130704/1-130F4122435c0.jpg\" style=\"width: 451px; height: 660px\" /><br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130704/1-130F415013Y17.jpg\" style=\"width: 418px; height: 658px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 20px\"><strong>经济效益 </strong><br />\r\n   采用直接法将棕榈毛油转换成生物柴油,生产中不像酯化法需使用大量醇类及酸液,不用纯碱做中和,不产生大量废甘油及废水,工艺简单,运行成本低。与柴油批发价相比每吨低数百元,经济效益显著。         </span><br />\r\n <span style=\"font-size: 20px\">  生物柴油在销售渠道中享受国家相关的政策补贴,相当于企业又获得一定的利润,并可以为国家节省大量的柴油,社会效益和经济效益巨大。</span></p>\r\n', '', '', '113.9.10.161'),
(36, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院承担的国家&ldquo;九五&rdquo;重点科技攻关计划&mdash;&mdash;化学脱硫技术工业试验及性能考核[课题任务书编号96- A19-02-05)] 在邹家华副委员长和国家环保总局解振华局长的关怀和支持下,完成了在发电厂的工业试验及性能考核。</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 国家环保监测部门在发电厂对应用化学脱硫技术试验进行监测,监测结果脱硫效果显著 。 该项目以满分的成绩通过了国家科技部组织的专家验收。并获得黑龙江省科技进步三等奖。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1115D22.jpg\" style=\"width: 282px; height: 411px\" /><br />\r\n 邹家华副委员长批示<br />\r\n <br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH11241143.jpg\" style=\"width: 376px; height: 435px\" /><br />\r\n 国家电力公司呈给邹家华副委员长的函<br />\r\n <br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH11334T9.jpg\" style=\"width: 435px; height: 292px\" /><br />\r\n 黑龙江省科技进步三等奖证书</span></p>\r\n', '', '', '113.4.72.230'),
(37, 27, '<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1204H08.jpg\" style=\"width: 553px; height: 300px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">注:黑龙江省能源环境研究院原名为黑龙江省节油技术开发中心</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院与清华、中科院工程热物理所、国家电力公司西安热工院、国家电站工程技术研究中心、中国洁净煤中心等国家级科研院所共同承担国家&ldquo;十五&rdquo;重点科技攻关计划&mdash;&mdash;清洁能源项目,其中我研究院承担了化学脱硫工业性示范及设备产业化课题。</span></p>\r\n<p style=\"text-align: center\">\r\n <br />\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1213DS.jpg\" style=\"width: 376px; height: 264px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">应用管式电炉进行脱硫试验</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH12209148.jpg\" style=\"width: 377px; height: 298px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">科技人员应用碘量法测试 SO2</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 加入脱硫剂的煤燃烧后,烟气中SO2排放浓度达到国家最新标准Ⅱ时段要求。在 CRF 电站燃烧检测装置上对不同含硫量原煤含硫量为0.5%、1.0%、1.5%、2.0%)进行脱硫考核。我研究院圆满地通过了考核,并通过科技部组织的专家验收。</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH12253U8.jpg\" style=\"width: 376px; height: 263px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">CRF 电站燃烧检测装置</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1232SC.jpg\" style=\"width: 237px; height: 275px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">国家验收意见</span></p>\r\n', '', '', '113.4.72.230'),
(38, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 《工业锅炉脱硫试验与性能考核》是国家&ldquo;十五&rdquo;期间化学脱硫课题的深化研究脱硫效率进一步提高。燃煤锅炉烟气中污染物排放达到国家《锅炉大气污染物排放标准》要求烟气中SO2排放浓度小于等于900mg/m3。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 工业锅炉脱硫技术采用新型的催化脱硫方法将烟气通过脱硫净化装置中的催化脱硫剂在催化脱硫剂的作用下使烟气中绝大部分的SO2固化形成硫酸盐等固体沉积在净化装置的底部烟气排放达到国家标准。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该技术工艺简单,投资少,效率高,达到国际先进水平。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH12F2263.jpg\" style=\"width: 624px; height: 205px\" /></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">工业锅炉脱硫工艺路线图</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <font size=\"5\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font><span style=\"font-size: 20px\">该技术已在太原煤气化(集团)有限公司成功地进行了工业性示范,太原市环境监测中心站对工业性示范进行了监测,其结果是:</span><br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 烟气未经脱硫前SO2排放浓度为2423mg/m3<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 烟气经过脱硫后SO2排放浓度为150mg/m3。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 脱硫率达到94%。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH12S0562.jpg\" style=\"width: 308px; height: 429px\" /></span></p>\r\n<p>\r\n &nbsp;</p>\r\n', '', '', '113.4.72.230');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(39, 27, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 奥里油或超重质沥青是应用常规技术提炼出汽、煤、柴油等石化产品后的终极产品目前国内外都是采用高温、高压、加氢气方法从奥里油或超重质沥青中加工轻质燃料油。我院研制的在奥里油或超重质沥青中加入3%5%的液体催化剂能在非高压、不加氢气的条件下从室温加热到450℃蒸馏出轻质燃料油来替代0号柴油技术。是一次高科技的研发过程是石油炼制技术的一次重大突破。</span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH13314330.jpg\" style=\"width: 467px; height: 203px\" /></span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">轻质燃料油蒸馏工艺<br />\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH13439214.jpg\" style=\"width: 175px; height: 131px\" /><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH13454G2.jpg\" style=\"width: 171px; height: 132px\" /><img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH1350BN.jpg\" style=\"width: 175px; height: 131px\" /></span></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 奥里油&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;催化剂&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;轻质燃料油</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此技术能使轻质燃料油出油率提高 30%,蒸馏后的固体残渣可以替代煤炭应用。这是真正意义的原油&ldquo;吃干榨净&rdquo;。此技术的产业化将是能源领域的一次创新,会获得巨大的经济效益。目前,该技术国家已正式立项,为国家&ldquo;振兴老工业基地&rdquo; 首批科技专项中的唯一能源项目2004BA907A32。</span></p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH13604X7.jpg\" style=\"width: 203px; height: 260px\" /></p>\r\n', '', '', '113.4.72.230'),
(40, 13, '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH20GJJ.jpg\" /></div>\r\n', '', '', '113.9.14.181'),
(41, 27, '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH2192T55.jpg\" style=\"width: 622px; height: 3237px\" /></div>\r\n', '', '', '113.9.14.181'),
(42, 27, '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH2261a52.jpg\" /></div>\r\n', '', '', '113.9.14.181'),
(43, 27, '<img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH23024364.jpg\" style=\"width: 648px; height: 3064px\" />', '', '', '113.9.14.181'),
(44, 13, '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH235301X.jpg\" /></div>\r\n', '', '', '113.9.14.181'),
(45, 13, '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH23910G3.jpg\" /></div>\r\n', '', '', '113.9.14.181'),
(46, 13, '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH24211416.jpg\" /></div>\r\n', '', '', '113.9.14.181'),
(47, 9, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp; 能源环境研究院(孵化中心)新版网站现已重新上线啦!敬请关注!</span>', '', '', '113.4.83.74'),
(50, 9, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 题目Triz理论<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 时间8月16日下午100<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 地点孵化中心8楼会议室<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主讲:王志成<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 欢迎各位同事积极参加!</span>', '', '', '113.4.72.230'),
(51, 10, '<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/130816/1-130Q6160551549.jpg\" style=\"width: 624px; height: 431px\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8月16日我院在8楼会议室举办了TRIZ科技创新讲座由环境科学研究室主任王志成同志进行宣讲。此次讲座是根据我院2013年的工作指示精神而安排旨在加强和提升院科研人员的创新能力和科研能力。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/130816/1-130Q6160640R0.jpg\" style=\"width: 620px; height: 423px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/130816/1-130Q6160I0635.jpg\" style=\"width: 617px; height: 436px\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王志成系统介绍了TRIZ理论的历史起源从技术系统的进化规律讲起用生动例子介绍了技术矛盾与创新原理、物理矛盾与分离原理和无偿模型与标准解法。本次讲座受到了广大职工的认可大家普遍反映通过此次培训对TRIZ创新理论有了更深入的了解对培养创新思维意义较大不仅增长见识开拓创新思路提高创新能力还可以将TRIZ原理应用于解决科研中遇到的实际问题受益匪浅。</span>', '', '', '113.4.72.230'),
(52, 9, '<div>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 培训主题:&ldquo;高效检索与文献分析&mdash;&mdash;万方数据知识服务平台使用详解&rdquo;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>培训讲师:万方数据&nbsp;周雷<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>培训时间2013年8月23日&nbsp;&nbsp;13:30---1630<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>培训地点嵩山路15号&nbsp;省科学院会议中心</span></div>\r\n', '', '', '113.4.72.34'),
(53, 16, '<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">--省科学院群众路线教育实践活动调研组到我院调研</span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp;<br />\r\n&nbsp; &nbsp; 8月15日下午省科学院群众路线教育实践活动调研组来到省能源环境研究院孵化中心召开听取群众意见调研会议。省能源环境研究院孵化中心一、二线代表工勤人员代表及部分党外人士出席会议省科学院院长潘忠出席会议并发言。<br />\r\n&nbsp; &nbsp; 潘忠在讲话中指出,深入开展党的群众路线教育实践活动是党中央做出的重大战略部署。我院按照中央统一部署,正扎实开展教育实践活动,要充分调动基层党员干部的积极性,在教育实践活动中真正做到依靠广大党员群众,确保活动取得实效。他强调,此次会议是在基层代表中开一个集思广益的调研会,希望大家消除顾虑、畅所欲言,说多说少都行,说深说浅都行,说错说对都行,为开展好群众路线教育实践活动把把脉、支支招。<br />\r\n&nbsp; &nbsp; 会上,参会各位代表,本着&ldquo;知无不言、言无不尽&rdquo;的态度纷纷各抒己见,紧扣会议要求,聚焦院所建设,紧密联系工作中的实际,开门见山的找问题,潘院长针对每一个问题都进行了认真的记录,并做出了详实、客观的解答,他指出这些发言饱含真知灼见,是直言诤言,也是良计良策,既体现了大家对群众路线教育实践活动的积极拥护,也体现了大家对广大党员干部的殷切期许。同时,更应该深刻地认识到,群众利益无小事,必须坚持走群众路线,凡是涉及群众切身利益和实际困难的事情,再小也要竭尽全力去抓好办好,切实践行为人民服务的宗旨。<br />\r\n&nbsp; &nbsp; 会后,我院群众路线教育实践活动领导小组组织了专题讨论,对下一步工作开展进行了研究部署和具体安排。</span>', '', '', '1.58.243.187'),
(54, 17, '<span style=\"font-size: 22px\">请点击下载:</span>\r\n<table width=\"450\">\r\n <tbody>\r\n <tr>\r\n <td height=\"30\" width=\"20\">\r\n <span style=\"font-size: 22px\"><strong><a href=\"/uploads/soft/130827/生物质能源发展趋势.doc\" target=\"_blank\"><img align=\"middle\" alt=\"\" border=\"0\" src=\"/plus/img/addon.gif\" /></a></strong></span></td>\r\n <td>\r\n <span style=\"font-size: 22px\"><strong><a href=\"/uploads/soft/130827/生物质能源发展趋势.doc\" target=\"_blank\"><u>生物质能源发展趋势</u></a></strong></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', '', '', '221.212.168.228'),
(55, 17, '<span style=\"font-size: 22px\">请点击下载: </span>\r\n<table width=\"450\">\r\n <tbody>\r\n <tr>\r\n <td height=\"30\" width=\"20\">\r\n <span style=\"font-size: 22px\"><a href=\"/uploads/soft/130827/我国生物质能源的特点和发展方向.docx\" target=\"_blank\"><img align=\"middle\" alt=\"\" border=\"0\" src=\"/plus/img/addon.gif\" /></a></span></td>\r\n <td>\r\n <span style=\"font-size: 22px\"><a href=\"/uploads/soft/130827/我国生物质能源的特点和发展方向.docx\" target=\"_blank\"><u>我国生物质能源的特点和发展方向</u></a></span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', '', '', '221.212.168.228'),
(56, 10, '<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/130827/1-130RGA504317.JPG\" style=\"width: 510px; height: 396px\" /></span><br />\r\n &nbsp;</div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年8月22日应延寿县政协主席杨晓春的邀请黑龙江省能源环境研究院院长徐晓秋、副院长关春玲同志以及科研办和财务办同志一行五人来到延寿县交流访问。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋院长一行受到了延寿县政协主席杨晓春、延寿县副县长呼大鹏同志的热烈欢迎。在县政协会议室,徐院长首先介绍了研究院的概况,重点介绍了优势学科的发展及重点科研成果,并就延寿县所需的技术需求及下一步的合作构想与延寿县领导交换了意见。杨晓春主席对此表示赞同,并表示愿意与黑龙江省能源环境研究院建立长期、紧密的合作关系。下一步将就有机废弃物处理等领域的项目申报展开合作。</span>', '', '', '221.212.168.228'),
(57, 10, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年9月18日下午能源院举办了马来西亚培训学习经验交流会。我院青年科技人员张玥同志做了内容丰富的培训学习汇报各科室青年科技人员参与了此次经验交流会。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 张玥同志在马来亚大学理学院化学系的胶体与表面实验室从事乳化柴油相关研究。经过四个月的学习,学到了乳化柴油相关的理论知识,制备出澄清透明、性质稳定的柴油微乳液,研究工作与现阶段工作很好的结合在一起,为今后工作起到指导性作用。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 张玥同志介绍了马来西亚的风土人情和所在大学的基本情况,在语言学习、实验室学习、日常生活等方面给与会人员做了详细讲述,总结了在国外学习和生活的体会和经验,使大家了解了马来亚大学的科研情况,开拓了大家的视野,也与青年科技人员们分享了国外生活学习的宝贵经验。青年科技人员们纷纷提出感兴趣的问题,会议气氛活跃。&nbsp;</span><br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后,科研与产业化办公室主任王志成同志做了总结发言。希望全体科技人员借鉴宝贵经验,努力提高自身科研及英语水平,争取更多的出国学习机会,为我院更好更快发展贡献自己的力量。</span><br />\r\n &nbsp;</p>\r\n<p>\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/131010/1-13101016351M43.JPG\" style=\"width: 519px; height: 346px\" /></p>\r\n<p>\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/131010/1-131010163540295.JPG\" style=\"width: 519px; height: 345px\" /></p>\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n', '', '', '113.4.72.200'),
(58, 10, '<h1>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size: 20px\">2013年10月11日上午院产业处孙宇峰处长、范延新、曹海虹副处长来到我院双城产业基地检查院产业化基金项目《M15车用甲醇汽油复合添加剂》执行情况。我院科研与产业办主任王志成、副主任刘伟以及项目组负责人张树华、刘岩陪同前往。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 孙宇峰处长仔细询问了产业项目的生产情况科研与产业办和项目组详细介绍了生产流程、产量、效益等生产经营情况现已全面、超额完成任务书的技术、经济考核指标项目可以圆满结题还介绍了下一步M25车用甲醇汽油复合添加剂、车用复合调节剂的生产开发情况。孙宇峰处长表示这是我院产业基金支持的较大项目要及时、认真地对产业工作进行总结以便给今后产业基金支持提供依据。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 科研与产业办和项目组表示有院领导和产业基金的支持,我院产业工作一定能更好更快发展。</span><br />\r\n <br />\r\n &nbsp;</h1>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/131028/1-13102Q62Z3627.JPG\" style=\"width: 558px; height: 373px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/131028/1-13102Q6292D49.JPG\" style=\"width: 558px; height: 373px\" /></span></p>\r\n', '', '', '113.4.83.192'),
(59, 10, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10月23日我院成功地召开科学院预研课题&mdash;&mdash;利用页岩油制取油砂分离剂的研究、全馏分页岩油改质转化轻质运输燃料工艺的研究,院青年基金&mdash;&mdash;膜生物反应器中改性复合膜的制备与性能研究,省财政基本科研业务费专项&mdash;&mdash;车用汽油复合调节剂技术研究等四项课题鉴定会。会议由省科学院科研处王阳处长主持,鉴定专家为哈工程、黑大等高校知名能源专家。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 鉴定委员会听取了课题组的工作汇报,审查了相关技术资料,经认真质询、讨论,形成鉴定意见。专家组认为,这四项课题在选题上紧扣能源、环境的主线,研究内容较新颖,技术路线及工艺合理可行,均达到国内先进水平。专家还建议进一步完善数据,扩大研究领域,开展放大实验。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王阳处长作总结性发言,对专家组的辛勤工作表示感谢,对课题组提出要求,要按各位专家提出的意见、建议进一步充实数据,修定研究方法,完善课题鉴定材料。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后,课题鉴定会在热烈的掌声中胜利闭幕。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/131031/1-131031151Z0534.JPG\" style=\"width: 519px; height: 346px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/131031/1-1310311519542F.JPG\" style=\"width: 519px; height: 346px\" /></p>\r\n', '', '', '113.4.83.217'),
(60, 9, '<span style=\"font-size:22px;\">院各部门:<br />\r\n&nbsp;&nbsp;&nbsp; 为深入推进党的群众路线教育实践活动,认真做好整改工作,使整改工作扎实、有序推进,现就有关要求通知如下:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp; 一、提高思想认识,增强工作紧迫性<br />\r\n&nbsp;&nbsp;&nbsp; 整改落实是确保党的群众路线教育实践活动见成效的一项重要工作,全院要提高思想认识、提高标准和要求,根据第一环节梳理归纳的意见和建议内容,集中解决问题。要切实增强整改工作的重要性和紧迫性,确保每一项整改内容落实到位。<br />\r\n&nbsp;&nbsp;&nbsp; 二、加强组织领导,落实整改责任<br />\r\n&nbsp;&nbsp;&nbsp; 院领导和各科室负责人要对照整改内容和整改要求认真抓好落实,对查找出来的问题即查即改,边查边改。对能够及时解决的问题,切实做到不等、不拖、不推。院领导班子要认真撰写整改材料,分析问题原因,剖析思想根源,明确努力方向,提出整改措施。<br />\r\n&nbsp;&nbsp;&nbsp; 三、加强督促检查,通报检查情况<br />\r\n&nbsp;&nbsp;&nbsp; 群众路线领导小组要对照整改内容逐项认真检查全院的整改落实情况,责任领导要及时了解整改和落实工作情况,活动办公室要督促办法推进,掌握进度,定期通报。<br />\r\n&nbsp;&nbsp;&nbsp; 四、制定整改时限,保障活动按期完成<br />\r\n&nbsp;&nbsp;&nbsp; 领导班子和各部门要明确整改内容、制定整改时限,突出整改重点,确保整改效果。</span>', '', '', '61.180.252.242'),
(61, 10, '<div style=\"text-align: right; \">\r\n <span style=\"font-size:22px;\">--省财政厅庄炳艳处长到能源院检查维修施工情况</span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; 9月22日下午省财政厅教科文处庄炳艳处长、曹铁峰省科学院条财处沙长青处长、张云志副处长一同到我院实验楼维修项目施工现场检查指导工作省能源院徐晓秋院长、关春玲副院长及办公室人员陪同检查。庄处长要求施工方必须把安全作为工作的重中之重来抓确保工程按时、保质完工。</span><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:22px;\">庄处长先后来到实验室、中试车间等施工现场,听取了工程负责人关于维修改造项目的实施方案、质量监督和总体进展等情况汇报,认真查看了维修改造项目的施工质量、工程进度和安全设施情况,仔细询问了一些维修改造的实施细节,并对维修改造方案的进一步完善提出了指导性意见。<br />\r\n&nbsp; &nbsp; 庄处长最后指出,做全体员工满意的放心工程是关乎党的群众路线教育实践活动落实到位的关键,项目负责部门要在工期紧、任务重和气温突降的困难条件下,做到精细化施工、科学化管理,确保维修改造项目按期保质完工,切实为能源院职工提供满意的工作环境。</span><br />\r\n', '', '', '1.58.243.187'),
(62, 10, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为实践党的群众路线活动2014年2月19日黑龙江省能源环境研究院院长徐晓秋、省科学院外事处处长高德玉以及科研办和寒区生物质能源技术研究中心科研人员等5名同志来到齐齐哈尔市甘南县黑龙江蓝天能源发展股份有限公司交流访问为企业把脉排忧解难。 </span>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140225/1-1402250Z123646.JPG\" style=\"width: 506px; height: 328px\" /></span></div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐院长一行受到了黑龙江蓝天能源发展股份有限公司总经理宋兴国、副总于兴友的热烈欢迎。徐院长一行不顾旅途劳顿,直接参观了厂区,了解生产工艺及设备试运行情况。在会议室徐院长首先介绍了研究院的概况,并表示愿意通过院地合作,利用能源院的技术优势为企业保驾护航。徐院长对生产工艺中不合理部分,提出建设性意见。对企业提出的原料预处理难题,表示可以通过技术合作联合攻关解决。宋兴国总经理对省里专家光临表示欢迎,并希望今后能长期合作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 下一步将就对原料预处理及工艺优化项目联合申报课题,展开合作研究。</span>', '', '', '113.9.10.33'),
(63, 10, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年3月12日黑龙江省科学院产业化处李骏处长一行到我院考察指导工作。李骏处长考察了我院改造后的综合实验楼和中试实验室并认真听取了我院近期的工作成果以及未来的发展计划。</span><br />\r\n<div style=\"text-align: center\">\r\n <br />\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140312/1-140312141014343.JPG\" style=\"width: 558px; height: 371px\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源院徐晓秋院长主持了会议,徐晓秋院长首先对产业化处对我院产业化工作给予的支持表示感谢,随后徐院长介绍了我院近期产业主体工作的总体情况,会上双方就能源院现有产业化工作进行了深入探讨。目前我院已研制出符合国Ⅴ标准的汽油添加剂系列产品和柴油添加剂等,与此同时,我院计划利用现有的秸秆无害化处理技术、生物质能源技术和洁净煤生产技术等,在环保重灾领域充分介入,为龙江百姓做出更大的贡献。</span><br />\r\n<div style=\"text-align: center\">\r\n <br />\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140312/1-140312141110525.JPG\" style=\"width: 558px; height: 371px\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 20px\">&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 李骏处长对我院近期的发展以及我院对环保领域做出的贡献给予了充分肯定和赞赏,同时鼓励我院进一步提升研究能力,不断发挥我院在龙江产业体系建设中的作用,为龙江环保领域提供更强有力的技术支撑。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140312/1-140312141155342.JPG\" style=\"width: 558px; height: 371px\" /></span></div>\r\n', '', '', '111.161.79.26'),
(65, 10, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为进一步了解黑龙江省各地农作物秸秆资源化利用现状2014年3月11日黑龙江省科学院产业化处处长李骏黑龙江省能源环境研究院院长徐晓秋黑龙江省能源环境研究院总工程师高德玉研究员以及科研办和生物质能源实验室的负责人一行5人赴望奎县和明水县进行实地考察。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/140318/1-14031Q01031493.jpg\" style=\"width: 600px; height: 503px\" /></span></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 考察期间,我方一行受到了望奎县、明水县科技局和当地企业的热烈欢迎,此行先后参观了国能望奎生物发电有限公司和常青集团明水长青环保能源有限公司,并与企业进行了项目对接。在洽谈过程中,产业化处处长李骏介绍了黑龙江省科学院的相关情况,院长徐晓秋介绍了能源环境研究院的研究领域,着重介绍了生物质能源实验室的科研成果与科研实力,随后,总工程师高德玉研究员了解了企业采用的工艺和经济效益等情况,并参观了企业的生产工厂。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过此次考察,我院对望奎县和青冈县的秸秆利用有了深入的了解,下一步将与两家企业针对秸秆资源化利用过程中的遇到的技术难题开展合作攻关。</span></p>\r\n', '', '', '111.161.79.26'),
(66, 10, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;为学习借鉴先进技术汲取科研经验我院选派的首批科研骨干于3月14日起程赴清华大学开展学习交流活动省科学院王钢副院长、省能源院徐晓秋院长和关春玲副院长亲自到场送行。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/140318/1-14031Q05955136.JPG\" style=\"width: 800px; height: 600px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王钢副院长要求此次赴清华学习的人员,要活跃思维,积极主动,认真学习对方的先进科研理念,并以此为指导,让一个点上的闪耀,带动一个面,受益一群人。最后祝此行人员在业务上和人生上都能有所收获。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 自去年9月我院与清华大学建立战略伙伴关系以来双方在高效环保的新型能源领域开展了一系列合作此次选派科研人员互访交流将进一步拓宽我院科研人员视野有利于提升我院的知名度和影响力是深化院际合作的又一成功举措。</span></p>\r\n', '', '', '111.161.17.64'),
(67, 10, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 根据2013年清华大学杨旭东教授来院指导工作期间双方达成的关于人才培养方面的协议我院从现在开始选派科研人员赴清华大学学习首批人员一行四人于3月14日启程。省科学院王钢副院长、能源院徐晓秋院长和关春玲副院长到场送行。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/140318/1-14031Q05955136.JPG\" style=\"width: 573px; height: 442px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王钢院长嘱咐大家,此次清华之行,是各位人生中精彩的一笔,要珍惜此次的学习机会,明确学习目的,认真学习对方的科研理念和先进技术,汲取科研经验,用于指导今后的工作,最后祝大家此次学习圆满成功。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此次赴清华大学的科研人员除学习外,还将参加清华大学科研项目的推广与实施工作,即北京市改善雾霾天气的一项举措--------北京市周边农村无烟村的建设工作,此项目的中试工作已经在我院完成。参加这项工作对该项目在我省的推广应用将起到重要作用。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 选派科研人员到清华大学学习,将进一步提高我院人员素质和水平,拓宽视野,真正做到资源分享、优势互补、科学定位、合作双赢,有利于提高我院的知名度和影响力,是 深化院校合作的新举措。</span></p>\r\n', '', '', '111.161.79.26'),
(68, 10, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3月27日上午我院2014年创新团队建设工作会议在能源院会议室召开各科研部门负责人出席会议。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/140327/1-14032G55020I9.JPG\" style=\"width: 550px; height: 365px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋院长主持会议并发言,在发言中,徐晓秋院长指出,要紧密围绕郭春景院长到我院查检创新团队时的讲话精神,把握好科研工作的切入点。徐院长分别从树立成熟的科研理念、完善选题机制、规范工作职能、努力寻求高质量合作等几个方面做出重要指示,为我院下一步的创新团队建设工作指明了方向。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 工作会议对我院创新团队的建设工作进行了全面部署,提出了明确的工作要求,确定了工作的步骤和方法,并解答了各科研部门关于团队建设方面的相关问题,此次会议的召开为我院下一步打造高品质科研创新团队打下了基础,做好了准备。</span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n &nbsp;<img alt=\"\" src=\"/uploads/allimg/140327/1-14032G5503T39.JPG\" style=\"width: 550px; height: 365px\" /></p>\r\n', '', '', '113.4.72.117'),
(69, 17, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我国页岩油中约含有40%左右的轻柴油馏分约含有45%左右的重柴油馏分,其十六烷值较高,经过精制后可作高速柴油机燃料。我国页岩重柴油馏分含有大量石蜡,也称为含蜡油,从中脱出的石蜡可作为商品出售。脱蜡油精制后可作为中速柴油机燃料,热裂化或加氢裂化的原料油。 页岩残油在室温下为黑色沥青状固体,直接作为燃料使用时,其凝固点过高。生产沥青时,沥青质量较差。但经过焦化能生产优质石油焦。因此,页岩残油一般作为焦化原料油。<br />\r\n 页岩油常温下为褐色膏状物带有刺激性气味。抚顺页岩油中的轻馏分较少汽油馏分一般仅为2.52.7360℃以下馏分约占4050含蜡重油馏分约占25 30渣油约占2030。页岩油中含有大量石蜡凝固点较高含沥青质较低含氮量高属于含氮较高石蜡基油。世界各地所产的页岩油由于组成和性质不同在密度、含蜡量、凝固点、沥青质、元素组成方面有很大差别但各地页岩油的碳氢重量比均在78左右是最接近天然石油最适于代替天然石油的液体燃料组成。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>组成页岩油的化合物主要有以下几类烃类、含硫化合物、含氮化合物、含氧化合物。页岩油中丰富的烷烃和烯烃可生产相关的高附加值化学品。C610馏分被利用来生产增塑剂C1013馏分中通过生物降解线形十二烷基苯所得的产品作为清洁剂原材料C1418馏分作为脂肪醇和烷基硫化盐产品的原材料重质烷烃馏分通过裂化以生产各种低分子质量的烯烃也可以获得沥青和碳纤维。页岩油硫化物主要为硫化氢、硫醇类、噻吩类及硫茚等有机硫及二硫化物。硫的资源广而廉价工业上、农业上、医药上、染织上和合成材料上的硫和硫化物的用途是非常多的。硫的用途主要是制酸主要是硫酸。页岩油中的含氮化合物可分为3类碱性的、弱碱性的和中性的。碱性含氮化合物主要是叔胺类的吡啶系、喹啉系和异喹啉系化合物弱碱性含氮化合物主要属于吡啶系化合物中性含氮化合物则主要是腈类R-CN。而页岩油中存在的含氮化合物主要为吡啶系氮化物。吡啶碱是多用途的化工原料它能溶解一般溶剂所难溶解的有机物尤其是轻质吡啶广泛用于制药工业。重质吡啶除了氧化制取菸碱酸外又是有色金属矿的浮选剂尤其对硫化物矿具有优良的富集性能。吡啶碱及硫酸吡啶络合物对稀酸侵蚀钢铁有一定的抑制作用可用做钢铁腐蚀抑制剂。页岩油中的含氧化合物有酸性含氧化合物和酚类以及中性含氧化合物。而页岩油中含氧化合物的利用主要以酚类化合物为主。酚类化合物是塑料、染料、合成纤维、电气绝缘、防腐蚀和药品等的主要化学原料。其中重质酚类可以作为铜、铅、锌磁铁等矿物的浮选剂也是制造木材粘合剂、农药杀虫剂等原料。影响页岩油柴油颜色及安定性的主要因素是其中含有大量的不饱和烃及氮、硫、氧等杂原子化合物要解决页岩油柴油质量合格问题关键在于如何脱除页岩油中的氮、硫、氧等杂原子化合物。天然石油的加工技术一般都适用于页岩油的加工。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>目前页岩油的加工方法主要分为加氢处理和非加氢处理2种。加氢处理页岩油可得到液体燃料包括柴油、石脑油和汽油生产的柴油稳定性好产品收率高没有&ldquo;三废&rdquo;排放但一次性投资大所需设备费用及操作费用也很高适合于大型炼油厂而非加氢处理过程设备投资小工艺操作简单费用较低适合中小型炼油厂非加氢处理一般包括酸碱精制、溶剂精制、吸附精制和加入稳定剂等。美国曾对绿河页岩油进行了大量加工方法的研究主要采用加氢预处理法加以改质以脱除砷、氮、硫等杂质然后在炼厂按常规的炼油加工工艺加工成各种油品巴西将页岩油经分馏分成轻馏分和重馏分轻馏分经催化裂化生产汽油重馏分作为燃料油页岩油加氢技术仅有澳大利亚SPP公司达到工业试验阶段通过加氢精制生产超低硫轻质燃料油。抚顺石油化工研究院FRIPP则于20世纪 50年代初就开展了页岩油加工流程的研究工作并提出了一些不同的加工方案。由于60年代天然石油的发现及大量开采页岩油生产逐渐萎缩没再进行研究。不过FRIPP早期研究成果为今后页岩油加工研究提供了宝贵的经验现将各项主要成果概述如下<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1、热加工-加氢精制流程&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>页岩油全馏分焦化、热裂化的直馏混合轻油用纯MoS2加氢精制获得了稳定的1号航煤并提高了液体收率页岩油全馏分焦化馏出油用W-Mo-NiAl系催化剂进行加氢精制可以得到宽馏分航煤约34对加氢油轻质汽车燃料68对全馏分和页岩焦13.7%(对全馏分)。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2、加氢精制-加氢裂化流程&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>19561958年对抚顺页岩油全馏分进行了加氢精制及加氢裂化小试试验。用MoS2 催化剂在26 MPa氢压下加氢精制液体收率可达97未考虑制氢用原料柴油收率为64.5生成油氮含量为0.05%,重油部分脱蜡后可以制取润滑油及石蜡;用 MoS2-W S2一段串联进行加氢裂化轻质油产率可达78.51号航煤可接近40生成油氮含量为0.01%。&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3、加氢精制-催化裂化流程&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1958年用抚顺页岩油全馏分高压固定床精制后含氮约0.08的生成油以低硅铝催化剂在试验室间歇固定床小型装置中进行了催化裂化试验结果汽油收率约35柴油收率31液体产率74。自2005年开始FRIPP针对能源短缺的现实又开展了以页岩油全馏分为原料采用FRIPP开发的具有自主知识产权的加氢裂化催化剂加氢精制催化剂和加氢裂化-加氢处理反序串联FHC-FHT组合工艺技术制取清洁燃料的研究。小试、中试结果表明可生产满足欧V标准的清洁柴油及低硫、优质石脑油且柴油收率高达81液体收率可达97化学氢耗为2.93%。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>酸碱精制是开发较早的精制技术,它包括酸洗、碱洗以及酸碱联合精制。酸洗一般采用浓硫酸、盐酸、磷酸等强酸,目的是脱除油中的胶质、含硫化合物,如硫醇类、硫酚类、硫醚、烷基二硫化物、噻吩和砜类,含氮化合物中的碱性氮可以全部洗去,部分非碱性氮化物、烯烃和芳烃也可以洗去;碱洗采用低浓度的碱液处理,目的是脱除油中的酸性物质,如硫醇、硫酚。&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>溶剂精制是利用某些溶剂对油品的理想组分和非理想组分的溶解度不同,有选择地从油品中脱除某些不安定组分,从而改善油品的安定性。选择合适的溶剂是溶剂精制的关键,应综合考虑溶剂的溶解能力和选择能力。 吸附精制是利用吸附剂对极性化合物较强的吸附作用,脱除油品中的氮化物以及含硫、含氧化合物,常用吸附剂有分子筛、硅胶、氧化铝、硅藻土和白土等。&nbsp;&nbsp;&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>添加稳定剂主要是为了防止芳烃、烯烃缩合和聚合成胶质沥青质,一般是由抗氧剂、分散剂、防腐剂、金属钝化剂等一种或几种添加剂组成的复合剂。其中,抗氧剂能够分解过氧化物,终止自由基生成,从而降低实际胶质,延长诱导期;分散剂能够迅速有效地分散沉渣颗粒,防止滤清器及喷油嘴堵塞;金属钝化剂使油品中溶解性金属离子活性降低,抑制其对油品氧化反应的催化作用,三者作用互补,共同起到改善页岩油柴油馏分稳定性的作用。&nbsp;<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>采用酸碱洗涤法来处理页岩油柴油馏分,结果表明,处理过程中产生的大量酸碱渣难以找到出路,因而未见其工业应用。&nbsp;用极性复合溶剂和醇类复合溶剂联合精制法精制抚顺页岩油轻柴油在很大程度上改善了精制油的安定性精制柴油收率达到84。石油大学重质油国家重点实验室用复合溶剂法精制抚顺页岩油粗柴油在很大程度上改善了精制油的安定性尤其是精制油的色度而且精制柴油收率达到80左右溶剂回收率达到97以上。</span></p>\r\n', '', '', '218.9.171.14'),
(70, 17, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 煤焦油行业是一个比较传统的行业尽管近30年来受到石油化工行业的激烈竞争煤焦油行业仍然具有较大的发展潜力尤其近几年来随着新材料和钢铁行业的发展煤焦油资源的高效利用再度引起人们的重视。我国是焦炭生产大国约占世界的36左右。焦炭的生产产生大量的副产物&mdash;&mdash;煤焦油我国煤焦油年产量约为500&mdash;600万t加工能力约为450万t在建、扩建、拟建项目能力约为200万t。目前共有约50多家企业进行煤焦油加工其中最为先进的是宝钢集团上世纪从日本引入的煤焦油加工装置加工规模为26万t/a产品品种有26种其次是鞍钢、武钢和本钢。除此以外的其他大多数的煤焦油生产相对分散且以土炼焦工艺为主这样不仅浪费了大量的不可再生资源也污染了环境。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>随着我国经济的不断发展和对环境保护要求的日益提高,煤焦油的深加工成为一个亟待解决的课题。从目前煤焦油行业的发展情况来看,国内的煤焦化行业正处在一次重要的整合变革时期,未来的煤焦油工业正向集中化、精细分离、深加工、新材料合成方向发展。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>一、我国煤焦油产量<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>煤焦油是以芳香烃为主的有机混合物含有1万多种化合物可提取的约200种目前有利用价值且提取经济合理的约50种其深加工所获得的轻油、酚、萘、洗油、蒽、咔唑、吲哚、沥青等系列产品是合成塑料、合成纤维、农药、染料、医药、涂料、助剂及精细化工产品的基础原料也是冶金、合成、建设、纺织、造纸、交通等行业的基本原料许多产品是石油化工中得不到的。因此煤焦深油加工可促进这些行业的发展。<br />\r\n 现代的炼焦生产过程中,从煤气中回收和初级化工产品主要有煤焦油、氨(主要是硫铵)和粗苯3种。煤焦油的产量是根据炼焦生产配煤的种类不同而变化配煤的挥发份越高焦油回收率越多焦油产量越大。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>二、国内外煤焦油加工现状<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1、生产规模<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>日本、德国、法国、俄罗斯等国家的单套焦油蒸馏装置的能力都在10&mdash;50万t/a。从理论上讲能力越大规模效益越好。在资源有限的情况下选择10万t/a的加工装置能最大限度发挥产品的加工价值。只有焦油收集量足够多的时候才能建设5O万t/a焦油加工装置。国内单套焦油蒸馏装置有0.61.235 1015万t/a各种规模。3万t/a以上的规模均为连续蒸馏工艺小于3万t/a的规模都是间歇蒸馏工艺。出现不同加工规模的原因有①焦油加工厂自身焦油产量不同按自产焦油建设相应的规模②未作为一个产业来考虑焦油的加工仅作为一个焦化厂的附带处理单元③大规模焦油加工的技术水平不够④环境保护和能量利用没有达到发达国家的重视程度。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2、产品方案<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国外煤焦油加工有3种模式生产一是全方位多品种提纯和配制各种规格和等级的产品二是在煤焦油加工产品的基础上向着精细化工、染料、医药方面延伸的深加工产品三是重点加工沥青类产品。<br />\r\n 第一种模式的代表是德国吕特格公司。从焦油中分离、配制的产品有220多种萘有4个级别树脂有5个级别蒽有7个级别沥青粘结剂及浸渍料有20个级别。可以根据市场要求在同一装置上改变操作参数生产不同级别的产品达到装置的多功能性。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>第二种模式的代表是日本的住金化学仅对煤焦油中纯化合物进行提纯或延伸试制和生产的产品有180种如酚类衍生物有21种喹啉及衍生物有32种萘衍生物有60种。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>第三种模式的代表有日本三菱株式会社、美国的RiUy公司、澳大利亚Koppem公司都在煤焦油沥青加工上有特色的产品。这些公司对煤焦油蒸馏的其它馏分均不进行加工以混合油的形式出售仅对蒸馏产生的沥青进行加工。因为煤焦油加工过程中沥青产率在50以上做好沥青加工提高沥青的附加值就能够保证焦油加工项目的整体效益。<br />\r\n 国内煤焦油加工产品主要是酚类、萘、洗油、粗蒽、沥青等。各厂的产品质量和数量都基本类似,导致焦油加工的效益平平,与国外差距较大。其主要原因有以下几方面:各焦油加工装置的规模普遍偏小;高质量、高附加值产品较少;生产企业适应市场能力较差;焦油深加工产品的市场有待开发,特别是新产品推向市场时,其难度较大。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3、工艺流程<br />\r\n 国内外焦油蒸馏的工艺大同小异,都是脱水、分馏,但国外的工艺比国内要多样化。国内的焦油蒸馏工艺与国外工艺相比较,差距并不大,只是适用的场合不同。只要对国内工艺的设备、仪表控制、能量利用方面做一些改进工作,就能够变成先进和实用的工艺。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4、环保水平<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>环保主要是指对焦油加工过程中所产生的废水、废气、废渣的处理。焦油加工产生的废水,国内外所采取的措施基本相同,都是集中收集,送焦化厂污水处理装置处理后排放,所不同的是国内污水处理后的指标要差一点。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>废气处理主要是指焦油加工过程中的放散气和沥青烟气的处理。国外焦油加工厂收集这部分废气,并集中到洗涤塔,净化、降温后送管式炉焚烧。有些焦油加工厂的油槽顶部还进行氮封,其放散气排出的可能性就更小。而国内只有个别焦油加工装置对放散气进行集中收集处理,大部分装置都是自由放散。所以在废气处理上应改进。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>焦油加工产生的废渣只有焦油渣,各国处理模式都一样,均是集中收集后混配到煤中。国内配到煤中的设施较差,有些厂随地抛弃现象严重。但只要严格管理,认真处理,达到国外处理水平是完全可以实现的。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>5、节能水平<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>节能降耗是装置的重要指标。焦油加工是高能耗过程,国外在水、蒸汽、煤气消耗方面控制较好,采用空冷、冷热流体换热、多级循环水、低温减压蒸馏、热量回收蒸汽等技术,但电的消耗反而比国内还高。随着国内能源结构的调整,多使用电,减少水、蒸汽和煤气的消耗是一个必然趋势。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>6、装备水平<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>装置的装备水平与机械制造、自控水平密切相关。国内焦油加工的装备水平与国外差距较大,主要原因是过多考虑项目投资额;高温运转设备、耐腐蚀材质、高温高粘度介质的检测仪表等难以找到合适的国内生产厂;即使是国外引进的设备,维修水平相差较远。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>三、国内煤焦油加工技术进展<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1、焦油蒸馏技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内多采用常压、一塔式、切取两混或三混馏分的蒸馏工艺。而引进的煤焦油蒸馏装置有如下特点:采用连续脱水.脱轻油馏分塔为减压操作塔顶采出酚油、压力为13.3kPa塔底为软化点为65℃的软沥青采用方箱管式炉出口焦油温度为330℃余热利用好其中软沥青与焦油换热、各馏分采用蒸汽发生器产生0.3MPa的低压蒸汽馏分塔塔顶的油汽采用空气冷凝冷却器并为减压操作可节能约15一50减压抽出的尾气与分离酚水均送往管式炉焚烧馏分塔材质选用抗腐蚀低碳合金钢。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2、工业萘蒸馏技术<br />\r\n 目前国内多数焦化厂生产的是不酸洗95工业萘只有回收喹啉类的厂家才生产稀酸洗95工业萘。另外生产95工业萘的原料也有不同窄馏分(即萘油馏分)、四混馏分(轻、酚、萘、洗)、三混馏分(酚、萘、洗)、两混馏分(萘、洗)等。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>工业萘蒸馏工艺可分为常压间歇釜式精馏、减压间歇釜式精馏、常压双釜双塔连续精馏、常压双炉双塔连续精馏、常压单炉双塔连续精馏、常压单炉单塔连续精馏、常加压单炉双塔连续精馏等。从精馏塔的实际塔板数来看开始为5O层、后增加到636470层。其精馏塔的塔型有填料塔(瓷环、鲍尔环、波纹板等)、圆泡罩塔、条形泡罩塔、斜孔板塔、浮阀塔等。目前多数大型焦化厂采用70层浮阀塔以两混或三混馏分为原料的常压双炉双塔连续精馏工艺。常压单炉、双塔连续工艺较普遍而宝钢的常压、加压单炉双塔连续工艺的能耗最低。随着计算机的应用单炉、单塔连续精馏工艺有发展前途。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3、焦油蒸馏所获馏分的洗涤技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>这里指的是碱洗脱酚或酸洗脱喹啉装置可分别获得酚盐与硫酸喹啉。一般是先脱酚、后脱喹啉也可只脱酚、不脱喹啉。原料则根据焦油蒸馏切取馏分不同而异有窄馏分、宽馏分之分。洗涤工艺可间歇或连续操作。洗涤设备有空气搅拌、机械搅拌、泵混合、静态混合器、喷射混合器等型式。后两种洗涤器较先进洗涤效果好便于连续操作与自动控制。碱洗脱酚的主要控制因素有用碱浓度、洗涤温度、分离时间、洗涤的级数等。各馏分的洗涤要求馏分含酚小于0.5。宝钢引进的是全连续碱洗脱酚工艺碱液浓度较低为8一10轻油、酚油均为一段脱酚脱酚效率分别为38和88。其轻油脱酚对酚钠盐起到净化的作用。萘油则采用三段脱酚脱酚效率79脱酚设备采用静态混合器。另外只对脱酚酚油与甲基萘油分别进行连续酸洗脱喹啉加酸浓度为30一39效率分别为38.5和52.2%。设备也采用静态混合器。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4、粗蒽制取技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内各厂均采用间歇操作工艺设备为转鼓结晶机。为了提高粗蒽的收率开发了两段结晶法。宝钢引进的工艺采用全连续程序控制操作包括蒽油装人、冷却结晶、放料、离心等工序计44h。后改进为自然与强制冷却相结合缩至35h结晶颗粒大设备采用立式冷却结晶机有利于实现连续操作所得粗蒽的含蒽高达38而含油很低。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>5、酚钠盐分解技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内大多采用硫酸分解法缺点是有浓酚水产生较难处理。20世纪70年代开发了烟道废气分解法仍有二次污染问题。宝钢引进工艺采用高炉煤气分解法按两级分解操作其分解率为98并配备有苛化装置可获得浓度为8一10的苛性碱液苛化率为77无二次污染问题。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>6、精萘制取技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内原来一直采用浓硫酸精制法缺点是产生大量废酸很难处理且能耗高、收率低。20世纪80年代开发了间歇操作的分步结晶法并得到普遍应用。近年改为采用&ldquo;Praobd&rdquo;工艺技术为箱式分部结晶精萘产率为90并全部按程序自动控制、连续操作。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>7、粗酚精制技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内多采用常压脱水一减压脱渣、精馏的工艺获得的酚类产品质量较差。引进的采用5塔连续操作脱水脱渣精馏、第6个塔为间歇操作的工艺流程。各塔均为减压操作苯酚的回收率高达42比国内要高10左右产品质量特别好有特号苯酚(结晶点40℃以上),邻位甲酚(结晶点29℃以上),问、对甲酚,二甲酚等。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>8、粗吡啶与粗喹啉精制技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内均采用烧碱液中和分解硫酸喹啉国外多采用液氨中和分解粗吡啶与粗喹啉的精制都是采用间歇操作、共沸脱水、减压精馏的工艺流程。与国内不同的是引进装置采用6塔间歇脱水、真空精馏操作并采用了空冷器可节约冷却用水。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>9、精蒽、精咔唑与蒽醌生产技术<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>国内都采用以粗蒽为原料经溶剂一精馏法处理获得精蒽再催化氧化制取蒽醌。宝钢引进Praobcl技术即以I蒽油为原料先加入溶剂进行分布结晶(即:溶剂结晶法),进行减压蒸馏,获得精蒽(含蒽达95以上)与精咔唑(纯度为90以上)。蒽醌生产工艺是瑞士Ciba Geigy公司的技术经多段固定床催化氧化、多段冷却获得纯度为99以上的蒽醌。与国内相比工艺与设备方面的水平也差不多。特点是整个生产过程所产生的废液很少可以送往活性污泥装置处理产生的废气量较大但它可以经回收、过滤再经废气燃烧装置破坏后放散故不会给环境带来危害。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>煤焦油进一步深加工水平取决于投资和市场,一般而言,随着加工深度的增加,产品的附加值增高,同时投资也增大。在深加工中要考虑设备上的灵活性,根据市场需要及时调整产品质量品种。煤焦油的集中加工是现代化工业发展的必然趋势,也是国家的一项技术政策,今后发展方向是如何提高资源利用率、扩大品种、搞深度加工,对产品结构延伸,致力于新产品的开发、减少污染,加强国内外信息交流,扩大对外开放,加大引资的力度,为企业的发展注入活力,组建煤焦油化学品信息与技术协作网。加强煤焦化企业、科研教学、信息研究机构的协作,使资源得到合理利用。</span></p>\r\n', '', '', '218.9.171.14'),
(71, 17, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年争论最热烈的能源话题莫过于&ldquo;页岩气革命&rdquo;。而随着隆冬来临,对这场&ldquo;革命&rdquo;的关注热度也在降温。激烈的&ldquo;唱多派&rdquo;声音有些嘶哑了,&ldquo;务实派&rdquo;的冷静思考开始占上风。这种转变有点&ldquo;成也萧何败也萧何&rdquo;的味道。最早鼓吹&ldquo;页岩气革命&rdquo;的美国陆续传来利空的消息。虽然近年来页岩气开发的声势不小可参与进去的开采商收益却持续恶化。美国天然气巨头XTO&nbsp;Energy的CEO对外透露&ldquo;我们如今亏得裤子都没了,页岩气生意根本不赚钱,所有人都在亏钱&ldquo;。据报道一些大牌能源公司都在下调来年页岩气产量计划。有统计称2012年美国境内的挖掘机数量下降至422台比一年前下降48%创下20年来降幅最大的纪录。工程机械使用数量的增减趋势经常被用来衡量该地区基础工业项目(比如矿业、房地产等)的开工热度。一直站在旁侧静观其变的俄罗斯开始冷嘲热讽。俄罗斯科学院一位专家说,即便美国页岩气已经规模化开采,其成本相比传统的常规天然气还是偏高,而这种资源不适合远距离运输,采气区资源消耗过快,再加上生态破坏等难题,都将使得这场&ldquo;革命&rdquo;越发显得虚幻。由于担心地质灾害,美国纽约州和特拉华盆地已叫停了该地区的页岩气项目。《金融时报》警告,页岩气开发使得美国再度兴起&ldquo;廉价化石燃料之风&rdquo;,但短期或中期的经济收益却可能使该国陷入长期依赖化石能源的&ldquo;陷阱&rdquo;。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>所谓页岩气就是从页岩层中开采出来的天然气。它与煤层气、致密砂岩气一起被称为非常规油气资源的三大品种。美国从19世纪就开发过商用页岩气矿井不过直到21世纪其开采技术才日渐成熟。2006年之后国际能源市场经历了一轮&ldquo;大牛市&rdquo;,这使得页岩气开采变得有利可图。金融危机之后,奥巴马倡导美国&ldquo;能源独立&rdquo;战略,要大幅度降低对海外能源的依赖程度。从杯盘狼藉的华尔街流出来的资金,发现了页岩气这个&ldquo;富矿&rdquo;。一时间,各种投机资金扮上新能源的&ldquo;新娘妆&rdquo;,成群结队要下嫁页岩气这个几乎被遗忘的&ldquo;穷小子&rdquo;。&nbsp;20世纪80年代因下注页岩气开发而破产的美国房地产商乔治&middot;米歇尔也被请了出来。美国一家能源协会授予这位90多岁的老人&ldquo;终身成就奖&rdquo;。事实上,米歇尔用于页岩气开发的水平钻井技术和分段水力压裂技术,算不上什么&ldquo;技术革命&rdquo;,它只是在长期钻井经验中积累下来的一套相对成熟的钻探工艺,证明了只要投入足够多的资金,&ldquo;从石头里榨出的血&rdquo;也有可能相当廉价。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>页岩气开采的确使美国能源结构发生了巨变。页岩气在美国天然气产量的比重从1996年的1.6%猛增至2010年的约23%并使美国在2009年超过俄罗斯成为世界第一大天然气生产国和资源国。据预测美国有可能在2021年成为天然气净出口国。但这场美国&ldquo;革命&rdquo;是否能在世界其他地区复制,还存在很大疑问。我国城市金融研究所的报告显示,页岩气在全球范围开发还有众多障碍:首先,地质条件的极大差异页岩气开采受阻;其次,页岩气在使用过程中要消耗大量水资源,而它必须使用的化学品可能对蓄水层造成污染;第三,天然气价格的持续低迷会打击企业的投资热情;第四,在北美以外市场,普遍缺乏足够的储存、液化和传输等非常规天然气的基础设施,这将大大限制市场开发进程。在这些难题待解的情况下,如果美国的页岩气&ldquo;革命&rdquo;开始进入&ldquo;挤泡沫&rdquo;阶段,其他国家的情况恐怕就更不乐观了。<br />\r\n 从各方数据对比,中国的页岩气储量似乎并不比美国少。中国是仅次于美国的能源消费大国,一些为中国页岩气&ldquo;革命&rdquo;鼓与呼的声音,由此可以理解了。但冷静下来会发现,页岩气开发对环境条件的&ldquo;硬束缚&rdquo;恐怕不是中国的禀赋条件所能承受的。中国人均占有土地和水资源的数量远逊于美国生态环境更为脆弱。平均而言一口页岩气井需要20万吨水向页岩中注入的压裂液中含有大量化学成分对地下水资源的影响存在很大不确定性。而中国的页岩气富集区域又往往处在水资源较为紧张的内陆、盆地地区。在页岩气的&ldquo;十二五&rdquo;规划中,像华北地区、准噶尔盆地、吐哈盆地、鄂尔多斯盆地这样的缺水地区,即便资源潜力不小,但要真正落实开采,则需慎之又慎。有业内专家提醒,在辽宁、陕西和四川等地,页岩气的大规模开发很可能会出现与工业和农业&ldquo;争水&rdquo;的难题。另须格外关注的是,中国目前的页岩气开采技术还不过关。如上所述,目前成熟的页岩气开采技术主要是基于美国特定区域和地质特点而长期积累下来的钻探工艺。别说一时半会儿不可能从美国引进技术,就算能把技术拿来,是否适应中国特殊的地质特性和环境,也存在很大疑问,更不要说由此而增加的巨额开采成本了。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>除此之外,必须在商业上对页岩气的合理性有精确的论证。美国页岩气&ldquo;革命&rdquo;的前提是有6300家大大小小的天然气生产商参与的&ldquo;充分动员型&rdquo;的市场化模式。这与中国只有几大能源企业控制市场的局面差异很大对风险的承受能力也大不相同。美国能源工业发展了将近两百年油气管道密如蛛网约有50万公里中国即便这些年发展很快也不过区区6万公里。管网基础建设不能一蹴而就不能及时商品化的页岩气资源显然会让开采商面临尴尬。曾任职石油部勘探司副司长的老专家查全衡就公开撰文称如果中国不能找到一条比美国&ldquo;更省地、省钱、省水,更环保&rdquo;的开发方法,就不要过早谈什么&ldquo;页岩气革命&rdquo;,省得&ldquo;被美国忽悠&rdquo;。从本质上看,美国的页岩气&ldquo;革命&rdquo;,是应对金融危机后国家经济&ldquo;脾虚伤肾&rdquo;的一个应急手段。美国金融危机,表面上看是华尔街心火旺盛导致了&ldquo;脑中风&rdquo;,实质上是国家经济&ldquo;产业空心化&rdquo;、&ldquo;消费金融化&rdquo;情况严重,长期积累下来,造成经济肌体的脾胃消化不良、精气不足,终致&ldquo;肾阴虚亏&rdquo;。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>这几年美联储不停地印钱,给美国经济&ldquo;滋补血气&rdquo;,暂时稳定了金融市场,但流动性增加之后资金必须有出口。同时,美国经济需要降低成本,增加产品竞争力,启动所谓&ldquo;再工业化&rdquo;战略,那么能源价格是否足够低廉则是个瓶颈。页岩气开采算不上一项重大科技创新,但它的启动,恰恰在投机资本流向和降低制造业成本两个战略方向上达成了一致,这才有了&ldquo;革命&rdquo;。从货币层面上看,页岩气&ldquo;革命&rdquo;给贬值风险加剧的美元注入了新的变量,但这绝非一种可持续的正向变量。作为世界经济的&ldquo;龙头&rdquo;,美国经济应当以持续的科技创新为牵引力,拉动世界经济增长,从而让其美元重新&ldquo;实心化&rdquo;&mdash;&mdash;以再造实业来建立必要的纸币信用。但就像华尔街一度创造的&ldquo;石油-美元&rdquo;捆绑游戏一样,因其本性使然,他们仍然要将货币与页岩气等大宗资源捆绑,通过操纵和炒作资源类的大宗商品,制造资源产品的泡沫,来控制全球经济,并维系其&ldquo;美元帝国&rdquo;的秩序。但是这种经济再循环的结果,最终不过是&ldquo;下一个2008&rdquo;罢了。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>与原油不同,天然气一直没有形成全球性的市场,只有欧洲、北美和亚洲三大市场,这三大市场的天然气价格长期存在&ldquo;落差&rdquo;。美国能源自给的预期,以及页岩气&ldquo;革命&rdquo;给液化天然气贸易增加的想象空间,有可能将全球天然气市场联系在一起,打破原来以管道天然气为主的贸易方式。因此,页岩气&ldquo;革命&rdquo;背后的潜台词可能是:当美国在中东受挫而不得不进行战略&ldquo;收缩&rdquo;时,它对世界石油的控制力降低了,但它反而必须要在天然气这种新兴的大宗资源商品上争取主导权和定价权,以便让美元重获信任。治疗&ldquo;美国病&rdquo;的合理逻辑应该是&ldquo;健脾补肾&rdquo;。&ldquo;健脾&rdquo;就是通过收入调节来促进消费,让陷入困境的美国中产阶级再次挺起胸膛,而不是郁闷到搞什么&ldquo;占领华尔街&rdquo;的街头运动。&ldquo;补肾&rdquo;就是强化国家科研创新能力,持续增加制造业的技术水平,沿着当年他们搞&ldquo;阿波罗登月&rdquo;计划的道路前进。但是,页岩气&ldquo;革命&rdquo;这种搞不好很可能搞成敲骨吸髓一般的透支性资源开采,却在大行其道。美国经济可能本来只是&ldquo;阳虚&rdquo;,这样下去,反而有了搞成&ldquo;阴阳两虚&rdquo;的趋势。笔者认为,一种理性的国家能源长期战略不能被急功近利的思维左右。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>以此反观中国,在全球化经济分工链条中,中国是实业国家,而不是资源国家。中国具有全球最充足的生产能力和商品供应能力,同时又是潜在的最具成长性的消费市场。一方面,中国对资源的需求是强烈的;另一方面,我们换取资源的能力也是强大的。&ldquo;实业换资源&rdquo;,仍是我们安身立命的根本和长期战略。历史上,仅仅靠提供廉价资源获得利润从而实现繁荣的国家,不可能是真正的强国,繁荣也不会持久。因为它们很快就透支了自身的资源,走向衰落。只有那些拥有强大的甚至是不可替代的制造能力和创新能力的国家,那些通过技术的不断升级,持续开发出新能源、开拓出新的经济增长方式的国家,才能走在世界前列。从这个意义上说,对于美国的页岩气&ldquo;革命&rdquo;,中国从战略上不必重视过度。远期看,真正的能源&ldquo;革命&rdquo;必须伴随着跨时代的技术创新,下一轮能源大变革将从&ldquo;采集能源&rdquo;向&ldquo;制造能源&rdquo;过渡,以核聚变为基础的核能研发和普及利用,才是真正的大方向。中国能源战略的主攻方向应该在这里。在战术上,中国又不能完全忽视页岩气。毕竟,在中短期内它对提升美国经济竞争力确实有所帮助。我们要审慎观察它对美国经济复苏进程的真实影响。同时,在目前世界格局中,要想不被别人在资源上&ldquo;卡脖子&rdquo;要挟,你自己必须要&ldquo;立得住&rdquo;。中国缺乏在全球大宗商品和资源贸易体系中的定价权。因此,我们应该积极参与国内以及国外的页岩气市场的调研、开发,不论在传统能源领域还是在页岩气这种新能源领域,中国在立足自身的同时,更要坚定地&ldquo;走出去&rdquo;,要去积极争取定价权。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>还须认清的问题是,页岩气&ldquo;革命&rdquo;以及由此延伸的页岩油开发,一定程度上推翻了美国一度鼓吹的&ldquo;石油峰值论&rdquo;。&ldquo;人类不是因为缺少石头才离开石器时代,也绝不会因为缺少石油才离开石油时代。&rdquo;此话不假。这不,石油并未枯竭,常规的、非常规的天然气已经开始给全球经济输血了。这再次证明,真正的&ldquo;资源瓶颈&rdquo;,不在地表或地下,而是在人的大脑里。只要技术进步,总会有新的资源被发现、被利用。技术的小进步,会有小批量的资源被利用;技术的大进步和大跨越,就会带来大批量的资源。对于中国的大型能源企业而言,应该在各种&ldquo;革命&rdquo;论中保持头脑清醒。对它们的最大挑战,不在于跟踪某种&ldquo;错综复杂的趋势&rdquo;,而是明确能源开发的大方向,进行提前布局。中国经济的崛起必然同时伴随一次能源&ldquo;革命&rdquo;那一定不会在石油、天然气这种传统化石能源层面发生。像中石油、中石化、中海油这些主导着国家命脉的大企业是否考虑过在花掉数百亿美元投资去世界各地购买传统能源公司的同时留出一部分资金去投资类似核聚变、核引擎这样真正影响长远的科技攻关项目呢2012年中国已经进行了两轮页岩气项目招标引得能源行业热闹异常。因为有民营企业中标一些不着调的评论把这说成是中国&ldquo;能源体制变革的重大时刻&rdquo;。请不要忘记,能源行业的性质决定了它的投资周期长、资金投入大,历来都是大风险项目,这和体制并无直接联系。况且,总不能期望中国的页岩气开采重蹈山西小煤窑泛滥的覆辙吧。奉劝那些为页岩气项目抓狂的投资者最好谨慎些。有句业内人士的戏言,在新年里似乎应格外上心:不要&ldquo;投进去的是鳄鱼,出来的是壁虎&rdquo;。<br />\r\n &nbsp;</span><br />\r\n &nbsp;</p>\r\n', '', '', '218.9.171.14'),
(72, 17, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年争论最热烈的能源话题莫过于&ldquo;页岩气革命&rdquo;。而随着隆冬来临,对这场&ldquo;革命&rdquo;的关注热度也在降温。激烈的&ldquo;唱多派&rdquo;声音有些嘶哑了,&ldquo;务实派&rdquo;的冷静思考开始占上风。这种转变有点&ldquo;成也萧何败也萧何&rdquo;的味道。最早鼓吹&ldquo;页岩气革命&rdquo;的美国陆续传来利空的消息。虽然近年来页岩气开发的声势不小可参与进去的开采商收益却持续恶化。美国天然气巨头XTO&nbsp;Energy的CEO对外透露&ldquo;我们如今亏得裤子都没了,页岩气生意根本不赚钱,所有人都在亏钱&ldquo;。据报道一些大牌能源公司都在下调来年页岩气产量计划。有统计称2012年美国境内的挖掘机数量下降至422台比一年前下降48%创下20年来降幅最大的纪录。工程机械使用数量的增减趋势经常被用来衡量该地区基础工业项目(比如矿业、房地产等)的开工热度。一直站在旁侧静观其变的俄罗斯开始冷嘲热讽。俄罗斯科学院一位专家说,即便美国页岩气已经规模化开采,其成本相比传统的常规天然气还是偏高,而这种资源不适合远距离运输,采气区资源消耗过快,再加上生态破坏等难题,都将使得这场&ldquo;革命&rdquo;越发显得虚幻。由于担心地质灾害,美国纽约州和特拉华盆地已叫停了该地区的页岩气项目。《金融时报》警告,页岩气开发使得美国再度兴起&ldquo;廉价化石燃料之风&rdquo;,但短期或中期的经济收益却可能使该国陷入长期依赖化石能源的&ldquo;陷阱&rdquo;。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>所谓页岩气就是从页岩层中开采出来的天然气。它与煤层气、致密砂岩气一起被称为非常规油气资源的三大品种。美国从19世纪就开发过商用页岩气矿井不过直到21世纪其开采技术才日渐成熟。2006年之后国际能源市场经历了一轮&ldquo;大牛市&rdquo;,这使得页岩气开采变得有利可图。金融危机之后,奥巴马倡导美国&ldquo;能源独立&rdquo;战略,要大幅度降低对海外能源的依赖程度。从杯盘狼藉的华尔街流出来的资金,发现了页岩气这个&ldquo;富矿&rdquo;。一时间,各种投机资金扮上新能源的&ldquo;新娘妆&rdquo;,成群结队要下嫁页岩气这个几乎被遗忘的&ldquo;穷小子&rdquo;。&nbsp;20世纪80年代因下注页岩气开发而破产的美国房地产商乔治&middot;米歇尔也被请了出来。美国一家能源协会授予这位90多岁的老人&ldquo;终身成就奖&rdquo;。事实上,米歇尔用于页岩气开发的水平钻井技术和分段水力压裂技术,算不上什么&ldquo;技术革命&rdquo;,它只是在长期钻井经验中积累下来的一套相对成熟的钻探工艺,证明了只要投入足够多的资金,&ldquo;从石头里榨出的血&rdquo;也有可能相当廉价。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>页岩气开采的确使美国能源结构发生了巨变。页岩气在美国天然气产量的比重从1996年的1.6%猛增至2010年的约23%并使美国在2009年超过俄罗斯成为世界第一大天然气生产国和资源国。据预测美国有可能在2021年成为天然气净出口国。但这场美国&ldquo;革命&rdquo;是否能在世界其他地区复制,还存在很大疑问。我国城市金融研究所的报告显示,页岩气在全球范围开发还有众多障碍:首先,地质条件的极大差异页岩气开采受阻;其次,页岩气在使用过程中要消耗大量水资源,而它必须使用的化学品可能对蓄水层造成污染;第三,天然气价格的持续低迷会打击企业的投资热情;第四,在北美以外市场,普遍缺乏足够的储存、液化和传输等非常规天然气的基础设施,这将大大限制市场开发进程。在这些难题待解的情况下,如果美国的页岩气&ldquo;革命&rdquo;开始进入&ldquo;挤泡沫&rdquo;阶段,其他国家的情况恐怕就更不乐观了。<br />\r\n 从各方数据对比,中国的页岩气储量似乎并不比美国少。中国是仅次于美国的能源消费大国,一些为中国页岩气&ldquo;革命&rdquo;鼓与呼的声音,由此可以理解了。但冷静下来会发现,页岩气开发对环境条件的&ldquo;硬束缚&rdquo;恐怕不是中国的禀赋条件所能承受的。中国人均占有土地和水资源的数量远逊于美国生态环境更为脆弱。平均而言一口页岩气井需要20万吨水向页岩中注入的压裂液中含有大量化学成分对地下水资源的影响存在很大不确定性。而中国的页岩气富集区域又往往处在水资源较为紧张的内陆、盆地地区。在页岩气的&ldquo;十二五&rdquo;规划中,像华北地区、准噶尔盆地、吐哈盆地、鄂尔多斯盆地这样的缺水地区,即便资源潜力不小,但要真正落实开采,则需慎之又慎。有业内专家提醒,在辽宁、陕西和四川等地,页岩气的大规模开发很可能会出现与工业和农业&ldquo;争水&rdquo;的难题。另须格外关注的是,中国目前的页岩气开采技术还不过关。如上所述,目前成熟的页岩气开采技术主要是基于美国特定区域和地质特点而长期积累下来的钻探工艺。别说一时半会儿不可能从美国引进技术,就算能把技术拿来,是否适应中国特殊的地质特性和环境,也存在很大疑问,更不要说由此而增加的巨额开采成本了。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>除此之外,必须在商业上对页岩气的合理性有精确的论证。美国页岩气&ldquo;革命&rdquo;的前提是有6300家大大小小的天然气生产商参与的&ldquo;充分动员型&rdquo;的市场化模式。这与中国只有几大能源企业控制市场的局面差异很大对风险的承受能力也大不相同。美国能源工业发展了将近两百年油气管道密如蛛网约有50万公里中国即便这些年发展很快也不过区区6万公里。管网基础建设不能一蹴而就不能及时商品化的页岩气资源显然会让开采商面临尴尬。曾任职石油部勘探司副司长的老专家查全衡就公开撰文称如果中国不能找到一条比美国&ldquo;更省地、省钱、省水,更环保&rdquo;的开发方法,就不要过早谈什么&ldquo;页岩气革命&rdquo;,省得&ldquo;被美国忽悠&rdquo;。从本质上看,美国的页岩气&ldquo;革命&rdquo;,是应对金融危机后国家经济&ldquo;脾虚伤肾&rdquo;的一个应急手段。美国金融危机,表面上看是华尔街心火旺盛导致了&ldquo;脑中风&rdquo;,实质上是国家经济&ldquo;产业空心化&rdquo;、&ldquo;消费金融化&rdquo;情况严重,长期积累下来,造成经济肌体的脾胃消化不良、精气不足,终致&ldquo;肾阴虚亏&rdquo;。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>这几年美联储不停地印钱,给美国经济&ldquo;滋补血气&rdquo;,暂时稳定了金融市场,但流动性增加之后资金必须有出口。同时,美国经济需要降低成本,增加产品竞争力,启动所谓&ldquo;再工业化&rdquo;战略,那么能源价格是否足够低廉则是个瓶颈。页岩气开采算不上一项重大科技创新,但它的启动,恰恰在投机资本流向和降低制造业成本两个战略方向上达成了一致,这才有了&ldquo;革命&rdquo;。从货币层面上看,页岩气&ldquo;革命&rdquo;给贬值风险加剧的美元注入了新的变量,但这绝非一种可持续的正向变量。作为世界经济的&ldquo;龙头&rdquo;,美国经济应当以持续的科技创新为牵引力,拉动世界经济增长,从而让其美元重新&ldquo;实心化&rdquo;&mdash;&mdash;以再造实业来建立必要的纸币信用。但就像华尔街一度创造的&ldquo;石油-美元&rdquo;捆绑游戏一样,因其本性使然,他们仍然要将货币与页岩气等大宗资源捆绑,通过操纵和炒作资源类的大宗商品,制造资源产品的泡沫,来控制全球经济,并维系其&ldquo;美元帝国&rdquo;的秩序。但是这种经济再循环的结果,最终不过是&ldquo;下一个2008&rdquo;罢了。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>与原油不同,天然气一直没有形成全球性的市场,只有欧洲、北美和亚洲三大市场,这三大市场的天然气价格长期存在&ldquo;落差&rdquo;。美国能源自给的预期,以及页岩气&ldquo;革命&rdquo;给液化天然气贸易增加的想象空间,有可能将全球天然气市场联系在一起,打破原来以管道天然气为主的贸易方式。因此,页岩气&ldquo;革命&rdquo;背后的潜台词可能是:当美国在中东受挫而不得不进行战略&ldquo;收缩&rdquo;时,它对世界石油的控制力降低了,但它反而必须要在天然气这种新兴的大宗资源商品上争取主导权和定价权,以便让美元重获信任。治疗&ldquo;美国病&rdquo;的合理逻辑应该是&ldquo;健脾补肾&rdquo;。&ldquo;健脾&rdquo;就是通过收入调节来促进消费,让陷入困境的美国中产阶级再次挺起胸膛,而不是郁闷到搞什么&ldquo;占领华尔街&rdquo;的街头运动。&ldquo;补肾&rdquo;就是强化国家科研创新能力,持续增加制造业的技术水平,沿着当年他们搞&ldquo;阿波罗登月&rdquo;计划的道路前进。但是,页岩气&ldquo;革命&rdquo;这种搞不好很可能搞成敲骨吸髓一般的透支性资源开采,却在大行其道。美国经济可能本来只是&ldquo;阳虚&rdquo;,这样下去,反而有了搞成&ldquo;阴阳两虚&rdquo;的趋势。笔者认为,一种理性的国家能源长期战略不能被急功近利的思维左右。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>以此反观中国,在全球化经济分工链条中,中国是实业国家,而不是资源国家。中国具有全球最充足的生产能力和商品供应能力,同时又是潜在的最具成长性的消费市场。一方面,中国对资源的需求是强烈的;另一方面,我们换取资源的能力也是强大的。&ldquo;实业换资源&rdquo;,仍是我们安身立命的根本和长期战略。历史上,仅仅靠提供廉价资源获得利润从而实现繁荣的国家,不可能是真正的强国,繁荣也不会持久。因为它们很快就透支了自身的资源,走向衰落。只有那些拥有强大的甚至是不可替代的制造能力和创新能力的国家,那些通过技术的不断升级,持续开发出新能源、开拓出新的经济增长方式的国家,才能走在世界前列。从这个意义上说,对于美国的页岩气&ldquo;革命&rdquo;,中国从战略上不必重视过度。远期看,真正的能源&ldquo;革命&rdquo;必须伴随着跨时代的技术创新,下一轮能源大变革将从&ldquo;采集能源&rdquo;向&ldquo;制造能源&rdquo;过渡,以核聚变为基础的核能研发和普及利用,才是真正的大方向。中国能源战略的主攻方向应该在这里。在战术上,中国又不能完全忽视页岩气。毕竟,在中短期内它对提升美国经济竞争力确实有所帮助。我们要审慎观察它对美国经济复苏进程的真实影响。同时,在目前世界格局中,要想不被别人在资源上&ldquo;卡脖子&rdquo;要挟,你自己必须要&ldquo;立得住&rdquo;。中国缺乏在全球大宗商品和资源贸易体系中的定价权。因此,我们应该积极参与国内以及国外的页岩气市场的调研、开发,不论在传统能源领域还是在页岩气这种新能源领域,中国在立足自身的同时,更要坚定地&ldquo;走出去&rdquo;,要去积极争取定价权。<br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>还须认清的问题是,页岩气&ldquo;革命&rdquo;以及由此延伸的页岩油开发,一定程度上推翻了美国一度鼓吹的&ldquo;石油峰值论&rdquo;。&ldquo;人类不是因为缺少石头才离开石器时代,也绝不会因为缺少石油才离开石油时代。&rdquo;此话不假。这不,石油并未枯竭,常规的、非常规的天然气已经开始给全球经济输血了。这再次证明,真正的&ldquo;资源瓶颈&rdquo;,不在地表或地下,而是在人的大脑里。只要技术进步,总会有新的资源被发现、被利用。技术的小进步,会有小批量的资源被利用;技术的大进步和大跨越,就会带来大批量的资源。对于中国的大型能源企业而言,应该在各种&ldquo;革命&rdquo;论中保持头脑清醒。对它们的最大挑战,不在于跟踪某种&ldquo;错综复杂的趋势&rdquo;,而是明确能源开发的大方向,进行提前布局。中国经济的崛起必然同时伴随一次能源&ldquo;革命&rdquo;那一定不会在石油、天然气这种传统化石能源层面发生。像中石油、中石化、中海油这些主导着国家命脉的大企业是否考虑过在花掉数百亿美元投资去世界各地购买传统能源公司的同时留出一部分资金去投资类似核聚变、核引擎这样真正影响长远的科技攻关项目呢2012年中国已经进行了两轮页岩气项目招标引得能源行业热闹异常。因为有民营企业中标一些不着调的评论把这说成是中国&ldquo;能源体制变革的重大时刻&rdquo;。请不要忘记,能源行业的性质决定了它的投资周期长、资金投入大,历来都是大风险项目,这和体制并无直接联系。况且,总不能期望中国的页岩气开采重蹈山西小煤窑泛滥的覆辙吧。奉劝那些为页岩气项目抓狂的投资者最好谨慎些。有句业内人士的戏言,在新年里似乎应格外上心:不要&ldquo;投进去的是鳄鱼,出来的是壁虎&rdquo;。<br />\r\n &nbsp;</span><br />\r\n &nbsp;</p>\r\n', '', '', '218.9.171.14'),
(73, 16, '<p>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 经过近半年的筹备根据《中国工会章程》规定和黑科院工会字20133号文件批复的要求我院党委于<font size=\"5\">1月20日</font>组织召开了黑龙江省能源环境研究院全体职工大会通过民主选举产生工会主席1人工会委员4人。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随着工会的成立,我院建制已经趋于完善,实现了党、政、工、团的体系结构。职工可以通过工会对能源院的发展提出建议和意见,反映工作、生活、学习等方面的合理诉求,切实保障职工权益。同时根据工作需要,结合我院实际,适时举办有益职工身体健康的活动,丰富职工业余文化生活,改善职工的福利待遇,使我院职工队伍成为一支高素质的、充满活力的优秀集体,从而有力地促进我院的改革与发展。</span></p>\r\n', '', '', '1.189.181.133'),
(74, 10, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为深入开展厌氧发酵技术的应用研究交流IMUS技术的推广经验2014年4月17日阿尔伯塔创新能源环境研究院李筱梅博士应邀到能源院访问在能源院徐晓秋院长、高德玉总工程师及相关科研人员的陪同下参观了IMUS中试系统并与科研人员进行了交流对于面临的技术难题李博士提出了宝贵意见。</span></p>\r\n<p>\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n &nbsp;<img alt=\"\" src=\"/uploads/allimg/140418/1-14041Q31URc.JPG\" style=\"width: 607px; height: 440px\" /></p>\r\n<p>\r\n <br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 上午10点李博士做了题为&ldquo;用家庭垃圾生产沼气的挑战&rdquo;的学术报告首先介绍了德国、加拿大、中国部分城市垃圾的现状和处理方式随后阐述了加拿大阿尔伯塔省政府在应对温室气体排放的管理政策、城市生活垃圾的收集、管理等的做法和经验并同与会人员进行了讨论与交流。最后对家庭垃圾厌氧发酵产沼气的研究及设想进行了介绍并与徐晓秋、高德玉就IMUS系统的未来发展方向及其在处理废弃物等领域的应用等方面进行了深入的交流与探讨为IMUS的推广和开展进一步相关合作、交流奠定了基础。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140418/1-14041Q31F5J9.JPG\" style=\"width: 596px; height: 388px\" /></span></p>\r\n', '', '', '1.189.194.6'),
(75, 10, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年3月24日,郭院长带队调研我院学科创新团队工作作出重要指示调整研究方向找准主线抓住切入点确立目标建设创新团队。我院领导班子对郭院长的指示特别重视先后三次召开会议布置、检查创新团队落实工作。2014年3月27日,我院召开院工作会议,对创新团队工作进行动员和布置。院领导班子全体中层干部和创新团队负责人参加会议。徐晓秋院长讲话让大家遵照郭院长指示理清思路找准切入点确立目标咬住青山不放松用几年时间研发出几个有影响力的大成果。具体要对团队成员、研究方向团队目标等内容进行调整。2014年4月21日, 我院召开了创新团队工作落实检查会议对各团队整改情况进行通报讨论团队目标的合理性措施的可操作性等议题同志们畅所欲言气氛热烈开阔了思路统一了目标对团队建设工作更有信心了。2014年5月19日,我院又召开团队建设工作阶段成果汇报会议并邀请相关领域专家给团队把关、点评。各创新团队以PPT的形式展示团队研究领域的现状和战略分析研究内容的竞争力分析团队近远期工作安排及工作目标等内容。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院创新团队工作整改措施:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、理清思路寻找研发切入点。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、明确方向确定目标。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3、强化团队成员学习培养建立学术交流机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4、开办学习园地年轻人相互学习努力提高外语水平。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5、建立团队例会制度讨论问题统一思想。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6、寻找领域内科研团队的短板努力提升为我团队的强项。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140604/1-140604110F93W.JPG\" style=\"width: 569px; height: 362px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/140604/1-140604110I9460.JPG\" style=\"width: 570px; height: 365px\" /></span></div>\r\n', '', '', '1.189.197.114'),
(76, 16, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为进一步提高我院职工的消防安全意识检验与巩固职工掌握灭火器材扑灭火灾的能力6月3日下午我院举行了消防演习活动各部门防火负责人及职工约&nbsp;15&nbsp;人参加了演习。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140605/1-1406051021203R.JPG\" style=\"width: 515px; height: 342px\" /></span></div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 演习由我院消防兵转业的郭晓东同志为职工面授有关消防安全知识及现场示范,到场的所有职工都十分认真地听取了讲解。在整个过程中,郭晓东同志给大家讲解了各种消防器材的使用常识,以及发生火灾等情况的扑救方法,并现场指导大家使用灭火器,让大家掌握了灭火器的使用方法。整个演习过程组织严密,操作规范,既让参加演习的职工熟悉了灭火器的使用方法,又增强了职工的安全防火意识。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140605/1-140605102204a7.JPG\" style=\"width: 515px; height: 342px\" /></span></div>\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过此次消防培训和灭火演练,使我院职工增长了防火、灭火知识,增强了使用消防器材的操作能力,切实提高了消防安全意识。</span>', '', '', '113.4.83.157'),
(77, 9, '<span style=\"font-size: 20px\">院各部门:<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 省科学院系统乒乓球赛拟定于6月27日召开比赛项目设定为团体比赛男单、女单、男双、女双和混双请各部门乒乓球好手踊跃报名。<br />\r\n<br />\r\n报名地点综合办<br />\r\n联 系 人:赵&nbsp;&nbsp; 娴</span><br />\r\n<br />\r\n<div style=\"text-align: right\">\r\n <span style=\"font-size: 20px\">综合办&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />\r\n 2014年6月5日&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></div>\r\n', '', '', '113.4.83.157');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(78, 17, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年原油依旧维持箱体震荡格局走势与品种的季节性规律密切相关。在3月、9月形成两个高点在10、11月整体维持弱势低点曾触及82美元/桶。总体上是下行的趋势。2012年国际液化气市场则基本呈&quot;M&quot;型走势大致分为三个较为明显的阶段第一阶段在1月至3月份。年初伊朗同西方国家的关系升级中东石油运输要道面临封锁威胁国际原油供应担忧一再推高油价中东冷冻货市场整体供应略显紧张此阶段远东需求尚好供需基本面利好推高冷冻货市场价格。第二阶段在3月中旬至7月份。3月中旬之后低迷行情未有明显好转且需求逐步减少压力货市场价格震荡走低4月份油价稳中走跌5月份开始油价大幅走低跌势惊人。受全球经济疲弱、美国原油库存以及欧债危机等利空因素的影响投资者心态不振国际液化气市场持续震荡走跌。第三阶段在7月份之后华南冷冻货丙烷到岸价格和华南压力货离岸价低至年度最低点。主要原因除自身基本面利好不足国内需求改善不佳随着原油市场震荡不减液化气市场业者观望心态持续并加重。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2013年中国国内LPG产量大约为2257.8236万吨相比2012年2186.0826万吨的产量来说仍保持增长势头同比涨幅为3.3%但与12年6.1%的涨幅相比明显放缓。产量增加的主要原因可归结为国内炼厂原油加工能力的提升和液化气深加工投产的单位增多。而涨幅放缓的原因为部分深加工厂家生产成本过高和原料紧张等原因无奈停工或者转嫁下游商品主力炼厂检修和因为环境问题整改减产减量。面临销售不佳的压力越来越多的厂家开始关注液化气深加工将液化气作为生产乙烯、芳烃等产品的原料。2013年中国LPG进口总量338万吨与2012年的322万吨总进口量相比稍有增加但增幅并不明显主要消费区域集中在华南和华东。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 近几年全球LPG 产量增长较快2011 年全球LPG 产量达2.41 亿吨同比增长2.56%预计到2014 年全球LPG 产量将增长到2.75 亿吨。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中国是全球 LPG 行业发展较快的国家之一产量从2003 年的1256 万吨增长到2012 年的2180.90万吨年复合增长率达7.14%;2013 年1-3 月中国LPG 产量为555.40 万吨同比增长4.13%。中国LPG 的消费增长也较快从2003 年的1958 万吨增长到2012 年的2419 万吨年复合增长率为2.68%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 前瞻产业研究院LPG行业研究小组分析指出随着我国 LPG 在城市燃料、汽车和化工原料等领域的应用扩大市场对LPG 的需求将不断增加结合2006-2012年中国LPG 消费量数据预计2013 年中国LPG 消费量将达到2540 万吨增长率为5%2014 年将在2013 年的基础上继续增长消费量将超过2650 万吨。在原油加工量增长的同步带动下国内LPG产量跟随攀升 1-11月国内液化气产量为2085万吨预计全年LPG产量将达到2275万吨比上年总产量2230万吨增加2%左右,再创历史新高,但增速正在放缓。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、全国液化石油气消费量稳步增长,增速有所放缓<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 近十年间我国LPG表观消费量年均增长近5%。近两年国内液化石油气市场受到天然气、二甲醚等替代能源的冲击发展势头有所减缓但LPG在化工原料、车用替代能源等新领域的发展使得其继续保持旺盛的生命力。据国家统计局的数据显示2013年液化气进口量约402万吨较上年增加近20%。液化气出口量为122万吨下降近3.2%。<br />\r\n近年来伴随着中国天然气消费量的强劲增长LNG进口量也大幅上升。海关总署数据显示2013年全年LNG进口量约为1700万吨同比增长20.1%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二、进口来源多元化趋势明显<br />\r\n目前我国LNG进口来源地已扩充至近10个国家。2013年我国从卡塔尔进口LNG量约占总进口量的35%为我国LNG进口量最大的来源地从澳大利亚进口LNG约占我国总量进口的20%占比大幅下降。另外由于近两年印度尼西亚和马来西亚LNG产量的增长我国从东南亚地区进口量也出现明显上升。值得一提的是我国从非洲国家进口的LNG也呈现出快速增长的态势。<br />\r\n<font size=\"5\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font>三、国内LNG接收站陆续投产LNG接收站布局趋于均衡<br />\r\n随着LNG的快速发展和中国进口量的增多沿海LNG接收站的建设正在提速。上半年东莞九丰能源的LNG码头开始投产10月份中国海洋石油广东珠海LNG码头开始投产11月份中国石油河北曹妃甸开始投产共新增750万吨LNG接受能力截至2013年底我国共有9个LNG接收站投入运营年处理LNG能力达2630万吨较上年底增长约40%。<br />\r\n<font size=\"5\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font>四、2014年我国进口LNG海运市场预测<br />\r\n随着LNG的快速发展和中国进口量的增多中国沿海LNG接收站的建设正在提速。当前除中国已经建成分布在辽宁、广东、福建、上海、江苏、浙江和河北的9个接收站外按照当前规划2014年全国还将有4个LNG接收站投入运营。从国内LNG进口量来看由于我国居民对天然气的消费需求正处于高增长期预计2014年我国LNG进口量将继续保持20%以上的高速增长,总量将再创历史新高。<br />\r\n<font size=\"5\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font>到2014年全球液化石油气(LPG)产量将从2010年的2.41亿吨增长到2.75亿吨。LPG主要来自于炼油、原油开采和天然气开采所占的比例分别为41%、24%和35%。炼油业目前是LPG的首要来源但预计到2014年全球75%的LPG产量将来自天然气。</span>', '', '', '113.4.83.157'),
(79, 17, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 以煤炭为主的能源消耗结构,是我国空气污染不断恶化的主要原因。在全国上下寻找治理污染特别是治理雾霾突破口的关键时期,发展清洁的替代能源,推动我国能源结构的调整优化,对大气污染防治具有至关重要的作用。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>一、调整能源结构已刻不容缓<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>过去十余年,我国经济规模持续快速提升,能源消耗总量也随之迅速扩大,能源生产与能源消费总量均已居世界首位,且呈现&ldquo;煤炭独大&rdquo;的严峻格局。2004年国务院发布的《能源中长期发展规划纲要》(2004&mdash;2020)提出2020年煤炭消费总量为24亿吨实际上2010年我国煤炭消费就已超过30亿吨2013年更接近40亿吨并以每年3亿吨的速度持续增长。自1984年成为全球最大的煤炭消费国始到2012年我国已占全球煤炭消费量的47.8%2013年进一步提升到接近全球一半。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>相比煤炭而言较为&ldquo;清洁&rdquo;的天然气和石油,在我国能源生产与消费总量中比重偏低,且对外依存度过高,使我国的能源安全面临着空前复杂的国际形势。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>我国境内经济活动并不均匀95%以上的经济活动集中在1/3的国土尤以京津冀、长三角、珠三角为甚。在经济活动密集的150万平方公里国土上燃煤、燃油等能源消费占全国的70%以上相当于在每平方公里土地上每年燃烧2000吨标准煤。如此大密度燃烧高污染的煤炭等能源使空气质量持续恶化无法避免。加上每年新增近2000万辆机动车我国大气污染日益呈现煤烟型污染与汽车尾气污染叠加的重度复合污染态势。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>历史事件及科学研究早已警告世人,雾霾等空气污染问题对健康极具危害。我国目前严峻的环境形势也表明,优化调整能源结构既是保证能源安全的需要,更是全体国民身体健康的需要。发展清洁&ldquo;绿色&rdquo;能源,加快能源替代的进程,优化能源结构已刻不容缓。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>二、选择替代能源要考虑&ldquo;三重约束&rdquo;<br />\r\n<span style=\"font-size: 20px\"><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span>优化能源结构,关键在于选择适合国情的可替代能源。替代能源的选择必须充分考虑我国能源领域的&ldquo;三重约束&rdquo;。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>化石能源资源结构与生态环境要求的脱节。选择我国的替代能源躲不过多煤、少油气的能源资源约束。美国能源消费结构中煤炭消费比重已缩至32%天然气消费比重由20%增至32%,页岩气取代煤炭成为仅次于石油的第二大能源资源,能源结构总体比较&ldquo;清洁&rdquo;。我国化石能源资源呈现典型的&ldquo;富煤、贫油、少气&rdquo;特征目前煤、油、气等一次能源消费比重约为811。2013年石油对外依存度达57.72%天然气对外依存度达31.6%。经济发达的东部地区过度依赖西部输煤,消耗高品质能源来传输低品质能源。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>清洁能源环境优势与综合成本劣势的对立。近20年来可再生能源发电技术不断取得突破规模经济日益凸显。例如印度由于日照条件好太阳能发电成本已降至历史新低接近煤炭发电价位。我国东部经济发达地区日照条件并不理想且雾霾天增多难以大规模建立太阳能光伏电站而分散的家用光伏发电系统需要20年才能回收成本。由于并网政策、补贴政策、信贷政策、规划政策落实不到位导致我国风电企业成本高企风电行业&ldquo;弃风&rdquo;现象依然严峻。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>能源需求刚性约束与能源替代目标的矛盾。近年来我国能源需求增速下降主要源于经济增长趋缓而非能源弹性下降一旦经济增长提速能源需求仍有可能增长较快。经济增长对能源总量的刚性需求及短期内能源强度难以大幅下降的现实使相对低廉的煤炭等化石能源产销较为强劲。非化石能源在我国一次能源中的消费比重从2009年的8%左右增至2013年的9.8%历时五年仅提升1.8个百分点。&ldquo;十二五&rdquo;规划要求我国2015年非化石能源在一次能源中消费比重达到11.4%此目标恐难完成2020年15%的目标更难落实。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>三、发展替代能源的优先顺序<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>综合对上述三重约束的分析,我国发展替代能源的优先顺序应该是:<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>以电为主电为中心。加大电力生产是我国电力行业的一项中长期战略任务由核能、可再生能源转化的电能全面取代化石能源只是时间问题未来应大力推广大城市以电代煤、以电代油。相比电煤散烧煤才是雾霾的主要源头应以集中煤电取代分散低效的散烧煤使用在终端尽快普及用电。以电代煤、以电代油会加剧东部地区电力供需矛盾虽可加大新一代核电投资但其建设周期长新能源短期内规模难以突破建设特高压电网调入西部能源基地富余电力不失为一个快速见效的办法。2014年国家电网投资将超过3800亿元其中特高压电网投资约占1/3其建设将有利于全国范围内能源资源的优化配置。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>推广用氢气为支撑。氢是宇宙中最为丰富的元素在构成宇宙的物质中约占75%。与化石能源相比,氢具有很多优点:资源丰富,水就是地球上名副其实的&ldquo;氢矿&rdquo;;环保、高效,是一种能量密度与质量比值极高的能源,且燃烧零污染。只要按章操作,氢气和其他燃料一样安全。目前,氢制备、氢储存、氢使用的安全性都已解决。氢是很好的储能载体,利用电网富余电力制氢并储能是一举两得。日本已开发出较完善的运用太阳能等可再生能源制氢并供燃料电池车(FCV)使用的系统,利用生物质能产业化制氢也已取得突破。除了可再生能源制氢,大力发展页岩气、煤层气、煤制气等气体能源,用于交通、发电、供热,也将是我国能源替代的重要支撑。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>推广分布式能源以新能源生产消费为补充。2010年之前全球累计新增发电容量的25%30%为分布式发电。美国是世界上开发新能源和可再生分布式能源发电最多的国家到2020年将有一半以上的新建商用或办公建筑使用分布式电源同时有15%的现有建筑改用分布式电源。分布式能源技术也是我国可持续发展的必然选择,随着技术的成熟、规模的扩大以及相关政策的扶持,未来分布式能源电力的成本将变得更具吸引力,分布式能源即将进入规模实施阶段。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>四、要从战略高度形成替代能源发展的合力<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>要从民族存亡角度&ldquo;限煤&rdquo;,确保煤炭峰值提前。英国伦敦通过&ldquo;限煤&rdquo;摆脱&ldquo;雾都&rdquo;称号的经验表明减少煤炭依赖、优化能源结构至关重要。目前我国的煤炭使用量已大大超过环境容量因此煤炭峰值的出现不宜太晚最好到2020年前后。有必要借鉴美国大规模制定清洁能源法律法规的经验以法律的形式严格限制高污染能源的使用。近期内煤炭可以集中用于发电逐步减少直至不再用于供热并优先淘汰终端直接分散燃烧的用煤方式。像北京这样的特大城市应借鉴伦敦、纽约煤炭占比为零的经验彻底将燃煤发电及供暖退出历史舞台。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>要运用多种经济手段,提高清洁能源的经济可行性。美国、德国与日本等发达国家的经验表明,价格调整、政府补贴、直接投资、优惠信贷和减免税收等政策实施能够有效地推动新能源产业的发展。我国应尽快运用定价、税收、补贴、信贷等多种经济政策,通过在能源供应和需求领域产生经济杠杆效应,发挥对清洁能源的激励和对传统能源的约束作用,提高清洁能源替代传统能源的经济可行性,加速实现非化石能源的替代目标。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>要建设智能电网,为可再生能源的发展提供技术可行性。从本世纪初开始,基于新能源技术、分布式发电技术、大规模储能技术、超远距离超大规模输电技术和智能控制技术的快速发展,世界电网进入智能电网阶段。发展智能电网,能够有效解决我国新能源和分布式电源的并网问题,改善能源结构,保护自然生态,有利于最大限度实现对化石能源的替代。未来必须加快我国智能电网的发展,在凝聚共识的基础上,科学规划、统筹推进、重点突破。</span>', '', '', '113.4.83.157'),
(80, 17, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 生物燃料通常指生物液体燃料,是重要的交通替代燃料。相对于其他替代燃料,生物燃料具有与现有基础设施兼容性好、能量密度高、清洁低碳、资源可再生且资源基础广阔等优点,而且已具有规模化生产应用的实际经验,可望成为重型卡车、航运和航空等长途交通工具的最经济可行的清洁替代燃料。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>20世纪90年代以来为保障能源安全、应对气候变化、保护环境、促进农业发展许多国家制定实施积极战略和政策推动生物燃料的规模化开发利用。我国在上述各领域也面临着巨大挑战也亟待制定符合我国国情的战略和政策促进生物燃料的规模化发展。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>为此,国家发展改革委能源研究所开展了&ldquo;中国可再生能源规模化发展研究&rdquo;,通过考察分析国际上生物燃料产业发展趋势和政策实践,评估我国生物燃料的发展潜力和重大挑战,进而探讨我国生物燃料规模化发展的战略任务、总体思路和发展路径,并提出促进我国生物燃料产业发展的政策措施建议。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>一、国际政策趋向&mdash;&mdash;扶持与监管并重<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>20世纪90年代以来为促进农业经济、改善大气质量、减排温室气体以美国、欧盟国家和巴西为代表的许多发达国家和发展中国家制定实施了规模空前的生物燃料项目和积极的扶持政策全面推动了生物燃料产业的蓬勃发展。虽然2008年金融危机以来受到油价低位运行和市场需求疲软的影响但各国扶持政策保持延续并继续深化大型石油企业开始大力介入技术研发取得积极进展应用领域扩展到航空领域推动了生物燃料产业加快升级转型和继续扩大规模。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>目前,以粮糖油为原料的燃料乙醇和生物柴油(通常被称为传统生物燃料,或第一代生物燃料)已进入商业化发展阶段,以农林业有机废弃物、专用非粮能源植物/藻类微生物等生物质为原料的先进生物燃料或第二代、第三代生物燃料正在建设一批示范项目预计在今后10年内逐步实现商业化。2009年全球燃料乙醇和生物柴油产量分别达到5760万吨和1590万吨绝大部分集中在美国、巴西和欧盟地区。据国际能源机构IEA的生物燃料路线图分析2010年全球生物燃料产量约1000亿升满足全球3%道路交通燃料需求2050年生物燃料可满足全球交通能源需求的27%可年减排21亿吨二氧化碳。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>虽然生物燃料在近年来发展迅速并初步展示了广阔的发展潜力,但也开始引发了众多争议和批评,主要是生物燃料的节能减排效益和发展潜力、以及对粮食安全和生态环境的威胁,反映了生物燃料产业自身及其社会经济含义的复杂性。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>近年来,一些领先国家和国际组织积极推动建立扶持与监管并重的政策体系,促进生物燃料产业健康持续发展。在扶持政策方面,<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>早期主要采取了投资补贴、减免消费税和燃油税等措施近年来美国和欧盟许多国家陆续引入了再生燃料标准RFS等强制性市场份额政策并特别规定先进生物燃料的具体发展目标和更高贡献度。在监管政策方面近年来欧美国家开始规定生物燃料的最低温室气体减排率,调整农业及土地政策,推动建立可持续生产准则和产品认证体系;包括我国在内的部分发展中国家则禁止使用或严禁扩大使用粮食原料,以确保可持续发展。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>二、我国生物燃料生产潜力大<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>由于我国人口保持增长、饮食水平的持续提高,而优良耕地减少、水资源相对短缺,利用传统粮糖油原料发展生物燃料的潜力在我国非常有限。利用非粮原料将是我国发展生物燃料的根本方向。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>我国早在上世纪90年代即开展以甜高粱、小桐子为原料的生物燃料生产技术研究&ldquo;十一五&rdquo;以来,大批企业,包括大型企业,积极投身非粮生物燃料产业研发。目前,我国利用薯类、甜高粱、小桐子等非粮作物/植物生产燃料乙醇和生物柴油的技术已进入示范阶段。木薯和甘薯乙醇技术也可实现商业化应用广西于2007年建成年产20万吨木薯乙醇项目。甜高粱乙醇技术开发取得实质性进展已开发出高品质杂交种籽自主开发的发酵工艺和技术达到实用水平并在黑龙江省建成年产5000吨乙醇的示范装置。木质纤维素乙醇在原料预处理、纤维素转化以及酶制剂生产成本等方面均取得实质性进展在黑龙江、河南等地建成了年产数百吨和数千吨乙醇的示范生产装置。生物柴油产业化示范工作的时机也已基本成熟但受废油资源收集利用量、油料植物种植基地建设进度的限制目前只有少数生物柴油企业实现规模化持续生产也没有正式进入车用成品油的主要流通使用体系。其他第二代生物燃料如合成燃料技术目前仍处于实验室研究和小规模中试阶段。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>目前我国还没有全面深入开展生物质能资源潜力评价。初步估算利用废糖蜜、食品加工业和饮食业废油、棉籽油等废弃糖油类资源估计可满足年产80万吨燃料乙醇和200万吨以上生物柴油的原料需求。可能源化利用的农作物秸秆和林业剩余物年产量目前约2.5亿吨且可望继续增加在中长期可满足年产30005000万吨第二代生物燃料的原料需求。另外还可通过推广良种良法、品种替换、开发劣质边际土地等途径发展能源植物,例如甜高粱、木薯、麻疯树等。相关土地评估显示我国现有约3200万7600万公顷边际性土地但适合能源植物生长的土地资源有待查清。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>总体估算我国以非食用粮糖类农作物为原料的燃料乙醇生产潜力近中期约为1500万吨以废油为原料的生物柴油生产潜力近中期约200万吨以油料林为原料的生物柴油生产潜力在中长期约为数百万吨以纤维素和藻类生物质为原料的先进生物燃料生产潜力在长期可达每年数千万吨。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>通过发展传统生物燃料估计在近中期具有满足近10%道路交通燃料的潜力如果实现第二代生物燃料技术的商业化则我国生物燃料在长远期具有满足20%30%左右道路交通燃料需求的潜力。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>三、4大问题待解<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>未来我国生物燃料产业发展将面临以下4大挑战<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1原料资源基础仍然薄弱。实际剩余可用边际土地资源潜力不清缺乏科学评价和规划原料植物的选育栽培和规模种植经营技术、产业和管理体系有待完善原料资源来源多样、品质不一。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2技术产业发展水平不高。技术工艺水平较为落后资源利用和环境保护水平不高缺乏符合国内原料特点的整套技术工艺和装备第二代生物燃料技术离工业化生产还有较大差距产业模式仍不成熟有待于建立与&ldquo;三农&rdquo;和现代林业和谐发展的产业模式;可持续生产技术规范和模式尚未建立,仍有待于开展良种选育及混交林营建技术等研究,制定保障高能效、高减排的技术标准和规范。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3缺乏竞争力和抗风险能力。原料成本居高不下甚至还有所攀高规模经济、范围经济和资源综合利用效益偏低经济竞争力较弱存在较大市场风险。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4扶持政策和市场环境不完善。非粮生物燃料的市场准入和产品流通体系不通畅无法进入车用成品油经销体系和终端消费市场行业监管薄弱存在社会、经济和自然生态风险扶持价格和财税政策不完善产品推广使用市场环境不健全各项基础设施不完善封闭区域强制使用制度影响跨地区车辆使用性能指定企业在特定封闭区域销售影响公平竞争。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>四、生物燃料产业链重心向种植和原料生产倾斜<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>我国生物燃料的规模化生产利用有赖于加快实现产业的转型升级。我国生物燃料产业在今后应完成如下几个战略任务。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>1转变扩大原料结构夯实资源基础。要从主要利用食用粮糖油农产品等原料转向各种非粮原料在避免威胁粮食安全前提下有效扩大原料结构夯实资源基础。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>2完善优化产品结构提高经济效益。根据原料特点通过开发整合相关技术工艺、拓展延伸产业链提高资源梯级利用和综合利用水平开发高增加值副产品和新产品实现从单一原料和产品模式转向可利用多种原料、生产多种产品的综合精炼技术的转变从而完善优化产品结构显著提高经济效益。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>3调整产业组织结构提高产业效率。根据非粮生物燃料产业的农林业属性、多样性和地域性等特点把产业链重心向能源植物种植和原料生产倾斜建立&ldquo;分散加工转换+集中精炼调配&rdquo;的经营模式,充分调动发挥当地农民和政府的积极性。应鼓励中下游的大中型企业与地方农民、中小企业和相关组织建立稳定互利的协作关系和新型农工一体化产业运作模式。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>4转变产业发展理念确保可持续发展。要创新产业发展理念实现宏观层次上的农业系统、工业系统和环境系统之间的整合全面促进可持续发展。从粗放式、破坏性的土地开发和原料植物种植模式转向集约式、保护性的土地开发和原料植物种植模式减少生态风险和土壤中碳泄漏风险全面考察、评估和削减生物燃料的原料生产、加工转换和生产应用的能耗水耗、常规污染物和温室气体排放。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>5健全产业政策体系促进产业健康发展。根据技术进展和产业化进程、原料和产品结构、产业组织结构特点、可持续发展理念和要求建立健全涵盖资源开发保障、加工转换、产品流通和使用等完整环节的产业监管和激励政策建立灵活高效的市场机制确保生物燃料试点工作和规模化发展得以健康有序推进。<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>&ldquo;十五&rdquo;期间,我国出台了陈化粮燃料乙醇生产和车用乙醇汽油试点的政策陈化粮乙醇和变性燃料乙醇享受跟随汽油的联动价格政策和一系列税费优惠政策生产企业的亏损实行定额补贴。经济激励方面中央财政将对符合相关要求和标准的林业原料基地补助标准为200元/亩对农业原料基地补助标准原则上为180元/亩。</span>', '', '', '113.4.83.157'),
(81, 9, '<span style=\"font-size: 20px\">院各部门:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;2014年已经过半为及时总结上半年工作情况并对下半年工作做好规划和部署我院决定召开上半年工作会议具体事宜如下<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、会议时间暂定为6月末-7月初。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二、会议地点:能源院会议室。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 三、参会人员:院领导班子、各部门负责人。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 四、会议内容:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、上半年工作计划完成情况汇报包含2014年度重点工作推进情况汇报<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、下半年工作计划及安排。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 五、会议议程:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、各部门负责人汇报发言时间不超10分钟<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、院领导讲话。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 六、相关要求:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、请各部门负责人根据会议要求提前认真做好准备整理成书面材料交综合办要求汇报内容要详实工作计划要细致不说空话套话。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、参会人员应准时参加会议不得缺席。<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 综合办&nbsp;&nbsp;&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二〇一四年六月十二日</span>', '', '', '61.180.252.105'),
(82, 9, '<span style=\"font-size: 20px\">院各部门:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;2014年已经过半为及时总结上半年工作情况并对下半年工作做好规划和部署我院决定召开上半年工作会议具体事宜如下<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、会议时间暂定为6月末-7月初。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二、会议地点:能源院会议室。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 三、参会人员:院领导班子、各部门负责人。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 四、会议内容:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、上半年工作计划完成情况汇报包含2014年度重点工作推进情况汇报<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、下半年工作计划及安排。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 五、会议议程:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、各部门负责人汇报发言时间不超10分钟<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、院领导讲话。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 六、相关要求:<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、请各部门负责人根据会议要求提前认真做好准备整理成书面材料交综合办要求汇报内容要详实工作计划要细致不说空话套话。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、参会人员应准时参加会议不得缺席。<br />\r\n<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;综合办&nbsp;&nbsp;&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;二〇一四年六月十二日</span>', '', '', '61.180.252.105'),
(83, 16, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 为了隆重庆祝中国共产党成立93周年我院党委组织全体党员及群众开展党史知识测试等活动祝福党的生日。活动以&ldquo;共筑中国梦&middot;喜迎建党93周年&rdquo;为主题通过回顾93年来党的光辉历程、认真学习贯彻落实党的十八大精神并开展党史知识测试进一步推进学习型、服务型、效能型、活力型和阳光型党组织建设进一步强化我院党员的党性观念进一步发挥党委组织的先进作用和党员的先锋模范作用推动我院发展实现新的跨越。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140701/1-140F10F0349B.JPG\" style=\"width: 519px; height: 346px\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/140701/1-140F10F12XF.JPG\" style=\"width: 519px; height: 346px\" /></span></div>\r\n', '', '', '122.159.26.70'),
(84, 16, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 由院机关党委举办的&ldquo;省科学院职工乒乓球赛&rdquo;在省科学院石油化学研究院举行共70多名选手参加了比赛。比赛分三组为团体比赛。我院共有6名队员参加比赛虽然大家平时没有经过专门的训练但都能积极快乐的投入到比赛当中。本次比赛采用单淘汰制各单位强手在比赛中施展精彩的球技博来喝彩声不断。最终自然与生态研究所取得了团体冠军。我院虽然没有进入决赛但6名队员积极配合相互鼓励发挥出最好的水平体现了我院的团队精神。这次比赛不仅为众多院所职工提供了一个相互交流、切磋球技的机会还提供了一个展示自己不断提高的机会也也激发了大家的拼搏热情和团结精神。</span>', '', '', '122.159.26.70'),
(85, 10, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年6月28日黑龙江省能源环境研究院科研办主任王志成同志参加了省科技厅组织召开的&ldquo;温室、沼气产品创新联盟暨产学研合作对接会&rdquo;。会议主要内容1.研究温室、沼气产品产业发展的现状、问题及发展趋势2.发布温室、沼气产品产业新产品、新装备、新技术研究编制温室、沼气产品技术标准、设计规范、施工规范等3.研究组建温室、沼气产品创新联盟。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 在会上我院与省内沼气领域的企业、高校、院所充分交流交换了科研思路并宣传了我院的科研成果重点推介了我院开发的集成粪便综合利用系统IMUS技术。IMUS是工业化封闭环式沼气、发电系统采用独特的高温厌氧消化技术使畜禽粪便转化为沼气能源用来发电产生的沼液、沼渣作为无病原体的生物肥料进行市场化形成了一个自然环境下的循环经济链。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 我院积极参加沼气产品创新联盟,院企合作,产学研结合,为企业服务,为创新联盟提供技术支撑,为我省沼气产业发展贡献力量。</span>', '', '', '113.4.72.222'),
(86, 10, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年7月2日在黑龙江工会大厦我院科研办主任王志成同志参加了省专利管理局组织的全省高校科研院所知识产权管理工作座谈会。与会的有省专利管理局马峰副局长和综合处领导以及全省55个科研院所的代表。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会上省专利管理局领导听取了我院知识产权管理工作情况,特别是承担专利资金项目后,对专利工作的引导作用情况,我院的知识产权(专利)制度(政策)、管理机制建设情况,专利创造、管理、运用、保护等各方面进展情况,知识产权文化建设情况,知识产权人才培养情况,项目实施中遇到的问题,下步工作打算及对省知识产权局的意见和建议等情况。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过交流,了解了兄弟院所专利工作情况,学习了许多先进经验,也看到我们的不足,为我院今后专利工作指明了方向。同时,也看到我院专利申报人均数量和增长率等指标在省里是名列前茅的,专利工作大有可为。</span>', '', '', '122.159.58.178'),
(87, 10, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7月2日加拿大阿尔伯塔大学医学和病理学实验室庞晓丽教授Pang XiaoliLilly),在能源院一楼会议室就&ldquo;如何建立分子生物实验室&rdquo;举行了精彩的讲座,我院徐晓秋院长、关春玲副院长及部分科研人员参加了此次讲座。</span><br />\r\n<br />\r\n<div style=\"text-align: center; \">\r\n <img alt=\"\" src=\"/uploads/allimg/140703/1-140F31AT4621.JPG\" style=\"font-size: 20px; width: 519px; height: 346px; \" /></div>\r\n<br />\r\n<span style=\"font-size: 20px; \">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长首先表达了愿望希望用十年的时间用顶尖的设备、先进的技术和最好的老师建立并逐步完善我院的分子生物实验室最终达到国内领先水平Pang XiaoliLilly)教授十分赞同并表示会尽最大努力予以技术支持。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140703/1-140F31AR2144.JPG\" style=\"width: 519px; height: 346px\" /></span><br />\r\n <br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 讲座在融洽的气氛中开始Pang XiaoliLilly)教授首先介绍了加拿大实验室的相关情况随后结合国外的先进经验分别从设备、技术、人员、经费等方面详细介绍了实验室的建立方法、区域划分和级别标准讲座循序渐进其间Pang XiaoliLilly)教授还不忘与在座人员进行互动交流我院科研人员纷纷结合我院的实际情况发表了想法和提出问题Pang XiaoliLilly)教授都一一给予了解答讲座持续了近二个小时。最后徐晓秋院长代表能源院全体职工对Pang XiaoliLilly)教授的精彩讲座表示感谢,讲座在轻松愉快的气氛中结束。</span><br />\r\n <br />\r\n <br />\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 综合办<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2014年7月2日</span></div>\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n', '', '', '113.4.72.222'),
(88, 10, '<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7月8日我院在江北会议室召开了由全体职工参加的2014年上半年工作会议。会议由党委书记、院长徐晓秋同志主持。会上各部门负责人分别汇报了本部门上半年工作进展情况并提出了下半年具体工作计划。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140709/1-140F913010c25.JPG\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋院长结合汇报情况作了重要讲话,徐院长首先对我院上半年的重点工作进行了总结,并对项目申报情况进行了通报,她指出,在全院科技人员的共同努力下,上半年我院在各级科研项目申报、获奖、专利、以及论文等方面均有了一定的增长,接下来我院要继续稳扎稳打,坚定思想,走科研促发展的道路,并鼓励青年人要快速的成长,为我院的长足发展做出贡献。</span><br />\r\n<div>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随后,徐晓秋院长对我院下半年工作作出了具体部署:一是加强高水平大项目的培育和申报工作;二是科研管理部门要从项目申报、实施、鉴定、成果转化几个环节建立相关制度,加强科研研发工作;三是科研人员要充分接地气,建立畅通的信息渠道,结合实际开展科学研究;四是保证仪器设备的使用率,做好定期维护和校对,为科研工作服好务;五是加速成果转化进程,促进成果转化快速发展;六是加强对外合作,在巩固现有对外合作成果基础上,积极寻求新的合作机会,扩大合作领域;七是抓好安全工作,</span><span style=\"font-size: 20px\">各部门要高度重视安全管理工作,充分认识安全工作的重要性,要制定工作方案,强化工作措施</span><span style=\"font-size: 20px\">,在汛期临近之际,要定期开展排查,消除隐患,确保安全。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后,徐晓秋院长希望大家克服人员少,办公空间小等困难,充分抓住机遇,不断提高我院的科研水平。</span><br />\r\n <br />\r\n <br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;综合办公室</span></div>\r\n', '', '', '113.4.72.122'),
(89, 10, '<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 近日我院三名科研工作者通过了ACI美国认证协会和MOHRSS中国人力资源和社会保障部联合举办的能源管理、能源审计及能源评估岗位培训考核并获得ACI和MOHRSS颁发的国际注册高级能源管理师、国际注册高级能源审计师及国际注册高级能源评估师证书。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ACI美国认证协会是由美国哈佛大学、德州大学、耶鲁大学、加州大学、杜克大学、森坦那瑞商学院等美国数十个著名院校的专家教授共同组成的学术认证委员会在全球范围内从事国际职业资格认证的专业机构长期致力于专家级高水平认证、考试服务得到美国政府的合法注册所有课程均获得了美国教育部承认其颁发的证书被全球157个国家认可全球通用。</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/140717/1-140GG1245EH.jpg\" style=\"width: 511px; height: 663px\" /></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140717/1-140GG1251IE.jpg\" style=\"width: 508px; height: 664px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/140717/1-140GG12540I8.jpg\" style=\"width: 515px; height: 661px\" /></p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140717/1-140GG126004c.jpg\" /></span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140717/1-140GG12625547.jpg\" style=\"width: 510px; height: 659px\" /></span><br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140717/1-140GG12645W3.jpg\" style=\"width: 512px; height: 655px\" /></span><br />\r\n &nbsp;</p>\r\n<p>\r\n <br />\r\n <br />\r\n &nbsp;</p>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\"><img alt=\"\" src=\"/uploads/allimg/140717/1-140GG12HWV.jpg\" style=\"width: 530px; height: 391px\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/140717/1-140GG12QE00.jpg\" style=\"width: 534px; height: 387px\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/140717/1-140GG12STX.jpg\" style=\"width: 536px; height: 358px\" /></span></p>\r\n', '', '', '125.211.131.99'),
(90, 17, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩热解生成的液态产物汽化后与气态产物一起首先通过页岩内部的空隙和毛细管扩散到油页岩块之外然后通过页岩间的空隙至页岩层之外最后通过页岩层外空间导出干馏装置。在干馏过程中温度达约105℃时油页岩主要是干燥脱水。到180℃左右时放出油页岩中包藏的少量气体。温度升高至450520℃时油页岩内的有机质即热解生成页岩油蒸汽与热解气体的混合物以及固定碳。油页岩的无机矿物质有些会脱水或脱CO2则与固定碳形成页岩半焦。逸出的蒸汽-气体混合物冷却至常温时便分离成气相和液相。液相产物通常分成互不相溶的两层一层为页岩油另一层为水溶液。水溶液中含有能溶于水的NH3、CO2、H2S及水溶性的酚类、氧化物、有机碱及乳化油等。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 影响因素关于抚顺油页岩、茂名油页岩在不同条件下的热解情况FRIPP曾进行了大量的研究工作。通过研究结果可知加热温度、加热时间及加热速度对油页岩的热分解有相当大的影响。加热温度油页岩干馏的最终加热温度影响有机质的分解程度也是影响页岩油产率的决定性因素。而且热解产物的二次裂解反应也与最终加热温度有关。用12mm的颗粒油页岩在葛金氏干馏试验装置上考察了加热温度对油页岩干馏的影响。试验结果表明随着干馏温度的升高页岩油的产率逐步增加放出大量页岩油的温度范围为400450℃。抚顺油页岩、茂名油页岩在加热至450℃时可产生约90%的页岩油放出页岩油的最终温度约为505℃。加热时间油页岩的热分解程度不仅取决于最终的加热温度而且取决于加热时间。在油页岩热解过程中当热解温度较低时页岩油的产率随着加热时间的延长而增加进一步提高热解温度则分解有机质所需的时间逐渐缩短。采用粒度为12mm的抚顺油页岩和茂名油页岩为原料以2℃&bull;min-1的加热速度升温考察了加热时间对页岩油产率的影响。当加热温度小于375℃时页岩油的放出量随着加热时间的延长而增加温度为450℃时加热时间超过lh后就不再释出页岩油表明有机质的热解反应已经完毕。由此可以看出加热温度愈高油页岩有机质的分解速度愈快达到最大页岩油产率所需的时间愈短。如果热解温度大于500℃则在很短的时间内有机质就能完全热分解而加热时间对页岩油产率没有明显的影响。所以最终加热温度是影响热分解反应的主要因素。热解反应所需的加热时间因油页岩性质的不同而异。例如在其它条件一定的前提下温度为425℃时茂名油页岩放出页岩油的时间为1h抚顺油页岩放出页岩油的时间为1.5h油页岩干馏最终温度大于500℃时抚顺油页岩及茂名油页岩的页岩油产率在很短的时间内均能达到最高。加热速度油页岩的加热速度影响低温干馏炉的生产强度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 块状油页岩在抚顺式炉中的加热速度一般不超过1.55℃&bull;min-1属于低速加热范围热量供给速度比油页岩中有机质的化学反应速度要慢得多在温度上升过程中油页岩尚未达到最终温度时有机质即已开始发生热解反应产物借扩散作用从油页岩内部导出。由于油页岩的受热、有机质的热解反应和反应产物的导出等几个过程是同时进行的所以在现有干馏工业装置上难于控制油页岩有机质的热解反应。油页岩有机质热分解的研究结果表明加热速度较低时加热速度对热解反应产物的产率和组成没有显著的影响热解反应主要是温度的函数开始提高加热速度时页岩油产率略有上升的趋势。加热速度对页岩油产率的影响是由于两方面的因素造成的。一方面在相同反应设备和压力等条件下提高加热速度等于增加了热量的供应提高了油页岩有机质的反应速度、页岩油的生成速度使其在设备内停留的时间相对减少减轻了页岩油在设备内的裂化程度结果表现为页岩油产率增加。另一方面若要提高加热速度就必须提高热载体的温度这就相当于提高了油页岩外部空间的温度油页岩热解反应产物&mdash;页岩油从油页岩内部向外逸出时所遇到的温度得以升高页岩油在较高的温度下深度分解结果造成页岩油产率的降低。此外不同地区的油页岩其组成和性质不同加热速度对其影响亦不尽相同。油页岩块径工业上使用的块状油页岩其块径范围较宽抚顺油页岩的块径为875mm茂名油页岩的块径为15125mm。由于油页岩本身的导热性不良对大块径油页岩而言加热时其表面与中心存在较大的温差。抚顺页岩油研究所曾在试验室对处在加热过程中的块径不同的正方体抚顺油页岩试样的内外温差进行过测定。测定结果发现在干馏过程中由于受到脱水及有机质分解等物理-化学过程吸热效应的影响油页岩的内外温差存在两个高峰两个高峰分别为200225℃和475℃左右。第一个高峰在脱水阶段形成。当大量水分被蒸发放出时需要大量的汽化热此时由于供给的热量不能迅速传入油页岩块的内部其内外温差就逐渐加大并且随着油页岩块径的增大而加大。当水分放出完毕后外部供给的热量能够较快地传入油页岩内部温差就逐渐缩小。第二个高峰在油页岩有机质热解和无机物结晶水放出阶段形成。因为有机质的热分解和结晶水的放出也消耗大量的分解热故造成温差的增大并且随着页岩块径的增大而增大。所以在加热温度一定时块状油页岩比颗粒油页岩需要更长的加热时间才能干馏完全。</span><br />\r\n', '', '', '113.9.10.216'),
(91, 17, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩干馏分为两种,即地下干馏和地上干馏。地下干馏也被称为就地干馏,是在地下对油页岩矿层进行加热和裂解,促使其转化为高品质的油或气,再通过相关通道将油、气分别提取出来。该技术提高了资源开发利用效率,减少了开采过程中对生态环境的破坏,但页岩油收率不高,而且容易导致地下油气污染。地上干馏,是指油页岩经开采并送至地面,经破碎筛分后,送入干馏炉内进行加热干馏,从而生成页岩油气及页岩半焦或页岩灰的方法。目前,地上干馏是油页岩干馏制页岩油的主要途径。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩干馏炉可分成外热式炉和内热式炉两种。采用外热式炉时热气体通过炉壁加热在炉内的油页岩从而进行干馏采用内热式炉时油页岩在炉内直接与气体热载体或固体热载体接触进行干馏。外热式炉的传热效率低且不易放大在工业生产上已被淘汰。当前世界上用于工业生产的炉子都是属于内热式的炉。内热式炉也分为两种块状页岩粒径25125mm干馏炉和颗粒页岩粒径025mm干馏炉。块状页岩干馏一般以热燃烧气或热干馏气为气体热载体颗粒页岩干馏一般以烧热的页岩灰为固体热载体。两种干馏工艺的主要差别在于页岩干燥方法不同及所使用的热载体不同。半焦的处理和利用途径亦不同。目前世界上许多国家都对油页岩干馏已形成工业化生产规模中国、俄罗斯、爱沙尼亚的发生式炉及德国LR炉处理量小油收率较低工艺不先进但投资少适用于小规模的页岩炼油厂爱沙尼亚Kiviter炉和美国TOSCO-Ⅱ炉处理量较大投资中等适用于中等规模的油页岩炼油厂爱沙尼亚Galoter、巴西Petrosix及加拿大Alberta-Taciuk炉处理量大油收率高适用于大、中型油页岩炼油厂。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、油页岩干馏工业发展现状<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从1838年法国页岩油工业开始至今油页岩的开发和应用有近200年历史。油页岩工业也曾几度兴衰。随着世界油价的高起有关国家对油页岩的开发利用又活跃起来。于2005年美国国会通过了发展非常规能源的法案在美国掀起了油页岩干馏炼油的研发高潮。美国内政部己经批准了6个土地矿产租赁项目支持开展油页岩干馏炼油。据美国能源部2008年的统计报告显示开展油页岩加工利用研究的公司有29家从事地下干馏研究的有14家公司从事地上干馏研究的有11家公司从事页岩油加氢制取轻质油品研究的有2家公司。目前的研究多处于实验室、数学模拟或概念研究阶段。中国油页岩的开发利用起步较早规模也比较大但长期以来并没有明显进步。近年来随着全国能源需求的不断增长为缓解能源供需矛盾抚顺、桦甸、罗子沟、黄县等油页岩老矿先后恢复了生产。2008年我国页岩油年产量约40万t其中我国最大的油页岩炼油厂&mdash;抚顺矿业集团油页岩炼油厂的产量就达35万t。我国的科研院所和相关企业在油页岩利用技术方面也进行了深入的研究。抚顺矿业集团于2006年成立了&ldquo;辽宁省抚顺矿业集团工程技术研究中心&rdquo;针对抚顺炉单台装置处理能力小、油收率低、环境污染严重等问题将油页岩的综合利用作为研发重点开发油页岩干馏新工艺和相应的大型生产装置研究页岩油生产过程中产生的废水、废渣等的处理与循环利用技术。大连理工大学为大庆油田开发的颗粒页岩固体热载体干馏技术日加工油页岩2000t拟建设柳树河油页岩工业试验装置。中煤集团黑龙江哈尔滨煤化工公司开展油页岩流化干馏炼油中试已取得初步成功日加工油页岩50t日加工油页岩2000t的工业试验装置的可行性研究报告已初步通过。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 二、油页岩干馏技术应用展望<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 油页岩资源储量丰富开采和应用有近200年的历史取得了很多成功经验并在不断改进。预计随着国际油价的不断上涨以及剩余油、低渗透油气藏开发难度的增加、天然气水合物开发的瓶颈技术暂时无重大突破等原因的影响各个国家将会对二十一世纪非常重要的接替能源油页岩的重视程度不断加强。目前制取页岩油的主要方式是地上干馏干馏会产生大量灰渣不仅污染空气且废弃的灰渣中的金属元素和微量元素渗入地下造成污染环境。地下转化工艺技术ICP是壳牌公司投入巨资研发出的开采油页岩的专利技术在美国科罗拉多州和加拿大阿尔伯特省进行了商业示范。按照2005年5月每桶原油开发成本计算传统的干馏技术为20美元&bull;桶-1使用ICP技术生产成本为12美元&bull;桶-1大大低于传统的干馏技术使该技术在油价高于25美元&bull;桶-1时即可盈利。而且该技术无需采矿减少了开采过程中对生态环境的破坏尽管该项技术现在还未完全商业化但关键的工艺、设备等技术问题都已解决这种新技术必将引导和推动油页岩干馏技术的不断进步和发展。随着技术工艺的不断改进和环保意识的不断增强以及经济效益要求的不断提高油页岩资源将由从前的单纯能源利用向综合利用效益最大化方向转化。油页岩开采后不仅仅是作为能源被利用即干馏提炼页岩油直接燃烧发电。而是通过加氢精制和非加氢精制的方法从干馏后的页岩油中进一步制取汽油、煤油、柴油、石蜡、石焦油等多种化工产品精制后的重油还可再作燃料使用。用油页岩作为发电的燃料可直接用作锅炉燃料或经过低温干馏利用产生的气体燃烧发电干馏和直接燃烧产生的灰渣可以用来充填矿井、也可用来制造水泥熟料、陶瓷纤维、陶粒、砖块等建筑材料废气可以作为燃料燃烧产生蒸汽供生产、生活使用也可再作为油页岩干馏的热源循环使用。油页岩资源的综合开发利用展示出了诱人前景不仅符合发展循环经济的要求而且也将带来良好的经济效益、环保效益和社会效益。</span><br />\r\n', '', '', '113.9.10.216'),
(92, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7月30日省科学院第5届外语大赛在高研院举行经过个人演讲评委提问团体展示等环节我院参赛的选手不负重望取得了优异的成绩。其中杨光获得个人赛一等奖陆佳获个人赛二等奖潘良获个人赛优秀奖我院在团体赛中也表现不俗获得团体优秀奖。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/140801/1-140P1113112H5.jpg\" style=\"width: 640px; height: 480px\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/140801/1-140P111313V41.jpg\" style=\"width: 640px; height: 480px\" /></span></div>\r\n', '', '', '1.189.197.76'),
(93, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年7月29日我院徐晓秋院长、关春玲副院长陪同省环科院叶真主任、黑龙江科技大学周国江教授到我院位于杜蒙的集成粪便综合利用系统IMUS示范装置考察。徐院长向两位专家详细介绍了我省畜禽粪便量、目前粗放的处理方式和污染破坏环境的情况以及IMUS项目的由来工业化封闭环式沼气系统的特点及优势。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/140909/1-140ZZZTVB.jpg\" style=\"width: 651px; height: 489px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IMUS采用独特的高温消化技术将畜禽粪便转换为能源、生物肥料和可再利用的水通过高温厌氧发酵来生产沼气并用其来发电。后营养物可作为无病原体的生物肥料市场化水可以再次用于IMUS系统或者用于灌溉。IMUS 技术不仅全部利用生物废物中的能源和养分它还减轻温室气体排放和农业、城市、食品加工等废物造成的其它环境和社会压力。IMUS系统是世界上唯一在高寒地区运行的利用牛粪进行发电并回收其养分生产肥料的综合利用系统属国内领先水平。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/140909/1-140ZZ91639456.jpg\" style=\"width: 653px; height: 490px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 两位专家认真听取了徐院长的介绍一致认为IMUS项目是一项既能解决我省高寒地区畜禽粪便严重污染环境的技术同时也是一项清洁可再生的能源项目。一项技术能同时解决我国环境和能源这两大经济发展中的瓶颈问题值得大力推广。今后省环科院要在环保技术推广中推广此技术。此外IMUS技术还可以应用在城市污泥处理上市场巨大更利于推广大有可为。</span>', '', '', '1.189.181.83'),
(94, 17, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 截至2012年底世界原油探明储量2358亿吨比2011年增长0.9%。原油储量最多的中东地区保持小幅增长已探明储量为1093亿吨同比增长1.2%。原油资源仍然集中在欧佩克欧佩克控制着世界原油储量的72.6%这是自1998年以来的最高比例。到2012年底世界原油储采比保持在52.9。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年世界原油生产41.19亿吨比2011年增长2.2%产量明显增长主要来自北美和非洲地区。北美地区原油产量增幅最大同比增长8.9%非洲地区产量增幅也达7.7%。中东地区产量仅增长0.9%为13.37亿吨占世界总产量的32.5%。欧佩克生产原油17.78亿吨占世界的43.2%高于2011年42.4%的比例。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年世界石油消费总量为41.3亿吨比2011年增长0.9%已连续3年在化石燃料中处于最低的增长率。分地区看欧美地区原油消费继续回落其中北美消费量为10.17亿吨占世界24.6%同比下降1.8%欧洲和欧亚大陆消费量8.8亿吨占世界21.3%同比下降2.5%。其中亚太和中东地区原油消费继续增长其中亚太地区消费量13.89亿吨占33.6%同比上升3.7%中东消费量3.96亿吨占9.1%同比上升4.5%。经合组织国家的石油消费下降1.3%53万桶/天为过去7年中的第6次下降占全球消费量的52.2%为有记录以来的最小份额非经合组织的石油消费增长了140万桶/天即增长3.3%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从主要石油资源国来看位列2012年世界石油探明储量第一的仍是委内瑞拉465亿吨占世界17.8%2010年时委内瑞拉为304亿吨占15.3%居第二位2011年晋升至第一位沙特阿拉伯以365亿吨占15.9%退居第二加拿大280亿吨占10.4%、伊朗216亿吨占9.4%、伊拉克202亿吨占9.0%分列第三、四、五位。在2012年排名中中国探明储量排名由上一年第15位升至第14位储采比由上年末的9.9升至11.4。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从主要产油国来看欧佩克占全球石油产量增长的约72%尽管由于国际制裁伊朗产量有下降减68万桶/天利比亚产量增100万桶/天几乎恢复了2011年的全部损失沙特阿拉伯、阿联酋和卡塔尔产量连续第二年达到了创纪录的水平伊拉克和科威特产量也显着增加。伊朗石油供应的减少由利比亚生产的恢复以及沙特阿拉伯和其他欧佩克国家增产完全抵消而有余。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年全球生产原油名列前茅的国家排名中沙特阿拉伯仍位居世界第一大原油生产国产量5.47亿吨同比增长3.7%在2010年曾位于第一位的俄罗斯继续退居第二产量5.26亿吨同比增长1.2%美国产量大幅增长13.9%达到3.95亿吨,稳居第三位,美国新增的产量大多来自于全新的页岩油产区&mdash;&mdash;北达科他州巴肯页岩或得克萨斯州的鹰福特页岩,伴随着页岩气革命而日趋成熟的水力压裂和水平井技术使这些地区的非传统石油产量得到了充分的释放;伊朗产量下降,与中国互换座次;伊拉克产量大幅增长,位次上升,委内瑞拉排名下挫。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从原油主要消费国来看2012年美国、中国、日本、印度、俄罗斯依然占据前五位。美国原油消费仍居首位为8.2亿吨比2011年下降2.3%占世界消费量的19.8%消费量和占比均有下降中国消费量为4.84亿吨再次创纪录同比增长5.0%低于过去十年的平均水平占比11.7%日本消费量2.18亿吨同比增长6.3%这是自1994年以来最强劲的增长。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2012年世界原油贸易总量为5531.4万桶/日比上年增长1.3%贸易量占全球消费量的62%占比有所提升。其中原油进口大国美国贸易量出现下滑为1058.7万桶/日同比下降6.6%目前美国的石油进口是20世纪90年代中期以来最少的而中国的石油净进口增长了61万桶/天占全球增长的86%日本的进口贸易量同比增长5.5%。出口贸易集中的前苏联和中东地区贸易量均出现下滑分别为859.7万桶/日和1969.9万桶/日同比分别下降2.2%和0.3%而北非和加拿大的出口贸易大幅增长33.6%和9.2%,抵消了几个地区的出口下降。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 预计2014年国际石油需求将每天增长120万桶2013年为93万桶2014年石油生产和消费增长动力主要为美国。中国、美国、印度、巴西、印度尼西亚和韩国将是重要国际能源消费国。2014年非欧佩克国家石油开采量将达到20年来最高值对欧佩克石油的需求将从2013年的2960万桶/天下降到2940万桶/天当前开采量为3061万桶/天)。在这种情况下,包括沙特阿拉伯在内的大多数欧佩克石油出口国将由于市场饱和而被迫减少石油开采量。国际能源机构指出,欧佩克国家对石油的依赖将由于美国和加拿大页岩油新开采技术的使用而进一步削弱。</span><br />\r\n', '', '', '1.189.181.83'),
(95, 17, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 目前我国炼油产能严重过剩2013年炼厂平均开工率仅67.3%同比下降了2.4个百分点。受益于成品油定价机制调整2013年我国炼油行业实现了扭亏实现利润400亿元。但由于一方面炼厂产能不断扩展另一方面我国成品油消费增速正在逐步下行我国成品油市场过剩的现象正在加剧。据业内人士透露&ldquo;目前国内总炼油能力超过了7亿吨如果提高开工负荷近5年内可以不用新建炼厂&ldquo;。造成低开工率的原因主要是国内成品油产能严重过剩。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 按照国际标准某一行业的开工率如果降至70%这一行业就属于产能过剩行业。目前我国的炼油业开工负荷还不足70%已经算是严重过剩。虽然产能严重过剩但国内炼油项目仍在新建、扩建中其中2013年我国新增炼油能力4000万吨。扩建的项目包括乌石化、安庆、武汉、胜利、榆林、汇丰、玉皇、盛马、利安。新建的项目包括海南东方、福建腾龙、东辰、天弘、海跃、富宇、东方华龙、乌苏华泰等。近年来民营炼厂投资热情依然非常高涨。随着民营炼厂的新建扩建民营企业在我国成品油供应市场份额的占比从2012年的10%上升到2013年的13%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 从需求来看2000年到2005年我国石油消费年均增速为7.3%、成品油消费年均增速为8.7%、消费柴汽比为2.28:12005年到2010年分别为7.2%、7.9%、2.2:1;2010年到2013年分别为3.6%、5.2%、1.8:1。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 成品油需求增速下降是短期因素和长期因素的叠加而导致的。经济方面,我国产业结构转型、新兴城镇化进程加快,三产发展的速度超过二产;产业方面,我国钢铁、水泥、电解铝、平板玻璃、船舶等主要用油行业产能全面过剩;第三,汽油需求增长率远超过柴油,但近年来不少城市陆续实施限购、限行措施,对汽油消费也可能造成影响。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、国内成品油市场环境的变化,倒逼我国炼油企业早日转型。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 据业内人士透露:&ldquo;与其扩大产能,不如提高油品质量,差异化经营。&rdquo;从油品质量升级寻求突破口对炼油企业来说是个机遇。很多企业通过升级改造已经从中获利。另外成品油出口也是一个机遇。虽然我国油品进出口受限于商务部配额限制但我国成品油出口有望逐步放开。初步判断2015年亚太地区的汽油还略有缺口而柴油和煤油则供大于求。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 当今世界炼化行业的大型化、基地化、一体化已成趋势。2012年和2013年的数据显示我国炼油能力已超过每年6亿吨的规模位居全球第二。千万吨级的炼油企业达到24家产能超过3亿吨约占全国产能一半稍强。其中有22家隶属中国石油和中国石化两大集团。这使得中国石化和中国石油炼油平均规模分别达到每年778万吨和658万吨。与此同时国内却有百余家规模在200万吨级以下的炼油企业占全国产能的8%稍弱。这些数据说明,我国炼厂的潜在技术效率总体平均水平依然不高,且分布不平衡。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 由于现行的原油配置政策多数地方民营炼厂不能获得稳定的原料供应依靠少量不稳定的原油和大量高成本的进口燃料油若能实现40%以上的开工率就已经属于乐观状态了。自然,地方民营炼厂的开工率拉低了全国炼油行业的平均生产能力利用率。可就算是在这种条件下,这些潜在技术效率低、生产能力利用率低、原料成本高的小型炼厂依然能够存活的事实透露了很多重要的信息,其中最为重要的是,中国的成品油政府定价足够高。因此,这就不难理解业内专家对产能过剩忧心忡忡的原因。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过举例可以说明问题若在新加坡成品油现货市场价格基础上加上运保费作为到岸价格支付进口关税、给予批发零售环节合理的利润率再加上所有环节增值税及从量消费税进行计算我们会发现自2008年6月以后这个&ldquo;放开成品油进口,成品油批发零售环节合理竞争&rdquo;意义的影子价格总是低于国内的同期政府定价。即便如此,炼化企业也不是普遍盈利的。也就是说,以中国炼油企业的总体效率,同韩国、印度、日本、新加坡炼厂在国际市场竞争,基本没有可能。目前中国国内市场的成品油需求主要靠本土成品油供应,不受进口成品油冲击已然是幸运的了。沿着这个思路自然可以理解,炼油效率足够高是判断产能真正过剩的必要条件。低效率厂商不能获得满意的市场份额,导致开工率不足,不意味着具有经济意义的产能过剩。缺乏效率,在开放市场中,再低的产能也有可能成为过剩产能。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 需要说明的是,对于中国炼油企业总体效率偏低的判断并不排除个别企业实现高效率的可能,更不否认优秀炼油企业存在的现实。剔除炼厂规模和投产年代差异等因素,国内炼厂的生产效率和财务绩效差异仍是巨大的。其实,对于中国成品油高油价和炼厂普遍亏损并存的论断并不公平,至少是不够全面、客观的。由于众所周知的历史和现实原因,太多的国企央企承担了一些至少在规范市场经济体制下被普遍视为过分的&ldquo;社会责任&rdquo;。石油系统内,很多基层单位的冗员问题至今不能根据市场规则得到解决。而中国大型炼厂的员工数量数十倍于国外相同规模的炼厂也是非常普遍的现象。我们很难期待这些炼油企业能够在国际市场上争夺一席之地。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 当然,最近几年各地大型炼油设施投资增长过快的推手离不开地方政府对政绩的追逐和石化企业对市场的争夺,但这不足以造就真正意义的产能过剩。高成本的企业没有被迫停产关闭,小规模的没有被淘汰,低效率的没有去&ldquo;瘦身&rdquo;。如同自然界食肉动物的饥饿有可能是因为猎物数量的增长没能抵消捕食能力的衰退。我们看到的&ldquo;产能过剩&rdquo;只是所捕获的猎物变少,并不是捕食者变多,或者猎物变少。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 总之,提出&ldquo;炼油行业产能过剩&rdquo;的论断,并非意在吓退潜在的行业进入者,或者希望政府继续整顿小炼厂,而是对于政府进一步理顺体制、改进政策、企业不断提升效率有所期望。中国炼油产能过剩或许只是个伪命题。</span>', '', '', '1.189.181.83'),
(96, 17, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 当前国际能源格局正处于深刻变化之中全球经济期待新的增长引擎拉动欧元区危机日益加深延宕世界经济复苏西方社会整体陷入体制性危机。国际社会陷于全球经济危机后的全面调整之中美国加速衰落使世界政治和经济格局向多极转变和向无极世界继续滑落两个方向发展新的国际秩序呼唤中国高效参与全球和区域治理广泛参与多边国际事务塑造新的国际格局综合维护国家利益和能源安全。全球人口资源环境矛盾突出气候变化谈判成为国际热点之一新能源研发和节能环保技术将成为核心推动力从而引领世界经济发展方向。未来世界的能源供应转向区域化和本土化分布式能源网络建设提速。西方世界处于向新型工业化社会转型阶段面临技术创新取得突破的前夜。2015年之前世界经济仍普遍低迷2020年后将出现新的增长。发展中新兴国家追赶式现代化面临挑战中国经济减速至7.58%。欧美中新技术突破之前2015 2020年世界经济形势暗淡。20122020年的8年是中国&ldquo;转方式、调结构&rdquo;的重要机遇期2013年是中俄签署天然气贸易合同的良好时间窗口。2020年后常规资源包括油气价格仍将因稀缺性而震荡上扬。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 一、中国:技术创新改写全球能源格局<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 当前页岩气和页岩油开发是全球能源领域的一场技术革命是全球油气勘探开发的新方向。2005年以来美国页岩革命已导致国际能源市场发生深刻变化已经开始改写全球能源政治版图。<br />\r\n&nbsp;随着美国页岩气开采技术取得突破进展,美国能源重心从中东-西非逐渐西移转向北美地区和本土对外依存度显著下降。2005年美国页岩气年产量仅196亿立方米而2010年已达到1378亿立方米加上致密砂岩气和煤层甲烷气非常规天然气产量约占美国天然气总产量一半以上2030年将达到65%。页岩气开发利用使美国国内天然气价格出现暴跌0.5元/立方米),已在改变美国的能源消费结构。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 美国石油对外依存度呈现下降态势。美国能源信息署EIA数据显示2005年美国石油对外依存度高达60.3%2010年下降到49.3%2011年进一步降至45%。未来10年美国计划把石油进口量再削减1/3。美国2010 年能源综合自给率为78%预计在2035年将达到87%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EIA还预测美国将在2016 年成为LNG 净出口国2021年成为天然气总量净出口国2025年成为管道天然气净出口国。2035年美国石油及其他液体燃料的自给率也将超过60%。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 与美国能源走向独立形成鲜明对比的是由于经济保持高速增长以中国为首的东亚和印度为首的南亚地区石油对外依存度节节攀升。2011年中国消费能源34.8亿吨标煤超过美国成为全球第一大能源消费国新增消费2.3亿吨标煤。中国能源消耗量占全球19.5煤炭消费量相当于其他国家的总和高能耗产生了仅占世界8.6%的GDP。中国2013年石油依附度已达到58.8%远超美国。中国占世界能源消费总量由2000年的9.02%飙升至2010年的20.82%2020年前仍将继续攀升。<br />\r\n  中国的对外依存度过高供求矛盾突出从而制约经济社会发展。中国石油消费已进入快速增长时期石油供需缺口将越来越大2020年中国石油对外依存度将上升至超过66%。中国对外石油依赖程度越高,国家控制短缺风险的能力越弱。一旦发生石油进口通道受阻等情况,必然对整个国民经济和社会生活秩序产生消极影响。如果中国经济的运行秩序经常受到石油市场行情波动和供应紧平衡的影响,可持续发展能力将会受到掣肘。<br />\r\n  中国石油定价机制不完善市场风险增大。中国石油定价机制的弹性不足使中国石油安全在国际油价的变化中承受极大风险。国际油价上涨给中国经济运行和居民生活带来一定的负面影响高油价导致外汇支出增加、企业成本加大、居民消费支出增加抑制经济活力输入性通胀加剧潜在国内通货膨胀压力并增大国家宏观调控难度。<br />\r\n  2000~2010年期间世界基础能源包括石油、天然气、煤炭、水电和核电不含新能源消费总量年增长率为2.67%亚太地区年均增长率则为6.34%而北美、欧洲、独联体地区年均增长率仅为0.2%。<br />\r\n  中国尽管页岩气资源丰富可采资源量约25万亿立方米潜力巨大但与美国页岩的平原分布相比中国页岩发育层系构造复杂分布地带多为山丘开发难度较大。矿产资源普查基础工作薄弱地质理论有待创新和高端突破可采储量尚需进一步落实。此外开发技术滞后、水资源相对匮乏、资源区人口密集是我国页岩气开发的不利因素。而水平井钻完井技术、分段压裂等核心技术落后我国与美国相比落后10年这些已成为阻碍页岩气开发的瓶颈。<br />\r\n  随着西亚北非&ldquo;阿拉伯之春&rdquo;运动的发生和欧元区崩溃,新的全球能源格局浮出水面。国际能源格局将发生深刻变化:<br />\r\n  1、以美国为代表的西半球非常规油气资源的新发现打压油气价格并降低供应的波动性全球石油供应中断的威胁下降但华盛顿掌握着油价的标价权其将实行弱势或强势或美元政策影响油价升降。<br />\r\n  2、能源供应形势的乐观态势将极大改善国际关系和能源格局。石油输出国组织OPEC,简称欧佩克)作为卡特尔组织功能消退,局势动荡的石油国家如伊朗、伊拉克、委内瑞拉可能会被边缘化。<br />\r\n  3、欧洲持续推进能源多元化战略大力发展洁净能源和新能源降低对俄罗斯的能源依赖加大从中东-北非-中亚的油气进口。<br />\r\n  4、传统油气资源的供应国与消费国之间的竞争将集中于新兴国家经济体和OPEC之间中国更是首当其冲被推上前台。<br />\r\n  5、中美继续争夺新能源关键技术研发的战略制高点和创新市场。新能源非常规油气和可再生能源的经济性即价格成本能否接近常规油气资源是技术竞争的焦点。<br />\r\n  美国取代俄罗斯摘取世界天然气生产大国的桂冠俄罗斯天然气工业股份公司Газпром,俄气将丧失欧洲天然气市场的霸主地位2011年俄气对德国、挪威和荷兰的天然气出口大幅下降。俄欧能源一体化战略已逐渐沦为空想。<br />\r\n  在发动页岩气革命之后美国页岩油开采凯歌行进。这势必会引起全球能源消费格局的变革甚至地缘政治的震动。Cambridge EnergyResearch Associates (CERA)公司对美国和加拿大48个油田共28口页岩油油井的调查显示储量为8.41亿吨开采成本仅为23.77美元/桶在当前油价和税制条件下利润空间很大。15年之后美国页岩油日产量将达到4.5百万5百万桶,相当于俄罗斯目前日产量的一半。<br />\r\n  2015年之后中国、印度、加拿大等国以及欧盟开始页岩气的工业开采俄气在国际市场份额受挤压地位开始下降。尽管俄气也有页岩气项目可以随时增加产量但外部市场不容乐观。俄气计划2013年底分别与印度LNG形式供应和中国签署天然气出口协议。<br />\r\n  如果世界油价在普京第一个六年任期保持低位俄罗斯预算对能源出口创汇的依赖度难以下调俄罗斯将面临巨大困境从能源出口依附型经济向创新型国家的转变就难以有充足的启动资金。<br />\r\n  为确保能源供应保障中国应采取的对策<br />\r\n  2030年之前常规油气资源仍将是工业化和后工业化国家的主导性能源石油作为常规军事机器和交通运输的主要动力燃料不会改变可再生能源仅占世界能源平衡的16%。美国拥有打压世界油气价格下行的能力,但美国因此获得美元贬值的自由空间度。<br />\r\n  1、随着美国从中东-北非石油进口的下降和退出,中国进一步密接同中东、北非能源国家的战略合作,如推进中国-海合会国家自贸区建设和人民币对伊斯兰世界国际化水平;中国应加强同日、韩的能源合作,减少在寻求国际石油天然气资源方面的激烈对抗和冲突,避免过度竞争。<br />\r\n  2、中国利用上合组织与欧亚同盟之间的交叉与融合争取人民币成为上合成员国能源贸易的结算货币考虑俄罗斯对中亚-外高加索地区的关切,应注重平衡中俄利益,共同维护中亚地区的安全和能源利益;中国与俄罗斯应加强能源科技创新合作、研发氦提取与封存技术、稀土和铀资源开发战略的协调。<br />\r\n  3、中国继续推进西部陆路能源大通道和中国-土耳其-欧洲铁路新大陆桥建设按照《上合组织中期发展战略规划》适时扩大上合组织第一批纳入巴基斯坦、印度之后适时批准蒙古和伊朗加入下次峰会应考虑土耳其成为观察员国。2012年6月北京峰会已批准阿富汗为观察员国上合应针对2014年美国撤军后的后阿富汗重建达成共识。<br />\r\n  4、中国需要善用金融工具利用G20机制作为全球金融治理平台推动对发展中国家有利的规则制定加强原油及其衍生品期货市场建设使上海成为东亚和世界石油定价中心之一。<br />\r\n  5、加快产业结构和能源消费结构调整推进高能效技术创新发展新能源和核能能源结构以煤为主优质能源资源如石油、天然气等比例偏低能源结构不合理。资源勘探相对滞后影响了能源产能提高资源利用效率也亟待提高。同时中国煤炭清洁利用水平低煤炭燃烧产生的污染给生态环境带来很大压力在国际气候谈判中处于被动地位。<br />\r\n  6、改变平行推进的&ldquo;救火式&rdquo;外交确定中国外交战略的优先方向重点落实区域经济一体化战略中日韩自贸区、东盟10+3、中哈自贸区建设、中国东北与俄罗斯远东和东西伯利亚区域合作第二层面加强中非合作同时注重大国协调以义为先推行和谐世界的义利观放弃不结盟政策而采取负责任的盟友战略放弃不干涉内政原则维护国际正义。<br />\r\n  7、坚定维护南海海洋国土主权同时加快南海深水油气开发2020年前尝试可燃冰的工业开发。<br />\r\n  8、创新能源合作方式促成中俄通过天然气&ldquo;上下游一体化&rdquo;合作模式,缔结长期管道天然气贸易合同,打造与优先发展的中俄战略协作伙伴关系战略定位相匹配的&ldquo;新型能源共同体&rdquo;。中俄原油贸易将扩大到5000万吨天然气价格谈判障碍将在上下游一体化模式探索中取得突破。俄方计划在欧亚同盟一体化能源战略框架内制定对中国的天然气出口路线。俄近期将突破从东西伯利亚天然气之中分离氦气技术、制定欧亚同盟铀出口战略以及俄东部稀土开发战略。<br />\r\n  9、加快推进社会主义民主和法治建设维护国内社会的整体稳定和谐为实施我国大国外交战略奠定坚实的国内环境和执政基础。<br />\r\n  二、美国专家之预测<br />\r\n  西半球非常规油气资源的新发现弱化了油气供应中断的威胁降低了油气价格的波动性有利于改善国际关系。西方国家石油产量自1952年以来将首次有望满足需求美国天然气自给自足可以维持100年。科技革命带来了能源供应的革命。先进的地震技术和复杂的钻探方法开启了以前不为人知或无法获取的矿藏。在石油方面美国、加拿大、巴西可能还包括墨西哥的产量将大幅增长。上述国家在未来20年可能会位居全球7大能源生产国之列。美国的能源政策将越来越侧重于在西半球的关系力求在整个美洲地区促成一个自贸区。<br />\r\n  地缘政治因素造成的供应中断将不会再产生那么大的影响石油禁运将不会像1973年阿拉伯国家或1979年伊朗所实施的禁运那样造成严重破坏。国内冲突如在伊拉克和利比亚发生的冲突引发的石油产量下降也将不至于产生严重后果。简单来说稳定产油国的名单将变得更长这将让任何一个处于动乱状态的国家的影响变得更为有限。对冲基金利用金融工具成功操纵市场的可能性将因能源市场规模巨大而减小。二战后西方曾在能源生产方面引领世界。西方的消费量飙升中东的产量增加不稳定性也随之而来能源从东方向西方输出。如今这种流动即将逆转国际格局将会改变。中东地区在地缘政治中的核心地位将会减弱欧佩克作为一个卡特尔组织已在衰落的设想将走向尾声。<br />\r\n  美国坚信未来世界的经济和政治中心在东亚美国积极回归西太平洋地区加紧防范中国崛起。而美国长期部署在海湾地区的军力将减少美国在海湾的唯一优先事务将是维护沙特阿拉伯和以色列的稳定。另外美国政府今后的紧缩预算将支持削减阿以两国国防支出因为这两个国家都已高度军事化。<br />\r\n  俄罗斯等其他渴望获得国际权力的石油国家在全球的影响力也将遭到削弱。西方国家石油产量的不断飙升将导致俄罗斯等国家被边缘化。随着美国成为液化天然气出口国俄罗斯威胁切断对欧洲能源供应的能力将减弱。再加上俄罗斯人口不断减少且经济疲弱俄罗斯可能将进一步走向衰落。<br />\r\n  中国将受到很大影响。中国80%的石油需求可能最终依靠进口。中国的石油日进口量预计将从400万桶增至1200万桶。中国已是中东和非洲石油的最大客户被迫卷入这一地区的冲突调节。随着西方对中东保护减弱中国将承继美国在此留下的脆弱性负担。<br />\r\n  石油进口在美国中东战略目标中的重要性下降虽然这并不意味着美国会放弃中东但是美国取得&ldquo;能源独立&rdquo;会让其在推进中东民主化、抑制伊朗崛起、保护以色列安全等战略目标时,变得更加强硬。美国若不再依赖国际能源市场,全球能源供应方将更加积极地寻求需求方,尤其是对接东亚。对中国而言,这将会留给中国更多境外能源扩展空间;另一方面,美国若不再积极维护全球主要通道的安全,那么全球能源供给和运输的风险将上升。<br />\r\n  EIA于2013年6月宣布俄罗斯页岩油储量750亿桶居世界第一位。美国页岩油可采储量580亿桶居第二位中国320亿桶居第三位。其后为阿根廷、利比亚、委内瑞拉和墨西哥。全球页岩油总储量评价为3450亿桶占石油可采储量的10%。<br />\r\n  页岩气储量排名中国为31.57万亿立方米阿根廷为22.71万亿立方米阿尔及利亚为20万亿立方米。美国页岩气产量第一但储量排名第四为18.83万亿立方米。俄罗斯页岩气储量为8万亿立方米排名第九。全球页岩气资源量为206万亿立方米为常规可采天然气储量的32%。<br />\r\n  三、俄罗斯专家对2035年前能源形势的预测<br />\r\n  俄能源部能源战略研究所专家认为石油开采的峰值期不断被技术的新突破所推迟。2035年石油消费将增长20%天然气增长55%。未来25年内可再生能源将增长70%在能源平衡中将达到16%。油价预测关涉对世界经济发展态势的研判。2035年油价平衡价位为125美元/桶。2010~2035年天然气市场的发展要快于石油分别为56%和21%。全球天然气消费量将达5万亿~5.5万亿立方米价格将增长50%,主要驱动力是天然气电站。<br />\r\n  亚洲发展中国家油气消费量占世界新增消费量的65%这些国家是新增碳排放量的主要贡献国而发达国家温室气体排放下降。2035年主要能源进口国为欧洲和亚洲国家。北美将减少甚至停止进口某些能源品种。北美走向能源独立可能形成区域能源价格2035年可出口LNG为300亿立方米/年。尽管数量不大,但将改写世界天然气分配流向。<br />\r\n非常规的页岩油、油砂、稠油的开发将对市场产生重大影响2006~2011年页岩油的开采成本已经下降一半这是页岩气开采技术的突破对页岩油开发所产生的实际影响。北美地区由此可以实现能源自给自足这将对世界能源格局和油气价格走势产生深刻影响。随着美国停止石油进口油价将降低23%,世界所有石油产区包括独联体国家的产油量随着需求的下降而降低。<br />\r\n  但是中东和北非作为世界油气的主要供应地仍保持着重要意义和影响力。波斯湾地区持续的动荡和宗教冲突将导致石油产量下降10%2013~2019年伊朗将停止石油出口而伊拉克产量已减半。尽管有生物燃料和新能源的发展以及其他地区产量的增长都不足以替代中东和北非出口的下降。在此情景之下油价将上行至200美元/桶。<br />\r\n  世界将在生态安全与能源保障之间寻找平衡点。福岛核泄漏之后日本德国等国放弃、拒绝发展核能BP墨西哥漏油灾难之后出于环保起见世界开始讨论谨慎对待深海采油。为了维护生态安全所采取的作法将导致能源价格比2010年基准价上涨60%,这将加剧对传统能源的争夺。<br />\r\n  目前金砖国家的在建核电站数量占全球总量的75%。当前全球正在运营的核电机组普遍老化服务20年以下的仅占20%发达国家大多数机组将要在2030年之前关闭而以何种燃料填补这一巨大的能源缺口已难以回避。可再生能源发展迅速尽管最近几年成本有所下降其较贵的价格无法与常规能源如天然气和煤炭相互竞争其发展前景取决于相关国家的政策导向和扶持。<br />\r\n  总体来看俄罗斯能源业面临日益紧迫的不利于出口的国际能源形势。2035年油气产能达到峰值之后随着国内需求不断的增加俄罗斯能源出口量将下降外部市场情况复杂俄将回归国内市场。与其产量波动有关的变量涉及以下六方面俄经济增速、外部市场需求、储量替接、国内外能源资源价格、开采成本、价格政策。<br />\r\n  目前俄能源公司对油气勘探领域的储量增长投资严重不足不利于产能稳定和提高。2035年之前俄罗斯石油产量稳定但天然气产量将继续增长。<br />\r\n  欧洲对传统能源需求的增长有限又兼市场竞争激烈俄罗斯的竞争优势不明显。俄罗斯瞄准世界经济增长的重心&mdash;&mdash;东北亚和亚太市场,将减少对欧出口,加快对东部能源的开发以扩大对东部邻国的出口。</span>', '', '', '1.189.181.83'),
(97, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size: 22px\"><span><span style=\"display: inline! important; font-weight: normal; float: none; word-spacing: 0px; text-transform: none; color: rgb(51,51,51); text-indent: 0px; line-height: 22px; font-style: normal; font-family: 宋体; white-space: normal; letter-spacing: normal; text-align: left; font-variant: normal; webkit-text-size-adjust: auto; orphans: 2; widows: 2; webkit-text-stroke-width: 0px\">为庆祝建国六十五周年,丰富我院职工文化生活,</span></span></span><span style=\"font-size: 22px\">使我院职工在工作之余放松身心劳逸结合经过精心筹备我院羽毛球比赛于9月28日正式开始此次活动得到了院领导的大力支持和职工的积极响应。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141011/1-141011112F0224.JPG\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 比赛中选手们挥舞球拍、腾挪跳跃、忘却疲惫、尽情挥洒汗水。最终,男子单打组郭广亮同志凭借出色的发挥,夺得男子单打第一名,女子单打组樊磊同志夺得女子单打第一名。</span><br />\r\n<div style=\"text-align: center\">\r\n <br />\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141011/1-141011112H5263.JPG\" style=\"width: 519px; height: 346px\" /></span></div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 通过本次羽毛球比赛,不仅增强了同事之间的感情和团队凝聚力,同时也展现了我院全体职工团结活泼、奋发向上的精神风貌。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141011/1-141011112USY.JPG\" style=\"width: 519px; height: 346px\" /></span></div>\r\n', '', '', '113.4.72.231');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(98, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 11月17日第八届中国专利周黑龙江省系列活动正式启幕。为配合专利周系列活动11月20日黑龙江省能源环境研究院举办了知识产权培训讲座。特邀黑龙江省知识产权服务中心副主任专利代理研究员单淑梅同志来院讲课。我院全体科技人员参加了这次培训。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141124/1-141124110J93I.jpg\" style=\"width: 558px; height: 373px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 首先,单淑梅研究员介绍了专利的概念、特征,申报流程,重点介绍如何确定必要技术特征,如何把握产品、方法发明的实质性特点,撰写专利文件。接着分析了部分专利法律条款,细致解读了相关法条的适用范围、立法宗旨等,并结合多年来的工作实践经验和具体案例展开论述,内容丰富,旁征博引,极具实用性。最后,她结合实际研究项目演示了专利文献的检索和分析全过程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 单淑梅研究员的培训内容丰富,案例生动详实。参加培训的科技人员兴致高昂,不时提出问题,参与互动,均表示受益匪浅。 </span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141124/1-141124110SW37.jpg\" style=\"width: 558px; height: 373px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此次知识产权培训,提高了我院科技人员的知识产权保护意识和专利撰写实务能力。今后我院还将针对知识产权创造、保护、运用和管理等各个环节,组织不同主题的知识产权讲座和培训,进一步强化知识产权知识,不断提高我院自主创新能力。</span><br />\r\n', '', '', '113.9.151.245'),
(99, 28, '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH2593T91.jpg\" style=\"width: 600px; height: 409px\" /></div>\r\n', '', '', '113.0.54.137'),
(117, 10, '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\"font-size: 22px\">2014年12月11日在省能源环境研究院召开了由能源院农业生物环境与能源工程创新团队承担的《秸秆高温厌氧发酵过程关键技术参数研究》、《沼液高效会用及综合处理工艺研究》和《沼液回流对牛粪厌氧发酵沼气产量的影响及机理研究》项目鉴定会。鉴定委员会由东北农业大学、东北林业大学、黑龙江省农业科学院、哈尔滨理工大学、哈尔滨商业大学等单位的7位专家组成会议由院科研处王阳处长主持。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141212/1-141212154255N3.jpg\" style=\"width: 558px; height: 373px\" /></span></div>\r\n<span style=\"font-size: 22px\">&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 项目组首先对&ldquo;秸秆高温厌氧发酵过程关键技术参数研究&rdquo;项目进行了汇报,得出了秸秆预处理的最佳条件,以此为基础,采用先进的实验方法,确定了秸秆高温厌氧发酵工艺;然后,项目组对&ldquo;沼液高效会用及综合处理工艺研究&rdquo;项目进行了汇报,总结了当前大型沼气工程沼液处理的现状,并根据沼液的理化性质,采用回流工艺、混凝工艺、厌氧往复折流工艺相结合,研发出沼液综合处理的全套工艺,得到了专家的高度认可;最后,项目组对&ldquo;沼液回流对牛粪厌氧发酵沼气产量的影响及机理研究&rdquo;项目进行了汇报确定了沼液的最佳回流比率以及采用PCR-DGGE技术进行了反应器中微生物菌群的变化趋势分析为团队进行沼气工程领域的基础研究打下了基础。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 鉴定委员会听取了项目组的总结报告与技术报告,审查了相关技术资料,经认真质询、讨论,对团队的研究方向和当前的工作给予了较高的评价,对项目的意义给予高度肯定,经审议一致同意三个项目研究成果均达到了国内领先水平。&nbsp;</span><br />\r\n', '', '', '1.189.181.236'),
(102, 29, '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 以廊乡林业局木焦油为原料,采取&ldquo;萃取&mdash;破乳&mdash;液固分离&mdash;蒸馏脱水&rdquo;的方法对木焦油原料进行净化预处理脱除原料中的水分和杂质等非理想组分使木焦油的含水量降至0.56%固体含量降至0.23%,明显改善木焦油的质量。经预处理的木焦油可作为催化加氢制取运输燃料油的原料。</span>', '', '', '113.4.72.207'),
(103, 29, '&nbsp; &nbsp; &nbsp; &nbsp; 摘要在固定床加氢微反装置上采用硫化态NiMoW/Al<sub>2</sub>O<sub>3</sub>催化剂以廊乡林业局轻质木焦油300℃馏分为原料考察反应条件对加氢脱氧性能的影响。结果表明适当降低反应空速、提高反应压力、提高反应温度均有利于提高催化剂加氢脱氧反应活性提高加氢产物的热值。在反应温度380℃、反应压力8.0MPa、体积空速0.8h<sup>-1</sup>、氢/油体积比8001的条件下加氢生成油的氧含量明显降低热值显著提高。轻质馏分油可作为化工轻油原料进行下游加工中质馏分油主要技术指标均符合船用馏分燃料油GB/T17411-1998标准要求可直接作为船用燃料油调和组分使用。', '', '', '113.4.72.207'),
(104, 29, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 摘要:为推动车用燃料的多元化发展,拓展代用燃料的应用领域,经黑龙江省科技厅推介,黑龙江省能源环境研究院与哈尔滨市依兰巨澜清洁能源发展有限公司共同签订了《产研技术研发协议》,开展了&ldquo;M25车用甲醇汽油&rdquo;的技术研究、工艺过程与控制以及试验品生产应用工作。为了科学、规范地推进科研性试点工作双方制定、发布实施了Q/HNH&nbsp;001&mdash;2013《M25车用甲醇汽油》企业标准。本文对该企业标准的制定情况及其主要技术指标作了阐释以利于在M25车用甲醇汽油的科研性推广应用工作中对标准全面理解和贯彻实施。<br />\r\n《黑龙江科学》2014年第2期。</span>', '', '', '113.4.72.207'),
(105, 29, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 摘要近几年随着我国汽车工业的快速发展石油能源快速消耗车辆尾气排放对环境的污染日益增加。考虑到已经实施国三和将要实施的国四、国五标准要求国家发布了GB&nbsp;17930&mdash;2011/XG1&mdash;2012《车用汽油》国家标准第1号修改单于2012年5月1日起实施。其中胶质指标在原标准的基础上增加了未洗胶质含量加入清净剂前不大于30mg/100mL试验方法执行GB/T&nbsp;8019&mdash;2008《燃料胶质含量的测定喷射蒸发法》。本文分析阐述了标准修改的目的、未细胶质和溶剂洗胶质的特点、检测方法等并提出了待商榷问题。<br />\r\n《黑龙江科学》2014年第2期。</span>', '', '', '113.4.72.207'),
(106, 29, '<span style=\"font-size:22px;\">摘要针对提高油品辛烷值使调和后汽油的质量指标符合GB&nbsp;17930-2011/XG1-2012国家《车用汽油》IV标准的目的。本文创新了一种由0.365%&nbsp;MMT、60%&nbsp;MTBE、8%&nbsp;TBAC、3.635%二氯甲烷、28%抗爆助剂m/m复配而成的新型复合抗爆剂。通过对汽油感受性、符合性以及储存性等实验方法结果表明该复合抗爆剂对汽油具有良好的感受性能够显著提高油品的辛烷值适宜长期存储。得出结论复合抗爆剂的最适添加比例为2%m/m调和后的汽油各项指标均符合国IV标准能够达到93号无铅汽油的生产规格。<br />\r\n《化学工程师》2014年第3期。</span>', '', '', '113.4.72.207'),
(107, 29, '<div style=\"margin-left: 40px\">\r\n <span style=\"font-size: 22px\">《自动化技术与应用》2014.06</span></div>\r\n', '', '', '113.4.72.207'),
(108, 29, '<p>\r\n &nbsp;</p>\r\n<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 711px; height: 131px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">专利名称</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">申请号</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">授 权 时 间</span></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">一种搅拌破壳于一体的发酵反应器<br />\r\n (实用新型,王玉鹏)</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">201320512530.5</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">2014.1.15</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', '', '', '113.4.72.207'),
(109, 29, '<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 660px; height: 106px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">专利名称</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">申请号</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">授 权 时 间</span></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">一种太阳能集热控制系统<br />\r\n (实用新型,罗向东)</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">201320573185.6</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">2014.2.19</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', '', '', '113.4.72.207'),
(110, 29, '<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">专利名称</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">申请号</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">授 权 时 间</span></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">一种厌氧发酵分段控温系统<br />\r\n (实用新型,秦国辉)</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">201320509483.9</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">2014.1.8</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', '', '', '113.4.72.207'),
(111, 29, '<table border=\"1\" cellpadding=\"0\" cellspacing=\"0\" style=\"width: 675px; height: 82px\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">专利名称</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">申请号</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">授 权 时 间</span></td>\r\n </tr>\r\n <tr>\r\n <td style=\"width: 281px; height: 38px\">\r\n <span style=\"font-size: 22px\">一种高温厌氧发酵运行参数的无线实时监测系统(实用新型,徐晓秋)</span></td>\r\n <td style=\"width: 132px; height: 38px\">\r\n <span style=\"font-size: 22px\">201320509482.4</span></td>\r\n <td style=\"width: 107px; height: 38px\">\r\n <span style=\"font-size: 22px\">2014.1.15</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n', '', '', '113.4.72.207'),
(112, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2014年12月4日在省能源环境研究院嵩山路15号8楼会议室召开了项目鉴定会会议对我院承担的《轻质木焦油加氢提质转化运输燃料油调和组分的工艺研究》和《利用炼厂90<sup>#</sup>汽油生产国IV标准93<sup>#</sup>汽油的复合添加剂应用技术研究》两个项目进行了鉴定。参加会议的有省科技厅成果管理与推广处、条财处、院科研处领导鉴定委员会由黑龙江大学、哈尔滨工业大学、哈尔滨工程大学、哈尔滨理工大学等单位的7位专家组成。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/141205/1-141205164U1518.JPG\" style=\"width: 519px; height: 346px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会听取了两个课题组的工作汇报,审查了相关技术资料,经认真质询、讨论,形成鉴定意见:<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 以木焦油为原料,采用预处理&mdash;加氢精制工艺路线制备出运输燃料油调和组分中油馏分收率可达75.64%。技术路线及工艺方案合理可行。采用页岩油作为稀释油、萃取剂和补碳剂脱除原料中的杂质产品热值提高到40.8 MJ/kg该工艺具有创新性。研究成果达到国内领先水平。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 制备了非金属有机物不含MMT成分汽油复合添加剂由此添加剂调和的90<sup>#</sup>汽油达到了93<sup>#</sup>国IV标准的汽油并且降低汽车尾气有害气体40%。该添加剂经用户试用,具有良好的经济效益和社会效益。<br />\r\n复合添加剂性能达到国内领先水平。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/141205/1-141205164923946.JPG\" style=\"width: 346px; height: 519px;\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会对两个课题给予高度评价的同时,也提出了中肯的建议,鉴于项目成果有着非常好的市场前景,建议课题组要继续降低成本,加速推广应用。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此次鉴定是我院首次把承担的省院所基本应用技术研究专项升级为省级成果。这对提升我院科研档次,鼓舞科技人员士气,都起着积极的作用。</span>', '', '', '113.4.72.160'),
(113, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年12月4日至6日黑龙江省能源环境研究院春苗秦国辉、唐诗洋青年科技人员周扬参加了在清华大学举办的CHINA EPA STAR MEETING。加拿大麦吉尔大学、美国明尼苏达大学、英国帝国理工学院、美国威斯康星大学、清华大学、中国科学院等国内外知名院校、研究机构参加了本次大会大会为全英文形式。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141208/1-14120Q35642917.jpg\" style=\"width: 545px; height: 410px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会议围绕监测农村室内排放、改善空气质量与大气环境、提高人民身体健康等主题开展交流与讨论与会专家学者共听取专题报告15篇内容涵盖寒区农村室内排放监测、农村无烟锅炉燃烧器技术、农村室内家庭PM2.5浓度与个体关系、农村新型清洁加热燃烧锅炉燃烧技术等方面。清华大学杨旭东教授作了题为&ldquo;Intervention using clean heating and cooking stovesupdate and plan&rdquo;的学术报告。此项目中试工作已经在我院完成,该项目将在我省进行推广应用。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141208/1-14120Q35AWc.jpg\" style=\"width: 538px; height: 404px\" />&nbsp;</span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源院选派青年科技人员参加国际学术会议,开阔视野,拓宽思路,及时掌握相关领域的研究前沿和热点,进一步提高我院科技人员英语水平,学习知名学者研究经验,对促进我院创新团队发展,提升我院科研水平具有重要意义。</span><br />\r\n', '', '', '61.180.252.200'),
(114, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 12月1日清华大学建筑环境与设备研究所副所长、清华大学百人计划引进教授、教育部长江学者特聘教授、美国麻省理工学院(MIT)博士、美国迈阿密大学终身教授杨旭东一行两人,携最新科研成果从北京抵达哈尔滨,杨旭东教授此行,旨在为进一步巩固清华大学与省能源环境研究院的合作成果,扩大校院合作领域,共同开拓合作商机。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 杨旭东博士一行首先来到能源院位于嵩山路的办公地点,与能源院科研人员进行了座谈,在现有合作基础上一同商定了深入合作方案,并希望借助能源院在新能源及生物质能源领域的优势,将先进的秸秆处理成果付诸实践,还龙江一片蓝天。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 下午,杨旭东教授一行在徐晓秋院长陪同下,来到省科学院,与潘忠院长、郭春景院长、王钢副院长及科研处王阳处长,就现阶段与能源院开展合作情况进行了座谈。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141208/1-14120Q42122206.jpg\" style=\"width: 519px; height: 346px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 潘忠院长代表省科学院对杨教授的到来表示欢迎。随后,杨教授介绍了项目情况。对于新的项目,潘院长和郭院长都十分感兴趣,分别提出了一些问题和建议,杨教授一一进行了解答。<br />\r\n最后潘院长再次感谢杨教授能够不辞辛劳为黑龙江的百姓做实事做好事。同时希望能源院科研人员要不断提高自身的科研水平成为杨教授在黑龙江放心的合作伙伴。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141208/1-14120Q42143646.jpg\" style=\"width: 519px; height: 346px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2日上午杨教授一行参观了能源院位于江北的实验室并在会议室与能源院的科研人员进行了深入交流。下午杨教授一行在王阳处长和徐晓秋院长的陪同下驱车来到市农科院位于万宝镇的示范基地进行实地考察并与省、市政府农村能源办的有关领导进行了座谈希望通过多方努力使项目得到进一步推广。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141208/1-14120Q42212S8.jpg\" style=\"width: 519px; height: 346px\" /></span></div>\r\n', '', '', '61.180.252.200'),
(115, 28, '<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH25Z3220.jpg\" style=\"width: 600px; height: 401px\" /></div>\r\n', '', '', '113.0.54.137'),
(116, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH3000BQ.jpg\" style=\"width: 500px; height: 716px;\" /></div>\r\n', '', '', '113.0.54.137'),
(118, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年12月16日黑龙江省科学院科研基金项目《寒地沼气发电机余热回收仿真优化研究》与院青年基金项目《厌氧发酵反应器温度监控及补偿系统的研究》鉴定会在省能源环境研究院召开。鉴定委员会由哈尔滨理工大学周浩然教授、哈尔滨工程大学蔡绍宾教授等7位专家组成会议由院科研处隋月梅副处长主持。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 鉴定委员会听取了项目组的汇报后,认真审查了相关材料,对项目组的工作给予了高度肯定,两个项目研究成果均达到了国内先进水平。</span>', '', '', '1.189.197.76'),
(119, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2014年12月17日我院有两组TRIZ作品参加了黑龙江省科学院第三届TRIZ理论创新大赛经过作品展示、答辩及评审委员会的评审等环节我院参赛选手不负众望取得了优异的成绩其中参赛作品&ldquo;随动性机械密封装置设计&rdquo;获得二等奖,参赛作品&ldquo;新型免烧结快速挂膜生物填料的制备及性能研究&rdquo;也得到与会评委一致好评。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 经过此次TRIZ大赛增强了选手们的团队合作意识锻炼了个人创新能力坚信我院今后的科研创新工作一定会再上新台阶。</span><br />\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/141222/1-14122209493E19.jpg\" style=\"width: 558px; height: 373px\" /></div>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/141222/1-1412220950003K.jpg\" style=\"width: 558px; height: 373px\" /></div>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/141222/1-14122209501TN.jpg\" style=\"width: 558px; height: 373px\" /></div>\r\n', '', '', '1.189.197.76'),
(120, 10, '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\"font-size: 22px\">2014年12月22日黑龙江省能源环境研究院召开了省科学院青年创新基金资助项目《浮选技术在油砂分离中的应用研究》、《木醋液成份分析及对肿瘤细胞杀伤作用初探》和《微米稀土粉体表面改性技术的研究》的验收会。会议由院科研处马雪松同志主持验收委员会由黑龙江大学袁福龙教授、哈尔滨工程大学王革教授等5位专家组成。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/141225/1-14122510251V35.jpg\" style=\"width: 558px; height: 373px\" /></span></div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 验收委员会听取了三个项目组的总结汇报后,认真审查了相关技术材料,对各项目组的工作给予了充分肯定,认为课题技术路线可行,工作量饱满,达到了锻炼年轻人的目的,经审议一致同意三个课题通过验收。</span>', '', '', '1.189.197.76'),
(121, 10, '<div style=\"text-align: justify\">\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style=\"font-size: 22px\">2014年12月19日上午省能源环境研究院召开了全体职工大会领导班子及全体职工参加了会议会议由工会主席李福裿同志主持。</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/150115/1-1501151A33E11.JPG\" /></span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: justify\">\r\n <br />\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会上能源院院长徐晓秋同志做能源院2014年工作总结报告报告从科研成绩、团队建设、对外合作、强化党建、行政管理等面充分肯定了我院全年工作同时指出2015年能源院全体职工要竖立新的目标同心协力扎实工作为能源院的腾飞跨越不懈努力。报告经全体职工举手表决全票通过。</span></div>\r\n<div>\r\n <span style=\"font-size: 22px; text-align: justify;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><span style=\"font-size: 22px\">随后财务科长樊磊同志就新财务制度运行以来的相关情况及效果进行了总结汇报。大会还通过民主、公开表决的方式全票通过了能源院2015年计划开展的两项工作。</span></div>\r\n<div>\r\n <span style=\"font-size: 22px; text-align: justify;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><span style=\"font-size: 22px; text-align: justify;\">最后徐晓秋院长对2015年的工作做出了展望并希望能源院全体职工能够不断总结成功经验共同努力进取进一步统一思想提高认识厘清思路在新的一年里取得更加出色的成绩。</span></div>\r\n', '', '', '113.4.83.85'),
(122, 17, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">金银岛财经</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 石油价格高位暴跌,评论纷纷,从评论的字里行间经常出现打压美国页岩油发展等,好多人不知道,这里所指的&ldquo;页岩油&rdquo;不是页岩油而是致密油。美国能源信息署EIA将页岩油shale oil和致密油tight oil作为同样的概念使用但同时也解释说美国油气界通常所谓页岩油其实是指致密油。致密油也是来自页岩开采方法与页岩气相同由于页岩气革命的影响太过于轰动干脆称之为&ldquo;页岩革命&rdquo;,在中国把致密油和页岩气合并简称为页岩油气。因此,阅读页岩油之类的资料时,要分辨清楚常规石油、致密油和页岩油之间是什么关系。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 从液态烃金字塔来看,常规石油较非常规石油少得多。而非常规石油中富含干酪根的油页岩储量最大。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"说明: c:\\users\\lenovo\\appdata\\roaming\\360se6\\User Data\\temp\\20141219092724273.jpg\" src=\"/uploads/allimg/150121/1-150121095P2X7.JPG\" style=\"width: 462px; height: 250px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 非常规石油是指储集层中的致密油、重质原油或超重质原油以及在烃源岩中的油页岩和页岩油。按干酪根熟化的程度烃源岩又分为未成熟的烃源岩即油页岩和成熟的烃源岩即页岩油。烃源岩source rock是富含有机质的沉积物可以沉积在各种环境包括深水、湖泊它能够产生或已经产生可运移的烃类所以烃源岩也称为&ldquo;生油岩&rdquo;。在学术上页岩油是指油页岩oil shale制取的重质原油。油页岩在烃源岩中是未经运移的未成熟的烃源岩或称&ldquo;干酪根页岩kerogen shale&rdquo;。它是一种富含有机质、具有微细层理、可以燃烧的细粒沉积岩。油页岩中绝大部分有机质是不溶于普通有机溶剂的成油物质,俗称&ldquo;油母&rdquo;。因此,又称为&ldquo;油母页岩&rdquo;。油页岩的含油量一般为420%有的高达30%,可以直接提炼石油。从油页岩炼制页岩油必须经过人工加热加氢,通过干馏提炼出类似于原油的页岩油,也称为人造石油。页岩油主要采用地上干馏法生产,生产方式可分为内部燃烧法、热循环固体法、隔壁传热法、外部注入热气法、反应流体法等,以内部燃烧法为主。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 由于不同的油页岩有不同的化学组分因而干酪根含量差别很大所采取的提取技术也随之不同因此定义油页岩储量很困难。页岩油生产主要在中国、巴西、俄罗斯和爱沙尼亚。中国是页岩油生产大国而不是美国。中国在20世纪20年代已经建立了油页岩工业。随后生产衰退到21世纪初才有所回升。已有几家公司生产页岩油和用于发电。2005年后中国成为世界上最大的页岩油生产国之一。2011年中国约生产65万吨页岩油。许多生产采用抚顺干馏法。2006年底抚顺矿业集团拥有世界上最多的油页岩生产装置。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 在烃源岩中成熟的烃源岩即页岩油如果页岩油运移出烃源岩进入有盖层的储层就成为常规石油如果页岩油运移到致密地层滞留被称为致密油。致密油中的原油品质与常规油藏相同都属于轻质原油而从油页岩制取的页岩油是重质油其区别是两者API重度和黏度不同以及提取的方式不同。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 在石油价格大战中提及的页岩油是指致密油。根据美国能源情报署资助的先进资源国际公司于2013年的评价俄罗斯致密油技术可采资源量最多居世界第一其次为美国和中国三个国家的致密油技术可采资源量之和占世界总量的43.6%。目前,美国对页岩气的勘探开发已进入快速发展阶段,同时也带动了页岩地层内致密油的开发。美国是现今开采致密油最成功的国家,致密油生产都靠近页岩气产区。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"说明: c:\\users\\lenovo\\appdata\\roaming\\360se6\\User Data\\temp\\20141219092819373.jpg\" src=\"/uploads/allimg/150121/1-150121095RWW.JPG\" style=\"width: 369px; height: 198px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 梳理一下本文,看中国。从油页岩制取页岩油最大的生产国是中国,而不是美国。美国页岩气开采成功带动了致密油生产,成为世界上最大的致密油生产国,而中国致密油的技术可采资源量居世界第三位,国人很少提起此事,其原因是页岩气开采尚未成功。如果我国页岩气开采一旦成功,致密油开采自然而然提上日程。</span>', '', '', '113.4.83.216'),
(123, 17, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">华夏时报</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2014年全球大宗商品市场最瞩目的事件是石油暴跌的&ldquo;黑天鹅事件&rdquo;引发了俄罗斯卢布危机。2014年7月初国际原油价格还在100美元之上12月25日纽约原油价格已经跌到56美元短短半年之内国际原油价格跌去一半。蹊跷的是石油输出国组织欧佩克居然坐视油价暴跌拒绝减产自救。欧佩克为何推动国际油价暴跌呢《华夏时报》记者采访了知名能源专家中海油能源经济研究院首席能源分析师<a href=\"http://www.china5e.com/index.php?m=content&amp;c=index&amp;a=show&amp;catid=7&amp;id=171032\" target=\"_blank\">陈卫东</a>。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 在陈卫东看来,欧佩克推动国际油价暴跌有两个目的:一方面是因为自身生产成本很低,要挤掉比它成本高的一些产能,争夺市场份额;另一个重要原因是要延缓欧洲对可再生能源储能技术的投资,新能源储能电池技术一旦获得突破,化石能源的命运将走向终结。&ldquo;石油价格的这轮下降时间会很长,它要充分挤出竞争对手,价格再回来,生产者也舒服,消费者也舒服的同时,还要挤压可再生能源,尤其是储能技术的投资,延缓替代品的出现,就是延长石油天然气的寿命,这是石油输出国最大的利益所在。&rdquo;陈卫东说。他判断2015年全球将重新进入廉价石油的时代。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp; 一、全球能源的</strong><strong>&ldquo;</strong><strong>中国因素</strong><strong>&rdquo;</strong><br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>40年前的一场石油禁运把西方经济搞得一塌糊涂这就是发生在上世纪七十年代的石油危机。从此世界各国都把石油当做最重要的战略资源。陈卫东说大概从那时开始人类地缘政治格局就围绕争夺石油等资源来布局一个真实的例子是美国在西太平洋仅仅部署了一个第七舰队而在中东就部署了第三和第五舰队目标就是要控制石油。<br />\r\n现在以石油为首的全球大宗商品市场的格局正在发生变化石油从卖方市场变成了买方市场进入买方市场大家的目标开始从争夺资源转向争夺市场中国需求减少也是国际石油暴跌的重要推手。<br />\r\n&ldquo;购买力就是话语权,而不是有资源就有话语权,我们还没有意识到这个话语权已经掌握在自己手中。&rdquo;陈卫东说,&ldquo;中国是这次石油降价的受益者之一过去5年中国需求的增长占全球能源增长的一半而过去10年全球能源供给增长部分美国占了一半美国从全球最大能源进口国变成了出口国利比亚还增加了输出对伊朗的制裁放松了伊拉克出口也在增加这些因素一叠加石油价格能不跌吗&rdquo;<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>陈卫东告诉记者,中国和俄罗斯石油天然气大单为何十几年一直签不下来,现在,俄罗斯追着中国签订石油天然气大单,这不仅是因为欧美制裁俄罗斯要寻找新的出口替代国,国际油价暴跌也不存在阴谋论,主要的原因是全球能源格局发生了改变,产能过剩,金融去杠杆,大家都争夺市场,而中国是全球能源需求增长最快的市场。&ldquo;我们的能源战略思维还是争夺资源,而不是好好利用我们的市场。&rdquo;陈卫东说,&ldquo;过去,我们干了很多傻事,在煤炭时代,英国是第一大能源消费国,它同时也是世界领导者,在石油时代,美国是第一大能源消费国,它也是世界领导者;今天,中国是第一大能源消费国,我们把全球煤炭消费拉起来了。&rdquo;<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>&ldquo;中国的煤炭消费还会继续往上走一个是3美元一个是12美元这就是能源消费的现实主义和环境保护的理想主义这可是4倍的差别。&rdquo;在陈卫东看来,这不是单个能源的问题,能源之间可以相互替代,它就变成一个能源价格体系的问题;两百年前煤炭时代伦敦的&ldquo;雾都&rdquo;又在中国出现。&ldquo;电价不市场化,哪有其他能源的市场化?&rdquo;陈卫东说,中国需要以电力为基础重构中国能源体系,无论是煤炭、水能还是核能,它都要转化成电,送到最终消费者;能源回归商品的核心是电力价格的市场改革,而不是解决单个能源问题。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong><strong>二、能源革命的两条道路</strong><br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>过去30多年三次大的石油价格起伏都是自身的供求原因。这一次欧佩克已经看到可替代品的出现。陈卫东告诉记者世界上同时进行着两场能源革命一个是以美国页岩气为代表把原来开采不出来、不作为能源的贫矿开出来了美国页岩气革命是在延长石油和天然气的寿命。第二个是德国和北欧等国家进行着另一场可再生能源革命目标是要弃核、弃化石。从木材时代到煤炭时代从煤炭时代到石油时代从石油时代到多元化的天然气时代全球能源消费趋势是从高碳走向低碳从低浓度能源向高浓度能源转型。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>让欧佩克紧张的是可再生能源领域已经清晰地看到储能技术迭代的摩尔指数。最近媒体报道以色列出现了锂空电池技术储电量比目前的锂镁电池增加了8倍而西班牙最近出现的石墨烯电池技术从锂空到石墨烯又增加了5倍。下一代技术至少是5的立方也就是锂镁电池技术的125倍。同样是1.5吨电池到时候就缩小到100公斤。如今汽车一箱油也是七八十公斤加上变速箱、动力系统起码也有四五百公斤而电动汽车只需要电机如果电池能做到100公斤整个动力系统也只有四五百公斤。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>石油之所以成为战略资源,因为它在交通运输领域是不可替代的。&ldquo;电动汽车为何不能普及因为锂镁电池一公斤储电量200瓦时以汽车开300到500公里计算电池自重就要1.5吨,已经没有什么富余荷载,这个汽车没什么用。&rdquo;陈卫东说,&ldquo;储电技术发展就像电脑储存和记忆芯片90年代一个几百兆的硬盘有几十公斤现在64G存储在手机上就实现了因为人们发现了新的储存机理。&rdquo;储能技术的突破是下一个能源时代的关键。无论风能还是太阳能这些离散的能源都可以聚沙成塔,集腋成裘,转化成高密度的电能,聚集变得简单,使用起来也简单。这种高浓度的电池既可以供应全家的能源消费,也可以装在汽车上作为动力。<br />\r\n<strong>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</strong>陈卫东告诉记者欧佩克坐视国际原油暴跌背后就是要打压欧洲对储能电池技术上的投资延缓化石能源的寿命2015年全球将重新迎来廉价石油的时代。</span>', '', '', '113.4.83.216'),
(124, 17, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">中国科学报</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 在煤价下行和天然气荒愈演愈烈的背景下,发展现代煤化工已是大势所趋。现代煤化工包括煤制油、煤制天然气、煤制甲醇、煤制烯烃等。截至目前,虽然我国煤化工仍处于大规模示范阶段,但已是世界上最大的煤化工生产国,煤制合成氨、煤制甲醇等产量已位居世界第一位。&ldquo;十二五&rdquo;期间国内煤化工项目建设进入高峰期。近日《中国科学报》记者从中国石油化工集团公司简称中石化获悉继甲醇制烯烃MTO之后该公司在&ldquo;煤化&rdquo;技术领域又取得一项重大进展和突破成功开发出甲苯甲醇甲基化制二甲苯MTX技术并加以应用。MTX技术利用甲苯为原料、以甲醇为甲基化试剂可实现最大化增产二甲苯。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;石油化工主要有两大分支:一是烯烃,一是芳烃。芳烃包括苯、甲苯、二甲苯等是重要的基础化工原料。MTX技术将石油化工与煤化工技术有机结合不仅为二甲苯等芳烃产品生产装置的增产扩能、芳烃生产过程中原料和产品的结构调整提供了技术支撑而且对实现芳烃技术生产原料的多元化、推动芳烃生产的技术升级和转型发展具有重要战略意义。据中石化相关专家透露在MTX技术实现的过程中有两个关键性问题需要解决即高效和稳定性。鉴于该技术的突出优势从20世纪70年代起国内外多家机构即开展了甲苯甲基化技术的研发工作。但是由于催化剂稳定性差、甲醇利用率低等问题一直没能取得实质性突破。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;在我国能源结构&ldquo;缺油、富煤、少气&rdquo;、国际原油价格高企、&ldquo;煤化&rdquo;产业蓄势待发的背景之下,中石化提出了&ldquo;积极发展煤化工&rdquo;的战略规划和部署并于2000年立项开展甲苯甲基化技术的研究工作。<br />\r\n针对该技术中催化剂稳定性这一关键技术难关项目组依托&ldquo;新结构高性能多孔催化材料创制的基础研究(&ldquo;973&rdquo;项目)&rdquo;项目平台形成了对适用于甲苯甲基化分子筛材料及催化剂认识的重大突破开发了一种高结构稳定性、具有良好烷基化反应活性及较高容碳能力的分子筛及催化剂。同时为提高技术开发的效率中石化有效整合催化剂开发、工艺开发、工程设计和工业生产等多学科全方位的技术力量经过十多年的持续攻关先后完成了小试研究、工业侧线试验和20万吨/年工艺包的设计工作成功开发了高性能的甲苯甲醇甲基化催化剂、以甲苯作为段间冷激物料的多床层反应工艺、含油废水处理工艺、热联合及低温热利用等工艺和技术形成了包括催化剂制备、关键设备、反应工艺等多项创新成果申请了涵盖催化材料、催化剂和工艺技术在内的国内外专利11件形成了具有自主知识产权的MTX成套工艺技术具备了在国际上率先实现甲苯甲醇甲基化技术工业化的技术条件。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;为加快推进MTX技术的工业化2012年9月中石化旗下的扬子石化就此开展了工业试验。在没有工业运行经验可借鉴的困难情况下扬子石化20万吨/年MTX甲苯甲基化装置一次投料开车成功并实现满负荷运转。反应系统操作稳定反应温升与冷激控制系统符合预期换热网络运行平稳工程设计满足要求甲醇转化率100%二甲苯选择性大于80%,产出高质量的二甲苯,率先实现了甲醇原料直接引入芳烃联合装置,实现了世界首套甲苯甲醇甲基化工业装置的商业化运行,为芳烃的&ldquo;甲基管理&rdquo;提供了更加直接和有效的手段。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;中石化专家表示,与传统石油化工结合,是今后煤化工发展的方向之一。借助石油化工技术,煤化工的产物&mdash;甲醇可以实现有效增值。目前中石化正在MTX的基础上研究开发新的技术使得甲醇的利用和芳烃的生产更加多元和有效。</span><br />\r\n', '', '', '113.4.83.216'),
(125, 17, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">21世纪经济报道</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 核心提示面对中国重启的煤化工大幕水资源、环境、能耗以及将要出台的碳税成为发展这一产业必须克服的风险国家高层对煤化工产业的态度也不无谨慎截至目前国家发改委共计批复了15个煤炭深加工示范工程。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤炭的黄金十年戛然而止在中国西部一场由电力企业主导的煤炭变革正拉开帷幕。毛乌素沙漠东南缘的陕西榆林华电百万吨级煤制芳烃项目蓄势待发并计划在未来10年投资千亿元在新疆、内蒙古建设煤、电、化一体化基地华能规划了至少7个煤化工项目产品涉及煤制天然气、烯烃、甲醇最早布局煤化工产业的大唐已投入千亿其管理层将煤化工定义为&ldquo;产业结构调整,成败在此一举&rdquo;;国电、中电投也纷纷在中国西部布局煤化工产业链。在陆续控制了数量庞大的煤炭资源后,电力企业不再满足于降低发电成本抑或贩运煤炭这种较低层次的利用方式,而煤价的迅速下跌则加速了这一进程。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;随着煤炭深加工领域掀起的浪潮中国的煤化工产业重新开闸。今年一季末西部地区5个煤制天然气、4个煤烯烃和1个煤制油项目获得了国家发改委的&ldquo;路条&rdquo;总投资达2000-3000亿元。据统计全国范围内共上报煤化工项目104个投资规模高达2万亿元。在国家及地方规划中至少包括陕西榆林宁夏宁东内蒙古鄂尔多斯、赤峰新疆准东、吐哈、伊犁、库拜等地意欲建立大型煤化工基地。然而面对中国重启的煤化工大幕水资源、环境、能耗以及将要出台的碳税成为发展这一产业必须克服的风险国家高层对煤化工产业的态度也不无谨慎截至目前国家发改委共计批复了15个煤炭深加工示范工程。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>一、电企涌进煤化工</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;巨大的市场需求及不菲的利润令电企欲罢不能。2013年8月陕西华电榆横煤化工有限公司总经理梁彦鸿表示距离华电榆横万吨级煤制芳烃中试技术通过国家能源局验收已过去5月有余但该项目扩产至百万吨产量还未得到批复。自2003年电力体制改革落定华电的主业即确立为发电、煤炭两大板块但华电煤业并不满足于降低发电成本甚至贩运煤炭。为了在陕西榆林转型煤化工产业华电集团下属华电煤业计划投资285亿元建设百万吨煤制芳烃项目。芳烃主要指苯、甲苯和对二甲苯是一种重要的基础化工原料利用它可以生产服装、保温材料、橡胶、日用品等几乎渗透了人类衣食住行的各个方面。巨大的市场需求及不菲的利润令电企欲罢不能。近年来我国芳烃产品的进口量接近需求量的一半以对二甲苯为例2012年国内产量775万吨进口量628.6万吨表观消费量1384万吨自给率仅有56%,进口主要来自韩国、日本、印尼。紧俏的市场行情促使芳烃的销售价格达到万元/吨其生产成本约7000元/吨较几十元每吨的售煤利润高出不少。更为重要的是煤制芳烃可以替代石油。生产一吨芳烃需要耗费标煤不到6吨但石油制芳烃需要消耗原油8-12吨目前国内石油路线生产的芳烃约占芳烃总产量的97%而我国的石油对外依赖率达到60%。梁彦鸿告诉本报记者:&ldquo;一个百万吨级的煤制芳烃相当于一个千万吨级的炼油厂的产能。&rdquo;通过多年的兼并收购目前电力企业坐拥数量庞大的煤炭资源为其发展煤炭深加工领域奠定了基础。以华电榆林为例在控、参股小纪汗、可可盖、隆德和榆阳煤矿后2015年华电在陕西的煤炭产能可达2800万吨/年。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>二、路线选择考量</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;选择错误路线,转型将面临进退两难的窘地。国家能源局组织编写的一份西部地区煤电化研究报告明确支持煤制天然气、煤制烯烃及煤制乙二醇;对于煤制油产业的发展,持有&ldquo;适时&rdquo;态度而严重过剩的煤制二甲醚则采取限制政策。按照国家能源局的表述随着人民生活水平的提高及西气东输、陕京线等天然气管线投入使用城市燃气的需求量日益增长。据预测2015年、2020年国内天然气消费量分别为2600亿立方米和3500亿立方米而同期国内天然气生产量分别为1500亿立方米和2200亿立方米市场缺口分别为1150亿立方米和1300亿立方米即使考虑已建和拟建的LNG设施及陆上天然气通道项目仍存在500-800亿立方米的缺口。目前上马最多的煤制甲醇、二甲醚项目的前景不容乐观。目前我国甲醇、二甲醚市场早已出现严重的产能过剩推广使用甲醇汽油是一个庞大的系统工程在部分省市制定了《车用燃料甲醇》和《车用甲醇汽油M85》后至今尚未出台配套措施由于渗透至人们生活的方方面面煤制烯烃、芳烃项目路线大有可为。据预测未来十年我国聚乙烯需求将保持稳定增长2015年供需缺口为450万吨2020年将扩大到730万吨聚丙烯在上述两个年度的供需缺口达到240万吨和540万吨乙二醇在2015年的供需缺口达到600万吨但仍需警惕中东地区即将投产的几套大型乙二醇装置其目标市场主要是中国并具有原料成本低的竞争优势。华电煤业集团有限公司董事长丁焕德告诉本报记者&ldquo;华电选择煤制芳烃路线,是经过深思熟虑的。&rdquo;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>三、面临环境约束挑战</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤炭资源和水资源呈逆向分布。电企转型煤化工的路途似乎比预想的遥远2013年3月重启的大门只是透出一缕阳光截至目前国家发改委批复的煤炭深加工项目仅有15个示范工程国家高层对煤化工的态度是安全、谨慎发展煤化工。发展煤化工将耗费大量的水资源并有可能污染环境而其能源转化效率也存在提高的空间在 &ldquo;两会&rdquo;上以煤企为代表的政协委员曾呼吁限制电力企业发展新型煤化工。中国中煤能源集团公司原总经理经天亮在提案中表示新型煤化工对煤炭资源和水资源有较高要求同时受生态环境、基础设施、相关产业发展的制约绝不能遍地开花可以作为国家战略储备还不宜商业化。水资源是煤化工产业发展的重要制约因素由于地理、气候等客观因素我国水资源分布严重不均煤炭资源和水资源呈逆向分布。据统计目前我国煤制烯烃耗水量为32吨/万元产值煤制乙二醇为45吨/万元产值煤制油耗水量为0.214吨/吉焦煤制天然气为0.229吨/吉焦。神华鄂尔多斯煤制油项目曾遭到环保组织绿色和平发文抵制。水利部水科院总工程师贾仰文表示:&ldquo;能源化工等耗水量大的规划,应适当加入&lsquo;水评&rsquo;&rdquo;。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤炭深加工也将不可避免地释放二氧化碳如煤制天然气的二氧化碳排放量约为0.137吨/吉焦煤制烯烃为12吨/万元产值。我国近年来二氧化碳排放量的快速增长将使我国不得不面临越来越大的国际压力。煤制燃料的能源利用率同样存在提升的空间据统计煤制油的能量利用率为59%煤制天然气为47%煤制二甲醚仅为40%。即使能够解决上述问题,即将实行的碳税亦将蚕食煤化工产业的利润率,据财政部&ldquo;中国碳税税制框架设计&rdquo;在碳税征收初期的税率为10元/吨二氧化碳以后逐渐上升至70元/吨,碳税制度或将对我国的煤化工行业带来深刻影响。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>四、难以逾越的煤化工之路?</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;日韩是化工产业大国,中国可借鉴他国的成功经验。尽管煤化工未必是最佳路径,但却是中国发展难以逾越的阶段。世界自然基金会(瑞士)全球淡水项目主任李利锋告诉本报记者:&ldquo;目前中国还没有跨越重化工阶段的有效途径。&rdquo;清华大学化工系教授魏飞对本报记者表达了同样的观点:&ldquo;这是一种现实的抉择。&rdquo;在电力企业看来,煤化工并非人们想象的可以完全摒弃。煤炭行业资深分析师李廷认为,中国现有以煤炭为主的能源结构在短期内很难发生改变。&ldquo;如能做到水资源循环高效利用、执行最严格的环保制度,认真地选择产品路线,煤化工不仅可以降低我国的石油对外依存度,还可带来西部地区的持续发展。&rdquo; 丁焕德告诉本报记者。据悉华电榆横煤化工万吨级项目已通过国家能源局验收其用水来自榆林距厂区17公里、年可供水1.22亿立方米的王乾堵,该水库水源来自黄河支流,通过水权置换取得。据称其&ldquo;工业三废&rdquo;也进行了通盘考虑。梁彦鸿对本报记者表示:&ldquo;废水在进行处理后重新回流至厂区利用,废渣则被收集至甲醇厂前端,再次作为生产甲醇的原料,废气在经过处理后,可达标排放。&rdquo;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;未来煤化工的重要基地新疆则利用众多的盆地构造封存生产排放的二氧化碳据悉新疆拟建准噶尔盆地、吐哈盆地、伊犁、塔里木盆地等7个二氧化碳封存地总容量达到451亿吨。不过仍有业内人士担忧一窝蜂的煤化工爆发式增长丁焕德告诉本报记者&ldquo;只有在通盘考虑水资源、环境承载力,以及下游产品的长期市场需求后,才可适度发展煤化工。&rdquo;<br />\r\n实际上主管单位国家能源局已确定了煤化工产业发展的原则和思路以市场需求确定建设规模、按照煤化工产业用水量占基地可供水量的一半比例规划、以及符合国家相关产业政策和运输要求。</span>', '', '', '113.4.83.216'),
(126, 17, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">中国化工报</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 近十年来,我国现代煤化工在争议声中从起步磕磕绊绊走到今天,就像时下的天气一样由暖转寒不断降温。从当初的争先恐后,到如今的观望退出,现代煤化工似乎走到了发展的十字路口。是就此罢手,偃旗息鼓,还是重新定位,继续前行?需要行业理性思考,凝聚智慧,找准方向。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;其实,我国发展现代煤化工有着特定的时代背景,富煤、贫油、少气的资源禀赋,近十年来一路飙升的国际原油价格,对煤炭清洁利用的不懈追求,成为我国发展现代新型煤化工的强大推力,也是我国工业化进程中&ldquo;煤代油&rdquo;的现实选择。因此,我国发展现代煤化工的方向并没有错。虽然当下的国际环境对我国油气进口较为有利,但错综复杂的世界形势变幻莫测,必须以长远的眼光看待我国现代煤化工技术储备及战略规划。虽然一些示范项目进展的不尽如人意为现代煤化工的发展蒙上了一层阴影,但我们绝不能因噎废食,而应该在总结一些示范项目经验教训的基础上,重新调整思路,坚持稳中求进,做好技术储备,等待现代煤化工利好时期的到来。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;回顾过去,自我国开展现代煤化工示范以来,散见于政府多次发文强调的原则有:&ldquo;不能停止发展、不宜过热发展、禁止违背规律无序建设&rdquo;和&ldquo;坚持示范先行、坚持科学合理布局、坚持自主创新&rdquo;等。这种先示范、再推广的思路本来是完全正确的,但错在&ldquo;心急吃了热豆腐&rdquo;。所谓&ldquo;示范先行&rdquo;就是由个别企业先行先示在前面趟路待项目从设计到营运取得一个完整的商业周期后再视情况决定发展规模。应该说这些原则如果得到贯彻执行我国现代煤化工一定会得到健康发展。但令人遗憾的是在GDP崇拜的年代这些原则根本无法抑制地方政府和各类企业对现代煤化工的投资冲动加之有关部门把关不严开闸放水导致&ldquo;示范先行&rdquo;沦为一纸空文,往往示范项目还没有一个满意的结果,大家就一哄而上,其结果是给好端端的一个新兴产业添了堵。因此,当务之急是理性回归到&ldquo;示范先行&rdquo;的路子上来,在示范项目没有成功之前,后续项目应谨慎观察,耐性等待,做好准备,切忌头脑发热,盲目跟进。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;事实上,我国现代煤化工降温从根子上说是由于技术的不成熟所致,需要从国家层面加以重视和解决。从我国现代煤化工示范的情况来看,虽然国家鼓励的五大类煤化工示范项目各个工艺技术路线均已打通,但离技术成熟还有相当一段距离。煤化工项目作为庞大复杂的系统工程,目前尚处于优化阶段,项目整体的成熟度不够,各个环节远未到&ldquo;标配&rdquo;的程度。尤其是气化技术的不成熟,导致已建成的一些项目系统不够稳定,难以实现长周期满负荷连续稳定运行,严重影响到项目的经济性。而各自为战的企业又心有余而力不足。因此,急需从国家层面实施煤化工科技战略,发挥体制机制优势,组织力量开展技术攻关,使每一个工艺路径的示范项目在技术层面达到完全成熟可靠的&ldquo;标配&rdquo;程度。惟如此,我国现代煤化工才有可能实现规模化发展。</span>', '', '', '113.4.83.216'),
(127, 17, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">中化新网</span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2014年7月以来国际原油价格暴跌近50%。有机构研究认为本轮油价下跌远未见底后期仍有下跌空间。若参照煤炭及主要大宗商品近几年的跌幅预计国际原油价格最低将探至50美元/桶并将长期在70~90美元/桶波动。石油价格的大幅波动,必将引发煤化工与油气化工产品竞争力此消彼长,使刚刚起步的新型煤化工竞争力面临新的考验。那么,五大新型煤化工到底会遭遇怎样的挑战和考验?其前景如何?怎样才能实现稳健发展?<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>一、煤制烯烃:依然具有竞争力只怕油价跌跌不休</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤制烯烃堪称新型煤化工的典型代表。这不仅因为中国成功开发了代表当代先进水平的甲醇制烯烃一代、二代技术而且因为中国最早实现了甲醇制烯烃技术的工业化应用于2010年5月28日建成投产了全球首套煤经甲醇制烯烃工业化示范装置&mdash;神华包头180万吨/年煤制甲醇、60万吨/年甲醇制烯烃项目并很快实现了商业化运营产生了良好的经济与社会效益。在示范项目成功刺激下全国煤制烯烃项目建设提速。截至2014年12月国内已经有13套甲醇制烯烃项目投产煤经甲醇制烯烃(或甲醇制烯烃)总产能将达606万吨/年。另据了解全国在建和已经开始前期工作的甲醇制烯烃项目有29个合计产能1300万吨规划的甲醇制烯烃项目合计产能1500万吨。上述项目若全部按期投产中国甲醇制烯烃产能将达3400万吨/年与2013年中国乙烯+丙烯总和相当。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;煤制烯烃(或甲醇制烯烃)之所以被热捧缘于投资者看好其前景。陕煤化蒲城清洁能源化工有限公司副总经理姚继峰说。一方面煤制烯烃产品市场广阔。目前国内乙烯当量自给率50%左右对外依存度超过40%。虽然随着众多炼化一体化项目的建成投产,国内烯烃产能大幅提升,但随着经济社会的发展和人民生活水平的提高,国内乙烯需求量继续保持快速增长。加之中国是一个&ldquo;富煤贫油少气&rdquo;的国家,随着家庭轿车的普及和汽车保有量的增加,国内成品油消费量大幅攀升。而目前国内绝大多数乙烯装置又以石脑油为原料,乙烯产能扩张与汽车争油的矛盾愈演愈烈,使得石油路线乙烯面临原料紧缺和成本不断抬高的双重制约,产能无法持续大幅扩张,从而为煤制烯烃留下了较大的发展空间。另一方面,石油价格近几年持续高位运行,抬高了石油路线乙烯生产成本。而煤炭及甲醇价格的下行,又降低了煤制烯烃(或甲醇制烯烃)成本,此消彼长,煤制烯烃产品竞争力显著提升。更为重要的是,乙烯被称为工业之母,烯烃的衍生品多达几十上百种,广泛应用于国民经济各个领域,这使得投资煤制烯烃项目的市场风险大为降低,相关企业尤其国有企业更乐意在该领域投资,以期取得良好的经济与社会效益。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;延长石油集团总经理助理李大鹏赞同姚继峰的看法。他说神华包头60万吨/年DMTO示范项目商业化运营以来的实践表明与石油路线相比西部地区煤制烯烃项目具有绝对的成本优势&mdash;&mdash;当国际原油价格在100美元/桶左右波动、煤炭价格300元/吨时DMTO装置吨烯烃完全成本不足7000元而石油路线吨烯烃完全成全已高达9600元煤制烯烃的成本优势显而易见。&ldquo;由于相比石油路线,煤制烯烃具有绝对的成本优势,后期,即便国内烯烃真的出现产能过剩,首先关停的也必然是石油路线乙烯装置。从这个层面讲,在现有的五大新型煤化工路径中,煤制烯烃前景最好、风险最小。&rdquo;姚继峰乐观地表示。<br />\r\n但陕煤化集团党委书记华炜、陕煤化集团常务副总经理尤西蒂对此有不同看法。他们表示后期石油价格的走势难以把握。一旦石油价格继续下跌甚至跌破70美元/桶,而国内煤炭价格受综合生产成本高企支撑跌无可跌,甚至可能反弹。那么,煤制烯烃与石脑油制乙烯竞争力就会发生微妙变化,甚至出现逆转。因此,在没有对石油市场中长期走势做出准确判断前,不宜对煤制烯烃前景过分乐观,更不能一窝蜂上项目。尤其不能只拿高成本的石脑油制乙烯与煤制烯烃相比。因为中国经济已经融入全球经济,世界上除了石脑油裂解制乙烯副产丙烯外,还有中东廉价乙/丙烷制烯烃和北美天然气凝析液制烯烃等多种工艺路径,煤制烯烃有无竞争力还要面临上述两种工艺的挑战。两位专家提醒:上马煤制烯烃项目必须通盘考虑国内外多种资源与工艺路径,慎重决策。由于目前国内在建拟建煤制烯烃规模已经很大,有过剩风险,建议已经完成前期工作的项目继续推进外,那些规划但未开始实施的煤制烯烃项目最好暂缓推进。对于那些已经建成和在建项目,则应尽快谋划烯烃下游产品,通过产品多元化、产业长链条,不断增加产品附加值和项目竞争力,防止后期陷入产能过剩泥潭无法自拔。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>二、煤制气:技术成熟市场看好但环保关难过</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;如果说,业内对煤制烯烃的前景总体看好的话,对于煤制天然气的前景,看法则大相径庭。中国化工学会理事贺永德是看好煤制气前景的专家代表。他看好煤制气有三大理由:<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;一是富煤地区建设煤制气项目具有成本优势。当煤炭价格在400500元/吨时煤制天然气的制造成本约1.81.9元/立方米而进口气到达中国口岸价普遍超过2元/立方米入管网价在2.48元/立方米以上前者比后者拥有0.5元/立方米的成本优势。如果采用陕西榆林地区优质烟煤(平均发热量6000大卡/千克)作原料生产1立方米天然气原料煤+动力煤消耗仅22 .3千克。目前榆林地区煤炭售价仅300元/吨折算煤制气原料成本不足0.7元/立方米与进口管道天然气相比优势扩大至1元/立方米以上;若与进口LNG相比煤制气优势更扩大到1.5元/立方米以上。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;二是无产能过剩之忧。中国是一个&ldquo;富煤贫油少气&rdquo;的国家天然气资源量和产量都十分有限而需求增长却异常迅猛。2000~2010年中国天然气消费量年均增长16%2005年~2013年中国城市天然气消费量年均增长25.2%。据中国石油经济技术研究院预计2014年中国天然气需求量将达2061亿立方米而国产天然气(常规天然气、煤层气、煤制气)产量预计为1325亿立方米算上全年可能进口的600亿立方米天然气总缺口仍达136亿立方米比2013年放大1倍。后期随着居民天然气用量的进一步增加、各地煤改气工程的推进以及政府为改善大气质量推动的天然气发电项目的增多以及交通运输领域油改气范围的扩大都将推动中国天然气消费量持续大幅增长。预计到2020年国内天然气消费量将达3600亿立方米20年内年均需求增长将保持10%以上,无产能过剩之忧。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;第三,煤制气对改善城镇空气质量和节能减排效果明显。煤制气由于采用了现代化气化、净化、合成工艺,以及先进高效的脱硫、脱硝、除尘与废水处理技术,能大幅减少污染物排放。尤其我国煤制气项目大多布局于新疆、内蒙古等煤炭资源丰富、运输条件受限地区,通过煤制气项目将所得天然气通过管道输送到京津唐鲁及东部省份,即为上述地区提供了清洁能源、缓解了其环境压力。又相当于通过管道将本来难以输送的资源低成本地输送到全国各地,减少了运输过程的能源消耗和排放污染。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;有人担心加征碳税后会削减煤制气的竞争力。事实上,目前包括法国、加拿大在内的一些发达国家都取消了碳税。不少国家对加征碳税争议很大。在这种背景下,中国&ldquo;十三五&rdquo;期间能否如期加征碳税存在较大变数。即便真的加征碳税按10元/吨CO<sub>2</sub>计算1000立方米煤制气所缴碳税不过45元与进口天然气相比同样具有竞争力。&rdquo;贺永德信心满满地对记者说。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;但包括美国杜克大学教授杨启仁、国土资源部矿产资源评价中心主任<a href=\"http://www.china5e.com/index.php?m=content&amp;c=index&amp;a=show&amp;catid=7&amp;id=224495\" target=\"_blank\">张大伟</a>等专家却不看好煤制气前景。杨启仁表示,国内众多煤制气项目在进行前期论证时,大多以美国大平原煤制气项目为例描绘项目前景及上马的必要性。但事实上,大平原项目是个多输的结局------投产后10年累计亏损13亿美元。现在之所以有少许利润主要得益于新股东在接手该厂时无须偿还95%以上的建厂费用且实现了多元化经营。据了解2011年美国国家能源科技实验室以大平原厂为参考评估北达科州褐煤为原料生产天然气的经济可行性。结果发现建设一个15亿立方米/年的煤制气工厂总投资额高达42亿美元合成气生产成本约21美元/百万英热单位。而近几年美国天然气价格始终在2.5~8美元/百万英热单位徘徊,最终认为煤制气无获利可能。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;无论从经济效益、环保要求还是能源利用效率考虑,煤制气项目都没有前景。&rdquo;延长石油集团总经理助理李大鹏说。据他介绍根据美国大平原厂的经验煤炭转换成合成气再发电能源转换效率仅30%。而一般大型燃煤电厂能源转换效率可达40%以上。同样发1千瓦时电煤制气发电耗煤量较煤直接发电多1/3。另外目前国内煤制气项目为了使粗合成气中尽量增加甲烷普遍选用鲁奇炉。该工艺最大的问题是易产生大量含酚等难处理的废水。试想一个40亿立方米煤制气工厂将有48台煤气化炉矗在那儿形成一排&ldquo;炉林&rdquo;,即便正常运行,产生的废水和废气、废渣也是惊人的。若遇工艺不正常或开停车倒炉,其产生的污染量会更大,甚至可能会使项目所在地形成铺天盖地的烟霾。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;不少煤制气项目上马时,喜欢以进口天然气价格甚至进口液化天然气价格作参照,说明煤制气具有较好的成本和价格优势。但这一点并不现实。&rdquo;国土资源部矿产资源评审中心主任张大伟提醒。他说目前进口天然气到达中国口岸价均超过2元/立方米进口液化天然气价格更高达3元/立方米左右。照此推断以目前的煤炭价格计算煤制气项目似乎均有竞争力。然而事实是随着天然气供应量的增加价格承受力较强的民用领域将趋于饱和。工业、化工及发电领域虽然需求巨大也是西方国家天然气消费大户但中国上述企业如果全部使用高昂的进口天然气将会全面巨额亏损。导致上述领域用不起或不敢使用天然气最终导致国内天然气供大于求价格下行相关煤制气企业在计入高额的财务成本后根本无利可图。也许正是综合考虑了煤制气项目的潜在风险2013年以来17个喜获&ldquo;路条&rdquo;的煤制气项目,绝大多数至今仍在等待观望。&ldquo;十三五&rdquo;期间我国煤制气规模将控制在300亿立方米/年以内,比业内预计的规模压缩了一倍多,表明国家层面对煤制气项目的态度再度发生微妙变化,对其可对带来的影响与风险保持警惕。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>三、煤制乙二醇:若不能进入聚酯市场成本优势无意义</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;中国服装业的持续快速发展对聚酯纤维的需求不断增加继而推动生产聚酯的原料乙二醇需求激增。由于中国乙二醇产能有限巨大的供需缺口只能通过进口填补。2010年~2013年中国进口乙二醇分别达664万吨、727万吨、796万吨和825万吨对外依存度始终保持在70%左右。国内乙二醇市场严重的供不应求不仅推高乙二醇市场价格一度突破9000元/吨关口也刺激煤制制乙二醇项目投资不断升温。据了解截至2014年9月底国内已经有10套煤(或合成气)制乙二醇装置投产合计产能150万吨/年在建项目12个合计产能317万吨/年拟建项目4个合计产能180万吨/年规划中的煤制乙二醇项目3个合计产能90万吨/年。预计到2015年底中国煤制乙二醇产能将达420万吨/年2017年将达467万吨/年2020年将达557万吨/年。即便算上现有以及在建和规划中的石油路线乙二醇项目产能,到&ldquo;十三五&rdquo;末我国乙二醇自给率也只有60%对外依存度仍高达40%。另据测算当煤炭价格250~300元/吨、国际石油价格100美元/桶时煤制乙二醇相比乙烯法拥有1400~1600元/吨的成本优势。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;一方面市场缺口较大,产品销路没问题;另一方面,与主流的乙烯路线相比具有明显的成本优势。投资煤制乙二醇岂不等于抱了&ldquo;金娃娃&rdquo;?&ldquo;钱景&rdquo;十分光明?但业内专家提醒煤制乙二醇有市场未必有钱景。中国化学理事会理事贺永德表示一方面受全球经济不景气影响中国服装出口已经并将继续面临较大压力减少了涤纶需求并打压其价格下行聚酯需求增速因此放缓、价格下移最终将导致乙二醇价跌量减压缩其利润空间。另一方面国内93%的乙二醇用于聚酯生产3%用于聚氨酯生产3%用于防冻液生产1%用于其他领域。所谓的乙二醇供需缺口主要指能满足生产涤纶长丝、涤纶短纤以及瓶级聚酯的乙二醇。而目前国内已经投产的煤制乙二醇装置只有新疆天业5万吨/年合成气制乙二醇等少数装置的产品被上游聚酯企业接受。其余大多数厂家的煤制乙二醇产品尚未被聚酯企业完全接受,只能销往树脂及防冻液等领域,既限制了需求,也削减了煤制乙二醇的盈利能力。后期,如果国际石油价格继续下跌,而煤炭价格企稳并反弹,将缩小煤制乙二醇与乙烯路线乙二醇的成本优势。若届时煤制乙二醇企业仍不能保证装置安稳长运行并彻底解决产品质量不稳定等问题,则煤制乙二醇企业只能望着巨大的聚酯市场兴叹。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;若不能顺利进入聚酯市场,煤制乙二醇就没有前景,其与乙烯法相比所谓的成本优势也毫无意义,只会误导投资者。&rdquo;延长石油集团总经理助理李大鹏说。他说,国内企业在考察投资项目时,大多属&ldquo;理想主义者&rdquo;:把可能的需求当作现实需求;把理论上的竞争优势当作真实竞争力;高估生产成本的比较优质而忽略财务费用及其他成本上升的负面影响;重视项目可行性而忽略其不可行性;眼光只盯国内市场很少放眼国际大环境&hellip;&hellip;这会导致项目论证缺乏应有的客观公正性,以致于许多论证时钱景广阔的项目,投产之日就开始亏损。煤制乙二醇就是一个典型的例子。目前,所有上马煤制乙二醇的企业,眼光只盯着国内巨大的供需缺口,却避而不谈全球乙二醇实际已经过剩;只将低煤价时的煤制乙二醇与高油价时的乙烯路线乙二醇相比,却忽略了北美页岩气革命、中东石化业崛起,以及全球经济增长放缓将导致国际石油价格下跌、煤制乙二醇与乙烯路线成本差距缩小的可能性,使项目潜在的风险加大。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;中宇资讯分析师于晓红亦表示煤制乙二醇的质量尚无法满足聚合级对原料的性能要求这将长期制约该产业发展。如果后期国际石油价格跌破60美元/桶并长期在90美元/桶以下波动,而煤制乙二醇又无法在短期内解决质量不稳定难题,则其前景远未预想的乐观。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;国内首套煤制乙二醇工业化示范装置&mdash;&mdash;通辽金煤化工公司20万吨/年装置近几年的表现也让业内对煤制乙二醇的钱景疑虑重重。公开资料显示该项目自2011年投产以来不仅鲜有盈利反而成为其母公司丹化科技股份公司的亏损大户。2013年更以亏损1.92亿元拖累丹化科技业绩由盈转亏。今年前三季度虽然帐面上显示项目已经盈利但扣除通辽经济技术开发区管委会给予的6000万元自主创新奖励资金、内蒙古自治区给予的550万元科技经费拨款等共计6790万元政府奖励拨付资金乙二醇装置对企业的利润贡献微乎其微。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;渭化集团副总经理张小军则表示今年上半年虽然我国服装出口总量增速下滑7.2%但化纤制服出口量逆势增长24.8%对乙二醇行业拉动明显。尽管如此国内乙二醇价格仍出现大幅下跌表明全球乙二醇过剩已经对中国市场产生冲击。后期一旦中东、北美低成本乙二醇装置陆续投产并打入中国市场尤其美国一家公司研发的二氧化碳电化法与水、氢气合成乙二醇新技术取得实质性突破并工业化应用后其仅125美元/吨的生产成本,将对现在看来颇具优势的煤制乙二醇行业产生巨大冲击。他建议国内企业加快煤制乙二醇关键技术攻关,尽快推出先进、实用、低能耗技术,而非一味扩大产能,以应对未来竞争。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>四、煤制油:项目表现良好但&ldquo;高大上&rdquo;投资引风险</strong><br />\r\n中国日益增大的成品油需求与资源量及产量有限的矛盾使得原油进口量连年大幅增加石油对外依存度连续数年维持在55%以上的国际超高警戒线。这一状况严重威胁着中国能源战略安全。为此,稳妥地发展煤基油品燃料不仅成为能源专家的呼声,也引起国家层面关注。以致于&ldquo;十一五&rdquo;以来,国家每次在规范煤化工产业健康发展时,都要特别点到煤制油。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;而从神华宁煤400万吨/年煤间接液化项目获得批准到兖矿榆林110万吨/年、伊泰鄂尔多斯200万吨/年、潞安集团150万吨/年、贵州渝富能源开发公司200万吨/年等数个煤制油项目获得<a href=\"http://www.sdpc.gov.cn/\" target=\"_blank\">国家发改委</a>&ldquo;路条&rdquo;不难看出国家层面对煤制油尤其已经被几套16万吨/年工业化示范项目初步验证的煤间接液化项目的管控悄然松绑。据了解即便不再增加新的业主仅上述几家煤制油企业规划的项目全部实施后中国每年就将新增煤基油品6080万吨。如果算上延长石油集团规划的煤油共炼、陕西煤业化工集团规划的煤炭分质利用制油项目以及全国其他企业在建和规划的约800万吨煤焦油加氢制取燃料油项目2020年前后中国煤基油品规模将超过8000万吨/年。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;众多企业之所以在国家严格管控下热上煤制油项目,主要还是认为煤制油的前景比较乐观。&rdquo;内蒙古伊泰煤制油有限责任公司董事长齐亚平表示。他以伊泰16万吨/年煤制油项目为例。该装置于2012年底首次达产后2013年全年生产油品18.2万吨装置平均负荷达108%油品综合成本平均每吨降低5%实现了消耗低、效益好的预期目标。虽然齐亚平并未透露煤间接液化产品的利润到底有多高但公开资料显示2013年1~9月伊泰煤间接液化项目生产各类油品和化工品13.2万吨上缴税费2.06亿元实现净利润1.2亿元。照此推算煤间接液化的液体产品净利润高达909元/吨。而据了解2013年以来包括神华百万吨煤直接制油、18万吨/年煤间接液化、潞安16万吨/年煤间接液化、陕煤天元50万吨/年煤焦油轻质化、陕煤富油12万吨/年煤焦油全馏分加氢、以及宝泰隆煤公司的10万吨/年高温煤焦油加氢制取燃料油等煤基油品项目,均取得了可观收益。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;我国石油对外依存度一度接近60%,发展煤基油品已经成为中国确保能源安全的战略选择。从这个层面讲,煤制油项目拥有一定的民意、政策与政治基础。加上巨大的消费需求与良好的盈利等市场手段推动,煤制油的前景十分光明。&rdquo;中科合成油技术有限公司技术顾问唐宏青尤其看好煤间接液化的前景。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;但也有专家认为煤制油的前景远没那么乐观。&ldquo;根据国家税务总局2012年第47号公告纳税人以原油或其他原料生产加工的在常温常压条件下呈液态状(沥青除外)的产品将分别加征1元/升(石脑油)和0.8元/升(燃料油)消费税这等于将煤制油综合成本增加了20%。以一个100万吨/年煤制油项目为例每年上缴消费税高达10亿元极大地压缩煤制油项目的利润空间。后期如果国际油价进一步下跌引发成品油价格下跌煤制油项目是否还能盈利存在悬念。&rdquo;陕西省决策咨询委员会委员贺永德提醒说。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;投资强度大、污染大、资源利用效率低则是延长石油集团总经理助理李大鹏不看好煤制油前景的三大理由。他说建设一个500万吨/年炼油厂只需200亿元投资而建设一个在煤制油路径中还算投资强度较低的相同规模的煤间接液化项目总投资额高达600亿元。超高的投资强度必然导致煤制油项目财务成本居高不下影响其产品市场竞争力。而从产品收率和资源利润效率看煤直接制油的液体收率不足35%,能源转化率仅33%;煤间接液化吨产品耗水超过7吨&hellip;&hellip;在中国经济发展受资源与环境约束越来越明显的情况下,煤制油的上述弊端将严重影响其综合效益,甚至会影响产业健康发展。&ldquo;中国应以全球视权衡自身的能源安全,并重新考虑发展煤制油的紧迫性、必要性与重要性&rdquo;。李大鹏建议。他说,既然经济已经全球化了,就应有资源分配全球化的视野。中国缺油不等于其他地区也缺油,我们完全可以凭借充足的外汇储备,以及不断上升的综合国力和国际地位,利用政治、外交、经济等手段,大量利用境外油气资源,实现外油中用,何必急于发展投资强度大、资源消耗高、污染排放大的煤制油产业。况且,近两年一些煤制油项目之所以取得较好收益,是国际油价高位运行、国内汽车业快速发展助推成品油需求猛增,以及煤炭价格大幅下跌等多种因素共同作用的结果,是一种特殊情况,并不能代表煤制油项目本身的竞争力。后期一旦煤炭价格触低回升,国际油气价格再度回调。尤其中国汽车工业增速放缓,成品油需求减少后,煤制油的钱景将难言乐观。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;即便要发展煤制油,也应打破煤直接或间接制油等单一模式,而应采取煤炭分质利用方式,在条件允许的情况下,先对煤进行干馏提油,再将提油后的洁净焦炭通过煤直接或间接制油等途径制油,或与其他化工、电力、钢铁、建材等装置对接,实现煤的&lsquo;两头见油&rsquo;和产品多元化,提升项目的资源利用效率和抗风险能力。&rdquo;陕煤化集团常务副总经理尤西蒂这样表示。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;一位专家透露:正是综合考虑了国内、国际环境与资源供需格局变化,以及煤制油项目的利弊与业内的不同意见,国家高层初步决定:&ldquo;十三五&rdquo;期间我国煤制油规模将控制在1000万吨/年以内而非此前传言的4000万吨/年。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>五、煤制芳烃:技术看上去都很美推广应用却不易</strong><br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;据清华大学教授魏飞介绍全球95%以上芳烃来自石油炼化装置的催化重整、裂解汽油加氢抽提。即常压石脑油和减压石脑油分别通过连续重整和加氢裂化再经芳烃抽提获得苯、甲苯和二甲苯等。甲苯选择性岐化、烷基化转移后生成二甲苯二甲苯异构化后转化为PX(对二甲苯)。随着石油资源的减少和价格的攀升以及原油重质化程度的加剧石油路线获取高纯PX的成本越来越高加之中国本身&ldquo;富煤贫油少气&rdquo;获取PX的难度日益增大。为此国内科研院所纷纷组织团队锲而不舍地开发非石油路线PX技术先后有中科院山西煤化所的固定床一步法甲醇制烃类技术、陕煤化集团与中科院大连化物所联合开发的甲醇甲苯制PX联产低碳烯烃循环流化床技术以及中石化自主开发的甲苯甲醇甲基化制取PX等技术问世。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;2013年1月13日由中国华电集团与清华大学合作开发的万吨级甲醇制芳烃工业试验装置一次投料成功并生产出合格PX这也是世界首套原料仅为甲醇的甲醇流化床制PX装置。其芳烃单程收率达55%~65%烯烃80%转化为芳烃芳烃总收率达80%是目前最先进的非石油路线芳烃生产工艺。至此中国分别掌握了固定床、流化床甲苯甲醇制PX和甲醇直接制PX等多项技术且全部通过了中试或工业化运行验证煤制芳烃整体技术世界领先。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&ldquo;但仔细梳理上述技术,发现均不同程度地受到限制,投资者很难长期获得良好收益。&rdquo;陕煤化集团副总工程师何迎庆如是说。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;比如,山西煤化和赛鼎工程公司合作开发的固定床一步法甲醇制烃类技术,虽然具有能灵活生产芳烃与烯烃的优势,但因采用的是固定床,存在规模难放大、设备投资多、占地大、工艺流程长、催化剂需经常倒炉活化(或更换)等弊端;另两种甲醇甲苯制PX技术虽然使用了甲醇减少了甲苯消耗但依然需要甲苯作原料。而国内甲苯资源本来就短缺以致许多企业因甲苯来源无保证而不愿上马新项目;清华大学的技术最好可以完全以甲醇为原料生产芳烃但其80%芳烃总收率所得的是混合芳烃并非市场真正紧俏的、前景向好的纯PX导致项目盈利预期大打折扣。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;蒲城清洁能源化工公司副总经理姚继峰亦不看好煤制芳烃的前景。他说由于原料全部采用甲醇清华大学开发的FMTA技术是真正意义的煤制芳烃技术也最具工业化推广应用的条件。但一方面其所得产品80%为苯+甲苯+二甲苯,属混合芳烃(而非价格高出烯烃20%30%的纯PX)这种混合芳烃市场价仅70008000元/吨。根据工业化中试结果每生产1吨混合芳烃需消耗3吨甲醇而同样3吨甲醇采用DMTO技术能生产1吨烯烃。目前烯烃售价10000元/吨以上,煤制芳烃与煤制烯烃的经济性谁优谁劣一目了然。这也正是众多企业宁肯一窝蜂上马煤制烯烃项目,而不愿涉足煤制芳烃的根源。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;另一方面目前煤制芳烃尚无一套大型工业化示范装置运行存在一定的工业化风险。尤其近几年因PX被妖魔化后各地民众纷纷拒绝PX项目更增加了煤制芳烃项目的成本、难度和风险使这一先进技术难以推广应用。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;而据中国科学院院士何鸣元介绍,芳烃的重要来源和用途为:原油炼制&mdash;石脑油&mdash;MX(混二甲苯)&mdash;PX(对二甲苯)&mdash;PTA(精对苯二甲酸)/MEG(乙二醇)&mdash;PET(聚酯)&mdash;涤纶长丝/短纤&mdash;纺织面料&mdash;服装。因此无论石油路线PX还是煤基PX最好能与下游PTA、PET建成联合装置并接近化纤与纺织服装市场。由于我国大多数炼厂分布在东南沿海这些地区又是化纤与服装业最集中的地区从而很容易形成PX上下游一体化产业集群彰显良好的经济与社会效益。煤制芳烃主要是要利用西部廉价的煤炭与甲醇资源显然不具备建设靠近终端消费市场的PX上下游产业链的条件也即不能实现各环节利益最大化最终将削弱项目总体收益。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;专家们认为在石油价格高位运行、煤炭价格持续下跌、国内PX货紧价扬等有利形势下煤制芳烃尚因种种原因没有获得投资者追捧那么一旦国际石油价格继续下跌国际PX价格下挫则煤制芳烃的成本优势将会减弱产业发展的道路将曲折而漫长。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;魏飞却表示清华大学联手中国华电集团开发的FMTA工业化技术不足3吨甲醇即可生产一吨混合芳烃混合芳烃收率达80%以上且90%的混合芳烃最终都能转化为市场急需的PX。当烯烃价格在10000元/吨时纯PX售价一个度高达14000元/吨,照此推断,煤制芳烃经济效益并不逊于煤制烯烃。况且,由于石油中芳烃含量较少,我国又是一个富煤贫油少气的国家,煤制芳烃既是中国的无奈之举也是战略选择,又怎么能简单地以经济效益衡量其前景?至于说会否遭遇类似石油路线PX风波导致该技术难以推广的担心则完全没有必要。因为&ldquo;PX断子绝孙说&rdquo;本身不仅荒谬而且带有一定政治目的是一些所谓的专家学者在替国外利益集团误导甚至愚弄中国老百性。目前京、沪、穗等地应用的国汽油其中芳烃含量为40%将来国汽油还要在全国推广。如果照某些所谓专家的说法全世界都别用汽油了。因此FMTA技术绝不会因为所谓的环境风险而无法推广应用。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;上海新佑能源科技有限公司董事长韩保平则建议采用煤焦油加氢路径获取芳烃。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;他说由于石油侧链多经常压蒸馏得到的石脑油中芳烃仅占45%;而煤焦油中的侧链组分少用其加氢制得的石脑油中芳烃含量超过70%。目前大多数煤焦油要么只经简单加工处理,获得葸、萘等初级产品;好一点的企业将煤焦油加氢制取调和燃料油,这两种方法显然均未做到对资源的最大化利用。如果我们在有条件的地区建设大型煤炭提质装置,将获得的煤焦油加氢生产石脑油+柴油,再用高含芳烃的石脑油制取芳烃,无论经济、环境还是节能减排效益都将十分显著,其投资强度也将明显低于煤-甲醇-芳烃一体化装置。(陈继军 陈光达)</span><br />\r\n', '', '', '113.4.83.216'),
(128, 10, '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 22px\"> 2015年1月26日黑龙江省能源环境研究院召开全体职工大会会议由能源院徐晓秋院长主持院班子及全体职工参加了会议。 </span>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img src=\"/uploads/allimg/150126/1-150126122I43W.JPG\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋院长首先传达了省科学院郭春景院长在省科学院2015年工作会议上的报告并结合能源院实际部署近期工作。徐院长指出省科学院工作会议的召开为今后一段时期我院相关工作明确了行动纲领是我院今后发展的工作指南。全院干部职工要充分领会迅速行动积极落实全力开展能源院2015年的科研工作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 随后徐院长介绍了1月25日参加黑龙江省千户科技型企业动员会的相关情况并传达了陆昊省长《黑龙江省千户科技型企业三年行动计划》的讲话精神。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后徐院长强调要坚持借船出海理念勇于攻坚克难开展好与清华大学的相关合作同时要求能源院全体职工围绕两个会议精神制定2015年工作计划借此促进科研水平快速提升并推动各项工作有序开展。</span>', '', '', '1.189.50.73'),
(129, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1月27日黑龙江省能源环境研究院召开了科研人员座谈会院长徐晓秋、副院长关春玲与我院一线科研骨干、高级职称人员参加了座谈院长徐晓秋主持会议。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 与会科研人员认真总结了过去一年的工作情况,围绕科研院所改革及如何开展下一步科研工作提出了一些设想,同时围绕&ldquo;五年会战&rdquo;既定目标,就我院如何加强高标准科研团队建设、如何有效开展新技术研究等展开了热烈讨论,提出了很多建设性的意见和建议,成效显著。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 院长徐晓秋对与会科研人员取得的成绩给予了充分肯定,同时对大家提出了几点要求:一是要继续发挥我院在油页岩方面的研究优势,争取用两年时间进入国家四大平台;二是要围绕目标任务,注重发挥我院的科技支撑作用,突破国家项目,同时不断加强自身宣传展示、人才队伍建设、科研条件建设和科研管理服务;三是要善于学习,注重能力提高,善于对外交流与合作、善于向实践学习、善于在工作中不断思考,提高自己分析问题和解决问题的能力;四是要有强烈的责任感和使命感,崇高的敬业奉献精神,转变观念,革新理念,发挥主观能动性和积极性,为能源院的发展奉献力量。</span>', '', '', '1.189.117.200'),
(130, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1月29日我院召开了青年科研人员座谈会院长徐晓秋、副院长关春与青年科研人员10余人参加了会议会议由院长徐晓秋主持。徐院长指出希望通过此次会议为我院青年人提供交流的机会让青年科研工作者通过交流提出自己的工作设想和打算。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会议上,青年人员畅所欲言,纷纷围绕自身科研内容提出了很多好的想法,同时也提出了自己在工作中遇到的困惑及困难。院长领导对青年人员的工作热情和工作思路给予了肯定,并对相应的问题进行了解答。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最后徐院长指出,我院将以全面提高青年科研工作者能力素质、充分发挥青年科研工作者的创造力为重点,以全面提高服务水平为目标,尽全力为我院的青年科研工作者创造更多的机会,打造良好的科研环境。</span>', '', '', '1.189.117.200'),
(131, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 3月6日上午我院召开了&ldquo;三八&rdquo;妇女节座谈会,院长徐晓秋、副院长关春玲与十余名女同志参加了座谈会。院长徐晓秋向全体女同志表示节日的问候和祝贺,感谢大家一年来在各自岗位上为本院创新发展做出的辛勤努力和贡献。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150309/1-1503091A309593.JPG\" style=\"width: 644px; height: 428px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 座谈会上,女同志们就如何扮演好工作家庭的双重角色、如何加强创新团队建设、提高业务技能等方面畅所欲言、各抒己见。大家纷纷表示,不但要内外兼修成为一道美丽的风景线,而且要充分发挥&ldquo;半边天&rdquo;的作用,增加工作中的积极性和主动性,把智慧和力量凝聚到科研工作上,为我院的发展贡献自己的力量。座谈会气氛融洽愉快,充分展示了新时代女性的风采。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 最后徐院长表示,希望女同志们以&ldquo;巾帼不让须眉&rdquo;的精神立足岗位、奋发有为贯彻落实2015年院工作会议精神不断学习业务提高个人素质成长为一专多能知识型人才的同时保持健康心态鼓励大家再接再厉再创佳绩。</span>', '', '', '113.9.10.30'),
(132, 16, '<span style=\"font-size: 26px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4月7日省能源院党委在一楼会议室召开了全体党员会议党委书记、院长徐晓秋同志、党委委员、副院长关春玲同志、各支部书记及全体党员参加了会议。会议由徐晓秋同志主持。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会议有三项内容徐晓秋院长首先传达了4月1日省科学院会议内容及郭春景院长的讲话精神。随后全文传达了2月2日习近平总书记在省部级主要领导干部学习贯彻十八届四中全会精神全面推进依法治国专题研讨班开班式上的讲话内容。最后传达了省科学院关于召开&ldquo;在新常态下如何做好党建工作&rdquo;专题座谈会的通知,并推荐了参会人员。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐院长特别指出,此次省科学院专题座谈会是指导我院适应新常态下经济社会发展要求,协调推进&ldquo;四个全面&rdquo;战略布局,圆满完成五年发展规划目标的重要会议,参会人员一定要高度重视,结合能源院工作实际,积极参与,要以此次会议为契机,全面推进我院快速发展。</span>', '', '', '113.9.10.91'),
(133, 10, '<span style=\"font-size: 22px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span><span style=\"font-size:22px;\">2015年3月16日应天津大学内燃机燃烧学国家重点实验室主任、博士生导师姚春德教授的邀请黑龙江省科学院科研处王阳处长、黑龙江省能源环境研究院徐晓秋院长和油品助剂研发中心张树华主任一行三人赴天津大学进行交流访问。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150417/1-15041G3004TT.JPG\" style=\"width: 593px; height: 479px;\" /></span></div>\r\n<br />\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 天津大学内燃机燃烧学国家重点实验室是我国内燃机学科唯一的国家重点实验室,在甲醇燃料内燃动力工程领域拥有很高的国际知名度,黑龙江省能源环境研究院在非常规能源领域特别是甲醇燃料的研究方面拥有丰富的经验和实例。双方根据各自科研领域的技术特点,就如何充分发挥自身研究优势,实现技术互补,寻找合作契机召开了技术合作交流会,并针对相应需求开展合作探讨。最终,双方就共同研发&ldquo;柴油、甲醇双燃料供油系统&rdquo;达成了合作共识,签订了院、校联合创新合作模式框架协议,同时计划在相应标准制定、完成节能减排目标、人才培养和交流学习等方面开展一系列合作。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 我省是煤基甲醇产量大省,如&ldquo;柴油、甲醇双燃料供油系统&rdquo;得到广泛应用将节省燃料费30%以上并有效降低NOx化合物、PM2.5等有害物质排放30%-50%,在全面改善环境质量的同时助力我省煤化产业发展。</span>', '', '', '113.4.72.229'),
(134, 10, '<div>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2015年4月27日国家行业标准《住宅建筑室内装修污染控制技术规程》启动会暨编制组第一次工作会议在深圳市召开。黑龙江省能源环境研究院作为编制组成员单位由徐晓秋院长带队环境与节能技术研究室王志成主任及助理研究员张玥同志随行赴深圳参加了此次会议。</span></div>\r\n<br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/150504/1-150504145242U3.jpg\" style=\"width: 639px; height: 427px\" /></span><br />\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此次会议共有来自国家住建部标准定额所、深圳市建筑科学研究院股份有限公司、清华大学、中国建筑科学研究院、上海市建筑科学研究院集团有限公司等19个参编单位参加。会议围绕《住宅建筑室内装修污染控制技术规程》编制大纲进行热烈地交流与讨论确定了编制原则、需要解决的问题、补充研究的内容、标准的章节目录、进度计划及编制分工等事项。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 会议结束后深圳市建筑科学研究院股份有限公司毛洪伟总监和徐晓秋院长就双方今后合作进行了深入探讨和交流。2015年4月28日双方就共同完善&ldquo;室内空气质量预评估&rdquo;达成合作共识,计划在国家行业标准制定、完善室内空气预评估数据库、高层次人才培养和交流学习等方面开展一系列紧密合作。</span><br />\r\n <br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/150504/1-150504145304944.jpg\" style=\"width: 640px; height: 427px\" /></span><br />\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 参编国家行业标准《住宅建筑室内装修污染控制技术规程》,是我院近年来首次承担国家级课题,也是我院在室内环境领域首次与国内著名大学、院所展开紧密的合作。此次合作,起点高,影响大,标志着我院正式进军室内环境污染防控领域。</span></div>\r\n', '', '', '1.189.50.154');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(135, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2015年5月12日农业部沼气科学研究所生物质能中心主任胡启春研究员一行四人到黑龙江省能源环境研究院进行交流与访问。</span>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/150526/1-150526192050T1.jpg\" style=\"width: 519px; height: 346px\" /><br />\r\n &nbsp;</div>\r\n&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 22px\">&nbsp; 胡启春研究员首先来到能源院江北实验室,在会议室做了沼气工程领域的报告,报告详细的分析与解读了国内最新科研技术的相关情况,省能源院领导及相关科研人员参加了会议,并对胡研究员一行的到来表示热烈欢迎,同时省能源院也介绍了东北地区特别是黑龙江省各型沼气工程的发展现状,随后双方围绕各自技术优势进行了深入交流,并积极寻找合作契机。</span><br />\r\n<br />\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/150526/1-150526192114164.jpg\" /><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5月13日在省能源院工作人员的陪同下参观了我院在大庆杜尔伯特的IMUS项目并对黑龙省部分地区的生物质能源技术发展情况进行了调研。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 临别时,省能源院徐晓秋院长再次感谢胡启春研究员一行四人的到访,同时希望省能源院与农业部沼气研究所建立紧密的合作与联系。</span>', '', '', '1.189.50.152'),
(136, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 根据省科学院通知要求6月4日黑龙江省能源环境研究院在一楼会议室召开了党委扩大会议暨省能源院&ldquo;三严三实&rdquo;专题教育动员会,省能源院领导班子、全体党员、部门负责人及副科级以上民主党派人士参加了会议。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/150608/1-15060Q0232O11.jpg\" style=\"width: 644px; height: 428px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 大会通过了省能源院&ldquo;三严三实&rdquo;专题教育实施方案,省能源院党委书记、院长徐晓秋同志就深入开展&ldquo;三严三实&rdquo;专题教育进行了动员和全面部署。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/150608/1-15060Q02343639.jpg\" style=\"width: 644px; height: 428px;\" /></span></div>\r\n<br />\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 徐晓秋同志指出,要坚决贯彻落实中央、省委及省科学院的部署和要求,从严从实开展&ldquo;三严三实&rdquo;专题教育,要明确责任,紧扣主题,聚焦对党忠诚、个人干净、敢于担当,坚持高标准严要求,注重思想引领,解决实际问题。同时要求党办、党支部及团委负责同志要在&ldquo;三严三实&rdquo;专题教育中讲一次党课。各部门主要负责同志,要充分提高认识,积极配合,带头搞好学习教育、确保省能源院&ldquo;三严三实&rdquo;专题教育取得实效。</span>', '', '', '113.9.10.91'),
(137, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 5月27日省知识产权局张毅副局长率综合协调处负责同志就全省高校院所专利&ldquo;提质促量&rdquo;工作,到黑龙江省能源环境研究院进行调研。省能源院徐晓秋院长、关春玲副院长、科研与产业化办公室主任王志成等有关同志参加会议,并作情况介绍。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150608/1-15060PU64Q64.JPG\" style=\"width: 504px; height: 337px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长介绍2013年省能源环境研究院与省科学院科技孵化中心合并。省科学院科技孵化中心为2012年度省知识产权局高校、科研院所专利项目支持单位在项目支持下专利工作发展取得实质性突破。合并后省能源院更加重视专利工作近两年申请专利41项人均专利超1项。院科研与产业化办公室王志成主任介绍了院专利申报、维护管理专利转移和产业化工作情况。建立知识产权月报制度、各技术科室联络员制度定期对院管理层、知识产权管理人员和技术人员进行知识产权的相关培训要求各科室设立专项资金提高专利撰写人员的业务水平等措施使知识产权工作再上新台阶。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 张毅副局长对省能源院承担省高校院所专利项目取得的效果表示赞赏,认为之前项目执行成效好、产出大,特别是对建立&ldquo;知识产权联络员&rdquo;制度予以充分肯定同时重点介绍了2015年度我省高校院所专利&ldquo;提质促量&rdquo;工作,建议省能源院更加重视发明专利拥有量,做好新发明专利的挖掘及已有发明专利的保持工作,进一步强化专利转化应用工作。张毅副局长同时还介绍了省知识产权局有关专利创造、运用等方面的政策措施,建议双方加强沟通联系,促进专利&ldquo;提质促量&rdquo;工作,进一步将能源领域的科研水平转化为专利优势,为改善我省生态环境发挥更大的作用。</span><br />\r\n', '', '', '113.4.72.229'),
(138, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年6月4日至5日省知识产权局举办了黑龙江省高校、科研院所知识产权专题培训班。我院科研办王志成主任、设计部王玉鹏和环境与节能研究室张玥参加了此次培训。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150608/1-15060Q13402934.JPG\" style=\"width: 577px; height: 433px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 此次培训课程由来自省知识产权局的张毅副局长、北京隆源智信知识产权咨询有限公司的闫冬总经理、哈尔滨工程大学经济管理学院陈伟教授及北京科技大学科学研究与发展部张超副部长授课,不仅解释了知识产权为何是建设创新型国家的核心竞争力,还重点讲解了专利转化运用的重要性,并结合具体的案例加以分析,更加易于理解和记忆。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此次培训班旨在增强我省高校及科研院所相关技术人员的知识产权转化意识,提高知识产权的运用率,使得知识产权能够有效的创造实用价值。课程内容丰富,含义深刻,重点明确,使我们受益匪浅。</span>', '', '', '113.4.72.229'),
(139, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年6月8日由黑龙江省能源环境研究院发起的黑龙江省能源环境学会正式成立。学会由黑龙江省民政厅批准并发放《社会团体法人登记证书》业务主管部门为黑龙江省科学技术协会。<br />\r\n<br />\r\n<img alt=\"\" src=\"/uploads/allimg/150610/1-150610161446358.JPG\" style=\"width: 553px; height: 402px;\" /><br />\r\n<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 能源化学学会为非营利组织性质的社会团体,属独立法人机构。致力于在能源和环境建设领域发挥桥梁和纽带作用,协助有关部门制定政策战略,充分运用市场机制,着力于能源环境领域先进的技术和产品全方位推广,加速产学研结合,促进企事业单位、科研院所间的对外交流与合作、宣传推广等工作。<br />\r\n学会可开展学术交流组织研讨会、论坛促进能源环境事业和谐发展。反映科学技术工作者的意愿和要求维护科学技术工作者的合法权益。依法编辑内部参考资料和学会刊物及相关书籍。依法开展科学技术交流活动和业务培训提高人员素质。宣传能源环境领域的方针和政策促进企业节能减排提高能源利用效率。承办政府及相关部门的委托工作。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 学会的成立标志着省能源院在领域内学术地位的提升,同时也标志着省能源院的工作得到各级领导和同行专家的认可。</span>', '', '', '113.4.72.229'),
(140, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 6月15日在省能源院一楼会议室省能源院党委书记、院长徐晓秋同志以《践行&ldquo;三严三实&rdquo;要求,做忠诚干净担当的好干部》为题,为全体党员、副科级以上人员讲了一堂&ldquo;三严三实&rdquo;专题党课。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150616/1-150616130424M7.jpg\" style=\"width: 557px; height: 371px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记围绕准确把握&ldquo;三严三实&rdquo;要求的精神内涵、充分认识&ldquo;三严三实&rdquo;要求的重大意义、深入挖掘不严不实的具体表现等方面的作了深入浅出的论述和讲解。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150616/1-150616130445P8.jpg\" style=\"width: 559px; height: 371px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记同时要求每位党员干部都要自觉践行&ldquo;三严三实&rdquo;,按照&ldquo;三严三实&rdquo;的要求对照检查、提升自己,从思想深处、从履职行权、从日常生活等方方面面,摒弃歪风邪气,树立昂扬正气,以更加严谨的工作作风和更加积极的工作态度聚力&ldquo;五年会战&rdquo;,推动省能源院科研事业新发展。</span>', '', '', '113.9.10.91'),
(141, 10, '<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6月18日清晨省能源院举办了首届&ldquo;能源杯&rdquo;徒步活动,活动的主题为 &ldquo;低碳环保,健康生活&rdquo;。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/150623/1-150623100631N0.jpg\" style=\"width: 906px; height: 602px\" /></span></div>\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 本次活动全程约8公里环绕阿勒锦岛一周历时两个 小时。一路上大家奋勇争先、相互鼓励,时而疾走如飞,时而舒缓脚步,在欣赏沿途美景享受运动快乐的同时激发了大家热爱自然、热爱生活的感情,提高了低碳环保意识。</span><br />\r\n<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><img alt=\"\" src=\"/uploads/allimg/150623/1-150623100F5630.jpg\" style=\"width: 867px; height: 602px\" /></span></div>\r\n<br />\r\n<br />\r\n<span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 此次活动让大家放松了心情、愉悦了身心、磨练了意志、增进了友谊。在行走间凝心聚力,彰显了省能源院全体职工&ldquo;奋勇争先、和谐健康&rdquo;的精神风貌和时代追求。</span><br />\r\n', '', '', '113.5.2.14'),
(142, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 为喜迎中国共产党成立94周年继承和发扬党的优良传统和作风切实加强基层党组织建设&ldquo;七一&rdquo;期间省能源环境研究开展内了容丰富、形式多样的庆祝活动通过主题鲜明、广泛参与的活动切实提升党组织的号召力、凝聚力和战斗力使广大党员干部以更加饱满的热情迎接中国共产党成立94周年盛典。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 6月29日省能源院开展了庆&ldquo;七一&rdquo;系列活动之一《书画摄影作品展》为党的生日献礼。此次活动得到了全院职工的热情响应全院共征集书画摄影作品50余件经过评比、优选出优秀作品35件入选此次展览其中书法作品&ldquo;三严三实&rdquo;,笔锋流畅有力、大气潇洒,充分展现了作者对&ldquo;严与实&rdquo;的深刻理解;绘画作品《庆》,用花开盛世的美好景象,祝福祖国欣欣向荣,繁荣昌盛;摄影作品内容积极向上,传递着正能量,其中有的歌颂祖国大好河山,有的缅怀历史,勿忘国耻,有的记录丰富多彩的业余生活。通过此次展览,全面地展示出省能源院职工爱自然、爱生活,爱工作的情怀。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145634K6.JPG\" style=\"width: 558px; height: 419px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145645360.JPG\" style=\"width: 558px; height: 419px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 6月30日省能源院开展了庆&ldquo;七一&rdquo;系列活动之二《党员带头捐书、共建院图书共享平台》。经过积极策划、精心准备,党员干部带头捐书活动顺利开展,同时建立了省能源院自己的图书共享平台&mdash;&mdash;博知苑,并且制定了相关借阅准则。此次捐书活动得到了省能源院全院职工的积极响应,大家纷纷把自己喜欢的书籍放到博知苑与大家一起分享,此次活动共收到书籍近百本,类别涵盖文史、社科、电子、机械、化工、生物、心理类等。在成立博知苑的当天,院里的很多同志就已经借阅了自己喜欢的书籍,相信在省能源院全院职工的共同努力下,博知苑一定会越办越好。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145H0330.JPG\" style=\"width: 504px; height: 395px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145H9262.JPG\" style=\"width: 386px; height: 470px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 7月1日省能源院开展了庆&ldquo;七一&rdquo;系列活动之三《欢庆&ldquo;七一 &rdquo;为党庆生》。此次活动得到了省科学院直属机关党委的大力支持,刘颖同志参加了系列活动。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145K0959.JPG\" style=\"width: 558px; height: 372px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145Q1261.JPG\" style=\"width: 558px; height: 372px;\" /></span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\">&nbsp;</span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 活动第一项,举行老党员重温入党誓词、新党员入党宣誓仪式,新党员张帆、陆海玲同志及全体党员面对党旗庄严宣誓。入党宣誓是对党员进行教育的一种形式,体现了入党的庄重性和严肃性,同时激励新党员牢记党的誓言,更加严格地要求自己,也让老党员重温对党的承诺。宣誓活动结束后,作为领誓人的优秀老党员刘岩同志激动不已,表示即为省能源院得到新鲜力量的充实感到高兴,也为自己是省能源院的一员感到由衷的自豪。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145S11X.JPG\" style=\"width: 558px; height: 372px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 活动第二项,举行&ldquo;三严三实&rdquo;知识竞答活动。省能源院按照&ldquo;三严三实&rdquo;专题教育实施方案的工作安排,固定将每周三定为&ldquo;三严三实&rdquo;专题学习日,本次竞答活动即是一次对&ldquo;三严三实&rdquo;的学习,也是对多次开展的专题学习进行一次检验,并通过问答活动,让广大党员进一步加深了对&ldquo;三严三实&rdquo;深刻内涵和意义的理解,使全院党员干部以更加严谨的工作作风和更加积极的工作态度投入到科研工作中,推动能源院不断向前发展。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145US57.JPG\" style=\"width: 558px; height: 372px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 活动最后一项,集体观看专题电视片《周总理的严与实》,在严肃认真的氛围中,省能源院全体党员共同感受了伟人对待工作的认真与严谨,同时周总理严于律己的优秀品质和实干兴邦的治国理念,也让大家得到了深刻的启示,并认识到在科学研究的道路上要求真务实,用责任和担当坚守自己平凡的岗位,用真招实措换来实实在在的进步,用自身行动向社会传递正确的价值导向。</span>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150706/1-150F6145914518.JPG\" style=\"width: 558px; height: 372px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此次系列活动通过不同的形式使省能源院广大党员干部受到了教育,也充分展现了省能源院全体党员的精神风貌和对党的无限热爱,在祥和、愉悦的气氛中,省能源院庆&ldquo;七一&rdquo;系列活动圆满落幕。</span><br />\r\n', '', '', '113.9.10.91'),
(143, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年7月3日在省科学院四楼会议室黑龙江省科学院与加拿大阿尔伯塔省技术创新研究院合作协议签约仪式正式举行。省科学院院长郭春景、黑龙江省能源环境研究院院长徐晓秋及加方代表等参加签约仪式。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150713/1-150G30Z140c7.JPG\" style=\"width: 429px; height: 285px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省科学院以国家&ldquo;十二五&rdquo;规划提出的&ldquo;推动非常规油气资源开发利用&rdquo;为契机,紧抓我省发展重油沥青资源的良好时机,以黑龙江省能源环境研究院作为合作项目承担的主体,助力我省重油沥青资源精/深加工和综合利用。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150713/1-150G30Z155555.JPG\" style=\"width: 429px; height: 285px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 根据协议内容,双方将在中国黑龙江省和加拿大阿尔伯塔省同时建立&ldquo;黑龙江省/阿尔伯塔省沥青及重油联合研究中心&rdquo;,并以该中心作为依托,利用重油及沥青等非常规能源作为原料,共同研究开发该领域的最新技术和产品,推进高端技术和产品融入黑龙江省的重点石化工业园区。协议内容还包括信息共享、成果转化、市场推广和人才培养等方面。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/150713/1-150G30Z223194.JPG\" style=\"width: 429px; height: 285px;\" /></span></div>\r\n', '', '', '1.58.243.209'),
(144, 10, '<span style=\"font-size: 22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 根据省科学院机关党委关于观看大型历史文献记录片《筑梦中国》相关要求我院高度重视积极部署观看学习活动。于7月24日、27日、28日每天下午13:30在能源院一楼会议室组织全院职工进行观看。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size: 22px;\"><img src=\"/uploads/allimg/150731/1-150I1100346239.JPG\" style=\"width: 494px; height: 328px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 《筑梦中国》纪录片内容丰富生动详实振奋人心。该片展示了1840年鸦片战争以来中国人民在屈辱苦难中奋起抗争为实现民族复兴进行的种种探索特别是中国共产党领导全国各族人民争取民族独立、人民解放和国家富强、人民幸福的光辉历程充分诠释了中华民族的复兴之路生动阐释了中国梦的深刻内涵。</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size: 22px;\"><img src=\"/uploads/allimg/150731/1-150I1100412104.JPG\" style=\"width: 505px; height: 337px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size: 22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 观看结束后,院职工表示,该片不仅仅是重温了中国的革命史,更重要的是看到了中国共产党在实现中华民族伟大复兴的道路上的披荆斩棘与力挽狂澜。该片同时教育我们要增强&ldquo;三个自信&rdquo;,要坚定不移走中国特色社会主义道路,为实现中华民族伟大复兴的中国梦而不懈奋斗。</span>', '', '', '113.9.10.91'),
(145, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年8月13日-14日黑龙江省能源环境研究院院长徐晓秋同志应邀参加了全国科学院联盟能源分会启动仪式。本次会议由中国科学院科技促进发展局和中国科学院沈阳分院主办由中国科学院大连化学物理研究所和新兴能源科技有限公司承办。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 参加会议的有中国科学院科技促进发展局陈文开副局长、中国科学院沈阳分院马越红副院长、中国科学院大连化学物理研究所党委书记王华研究员及各研究院所的领导同志等。英国石油公司、LUMMUS等国外公司的总裁、项目经理和国内石化产业相关企业的人员参加了此次会议。参会的能源领域领导、专家及企业家多达160人盛况空前。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"QQ图片20150819103946.jpg\" src=\"/uploads/allimg/150819/1-150Q9130104925.jpg\" style=\"width: 554px; height: 416px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年8月13日900中国科学院科技促进发展局、山东省科学院、大连市政府、大连化学物理所领导致辞并且进行全国科学院联盟能源分会揭牌仪式全国科学院联盟能源分会正式启动。8月14日与会专家审议了分会章程成立能源分会理事会推选理事长、副理事长、秘书长等领导机构对各参会单位的合作模式进行研讨。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 两天的会议在热烈的气氛中结束,全国科学院联盟能源分会成立标志着中国科学院系统能源领域强强联合,谱写共同发展的新篇章。</span>', '', '', '1.58.195.42'),
(146, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年8月26日省科学院督研委对院基金项目&ldquo;页岩油深加工工艺关键技术&rdquo;的执行情况进行阶段性督导和检查。会议由院科研处隋月梅副处长主持。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/150827/1-150RG14423309.JPG\" style=\"width: 406px; height: 272px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 督研委专家们听取了课题组的工作汇报,对项目充分利用黑龙江省赋存丰富的非常规能源&mdash;油页岩资源,开发页岩油深加工制取运输燃料和化工轻油技术,助力我省替代能源的开发和利用给予高度评价。经认真质询、讨论,对该项目阶段总结工作给予充分肯定,同意继续支持该项目研发,并对下阶段的研发工作提出了合理化建议。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 最后,隋月梅副处长做了总结性发言,希望课题组按照专家们的建议修改调整研发思路,圆满完成科研项目,为我院的学科发展提供有力的技术支撑。</span>', '', '', '113.9.10.91'),
(147, 10, '<st1:chsdate day=\"9\" islunardate=\"False\" isrocdate=\"False\" month=\"9\" w:st=\"on\" year=\"2015\"><span lang=\"EN-US\" style=\"font-size: 12pt; font-family: \'Times New Roman\', serif; background-position: initial initial; background-repeat: initial initial;\">&nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:22px;\">9</span></span><span style=\"font-size:22px;\"><span style=\"font-family: 宋体;\">月9日</span></span></st1:chsdate><span style=\"font-size:22px;\"><span style=\"font-family: 宋体;\">,由省科学院团委主办的</span><span style=\"font-family: \'Times New Roman\', serif;\">&ldquo;</span><span style=\"font-family: 宋体;\">三严三实</span><span style=\"font-family: \'Times New Roman\', serif;\">&rdquo;</span><span style=\"font-family: 宋体;\"> 青年党史知识竞赛在嵩山路15号8楼会议室拉开帷幕。此次竞赛内容涵盖了党章党史十八大报告十八届三中、四中全会精神习总书记系列重要讲话精神时事政治等内容旨在通过此竞赛使全体青年党员重温党的光辉历程进一步推动</span><span style=\"font-family: \'Times New Roman\', serif;\">&ldquo;</span><span style=\"font-family: 宋体;\">三严三实</span><span style=\"font-family: \'Times New Roman\', serif;\">&rdquo;</span></span><span style=\"font-size: 12pt; font-family: 宋体; background-position: initial initial; background-repeat: initial initial;\"><span style=\"font-size:22px;\">专题教育工作。比赛共有9支代表队参加代表我院参赛的杨光、陆佳、潘良3名队员团结拼搏经过必答题、抢答题和风险题三轮激烈比拼获得三等奖为我院争得了荣誉。</span></span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size: 12pt; font-family: 宋体; background-position: initial initial; background-repeat: initial initial;\"><img alt=\"\" src=\"/uploads/allimg/150916/1-15091614595c35.JPG\" style=\"width: 519px; height: 346px;\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/150916/1-15091615001QV.JPG\" style=\"width: 519px; height: 346px;\" /></span></div>\r\n', '', '', '113.4.72.248'),
(148, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:22px;\">10月13日下午省科学院党组书记赵梅同志在院办公室主任章力同志的陪同下莅临黑龙江省能源环境研究院调研指导工作。省能源院徐晓秋院长、关春玲副院长参加了此次调研。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/151015/1-151015113633c1.JPG\" style=\"width: 644px; height: 428px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 调研会议上赵梅书记与参会同志进行了广泛讨论。徐晓秋院长首先向赵梅书记详细汇报了能源院的发展概况,其间,赵书记询问了能源院的人员结构和发展历程。随后,赵书记就能源院重点项目、学科建设、人才培养、发展规划等方面进行了调研。赵书记对省能源院近几年在能源环境领域取得的成绩和进步给予了充分肯定,赵书记指出,能源院的重点项目在能源环境领域的特点突出,作为公益一类科研单位,在科研工作的推进过程中应准确把握需求、调动好各方的积极性,要最大程度发挥领域优势,为我省经济社会发展和政府决策提供支撑和保障。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/151015/1-151015113F9102.JPG\" style=\"width: 553px; height: 367px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会后,赵梅书记一行参观了能源院各实验室,并与科研人员进行了交流探讨。</span>', '', '', '60.219.236.158'),
(149, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年10月18日黑龙江省能源环境学会成立大会暨首届学术年会在哈隆重举行。此次活动由省能源环境学会筹备委员会主办省能源环境研究院、哈工大城市水资源与水环境国家重点实验室承办。黑龙江省科学院郭春景院长、省环保厅李平厅长、哈尔滨工业大学安实副校长、黑龙江省科学院王刚副院长、黑龙江省科协苏凤仙副主席、省民间组织管理局孙俭太副局长、城市水资源与水环境国家重点实验室常务副主任马放教授出席了此次会议。&nbsp;</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/151021/1-15102112162D17.jpg\" style=\"width: 478px; height: 203px;\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 省内能源环境领域的领导、各研究院所、高校学科带头人和骨干教师等共计110人出席了大会。会议通过了黑龙江省能源环境学会章程并按照相关规定投票选举出了黑龙江省能源环境学会第一届理事及学会领导人员。马放当选为首届能源环境学会理事长、高德玉当选为秘书长。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/151021/1-151021121G4X7.jpg\" style=\"text-align: center; width: 365px; height: 320px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省能源环境学会HSEEHeilongjiang Society for Energy and Environment是经黑龙江省科学技术协会批准在黑龙江省民间组织管理登记注册的学术性、公益性、非盈利性法人社会团体办事机构常设在黑龙江能源环境研究院。黑龙江省能源环境学会集中了全省最优秀的能源环境领域科技人才首批个人会员为123人团体会员为5个。学会将根据业务发展情况设立相关专业技术委员会。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/151021/1-151021121K2913.jpg\" style=\"width: 395px; height: 395px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 上午9点成立大会正式举行会议由省能源环境研究院徐晓秋院长主持。省科学院王钢副院长致开幕词。省民间组织管理局孙俭太副局长宣读了关于同意成立省能源环境学会的批复文件。省科学院郭春景院长、省环保厅李平厅长、哈工大安实副校长、省科协苏凤仙副主席、城市水资源与水环境国家重点实验室马放主任分别围绕能源环境学会成立的意义和成立后的各项工作发表重要讲话。<br />\r\n郭春景院长指出学会近期工作要围绕两点一要主动作为敢于担当。要充分调动发挥本学会中的专业技术优势积极参与解决我省能源供求矛盾突出的现状。二是不断创新培养人才。要探索创新型科研技术培养综合型科技人才积极为我省能源环境研究工作提供技术支持搭建科研平台为我省新能源的开发与环境保护工作开辟出一条自主创新的发展之路。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/151021/1-151021121Q51S.jpg\" style=\"width: 365px; height: 395px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 下午,省内能源环境领域的专家一起就环境保护、能源发展等方面进行了学术研讨。</span>', '', '', '113.9.10.52'),
(150, 10, '<div>\r\n <span style=\"font-size:22px;\">能源院全体党员:</span></div>\r\n<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 为扎实开展&ldquo;三严三实&rdquo;专题教育工作,紧扣《中国共产党巡视工作条例》对&ldquo;六大纪律&rdquo;的要求,引导和教育全体党员牢固树立自觉遵守党章党纪党规的政治意识和大局观念,守住&ldquo;不想腐&rdquo;的思想防线,筑牢&ldquo;不能腐&rdquo;的制度笼子,坚持&ldquo;不敢腐&rdquo;的高压态势,营造风清气正的发展环境。现将《中国共产党廉政自律准则》及《中国共产党纪律处分条例》转发给你们,请全体党员认真自学。</span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 附件1</span><span style=\"font-size: 21.81818199157715px;\">《</span><u style=\"font-size: 21.81818199157715px;\"><a href=\"/uploads/soft/151103/1-151103112P2.doc\" style=\"font-size: 21.81818199157715px;\" target=\"_blank\">中国共产党廉政自律准则</a></u><span style=\"font-size: 21.81818199157715px;\">》</span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 附件2</span><span style=\"font-size: 21.81818199157715px;\">《</span><u style=\"font-size: 21.81818199157715px;\"><a href=\"/uploads/soft/151103/1-151103112926.doc\" style=\"font-size: 21.81818199157715px;\" target=\"_blank\">中国共产党纪律处分条例</a></u><span style=\"font-size: 21.81818199157715px;\">》</span><br />\r\n', '', '', '125.211.31.229');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(151, 10, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\">2015年10月29日中国共产党第十八届中央委员会第五次全体会议通过</span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 到二〇二〇年全面建成小康社会,是我们党确定的&ldquo;两个一百年&rdquo;奋斗目标的第一个百年奋斗目标。&ldquo;十三五&rdquo;时期是全面建成小康社会决胜阶段,&ldquo;十三五&rdquo;规划必须紧紧围绕实现这个奋斗目标来制定。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;中国共产党第十八届中央委员会第五次全体会议全面分析国际国内形势,认为如期全面建成小康社会既具有充分条件也面临艰巨任务,必须在新中国成立特别是改革开放以来打下的坚实基础上坚定信心、锐意进取、奋发有为。全会研究了&ldquo;十三五&rdquo;时期我国发展的一系列重大问题,就制定&ldquo;十三五&rdquo;规划提出以下建议。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>一、全面建成小康社会决胜阶段的形势和指导思想</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)&ldquo;十二五&rdquo;时期我国发展取得重大成就。&ldquo;十二五&rdquo;时期是我国发展很不平凡的五年。面对错综复杂的国际环境和艰巨繁重的国内改革发展稳定任务,我们党团结带领全国各族人民顽强拼搏、开拓创新,奋力开创了党和国家事业发展新局面。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;我们妥善应对国际金融危机持续影响等一系列重大风险挑战,适应经济发展新常态,不断创新宏观调控方式,推动形成经济结构优化、发展动力转换、发展方式转变加快的良好态势。我国经济总量稳居世界第二位,十三亿多人口的人均国内生产总值增至七千八百美元左右。第三产业增加值占国内生产总值比重超过第二产业,基础设施水平全面跃升,农业连续增产,常住人口城镇化率达到百分之五十五,一批重大科技成果达到世界先进水平。公共服务体系基本建立、覆盖面持续扩大,新增就业持续增加,贫困人口大幅减少,生态文明建设取得新进展,人民生活水平和质量加快提高。全面深化改革有力推进,人民民主不断扩大,依法治国开启新征程。全方位外交取得重大进展,对外开放不断深入,我国成为全球第一货物贸易大国和主要对外投资大国。中华民族伟大复兴的中国梦和社会主义核心价值观深入人心,国家文化软实力不断增强。中国特色军事变革成就显著,强军兴军迈出新步伐。全面从严治党开创新局面,党的群众路线教育实践活动成果丰硕,党风廉政建设成效显著,赢得了党心民心。&ldquo;十二五&rdquo;规划目标即将胜利实现,我国经济实力、科技实力、国防实力、国际影响力又上了一个大台阶。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;尤为重要的是,党的十八大以来,以习近平同志为总书记的党中央毫不动摇坚持和发展中国特色社会主义,勇于实践、善于创新,深化对共产党执政规律、社会主义建设规律、人类社会发展规律的认识,形成一系列治国理政新理念新思想新战略,为在新的历史条件下深化改革开放、加快推进社会主义现代化提供了科学理论指导和行动指南。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)&ldquo;十三五&rdquo;时期我国发展环境的基本特征。和平与发展的时代主题没有变,世界多极化、经济全球化、文化多样化、社会信息化深入发展,世界经济在深度调整中曲折复苏,新一轮科技革命和产业变革蓄势待发,全球治理体系深刻变革,发展中国家群体力量继续增强,国际力量对比逐步趋向平衡。同时,国际金融危机深层次影响在相当长时期依然存在,全球经济贸易增长乏力,保护主义抬头,地缘政治关系复杂变化,传统安全威胁和非传统安全威胁交织,外部环境不稳定不确定因素增多。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;我国物质基础雄厚、人力资本丰富、市场空间广阔、发展潜力巨大,经济发展方式加快转变,新的增长动力正在孕育形成,经济长期向好基本面没有改变。同时,发展不平衡、不协调、不可持续问题仍然突出,主要是发展方式粗放,创新能力不强,部分行业产能过剩严重,企业效益下滑,重大安全事故频发;城乡区域发展不平衡;资源约束趋紧,生态环境恶化趋势尚未得到根本扭转;基本公共服务供给不足,收入差距较大,人口老龄化加快,消除贫困任务艰巨;人们文明素质和社会文明程度有待提高;法治建设有待加强;领导干部思想作风和能力水平有待提高,党员、干部先锋模范作用有待强化。我们必须增强忧患意识、责任意识,着力在优化结构、增强动力、化解矛盾、补齐短板上取得突破性进展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;综合判断,我国发展仍处于可以大有作为的重要战略机遇期,也面临诸多矛盾叠加、风险隐患增多的严峻挑战。我们要准确把握战略机遇期内涵的深刻变化,更加有效地应对各种风险和挑战,继续集中力量把自己的事情办好,不断开拓发展新境界。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)&ldquo;十三五&rdquo;时期我国发展的指导思想。高举中国特色社会主义伟大旗帜,全面贯彻党的十八大和十八届三中、四中全会精神,以马克思列宁主义、毛泽东思想、邓小平理论、&ldquo;三个代表&rdquo;重要思想、科学发展观为指导,深入贯彻习近平总书记系列重要讲话精神,坚持全面建成小康社会、全面深化改革、全面依法治国、全面从严治党的战略布局,坚持发展是第一要务,以提高发展质量和效益为中心,加快形成引领经济发展新常态的体制机制和发展方式,保持战略定力,坚持稳中求进,统筹推进经济建设、政治建设、文化建设、社会建设、生态文明建设和党的建设,确保如期全面建成小康社会,为实现第二个百年奋斗目标、实现中华民族伟大复兴的中国梦奠定更加坚实的基础。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;如期实现全面建成小康社会奋斗目标,推动经济社会持续健康发展,必须遵循以下原则。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持人民主体地位。人民是推动发展的根本力量,实现好、维护好、发展好最广大人民根本利益是发展的根本目的。必须坚持以人民为中心的发展思想,把增进人民福祉、促进人的全面发展作为发展的出发点和落脚点,发展人民民主,维护社会公平正义,保障人民平等参与、平等发展权利,充分调动人民积极性、主动性、创造性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持科学发展。发展是硬道理,发展必须是科学发展。我国仍处于并将长期处于社会主义初级阶段,基本国情和社会主要矛盾没有变,这是谋划发展的基本依据。必须坚持以经济建设为中心,从实际出发,把握发展新特征,加大结构性改革力度,加快转变经济发展方式,实现更高质量、更有效率、更加公平、更可持续的发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持深化改革。改革是发展的强大动力。必须按照完善和发展中国特色社会主义制度、推进国家治理体系和治理能力现代化的总目标,健全使市场在资源配置中起决定性作用和更好发挥政府作用的制度体系,以经济体制改革为重点,加快完善各方面体制机制,破除一切不利于科学发展的体制机制障碍,为发展提供持续动力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持依法治国。法治是发展的可靠保障。必须坚定不移走中国特色社会主义法治道路,加快建设中国特色社会主义法治体系,建设社会主义法治国家,推进科学立法、严格执法、公正司法、全民守法,加快建设法治经济和法治社会,把经济社会发展纳入法治轨道。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持统筹国内国际两个大局。全方位对外开放是发展的必然要求。必须坚持打开国门搞建设,既立足国内,充分运用我国资源、市场、制度等优势,又重视国内国际经济联动效应,积极应对外部环境变化,更好利用两个市场、两种资源,推动互利共赢、共同发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;坚持党的领导。党的领导是中国特色社会主义制度的最大优势,是实现经济社会持续健康发展的根本政治保证。必须贯彻全面从严治党要求,不断增强党的创造力、凝聚力、战斗力,不断提高党的执政能力和执政水平,确保我国发展航船沿着正确航道破浪前进。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>二、&ldquo;十三五&rdquo;时期经济社会发展的主要目标和基本理念</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)全面建成小康社会新的目标要求。党的十六大提出全面建设小康社会奋斗目标以来,全党全国各族人民接续奋斗,各项事业取得重大进展。今后五年,要在已经确定的全面建成小康社会目标要求的基础上,努力实现以下新的目标要求。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;经济保持中高速增长。在提高发展平衡性、包容性、可持续性的基础上,到二〇二〇年国内生产总值和城乡居民人均收入比二〇一〇年翻一番。主要经济指标平衡协调,发展空间格局得到优化,投资效率和企业效率明显上升,工业化和信息化融合发展水平进一步提高,产业迈向中高端水平,先进制造业加快发展,新产业新业态不断成长,服务业比重进一步上升,消费对经济增长贡献明显加大。户籍人口城镇化率加快提高。农业现代化取得明显进展。迈进创新型国家和人才强国行列。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;人民生活水平和质量普遍提高。就业比较充分,就业、教育、文化、社保、医疗、住房等公共服务体系更加健全,基本公共服务均等化水平稳步提高。教育现代化取得重要进展,劳动年龄人口受教育年限明显增加。收入差距缩小,中等收入人口比重上升。我国现行标准下农村贫困人口实现脱贫,贫困县全部摘帽,解决区域性整体贫困。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;国民素质和社会文明程度显著提高。中国梦和社会主义核心价值观更加深入人心,爱国主义、集体主义、社会主义思想广泛弘扬,向上向善、诚信互助的社会风尚更加浓厚,人民思想道德素质、科学文化素质、健康素质明显提高,全社会法治意识不断增强。公共文化服务体系基本建成,文化产业成为国民经济支柱性产业。中华文化影响持续扩大。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;生态环境质量总体改善。生产方式和生活方式绿色、低碳水平上升。能源资源开发利用效率大幅提高,能源和水资源消耗、建设用地、碳排放总量得到有效控制,主要污染物排放总量大幅减少。主体功能区布局和生态安全屏障基本形成。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&mdash;&mdash;各方面制度更加成熟更加定型。国家治理体系和治理能力现代化取得重大进展,各领域基础性制度体系基本形成。人民民主更加健全,法治政府基本建成,司法公信力明显提高。人权得到切实保障,产权得到有效保护。开放型经济新体制基本形成。中国特色现代军事体系更加完善。党的建设制度化水平显著提高。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)完善发展理念。实现&ldquo;十三五&rdquo;时期发展目标,破解发展难题,厚植发展优势,必须牢固树立创新、协调、绿色、开放、共享的发展理念。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;创新是引领发展的第一动力。必须把创新摆在国家发展全局的核心位置,不断推进理论创新、制度创新、科技创新、文化创新等各方面创新,让创新贯穿党和国家一切工作,让创新在全社会蔚然成风。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;协调是持续健康发展的内在要求。必须牢牢把握中国特色社会主义事业总体布局,正确处理发展中的重大关系,重点促进城乡区域协调发展,促进经济社会协调发展,促进新型工业化、信息化、城镇化、农业现代化同步发展,在增强国家硬实力的同时注重提升国家软实力,不断增强发展整体性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;绿色是永续发展的必要条件和人民对美好生活追求的重要体现。必须坚持节约资源和保护环境的基本国策,坚持可持续发展,坚定走生产发展、生活富裕、生态良好的文明发展道路,加快建设资源节约型、环境友好型社会,形成人与自然和谐发展现代化建设新格局,推进美丽中国建设,为全球生态安全作出新贡献。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;开放是国家繁荣发展的必由之路。必须顺应我国经济深度融入世界经济的趋势,奉行互利共赢的开放战略,坚持内外需协调、进出口平衡、引进来和走出去并重、引资和引技引智并举,发展更高层次的开放型经济,积极参与全球经济治理和公共产品供给,提高我国在全球经济治理中的制度性话语权,构建广泛的利益共同体。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;共享是中国特色社会主义的本质要求。必须坚持发展为了人民、发展依靠人民、发展成果由人民共享,作出更有效的制度安排,使全体人民在共建共享发展中有更多获得感,增强发展动力,增进人民团结,朝着共同富裕方向稳步前进。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持创新发展、协调发展、绿色发展、开放发展、共享发展,是关系我国发展全局的一场深刻变革。全党同志要充分认识这场变革的重大现实意义和深远历史意义,统一思想,协调行动,深化改革,开拓前进,推动我国发展迈上新台阶。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>三、坚持创新发展,着力提高发展质量和效益</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;在国际发展竞争日趋激烈和我国发展动力转换的形势下,必须把发展基点放在创新上,形成促进创新的体制架构,塑造更多依靠创新驱动、更多发挥先发优势的引领型发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)培育发展新动力。优化劳动力、资本、土地、技术、管理等要素配置,激发创新创业活力,推动大众创业、万众创新,释放新需求,创造新供给,推动新技术、新产业、新业态蓬勃发展,加快实现发展动力转换。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发挥消费对增长的基础作用,着力扩大居民消费,引导消费朝着智能、绿色、健康、安全方向转变,以扩大服务消费为重点带动消费结构升级。促进流通信息化、标准化、集约化。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发挥投资对增长的关键作用,深化投融资体制改革,优化投资结构,增加有效投资。发挥财政资金撬动功能,创新融资方式,带动更多社会资本参与投资。创新公共基础设施投融资体制,推广政府和社会资本合作模式。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发挥出口对增长的促进作用,增强对外投资和扩大出口结合度,培育以技术、标准、品牌、质量、服务为核心的对外经济新优势。实施优进优出战略,推进国际产能和装备制造合作,提高劳动密集型产品科技含量和附加值,营造资本和技术密集型产业新优势,提高我国产业在全球价值链中的地位。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)拓展发展新空间。用发展新空间培育发展新动力,用发展新动力开拓发展新空间。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展区域发展空间。以区域发展总体战略为基础,以&ldquo;一带一路&rdquo;建设、京津冀协同发展、长江经济带建设为引领,形成沿海沿江沿线经济带为主的纵向横向经济轴带。发挥城市群辐射带动作用,优化发展京津冀、长三角、珠三角三大城市群,形成东北地区、中原地区、长江中游、成渝地区、关中平原等城市群。发展一批中心城市,强化区域服务功能。支持绿色城市、智慧城市、森林城市建设和城际基础设施互联互通。推进重点地区一体发展,培育壮大若干重点经济区。推进城乡发展一体化,开辟农村广阔发展空间。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展产业发展空间。支持节能环保、生物技术、信息技术、智能制造、高端装备、新能源等新兴产业发展,支持传统产业优化升级。推广新型孵化模式,鼓励发展众创、众包、众扶、众筹空间。发展天使、创业、产业投资,深化创业板、新三板改革。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展基础设施建设空间。实施重大公共设施和基础设施工程。实施网络强国战略,加快构建高速、移动、安全、泛在的新一代信息基础设施。加快完善水利、铁路、公路、水运、民航、通用航空、管道、邮政等基础设施网络。完善能源安全储备制度。加强城市公共交通、防洪防涝等设施建设。实施城市地下管网改造工程。加快开放电力、电信、交通、石油、天然气、市政公用等自然垄断行业的竞争性业务。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展网络经济空间。实施&ldquo;互联网+&rdquo;行动计划,发展物联网技术和应用,发展分享经济,促进互联网和经济社会融合发展。实施国家大数据战略,推进数据资源开放共享。完善电信普遍服务机制,开展网络提速降费行动,超前布局下一代互联网。推进产业组织、商业模式、供应链、物流链创新,支持基于互联网的各类创新。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;拓展蓝色经济空间。坚持陆海统筹,壮大海洋经济,科学开发海洋资源,保护海洋生态环境,维护我国海洋权益,建设海洋强国。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)深入实施创新驱动发展战略。发挥科技创新在全面创新中的引领作用,加强基础研究,强化原始创新、集成创新和引进消化吸收再创新。推进有特色高水平大学和科研院所建设,鼓励企业开展基础性前沿性创新研究,重视颠覆性技术创新。实施一批国家重大科技项目,在重大创新领域组建一批国家实验室。积极提出并牵头组织国际大科学计划和大科学工程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动政府职能从研发管理向创新服务转变。完善国家科技决策咨询制度。坚持战略和前沿导向,集中支持事关发展全局的基础研究和共性关键技术研究,加快突破新一代信息通信、新能源、新材料、航空航天、生物医药、智能制造等领域核心技术。瞄准瓶颈制约问题,制定系统性技术解决方案。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;强化企业创新主体地位和主导作用,形成一批有国际竞争力的创新型领军企业,支持科技型中小企业健康发展。依托企业、高校、科研院所建设一批国家技术创新中心,形成若干具有强大带动力的创新型城市和区域创新中心。完善企业研发费用加计扣除政策,扩大固定资产加速折旧实施范围,推动设备更新和新技术应用。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化科技体制改革,引导构建产业技术创新联盟,推动跨领域跨行业协同创新,促进科技与经济深度融合。加强技术和知识产权交易平台建设,建立从实验研究、中试到生产的全过程科技创新融资模式,促进科技成果资本化、产业化。构建普惠性创新支持政策体系,加大金融支持和税收优惠力度。深化知识产权领域改革,加强知识产权保护。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扩大高校和科研院所自主权,赋予创新领军人才更大人财物支配权、技术路线决策权。实行以增加知识价值为导向的分配政策,提高科研人员成果转化收益分享比例,鼓励人才弘扬奉献精神。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)大力推进农业现代化。农业是全面建成小康社会、实现现代化的基础。加快转变农业发展方式,发展多种形式适度规模经营,发挥其在现代农业建设中的引领作用。着力构建现代农业产业体系、生产体系、经营体系,提高农业质量效益和竞争力,推动粮经饲统筹、农林牧渔结合、种养加一体、一二三产业融合发展,走产出高效、产品安全、资源节约、环境友好的农业现代化道路。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;稳定农村土地承包关系,完善土地所有权、承包权、经营权分置办法,依法推进土地经营权有序流转,构建培育新型农业经营主体的政策体系。培养新型职业农民。深化农村土地制度改革。完善农村集体产权权能。深化农村金融改革,完善农业保险制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持最严格的耕地保护制度,坚守耕地红线,实施藏粮于地、藏粮于技战略,提高粮食产能,确保谷物基本自给、口粮绝对安全。全面划定永久基本农田,大规模推进农田水利、土地整治、中低产田改造和高标准农田建设,加强粮食等大宗农产品主产区建设,探索建立粮食生产功能区和重要农产品生产保护区。优化农业生产结构和区域布局,推进产业链和价值链建设,开发农业多种功能,提高农业综合效益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进农业标准化和信息化。健全从农田到餐桌的农产品质量安全全过程监管体系、现代农业科技创新推广体系、农业社会化服务体系。发展现代种业,提高农业机械化水平。持续增加农业投入,完善农业补贴政策。改革农产品价格形成机制,完善粮食等重要农产品收储制度。加强农产品流通设施和市场建设。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)构建产业新体系。加快建设制造强国,实施《中国制造二〇二五》。引导制造业朝着分工细化、协作紧密方向发展,促进信息技术向市场、设计、生产等环节渗透,推动生产方式向柔性、智能、精细转变。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施工业强基工程,开展质量品牌提升行动,支持企业瞄准国际同行业标杆推进技术改造,全面提高产品技术、工艺装备、能效环保等水平。更加注重运用市场机制、经济手段、法治办法化解产能过剩,加大政策引导力度,完善企业退出机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;支持战略性新兴产业发展,发挥产业政策导向和促进竞争功能,更好发挥国家产业投资引导基金作用,培育一批战略性产业。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施智能制造工程,构建新型制造体系,促进新一代信息通信技术、高档数控机床和机器人、航空航天装备、海洋工程装备及高技术船舶、先进轨道交通装备、节能与新能源汽车、电力装备、农机装备、新材料、生物医药及高性能医疗器械等产业发展壮大。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;开展加快发展现代服务业行动,放宽市场准入,促进服务业优质高效发展。推动生产性服务业向专业化和价值链高端延伸、生活性服务业向精细和高品质转变,推动制造业由生产型向生产服务型转变。大力发展旅游业。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)构建发展新体制。加快形成有利于创新发展的市场环境、产权制度、投融资体制、分配制度、人才培养引进使用机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化行政管理体制改革,进一步转变政府职能,持续推进简政放权、放管结合、优化服务,提高政府效能,激发市场活力和社会创造力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持公有制为主体、多种所有制经济共同发展。毫不动摇巩固和发展公有制经济,毫不动摇鼓励、支持、引导非公有制经济发展。推进产权保护法治化,依法保护各种所有制经济权益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化国有企业改革,增强国有经济活力、控制力、影响力、抗风险能力。分类推进国有企业改革,完善现代企业制度。完善各类国有资产管理体制,以管资本为主加强国有资产监管,防止国有资产流失。健全国有资本合理流动机制,推进国有资本布局战略性调整,引导国有资本更多投向关系国家安全、国民经济命脉的重要行业和关键领域,坚定不移把国有企业做强做优做大,更好服务于国家战略目标。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;鼓励民营企业依法进入更多领域,引入非国有资本参与国有企业改革,更好激发非公有制经济活力和创造力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;优化企业发展环境。开展降低实体经济企业成本行动,优化运营模式,增强盈利能力。限制政府对企业经营决策的干预,减少行政审批事项。清理和规范涉企行政事业性收费,减轻企业负担,完善公平竞争、促进企业健康发展的政策和制度。激发企业家精神,依法保护企业家财产权和创新收益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加快形成统一开放、竞争有序的市场体系,建立公平竞争保障机制,打破地域分割和行业垄断。深化市场配置要素改革,促进人才、资金、科研成果等在城乡、企业、高校、科研机构间有序流动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化财税体制改革,建立健全有利于转变经济发展方式、形成全国统一市场、促进社会公平正义的现代财政制度,建立税种科学、结构优化、法律健全、规范公平、征管高效的税收制度。建立事权和支出责任相适应的制度,适度加强中央事权和支出责任。调动各方面积极性,考虑税种属性,进一步理顺中央和地方收入划分。建立全面规范、公开透明预算制度,完善政府预算体系,实施跨年度预算平衡机制和中期财政规划管理。建立规范的地方政府举债融资体制。健全优先使用创新产品、绿色产品的政府采购政策。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加快金融体制改革,提高金融服务实体经济效率。健全商业性金融、开发性金融、政策性金融、合作性金融分工合理、相互补充的金融机构体系。构建多层次、广覆盖、有差异的银行机构体系,扩大民间资本进入银行业,发展普惠金融,着力加强对中小微企业、农村特别是贫困地区金融服务。积极培育公开透明、健康发展的资本市场,推进股票和债券发行交易制度改革,提高直接融资比重,降低杠杆率。开发符合创新需求的金融服务,推进高收益债券及股债相结合的融资方式。推进汇率和利率市场化,提高金融机构管理水平和服务质量,降低企业融资成本。规范发展互联网金融。加快建立巨灾保险制度,探索建立保险资产交易机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强金融宏观审慎管理制度建设,加强统筹协调,改革并完善适应现代金融市场发展的金融监管框架,健全符合我国国情和国际标准的监管规则,实现金融风险监管全覆盖。完善国有金融资本和外汇储备管理制度,建立安全高效的金融基础设施,有效运用和发展金融风险管理工具。防止发生系统性区域性金融风险。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(七)创新和完善宏观调控方式。按照总量调节和定向施策并举、短期和中长期结合、国内和国际统筹、改革和发展协调的要求,完善宏观调控,采取相机调控、精准调控措施,适时预调微调,更加注重扩大就业、稳定物价、调整结构、提高效益、防控风险、保护环境。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;依据国家中长期发展规划目标和总供求格局实施宏观调控,稳定政策基调,增强可预期性和透明度,创新调控思路和政策工具,在区间调控基础上加大定向调控力度,增强针对性和准确性。完善以财政政策、货币政策为主,产业政策、区域政策、投资政策、消费政策、价格政策协调配合的政策体系,增强财政货币政策协调性。运用大数据技术,提高经济运行信息及时性和准确性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;减少政府对价格形成的干预,全面放开竞争性领域商品和服务价格,放开电力、石油、天然气、交通运输、电信等领域竞争性环节价格。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;建立风险识别和预警机制,以可控方式和节奏主动释放风险,重点提高财政、金融、能源、矿产资源、水资源、粮食、生态环保、安全生产、网络安全等方面风险防控能力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>四、坚持协调发展,着力形成平衡发展结构</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;增强发展协调性,必须坚持区域协同、城乡一体、物质文明精神文明并重、经济建设国防建设融合,在协调发展中拓宽发展空间,在加强薄弱领域中增强发展后劲。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)推动区域协调发展。塑造要素有序自由流动、主体功能约束有效、基本公共服务均等、资源环境可承载的区域协调发展新格局。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深入实施西部大开发,支持西部地区改善基础设施,发展特色优势产业,强化生态环境保护。推动东北地区等老工业基地振兴,促进中部地区崛起,加大国家支持力度,加快市场取向改革。支持东部地区率先发展,更好辐射带动其他地区。支持革命老区、民族地区、边疆地区、贫困地区加快发展,加大对资源枯竭、产业衰退、生态严重退化等困难地区的支持力度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;培育若干带动区域协同发展的增长极。推动京津冀协同发展,优化城市空间布局和产业结构,有序疏解北京非首都功能,推进交通一体化,扩大环境容量和生态空间,探索人口经济密集地区优化开发新模式。推进长江经济带建设,改善长江流域生态环境,高起点建设综合立体交通走廊,引导产业优化布局和分工协作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)推动城乡协调发展。坚持工业反哺农业、城市支持农村,健全城乡发展一体化体制机制,推进城乡要素平等交换、合理配置和基本公共服务均等化。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发展特色县域经济,加快培育中小城市和特色小城镇,促进农产品精深加工和农村服务业发展,拓展农民增收渠道,完善农民收入增长支持政策体系,增强农村发展内生动力。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进以人为核心的新型城镇化。提高城市规划、建设、管理水平。深化户籍制度改革,促进有能力在城镇稳定就业和生活的农业转移人口举家进城落户,并与城镇居民有同等权利和义务。实施居住证制度,努力实现基本公共服务常住人口全覆盖。健全财政转移支付同农业转移人口市民化挂钩机制,建立城镇建设用地增加规模同吸纳农业转移人口落户数量挂钩机制。维护进城落户农民土地承包权、宅基地使用权、集体收益分配权,支持引导其依法自愿有偿转让上述权益。深化住房制度改革。加大城镇棚户区和城乡危房改造力度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;促进城乡公共资源均衡配置,健全农村基础设施投入长效机制,把社会事业发展重点放在农村和接纳农业转移人口较多的城镇,推动城镇公共服务向农村延伸。提高社会主义新农村建设水平,开展农村人居环境整治行动,加大传统村落民居和历史文化名村名镇保护力度,建设美丽宜居乡村。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)推动物质文明和精神文明协调发展。坚持&ldquo;两手抓、两手都要硬&rdquo;,坚持社会主义先进文化前进方向,坚持以人民为中心的工作导向,坚持把社会效益放在首位、社会效益和经济效益相统一,坚定文化自信,增强文化自觉,加快文化改革发展,加强社会主义精神文明建设,建设社会主义文化强国。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持用邓小平理论、&ldquo;三个代表&rdquo;重要思想、科学发展观和习近平总书记系列重要讲话精神武装全党、教育人民,用中国梦和社会主义核心价值观凝聚共识、汇聚力量。深化马克思主义理论研究和建设工程,加强思想道德建设和社会诚信建设,增强国家意识、法治意识、社会责任意识,倡导科学精神,弘扬中华传统美德,注重通过法律和政策向社会传导正确价值取向。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扶持优秀文化产品创作生产,加强文化人才培养,繁荣发展文学艺术、新闻出版、广播影视事业。实施哲学社会科学创新工程,建设中国特色新型智库。构建中华优秀传统文化传承体系,加强文化遗产保护,振兴传统工艺,实施中华典籍整理工程。加强和改进基层宣传思想文化工作,深化各类群众性精神文明创建活动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;深化文化体制改革,实施重大文化工程,完善公共文化服务体系、文化产业体系、文化市场体系。推动基本公共文化服务标准化、均等化发展,引导文化资源向城乡基层倾斜,创新公共文化服务方式,保障人民基本文化权益。推动文化产业结构优化升级,发展骨干文化企业和创意文化产业,培育新型文化业态,扩大和引导文化消费。普及科学知识。倡导全民阅读。发展体育事业,推广全民健身,增强人民体质。做好二〇二二年北京冬季奥运会筹办工作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;牢牢把握正确舆论导向,健全社会舆情引导机制,传播正能量。加强网上思想文化阵地建设,实施网络内容建设工程,发展积极向上的网络文化,净化网络环境。推动传统媒体和新兴媒体融合发展,加快媒体数字化建设,打造一批新型主流媒体。优化媒体结构,规范传播秩序。加强国际传播能力建设,创新对外传播、文化交流、文化贸易方式,推动中华文化走出去。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)推动经济建设和国防建设融合发展。坚持发展和安全兼顾、富国和强军统一,实施军民融合发展战略,形成全要素、多领域、高效益的军民深度融合发展格局。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;同全面建成小康社会进程相一致,全面推进国防和军队建设。以党在新形势下的强军目标为引领,贯彻新形势下军事战略方针,加强军队党的建设和思想政治建设,加强各方向各领域军事斗争准备,加强新型作战力量建设,加快推进国防和军队改革,深入推进依法治军、从严治军。到二〇二〇年,基本完成国防和军队改革目标任务,基本实现机械化,信息化取得重大进展,构建能够打赢信息化战争、有效履行使命任务的中国特色现代军事力量体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;健全军民融合发展的组织管理体系、工作运行体系、政策制度体系。建立国家和各省(自治区、直辖市)军民融合领导机构。制定统筹经济建设和国防建设专项规划。深化国防科技工业体制改革,建立国防科技协同创新机制。推进军民融合发展立法。在海洋、太空、网络空间等领域推出一批重大项目和举措,打造一批军民融合创新示范区,增强先进技术、产业产品、基础设施等军民共用的协调性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强全民国防教育和后备力量建设。加强现代化武装警察部队建设。密切军政军民团结。党政军警民合力强边固防。各级党委和政府要积极支持国防建设和军队改革,人民解放军和武警部队要积极支援经济社会建设。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>五、坚持绿色发展,着力改善生态环境</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持绿色富国、绿色惠民,为人民提供更多优质生态产品,推动形成绿色发展方式和生活方式,协同推进人民富裕、国家富强、中国美丽。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)促进人与自然和谐共生。有度有序利用自然,调整优化空间结构,划定农业空间和生态空间保护红线,构建科学合理的城市化格局、农业发展格局、生态安全格局、自然岸线格局。设立统一规范的国家生态文明试验区。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;根据资源环境承载力调节城市规模,依托山水地貌优化城市形态和功能,实行绿色规划、设计、施工标准。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;支持绿色清洁生产,推进传统制造业绿色改造,推动建立绿色低碳循环发展产业体系,鼓励企业工艺技术装备更新改造。发展绿色金融,设立绿色发展基金。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强资源环境国情和生态价值观教育,培养公民环境意识,推动全社会形成绿色消费自觉。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)加快建设主体功能区。发挥主体功能区作为国土空间开发保护基础制度的作用,落实主体功能区规划,完善政策,发布全国主体功能区规划图和农产品主产区、重点生态功能区目录,推动各地区依据主体功能定位发展。以主体功能区规划为基础统筹各类空间性规划,推进&ldquo;多规合一&rdquo;。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动京津冀、长三角、珠三角等优化开发区域产业结构向高端高效发展,防治&ldquo;城市病&rdquo;,逐年减少建设用地增量。推动重点开发区域提高产业和人口集聚度。重点生态功能区实行产业准入负面清单。加大对农产品主产区和重点生态功能区的转移支付力度,强化激励性补偿,建立横向和流域生态补偿机制。整合设立一批国家公园。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;维护生物多样性,实施濒危野生动植物抢救性保护工程,建设救护繁育中心和基因库。强化野生动植物进出口管理,严防外来有害物种入侵。严厉打击象牙等野生动植物制品非法交易。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;以市县级行政区为单元,建立由空间规划、用途管制、领导干部自然资源资产离任审计、差异化绩效考核等构成的空间治理体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)推动低碳循环发展。推进能源革命,加快能源技术创新,建设清洁低碳、安全高效的现代能源体系。提高非化石能源比重,推动煤炭等化石能源清洁高效利用。加快发展风能、太阳能、生物质能、水能、地热能,安全高效发展核电。加强储能和智能电网建设,发展分布式能源,推行节能低碳电力调度。有序开放开采权,积极开发天然气、煤层气、页岩气。改革能源体制,形成有效竞争的市场机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进交通运输低碳发展,实行公共交通优先,加强轨道交通建设,鼓励自行车等绿色出行。实施新能源汽车推广计划,提高电动车产业化水平。提高建筑节能标准,推广绿色建筑和建材。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;主动控制碳排放,加强高能耗行业能耗管控,有效控制电力、钢铁、建材、化工等重点行业碳排放,支持优化开发区域率先实现碳排放峰值目标,实施近零碳排放区示范工程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施循环发展引领计划,推行企业循环式生产、产业循环式组合、园区循环式改造,减少单位产出物质消耗。加强生活垃圾分类回收和再生资源回收的衔接,推进生产系统和生活系统循环链接。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)全面节约和高效利用资源。坚持节约优先,树立节约集约循环利用的资源观。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;强化约束性指标管理,实行能源和水资源消耗、建设用地等总量和强度双控行动。实施全民节能行动计划,提高节能、节水、节地、节材、节矿标准,开展能效、水效领跑者引领行动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实行最严格的水资源管理制度,以水定产、以水定城,建设节水型社会。合理制定水价,编制节水规划,实施雨洪资源利用、再生水利用、海水淡化工程,建设国家地下水监测系统,开展地下水超采区综合治理。坚持最严格的节约用地制度,调整建设用地结构,降低工业用地比例,推进城镇低效用地再开发和工矿废弃地复垦,严格控制农村集体建设用地规模。探索实行耕地轮作休耕制度试点。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;建立健全用能权、用水权、排污权、碳排放权初始分配制度,创新有偿使用、预算管理、投融资机制,培育和发展交易市场。推行合同能源管理和合同节水管理。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;倡导合理消费,力戒奢侈浪费,制止奢靡之风。在生产、流通、仓储、消费各环节落实全面节约。管住公款消费,深入开展反过度包装、反食品浪费、反过度消费行动,推动形成勤俭节约的社会风尚。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)加大环境治理力度。以提高环境质量为核心,实行最严格的环境保护制度,形成政府、企业、公众共治的环境治理体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进多污染物综合防治和环境治理,实行联防联控和流域共治,深入实施大气、水、土壤污染防治行动计划。实施工业污染源全面达标排放计划,实现城镇生活污水垃圾处理设施全覆盖和稳定运行。扩大污染物总量控制范围,将细颗粒物等环境质量指标列入约束性指标。坚持城乡环境治理并重,加大农业面源污染防治力度,统筹农村饮水安全、改水改厕、垃圾处理,推进种养业废弃物资源化利用、无害化处置。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;改革环境治理基础制度,建立覆盖所有固定污染源的企业排放许可制,实行省以下环保机构监测监察执法垂直管理制度。建立全国统一的实时在线环境监控系统。健全环境信息公布制度。探索建立跨地区环保机构。开展环保督察巡视,严格环保执法。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)筑牢生态安全屏障。坚持保护优先、自然恢复为主,实施山水林田湖生态保护和修复工程,构建生态廊道和生物多样性保护网络,全面提升森林、河湖、湿地、草原、海洋等自然生态系统稳定性和生态服务功能。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;开展大规模国土绿化行动,加强林业重点工程建设,完善天然林保护制度,全面停止天然林商业性采伐,增加森林面积和蓄积量。发挥国有林区林场在绿化国土中的带动作用。扩大退耕还林还草,加强草原保护。严禁移植天然大树进城。创新产权模式,引导各方面资金投入植树造林。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强水生态保护,系统整治江河流域,连通江河湖库水系,开展退耕还湿、退养还滩。推进荒漠化、石漠化、水土流失综合治理。强化江河源头和水源涵养区生态保护。开展蓝色海湾整治行动。加强地质灾害防治。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>六、坚持开放发展,着力实现合作共赢</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;开创对外开放新局面,必须丰富对外开放内涵,提高对外开放水平,协同推进战略互信、经贸合作、人文交流,努力形成深度融合的互利合作格局。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)完善对外开放战略布局。推进双向开放,促进国内国际要素有序流动、资源高效配置、市场深度融合。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善对外开放区域布局,加强内陆沿边地区口岸和基础设施建设,开辟跨境多式联运交通走廊,发展外向型产业集群,形成各有侧重的对外开放基地。支持沿海地区全面参与全球经济合作和竞争,培育有全球影响力的先进制造基地和经济区。提高边境经济合作区、跨境经济合作区发展水平。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加快对外贸易优化升级,从外贸大国迈向贸易强国。完善对外贸易布局,创新外贸发展模式,加强营销和售后服务网络建设,提高传统优势产品竞争力,巩固出口市场份额,推动外贸向优质优价、优进优出转变,壮大装备制造等新的出口主导产业。发展服务贸易。实行积极的进口政策,向全球扩大市场开放。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善投资布局,扩大开放领域,放宽准入限制,积极有效引进境外资金和先进技术。支持企业扩大对外投资,推动装备、技术、标准、服务走出去,深度融入全球产业链、价值链、物流链,建设一批大宗商品境外生产基地,培育一批跨国企业。积极搭建国际产能和装备制造合作金融服务平台。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)形成对外开放新体制。完善法治化、国际化、便利化的营商环境,健全有利于合作共赢并同国际贸易投资规则相适应的体制机制。建立便利跨境电子商务等新型贸易方式的体制,健全服务贸易促进体系,全面实施单一窗口和通关一体化。提高自由贸易试验区建设质量,在更大范围推广复制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;全面实行准入前国民待遇加负面清单管理制度,促进内外资企业一视同仁、公平竞争。完善境外投资管理,健全对外投资促进政策和服务体系。有序扩大服务业对外开放,扩大银行、保险、证券、养老等市场准入。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扩大金融业双向开放。有序实现人民币资本项目可兑换,推动人民币加入特别提款权,成为可兑换、可自由使用货币。转变外汇管理和使用方式,从正面清单转变为负面清单。放宽境外投资汇兑限制,放宽企业和个人外汇管理要求,放宽跨国公司资金境外运作限制。加强国际收支监测,保持国际收支基本平衡。推进资本市场双向开放,改进并逐步取消境内外投资额度限制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动同更多国家签署高标准双边投资协定、司法协助协定,争取同更多国家互免或简化签证手续。构建海外利益保护体系。完善反洗钱、反恐怖融资、反逃税监管措施,完善风险防范体制机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)推进&ldquo;一带一路&rdquo;建设。秉持亲诚惠容,坚持共商共建共享原则,完善双边和多边合作机制,以企业为主体,实行市场化运作,推进同有关国家和地区多领域互利共赢的务实合作,打造陆海内外联动、东西双向开放的全面开放新格局。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推进基础设施互联互通和国际大通道建设,共同建设国际经济合作走廊。加强能源资源合作,提高就地加工转化率。共建境外产业集聚区,推动建立当地产业体系,广泛开展教育、科技、文化、旅游、卫生、环保等领域合作,造福当地民众。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强同国际金融机构合作,参与亚洲基础设施投资银行、金砖国家新开发银行建设,发挥丝路基金作用,吸引国际资金共建开放多元共赢的金融合作平台。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)深化内地和港澳、大陆和台湾地区合作发展。全面准确贯彻&ldquo;一国两制&rdquo;、&ldquo;港人治港&rdquo;、&ldquo;澳人治澳&rdquo;、高度自治的方针,发挥港澳独特优势,提升港澳在国家经济发展和对外开放中的地位和功能,支持港澳发展经济、改善民生、推进民主、促进和谐。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;支持香港巩固国际金融、航运、贸易三大中心地位,参与国家双向开放、&ldquo;一带一路&rdquo;建设。支持香港强化全球离岸人民币业务枢纽地位,推动融资、商贸、物流、专业服务等向高端高增值方向发展。支持澳门建设世界旅游休闲中心、中国与葡语国家商贸合作服务平台,促进澳门经济适度多元可持续发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加大内地对港澳开放力度,加快前海、南沙、横琴等粤港澳合作平台建设。加深内地同港澳在社会、民生、科技、文化、教育、环保等领域交流合作。深化泛珠三角等区域合作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持&ldquo;九二共识&rdquo;和一个中国原则,秉持&ldquo;两岸一家亲&rdquo;,以互利共赢方式深化两岸经济合作。推动两岸产业合作协调发展、金融业合作及贸易投资等双向开放合作。推进海峡西岸经济区建设,打造平潭等对台合作平台。扩大两岸人员往来,深化两岸农业、文化、教育、科技、社会等领域交流合作,增进两岸同胞福祉,让更多台湾普通民众、青少年和中小企业受益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)积极参与全球经济治理。推动国际经济治理体系改革完善,积极引导全球经济议程,促进国际经济秩序朝着平等公正、合作共赢的方向发展。加强宏观经济政策国际协调,促进全球经济平衡、金融安全、经济稳定增长。积极参与网络、深海、极地、空天等新领域国际规则制定。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动多边贸易谈判进程,促进多边贸易体制均衡、共赢、包容发展,形成公正、合理、透明的国际经贸规则体系。支持发展中国家平等参与全球经济治理,促进国际货币体系和国际金融监管改革。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加快实施自由贸易区战略,推进区域全面经济伙伴关系协定谈判,推进亚太自由贸易区建设,致力于形成面向全球的高标准自由贸易区网络。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)积极承担国际责任和义务。坚持共同但有区别的责任原则、公平原则、各自能力原则,积极参与应对全球气候变化谈判,落实减排承诺。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扩大对外援助规模,完善对外援助方式,为发展中国家提供更多免费的人力资源、发展规划、经济政策等方面咨询培训,扩大科技教育、医疗卫生、防灾减灾、环境治理、野生动植物保护、减贫等领域对外合作和援助,加大人道主义援助力度。主动参与二〇三〇年可持续发展议程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;维护国际公共安全,反对一切形式的恐怖主义,积极支持并参与联合国维和行动,加强防扩散国际合作,参与管控热点敏感问题,共同维护国际通道安全。加强多边和双边协调,参与维护全球网络安全。推动国际反腐败合作。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>七、坚持共享发展,着力增进人民福祉</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;按照人人参与、人人尽力、人人享有的要求,坚守底线、突出重点、完善制度、引导预期,注重机会公平,保障基本民生,实现全体人民共同迈入全面小康社会。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)增加公共服务供给。坚持普惠性、保基本、均等化、可持续方向,从解决人民最关心最直接最现实的利益问题入手,增强政府职责,提高公共服务共建能力和共享水平。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强义务教育、就业服务、社会保障、基本医疗和公共卫生、公共文化、环境保护等基本公共服务,努力实现全覆盖。加大对革命老区、民族地区、边疆地区、贫困地区的转移支付。加强对特定人群特殊困难的帮扶。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;创新公共服务提供方式,能由政府购买服务提供的,政府不再直接承办;能由政府和社会资本合作提供的,广泛吸引社会资本参与。加快社会事业改革。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)实施脱贫攻坚工程。农村贫困人口脱贫是全面建成小康社会最艰巨的任务。必须充分发挥政治优势和制度优势,坚决打赢脱贫攻坚战。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施精准扶贫、精准脱贫,因人因地施策,提高扶贫实效。分类扶持贫困家庭,对有劳动能力的支持发展特色产业和转移就业,对&ldquo;一方水土养不起一方人&rdquo;的实施扶贫搬迁,对生态特别重要和脆弱的实行生态保护扶贫,对丧失劳动能力的实施兜底性保障政策,对因病致贫的提供医疗救助保障。实行低保政策和扶贫政策衔接,对贫困人口应保尽保。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;扩大贫困地区基础设施覆盖面,因地制宜解决通路、通水、通电、通网络等问题。对在贫困地区开发水电、矿产资源占用集体土地的,试行给原住居民集体股权方式进行补偿,探索对贫困人口实行资产收益扶持制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;提高贫困地区基础教育质量和医疗服务水平,推进贫困地区基本公共服务均等化。建立健全农村留守儿童和妇女、老人关爱服务体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实行脱贫工作责任制。进一步完善中央统筹、省(自治区、直辖市)负总责、市(地)县抓落实的工作机制。强化脱贫工作责任考核,对贫困县重点考核脱贫成效。加大中央和省级财政扶贫投入,发挥政策性金融和商业性金融的互补作用,整合各类扶贫资源,开辟扶贫开发新的资金渠道。健全东西部协作和党政机关、部队、人民团体、国有企业定点扶贫机制,激励各类企业、社会组织、个人自愿采取包干方式参与扶贫。把革命老区、民族地区、边疆地区、集中连片贫困地区作为脱贫攻坚重点。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)提高教育质量。全面贯彻党的教育方针,落实立德树人根本任务,加强社会主义核心价值观教育,培养德智体美全面发展的社会主义建设者和接班人。深化教育改革,把增强学生社会责任感、创新精神、实践能力作为重点任务贯彻到国民教育全过程。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动义务教育均衡发展,全面提高教育教学质量。普及高中阶段教育,逐步分类推进中等职业教育免除学杂费,率先从建档立卡的家庭经济困难学生实施普通高中免除学杂费。发展学前教育,鼓励普惠性幼儿园发展。完善资助方式,实现家庭经济困难学生资助全覆盖。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;促进教育公平。加快城乡义务教育公办学校标准化建设,加强教师队伍特别是乡村教师队伍建设,推进城乡教师交流。办好特殊教育。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;提高高校教学水平和创新能力,使若干高校和一批学科达到或接近世界一流水平。建设现代职业教育体系,推进产教融合、校企合作。优化学科专业布局和人才培养机制,鼓励具备条件的普通本科高校向应用型转变。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;落实并深化考试招生制度改革和教育教学改革。建立个人学习账号和学分累计制度,畅通继续教育、终身学习通道。推进教育信息化,发展远程教育,扩大优质教育资源覆盖面。完善教育督导,加强社会监督。支持和规范民办教育发展,鼓励社会力量和民间资本提供多样化教育服务。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)促进就业创业。坚持就业优先战略,实施更加积极的就业政策,创造更多就业岗位,着力解决结构性就业矛盾。完善创业扶持政策,鼓励以创业带就业,建立面向人人的创业服务平台。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;统筹人力资源市场,打破城乡、地区、行业分割和身份、性别歧视,维护劳动者平等就业权利。加强对灵活就业、新就业形态的支持,促进劳动者自主就业。落实高校毕业生就业促进和创业引领计划,带动青年就业创业。加强就业援助,帮助就业困难者就业。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推行终身职业技能培训制度。实施新生代农民工职业技能提升计划。开展贫困家庭子女、未升学初高中毕业生、农民工、失业人员和转岗职工、退役军人免费接受职业培训行动。推行工学结合、校企合作的技术工人培养模式,推行企业新型学徒制。提高技术工人待遇,完善职称评定制度,推广专业技术职称、技能等级等同大城市落户挂钩做法。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;提高劳动力素质、劳动参与率、劳动生产率,增强劳动力市场灵活性,促进劳动力在地区、行业、企业之间自由流动。建立和谐劳动关系,维护职工和企业合法权益。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善就业服务体系,提高就业服务能力。完善就业失业统计指标体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)缩小收入差距。坚持居民收入增长和经济增长同步、劳动报酬提高和劳动生产率提高同步,持续增加城乡居民收入。调整国民收入分配格局,规范初次分配,加大再分配调节力度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;健全科学的工资水平决定机制、正常增长机制、支付保障机制,推行企业工资集体协商制度。完善最低工资增长机制,完善市场评价要素贡献并按贡献分配的机制,完善适应机关事业单位特点的工资制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实行有利于缩小收入差距的政策,明显增加低收入劳动者收入,扩大中等收入者比重。加快建立综合和分类相结合的个人所得税制。多渠道增加居民财产性收入。规范收入分配秩序,保护合法收入,规范隐性收入,遏制以权力、行政垄断等非市场因素获取收入,取缔非法收入。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;支持慈善事业发展,广泛动员社会力量开展社会救济和社会互助、志愿服务活动。完善鼓励回馈社会、扶贫济困的税收政策。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)建立更加公平更可持续的社会保障制度。实施全民参保计划,基本实现法定人员全覆盖。坚持精算平衡,完善筹资机制,分清政府、企业、个人等的责任。适当降低社会保险费率。完善社会保险体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善职工养老保险个人账户制度,健全多缴多得激励机制。实现职工基础养老金全国统筹,建立基本养老金合理调整机制。拓宽社会保险基金投资渠道,加强风险管理,提高投资回报率。逐步提高国有资本收益上缴公共财政比例,划转部分国有资本充实社保基金。出台渐进式延迟退休年龄政策。发展职业年金、企业年金、商业养老保险。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;健全医疗保险稳定可持续筹资和报销比例调整机制,研究实行职工退休人员医保缴费参保政策。全面实施城乡居民大病保险制度。改革医保支付方式,发挥医保控费作用。改进个人账户,开展门诊费用统筹。实现跨省异地安置退休人员住院医疗费用直接结算。整合城乡居民医保政策和经办管理。鼓励发展补充医疗保险和商业健康保险。鼓励商业保险机构参与医保经办。将生育保险和基本医疗保险合并实施。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;统筹救助体系,强化政策衔接,推进制度整合,确保困难群众基本生活。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(七)推进健康中国建设。深化医药卫生体制改革,实行医疗、医保、医药联动,推进医药分开,实行分级诊疗,建立覆盖城乡的基本医疗卫生制度和现代医院管理制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;全面推进公立医院综合改革,坚持公益属性,破除逐利机制,建立符合医疗行业特点的人事薪酬制度。优化医疗卫生机构布局,健全上下联动、衔接互补的医疗服务体系,完善基层医疗服务模式,发展远程医疗。促进医疗资源向基层、农村流动,推进全科医生、家庭医生、急需领域医疗服务能力提高、电子健康档案等工作。鼓励社会力量兴办健康服务业,推进非营利性民营医院和公立医院同等待遇。加强医疗质量监管,完善纠纷调解机制,构建和谐医患关系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持中西医并重,促进中医药、民族医药发展。完善基本药物制度,健全药品供应保障机制,理顺药品价格,增加艾滋病防治等特殊药物免费供给。提高药品质量,确保用药安全。加强传染病、慢性病、地方病等重大疾病综合防治和职业病危害防治,通过多种方式降低大病慢性病医疗费用。倡导健康生活方式,加强心理健康服务。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实施食品安全战略,形成严密高效、社会共治的食品安全治理体系,让人民群众吃得放心。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(八)促进人口均衡发展。坚持计划生育的基本国策,完善人口发展战略。全面实施一对夫妇可生育两个孩子政策。提高生殖健康、妇幼保健、托幼等公共服务水平。帮扶存在特殊困难的计划生育家庭。注重家庭发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;积极开展应对人口老龄化行动,弘扬敬老、养老、助老社会风尚,建设以居家为基础、社区为依托、机构为补充的多层次养老服务体系,推动医疗卫生和养老服务相结合,探索建立长期护理保险制度。全面放开养老服务市场,通过购买服务、股权合作等方式支持各类市场主体增加养老服务和产品供给。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;坚持男女平等基本国策,保障妇女和未成年人权益。支持残疾人事业发展,健全扶残助残服务体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;<strong>八、加强和改善党的领导,为实现&ldquo;十三五&rdquo;规划提供坚强保证</strong><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;发展是党执政兴国的第一要务。各级党委必须深化对发展规律的认识,提高领导发展能力和水平,推进国家治理体系和治理能力现代化,更好推动经济社会发展。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(一)完善党领导经济社会发展工作体制机制。坚持党总揽全局、协调各方,发挥各级党委(党组)领导核心作用,加强制度化建设,改进工作体制机制和方式方法,强化全委会决策和监督作用。提高决策科学化水平,完善党委研究经济社会发展战略、定期分析经济形势、研究重大方针政策的工作机制,健全决策咨询机制。完善信息发布制度。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;优化领导班子知识结构和专业结构,注重培养选拔政治强、懂专业、善治理、敢担当、作风正的领导干部,提高专业化水平。深化干部人事制度改革,完善政绩考核评价体系和奖惩机制,调动各级干部工作积极性、主动性、创造性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强党的各级组织建设,强化基层党组织整体功能,发挥战斗堡垒作用和党员先锋模范作用,激励广大干部开拓进取、攻坚克难,更好带领群众全面建成小康社会。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;反腐倡廉建设永远在路上,反腐不能停步、不能放松。要坚持全面从严治党,落实&ldquo;三严三实&rdquo;要求,严明党的纪律和规矩,落实党风廉政建设主体责任和监督责任,健全改进作风长效机制,强化权力运行制约和监督,巩固反腐败成果,构建不敢腐、不能腐、不想腐的有效机制,努力实现干部清正、政府清廉、政治清明,为经济社会发展营造良好政治生态。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(二)动员人民群众团结奋斗。充分发扬民主,贯彻党的群众路线,提高宣传和组织群众能力,加强经济社会发展重大问题和涉及群众切身利益问题的协商,依法保障人民各项权益,激发各族人民建设祖国的主人翁意识。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强思想政治工作,创新群众工作体制机制和方式方法,注重发挥工会、共青团、妇联等群团组织的作用,正确处理人民内部矛盾,最大限度凝聚全社会推进改革发展、维护社会和谐稳定的共识和力量。高度重视做好意识形态领域工作,切实维护意识形态安全。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;巩固和发展最广泛的爱国统一战线,全面落实党的知识分子、民族、宗教、侨务等政策,充分发挥民主党派、工商联和无党派人士作用,深入开展民族团结进步宣传教育,引导宗教与社会主义社会相适应,促进政党关系、民族关系、宗教关系、阶层关系、海内外同胞关系和谐,巩固全国各族人民大团结,加强海内外中华儿女大团结。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(三)加快建设人才强国。深入实施人才优先发展战略,推进人才发展体制改革和政策创新,形成具有国际竞争力的人才制度优势。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;推动人才结构战略性调整,突出&ldquo;高精尖缺&rdquo;导向,实施重大人才工程,着力发现、培养、集聚战略科学家、科技领军人才、企业家人才、高技能人才队伍。实施更开放的创新人才引进政策,更大力度引进急需紧缺人才,聚天下英才而用之。发挥政府投入引导作用,鼓励企业、高校、科研院所、社会组织、个人等有序参与人才资源开发和人才引进。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;优化人力资本配置,清除人才流动障碍,提高社会横向和纵向流动性。完善人才评价激励机制和服务保障体系,营造有利于人人皆可成才和青年人才脱颖而出的社会环境,健全有利于人才向基层、中西部地区流动的政策体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(四)运用法治思维和法治方式推动发展。厉行法治是发展社会主义市场经济的内在要求。必须坚持依法执政,全面提高党依据宪法法律治国理政、依据党内法规管党治党的能力和水平。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强党对立法工作的领导。加快重点领域立法,坚持立改废释并举,深入推进科学立法、民主立法,加快形成完备的法律规范体系。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强法治政府建设,依法设定权力、行使权力、制约权力、监督权力,依法调控和治理经济,推行综合执法,实现政府活动全面纳入法治轨道。深化司法体制改革,尊重司法规律,促进司法公正,完善对权利的司法保障、对权力的司法监督。弘扬社会主义法治精神,增强全社会特别是公职人员尊法学法守法用法观念,在全社会形成良好法治氛围和法治习惯。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(五)加强和创新社会治理。建设平安中国,完善党委领导、政府主导、社会协同、公众参与、法治保障的社会治理体制,推进社会治理精细化,构建全民共建共享的社会治理格局。健全利益表达、利益协调、利益保护机制,引导群众依法行使权利、表达诉求、解决纠纷。增强社区服务功能,实现政府治理和社会调节、居民自治良性互动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;加强社会治理基础制度建设,建立国家人口基础信息库、统一社会信用代码制度和相关实名登记制度,完善社会信用体系,健全社会心理服务体系和疏导机制、危机干预机制。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;完善社会治安综合治理体制机制,以信息化为支撑加快建设社会治安立体防控体系,建设基础综合服务管理平台。落实重大决策社会稳定风险评估制度,完善社会矛盾排查预警和调处化解综合机制,加强和改进信访和调解工作,有效预防和化解矛盾纠纷。严密防范、依法惩治违法犯罪活动,维护社会秩序。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;牢固树立安全发展观念,坚持人民利益至上,加强全民安全意识教育,健全公共安全体系。完善和落实安全生产责任和管理制度,实行党政同责、一岗双责、失职追责,强化预防治本,改革安全评审制度,健全预警应急机制,加大监管执法力度,及时排查化解安全隐患,坚决遏制重特大安全事故频发势头。实施危险化学品和化工企业生产、仓储安全环保搬迁工程,加强安全生产基础能力和防灾减灾能力建设,切实维护人民生命财产安全。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;贯彻总体国家安全观,实施国家安全战略,落实重点领域国家安全政策,完善国家安全审查制度,完善国家安全法治,建立国家安全体系。依法严密防范和严厉打击敌对势力渗透颠覆破坏活动、暴力恐怖活动、民族分裂活动、极端宗教活动,坚决维护国家政治、经济、文化、社会、信息、国防等安全。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;(六)确保&ldquo;十三五&rdquo;规划建议的目标任务落到实处。制定&ldquo;十三五&rdquo;规划纲要和专项规划,要坚决贯彻党中央决策部署,落实本建议确定的发展理念、主要目标、重点任务、重大举措。各地区要从实际出发,制定本地区&ldquo;十三五&rdquo;规划。各级各类规划要增加明确反映创新、协调、绿色、开放、共享发展理念的指标,增加政府履行职责的约束性指标,把全会确定的各项决策部署落到实处。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;实现&ldquo;十三五&rdquo;时期发展目标,前景光明,任务繁重。全党全国各族人民要更加紧密地团结在以习近平同志为总书记的党中央周围,万众一心,艰苦奋斗,共同夺取全面建成小康社会决胜阶段的伟大胜利!<br />\r\n&nbsp;</span><br />\r\n', '', '', '113.4.72.190'),
(152, 10, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 按照赵梅书记批示和我院16日会议部署现将《黑龙江省人民政府关于深化体制机制改革加快实施创新驱动发展战略的实施意见》黑政发[2015]32号上传到院网站和群共享请各部门认真学习贯彻落实。</span><br />\r\n <br />\r\n <span style=\"font-size: 22px;\">附件:</span><span style=\"font-size:22px;\"><u><a href=\"/uploads/soft/151116/1-1511161A206.doc\" target=\"_blank\">黑政发[2015]32号</a></u></span></div>\r\n', '', '', '113.4.72.190'),
(153, 10, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 11月16日在省能源院会议室省能源院党委中心组召开学习贯彻十八届五中全会精神和&ldquo;三严三实&rdquo;专题教育第三专题研讨扩大会议。省能源院领导班子、省科学院机关党委刘颖书记及能源院中层干部参加了会议。会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/151120/1-15112014063YY.JPG\" style=\"width: 644px; height: 428px;\" /></span><br />\r\n &nbsp;</div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议全文传达了《中共中央关于制定国民经济和社会发展第十三个五年规划的建议》内容,省能源院领导班子与参会人员交流了学习体会,并围绕&ldquo;严以用权、为民务实创业&rdquo;作了主题发言。徐晓秋院长指出,严以用权,要树立正确的政绩观、发挥监督作用,同时强化制度落实。务实创业,要真抓实干敢于担当,面对改革的关键时刻要不讲条件、不计得失、敢于承担、敢于负责。关春玲副院长指出,&ldquo;修身&rdquo;和&ldquo;律己&rdquo;主要是为用好权。权力是人民赋予的,行使权力必须为人民服务,一丝一毫都不能私用。官越大、权越重,为人民服务的担子就越重,越应该做出成绩。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长围绕&ldquo;十三五规划&rdquo;谈了自己的学习体会并部署了近期工作,强调&ldquo;十三五规划&rdquo;中提出要坚持绿色发展,着力改善生态环境,这与省能源院研究方向和研究领域相符合,同时也为省能源院未来的发展提供了指引和机会。省能源院全体科研人员要认真学习领会&ldquo;十三五规划&rdquo;中各项重要政策、举措、计划,充分结合各自研究领域开展科研工作,大胆扩展思路、树立超前发展理念,把握契机,执行好各项决策部署,确保我院的各项发展目标和任务圆满完成。</span></div>\r\n', '', '', '60.219.236.154'),
(154, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年12月15日由深圳市建筑科学研究院股份有限公司主办的国家行业标准《住宅建筑室内装修污染控制技术规程》编制组第二次工作会议在哈尔滨召开黑龙江省能源环境研究院作为参编单位承办了此次大会。来自深圳市建筑科学研究院股份有限公司、清华大学、黑龙江省能源环境研究院、中国建筑科学研究院、中国林科院木材工业研究所、上海市建筑科学研究院集团有限公司、福建第一建筑集团公司、河南省建筑科学研究院有限公司、甘肃省建材科研设计院以及建筑装饰企业的23位代表参加了此次会议。省科学院王钢副院长和能源院徐晓秋院长在会议上发言并对与会各单位代表表示热烈欢迎。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/151225/1-151225110013332.JPG\" style=\"width: 519px; height: 346px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议上,各编制组成员单位分别介绍了工作开展情况及研究工作中出现的问题,并由主编单位介绍了该标准编制的情况。会议围绕《住宅建筑室内装修污染控制技术规程》讨论稿初稿展开了广泛而深入的交流与讨论,各参编单位均发表了各自的观点和建议。最后,各参编单位讨论了下一步的工作计划及任务分工。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/151225/1-15122511003KY.JPG\" style=\"width: 519px; height: 346px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 此次会议的召开,广泛征求了编制组各成员单位与会专家的意见和建议,有利于促进标准编制工作顺利有序进行,同时,也全面考虑了我国各地区的特殊气候情况,对提高该标准的适用范围和准确性起到了积极的推动作用。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: right;\">\r\n <span style=\"font-size:22px;\">黑龙江省能源环境研究院 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></div>\r\n', '', '', '60.219.236.202'),
(155, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2015年12月17日院科研处王阳处长一行3人莅临能源环境研究院检查学科创新团队发展情况和团队一年来的主要工作。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/151225/1-15122511042EC.JPG\" style=\"width: 553px; height: 369px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 王阳处长逐一听取了能源院三个学科创新团队2015年的工作进展情况和2016年的发展规划针对学科创新团队发展过程中存在的突出问题与能源院领导和团队带头人进行了深入分析和讨论同时对各学科创新团队未来的发展方向人员结构年度目标等提出了具体要求。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/151225/1-151225110501a8.JPG\" style=\"width: 553px; height: 369px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 王阳处长指出1、能源院的三个团队要积极把握好国家&ldquo;十三五&rdquo;发展规划努力寻求合作积极拓展科研合作伙伴把握好方向找准定位合理制定发展目标2、要优化团队人员结构、努力培养科研骨干促进团队科研能力整体提升3、要积极开展国际合作与交流不断提升学科团队在国内外的学术影响力4、要加强高水平基金项目的申报和SCI/EI高水平论文的产出。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: right;\">\r\n <span style=\"font-size:22px;\">黑龙江省能源环境研究院 &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</span></div>\r\n', '', '', '60.219.236.202'),
(156, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年1月14日黑龙江省科技厅在哈尔滨市组织专家对黑龙江省能源环境研究院承担的省院科技合作项目&ldquo;寒区农业固体废弃物高值化利用关键技术研究&rdquo;进行了成果鉴定。</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/160122/1-160122093932Z9.JPG\" style=\"width: 519px; height: 346px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会由哈尔滨工业大学、哈尔滨工程大学等高校专家组成,会议由省科技厅成果处领导主持,省院士办、省科学院科研处领导参加会议。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 与会专家认真听取了项目组的工作总结报告和技术报告,审查了相关技术资料,经质询、讨论,对项目组研究的高温湿法-干法耦合工艺给予了较高的评价,鉴定委员会认为,研究成果达到了国内领先水平,并建议进一步扩大农业废弃物处理范围。&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此项目的圆满完成,标志中我院在农业废弃物利用领域又迈出坚实的一步,与中科院的合作又结出新的硕果。</span>', '', '', '113.4.72.99'),
(157, 10, '<span style=\"font-size:24px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年1月黑龙江省科技厅组织鉴定委员会对黑龙江省能源环境研究院和科技孵化中心承担的省应用技术研究与开发计划项目《煤与废弃有机制品共焦化技术开发与应用》和《M25车用甲醇汽油应用技术研究》进行函审鉴定。鉴定委员会由哈工大、哈工程、哈理工的5位专家组成。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 鉴定专家认真审查了项目组提供的技术材料并听取了二个项目组的工作汇报后对各项目组的工作给予了充分肯定认为项目组完成了课题任务书要求的各项内容煤与废弃有机制品共焦化技术有良好的经济和社会效益其技术性能达到国内领先水平。M25车用甲醇汽油应用技术拓展煤基甲醇替代石油资源其技术性能达到国内先进水平。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 我院(中心)在煤化工领域及其下游产品应用领域又开拓出新的出路,为我省产业结构调整,提供新思路。这两项省级项目顺利通过鉴定,标志着我院(中心)煤化工领域部分成果水平已处于省内乃至国内的前列, 对能源化学省级领军人才梯队建设和发展也</span><span style=\"font-size: 24px;\">起</span><span style=\"font-size:24px;\">到了重要的支撑作用。</span>', '', '', '113.4.72.22');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(158, 27, '<table border=\"2\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px;\" width=\"452\">\r\n <colgroup>\r\n <col style=\"text-align: center;\" />\r\n <col style=\"text-align: center;\" />\r\n <col style=\"text-align: center;\" />\r\n </colgroup>\r\n <tbody>\r\n <tr height=\"51\">\r\n <td height=\"51\" style=\"height: 51px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">序号</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">成果名称</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">鉴定时间</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">1</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">油页岩低温热解条件对页岩油性质的影响研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">煤与废弃有机制品共焦化技术开发与应用</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">3</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">M25车用甲醇汽油应用技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">4</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">寒区农业固体废弃物高值化利用关键技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">5</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">重质油乳化剂及乳化方式的优化研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">6</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">乳化柴油提高燃烧效率研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">7</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">一种亲水性无纺布的制备方法研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">8</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">水包油型乳化重油的稳定性研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">9</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">太阳能等清洁能源替代小型燃煤锅炉建筑采暖的关键技术研究及示范</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">10</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">太阳能空气采暖智能控制装置的应用研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">11</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">基于&ldquo;一村一厂&rdquo;生物质加工和清洁利用的寒区&ldquo;无煤生态村&rdquo;应用技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">12</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">中试沼气发酵系统节能控制研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">13</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">基于ZigBee和WLAN技术的中试沼气发酵监测系统</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">14</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">沼液回流喷淋对秸秆沼气产量的影响研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">15</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">酸预处理玉米秸秆与奶牛粪便混合厌氧消化工艺优化研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">16</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">三塔变压吸附沼气提纯技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">17</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">沼液超滤膜分离浓缩方法优化及膜再生机理研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">18</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">液相色谱法分析鸡粪中残留四环素类抗生素的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">19</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">调和国Ⅴ标准车用汽油的抗爆剂技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">20</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">太阳能空气采暖系统的优化控制研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">21</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">页岩油加氢精制-延迟焦化组合工艺的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">22</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">沼气工程进料固含量在线监测方法的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">23</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">轻质木焦油加氢提质转化运输燃料油调和组分的工艺研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">24</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">寒地沼气发电机余热回收仿真优化研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">25</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">秸秆高温厌氧发酵过程关键技术参数研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">26</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">沼液高效回用及综合处理工艺研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">27</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">沼液回流对牛粪厌氧发酵沼气产量的影响及机理研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">28</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">厌氧发酵反应器温度监控及补偿系统的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">29</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">复合调节剂(润滑性能)中试研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">30</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">利用炼厂90#汽油生产国Ⅳ标准93#汽油的复合添加剂应用</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">31</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">产油微藻的一体式培养及柴油提取的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">32</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">从废源培养的产油微藻中提取生物柴油的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">33</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">甲醇乳化柴油技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">34</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">利用页岩油制取油砂分离剂的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">35</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">全馏分页岩油改质转化轻质运输燃料工艺的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">36</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">膜生物反应器中改性复合膜的制备与性能研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">37</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">车用汽油复合调节剂技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">38</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">油页岩中有机质的分离和分析</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">39</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">发酵原料水解率对提高CSTR反应器产气率的机理研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">40</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">寒区牛粪两级厌氧高效发酵工艺研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">41</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">不同搅拌方式对反应器上层浮渣影响高温厌氧发酵产气率的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">42</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">高温厌氧发酵过程中沼气净化系统的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">43</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">基于混合模型的牛粪高温厌氧发酵过程参量监测</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">44</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">环氧树脂固化程度在线监测系统</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">45</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">沼气工程无线网络化系统控制与方法设计</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">46</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">工业化封闭环式沼气、发电系统</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">47</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">集成牛粪便综合利用系统IMUS示范工程</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">48</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">生物质资源综合利用的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">49</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">厌氧消化过程中发酵原料的不同滞留时间对发酵过程的影响研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">50</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">厌氧发酵工艺过程仿真系统的研制</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">51</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">牛粪碱法与生物法联合预处理方法及机理研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">52</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">物理参数对提高牛粪高温厌氧性能影响机理的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">53</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">接种物对牛粪高温厌氧消化过程的影响机理研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">54</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">大掺量甲醇汽油催化燃烧技术</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">55</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">黑龙江省油页岩分布及含油率分析研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">56</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">全馏分页岩油改质转化轻质运输燃料工艺的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">57</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">M15车用甲醇汽油复合添加剂</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">58</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">加拿大直贮热太阳能技术</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">59</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">&gamma;-射线辐照对牛粪厌氧消化过程影响的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">60</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">牛粪高温厌氧消化动力学研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">61</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">奶牛场粪污水综合处理工艺研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">62</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">直贮热太阳能技术DHS示范温室</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">63</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">M20甲醇汽油工业应用及性能考核</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"19\">\r\n <td height=\"19\" style=\"height: 19px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">64</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">工业燃煤锅炉烟气净化技术</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">65</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">褐煤低温催化制油气研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">66</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">燃煤锅炉催化脱硫技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">67</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">烟气中二氧化硫催化固硫性能研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">68</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">油气分离系统的研究科技成果</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">69</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">中国加拿大油砂炼制技术合作研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2011</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">70</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">牛粪高温厌氧发酵机理研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2009</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">71</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">沼气生物脱硫机理研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2009</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">72</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">牛粪厌氧发酵工艺关键技术参数研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2009</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">73</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">沼气脱硫技术研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2009</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">74</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">高寒地区牛粪高温发酵工艺研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2009</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">75</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">以沼气为纽带的生态农场模式及经济评价体系</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2008</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">76</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">黑龙江省省属科研机构科技孵化器建设</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2008</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 45px; text-align: center;\">\r\n <span style=\"font-size:16px;\">77</span></td>\r\n <td style=\"width: 332px; text-align: center;\">\r\n <span style=\"font-size:16px;\">黑龙江省科学院院属科研机构科技孵化器建设的研究</span></td>\r\n <td style=\"width: 76px; text-align: center;\">\r\n <span style=\"font-size:16px;\">2008</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n', '', '', '1.58.195.50');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(159, 29, '<table border=\"2\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px;\" width=\"474\">\r\n <colgroup>\r\n <col style=\"text-align: center;\" />\r\n <col style=\"text-align: center;\" />\r\n <col style=\"text-align: center;\" />\r\n <col style=\"text-align: center;\" />\r\n </colgroup>\r\n <tbody>\r\n <tr height=\"43\">\r\n <td height=\"43\" style=\"height: 43px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">序号</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">专利名称</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">专利号</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">类型</span></td>\r\n </tr>\r\n <tr height=\"77\">\r\n <td height=\"77\" style=\"height: 77px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">1</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">利用高温厌氧发酵运行参数无线实时监测系统对高温厌氧发酵运行参数监测的方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310364454.2</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种基于沼气发电的余热回收利用系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310674344.6</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">3</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种车用燃料油抗水复合添加剂</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201410445460.5</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">4</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种含超细稀土粉体润滑油添加剂</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310631999.5</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">5</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">车用汽油复合调节剂</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310140441.7</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">6</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">有机无灰类M15车用甲醇汽油复合添加剂</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201210258097.7</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">7</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">采用全馏分页岩油生产低硫低凝柴油的方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310484593.9</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">8</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种沼气旋转冷凝的装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310381690.5</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">9</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种搅拌破壳于一体的发酵反应器</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310367177</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"58\">\r\n <td height=\"58\" style=\"height: 58px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">10</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种改性聚对苯二甲酸乙二醇酯无纺布复合膜的制备方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310484592.4</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">11</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">甲醇乳化柴油及其制备方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201410091283.5</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">12</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种利用啤酒厂污水培养产油微藻的方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201310625139.0</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">13</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种基于沼气发电的余热回收利用系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310674345</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">14</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种温度自控风力制热装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310692604</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"77\">\r\n <td height=\"77\" style=\"height: 77px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">15</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种环氧树脂固化程度在线监控系统及采用该系统对环氧树脂固化程度监控的方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310511396</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">16</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种太阳能集热控制系统及其集热控制方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310421572</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">17</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">可测定出料位置的CSTR反应器</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310470071</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"77\">\r\n <td height=\"77\" style=\"height: 77px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">18</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">利用高温厌氧发酵运行参数无线实时监测系统对高温厌氧发酵运行参数监测的方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310364454</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">19</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种厌氧发酵分段控温系统及方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310364456</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">20</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种沼气旋转冷凝的装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310381691</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">21</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种搅拌破壳于一体的发酵反应器及搅拌破壳方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201310367177</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">22</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">联合使用的厌氧发酵反应器</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201210338447</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"58\">\r\n <td height=\"58\" style=\"height: 58px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">23</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">厌氧发酵罐体沼气贮量的测量方法及实现该方法的装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201110078502</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"58\">\r\n <td height=\"58\" style=\"height: 58px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">24</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种原料预处理装置及利用该装置实现沼气收集的系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201110058808</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">25</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种利用太阳能的直贮热厌氧消化装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201110056367</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">26</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">厌氧往复折流复合消化装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201110042375</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">27</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种用于牛场污水处理的二次厌氧消化装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201010611390</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">28</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种60Co&gamma;-射线辐照牛粪提高沼气产量的方法</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\"> </span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发明专利</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">29</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">可测定出料位置的CSTR反应器</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201320623818</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">30</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种高温厌氧发酵运行参数的无线实时监测系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201320509482</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">31</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">联合使用的厌氧发酵反应器</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201220466304</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">32</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种沼气发酵过程状态检测系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420711902.1</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">33</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">太阳能空气智能采暖装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420688401.6</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">34</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种厌氧发酵分段控温系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201320509483.9</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">35</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种高温厌氧发酵运行参数的无线实时监测系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201320509482.4&nbsp;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">36</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种太阳能集热控制系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201320573185.6</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">37</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">基于Buck变换器的无刷直流电机驱动电路</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420663823.8</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">38</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">无刷直流电机反电动势三次谐波检测电路</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420678192.7</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">39</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种高温厌氧发酵装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420670351.9</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">40</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">太阳能助力式风力发电装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420759477.3</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">41</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">电线固定装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420711843.8</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">42</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种带有供热系统的恒温建筑</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420697172.4&nbsp;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">43</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种带有沼液回流管线的畜禽粪便厌氧发酵装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420697135.3</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">44</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种利用回收的沼液喷淋秸秆的干式厌氧发酵装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420707710.3</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">45</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种高温厌氧发酵装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420670351.9</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">46</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">可测定出料位置的CSTR反应器</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201320623817.5</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">47</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种沼气旋转冷凝的装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201320529632.8</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">48</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种搅拌破壳于一体的发酵反应器</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201320512530.5</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">49</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">产油微藻的一体式培养装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ZL201420312552.1</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">50</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种太阳能集热控制系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201320573186</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">51</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种厌氧发酵分段控温系统</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201320509484</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"20\">\r\n <td height=\"20\" style=\"height: 20px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">52</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种沼气旋转冷凝的装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201320529633</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">53</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种搅拌破壳于一体的发酵反应器</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201320512531</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">54</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">厌氧往复折流复合消化装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201120045415</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"58\">\r\n <td height=\"58\" style=\"height: 58px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">55</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">一种用于牛场污水沉降净化处理的二次厌氧消化装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">201020686844</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n <tr height=\"39\">\r\n <td height=\"39\" style=\"height: 39px; width: 46px; text-align: center;\">\r\n <span style=\"font-size:14px;\">56</span></td>\r\n <td style=\"width: 215px; text-align: center;\">\r\n <span style=\"font-size:14px;\">用于恒温实验室的相转变太阳能贮热装置</span></td>\r\n <td style=\"width: 140px; text-align: center;\">\r\n <span style=\"font-size:14px;\">200920317606</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">实用新型</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n', '', '', '1.58.195.50');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(160, 29, '<table border=\"2\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:600px;\" width=\"536\">\r\n <colgroup>\r\n <col style=\"text-align: center;\" />\r\n <col style=\"text-align: center;\" />\r\n <col style=\"text-align: center;\" />\r\n <col style=\"text-align: center;\" />\r\n <col span=\"2\" style=\"text-align: center;\" />\r\n </colgroup>\r\n <tbody>\r\n <tr height=\"58\">\r\n <td height=\"58\" style=\"height: 58px; width: 39px; text-align: center;\">\r\n <span style=\"font-size:14px;\">序号</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">文章名称</span></td>\r\n <td style=\"width: 77px; text-align: center;\">\r\n <span style=\"font-size:14px;\">类别</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">期刊名</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">作者</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发表时间</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">1</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">沼气脱碳提纯技术研究进展</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">潘良;徐晓秋;高德玉;王欣;刘伟;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"108\">\r\n <td height=\"108\" style=\"height: 108px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">依兰油页岩逐级氧化/萃取及其产物的红外分析</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科技大学学报</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">吴鹏;张星宇;周扬;解丽萍;朱秀栋;宋微娜;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"90\">\r\n <td height=\"90\" style=\"height: 90px; text-align: center;\">\r\n <span style=\"font-size:14px;\">3</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">微米稀土粉体表面改性技术研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">唐诗洋;张树华;刘岩;李健;陈庆海;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">4</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">寒地《M25车用煤基甲醇汽油》企业标准</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化工管理</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;唐诗洋;刘岩;刘维;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"90\">\r\n <td height=\"90\" style=\"height: 90px; text-align: center;\">\r\n <span style=\"font-size:14px;\">5</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">寒地M25车用(煤基)甲醇汽油性能研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;唐诗洋;刘岩;李健;陈庆海;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">6</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">页岩油深加工产业发展评述</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陈松;周扬;王晓栋;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">7</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">水包油型乳化重油的制备条件及稳定性研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张玥;张宇;马宁;王志成;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"90\">\r\n <td height=\"90\" style=\"height: 90px; text-align: center;\">\r\n <span style=\"font-size:14px;\">8</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">基于ZigBee和WLAN技术的厌氧发酵中试监控系统</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">秦国辉;王钢;王玉鹏;周闯;罗向东;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">9</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">油页岩抚顺炉低温干馏的影响因素分析</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">周扬;陈松;王晓栋;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"90\">\r\n <td height=\"90\" style=\"height: 90px; text-align: center;\">\r\n <span style=\"font-size:14px;\">10</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">沼气发酵过程状态监控系统设计</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">李福裿;王玉鹏;周闯;秦国辉;罗向东;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">11</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">分子印迹固相萃取技术在抗生素检测中的应用进展</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">杨光;徐晓秋;高德玉;陆佳;潘良;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">12</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">浅谈沼液处理与纳滤膜技术</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陆佳;徐晓秋;高德玉;刘伟;王欣;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">13</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">页岩油预处理制取加氢原料的研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陈松;周扬;王晓栋;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">14</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">紫外辐照接枝甲基丙烯酸对无纺布性能影响的研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学与黏合</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张玥;王志成;张宇;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">15</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">在俄罗斯境内发展炼化一体化项目的工艺论证</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陈松;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"108\">\r\n <td height=\"108\" style=\"height: 108px; text-align: center;\">\r\n <span style=\"font-size:14px;\">16</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">变性梯度凝胶电泳(DGGE)技术在畜禽粪便厌氧发酵液中的研究进展</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">王欣;苏小红;郭广亮;刘伟;徐晓秋;高德玉;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"108\">\r\n <td height=\"108\" style=\"height: 108px; text-align: center;\">\r\n <span style=\"font-size:14px;\">17</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">沼液回流对牛粪高温厌氧发酵产气性能的影响</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">苏小红;刘伟;王欣;郭广亮;徐晓秋;高德玉;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"108\">\r\n <td height=\"108\" style=\"height: 108px; text-align: center;\">\r\n <span style=\"font-size:14px;\">18</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">秸秆厌氧消化预处理技术研究进展</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">王欣;苏小红;郭广亮;刘伟;徐晓秋;高德玉;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"90\">\r\n <td height=\"90\" style=\"height: 90px; text-align: center;\">\r\n <span style=\"font-size:14px;\">19</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">寒地沼气发电机组余热回收的控制策略与设计</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">自动化技术与应用</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">秦国辉;罗向东;王志成;王玉鹏;周闯;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">20</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">太阳能空气采暖智能控制系统的研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">秦国辉;王玉鹏;周闯;罗向东;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2015</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">21</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">木焦油预处理制取加氢原料的方法</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陈松;周扬;王晓栋;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">22</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">轻质木焦油加氢脱氧的影响因素</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陈松;周扬;王晓栋;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">23</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">亲水性无纺布复合膜的制备及性能研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学与黏合</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张玥;王志成;张宇;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"90\">\r\n <td height=\"90\" style=\"height: 90px; text-align: center;\">\r\n <span style=\"font-size:14px;\">24</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">《M25车用甲醇汽油》企业标准解读</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;刘辉;唐诗洋;刘维;刘岩;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">25</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">国际标准GB 17930-2011/XG1-2012《车用汽油》的胶质指标解析</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">唐诗洋;张树华;刘岩;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">26</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">醇醚燃料在车用替代能源中的发展趋势</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陆海玲;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">27</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">调和国IV标准车用汽油的抗爆剂研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">唐诗洋;张树华;刘岩;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">28</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">石油产品脱硫技术研究进展</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">马宁;张宇;张玥;王志成;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">29</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">生物柴油的应用前景</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">马宁;张玥;张宇;王志成;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">30</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">国有单位科技人员培养的实践与思考</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陆海玲;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">31</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">科技计划项目全过程管理研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张帆;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">32</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">我国科技计划项目管理现状与对策分析</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陆海玲;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">33</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">科研单位对科研仪器设备管理方案</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张帆;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">34</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">微藻培养条件优化研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">应用能源技术</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张宇;王志成;张玥;马宁;周红霞;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">35</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">应用浮选技术分离油砂的实验研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">周扬;陈松;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"90\">\r\n <td height=\"90\" style=\"height: 90px; text-align: center;\">\r\n <span style=\"font-size:14px;\">36</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">太阳能空气集热控制系统的研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">应用能源技术</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">王阳;秦国辉;罗向东;王玉鹏;刘旭丹;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"108\">\r\n <td height=\"108\" style=\"height: 108px; text-align: center;\">\r\n <span style=\"font-size:14px;\">37</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">发酵原料水解率对CSTR反应器产气率影响的研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">应用能源技术</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">王欣;刘伟;徐晓秋;赵娴;王玉鹏;秦国辉;刘旭丹;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">38</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">沼气工程工艺参数的优化模型研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">自动化技术与应用</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">秦国辉;罗向东;王玉鹏;刘旭丹;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"90\">\r\n <td height=\"90\" style=\"height: 90px; text-align: center;\">\r\n <span style=\"font-size:14px;\">39</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">不同搅拌方式对浮渣层影响高温厌氧发酵产气率的研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">王欣;王玉鹏;刘伟;苏小红;徐晓秋;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2014</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">40</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">油砂分离剂的实验研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">周扬;陈松;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">41</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">科研成果转化中科技管理部门作用的探析</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张帆;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">42</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">反应条件对轻质页岩油加氢脱氮性能的影响</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陈松;周扬;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">43</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">我国中小企业技术创新的现状及对策</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科技信息</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陆海玲;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"18\">\r\n <td height=\"18\" style=\"height: 18px; text-align: center;\">\r\n <span style=\"font-size:14px;\">44</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">大掺量甲醇汽油初步探讨</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学与黏合</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">王志成;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">45</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">油页岩综合开发利用现状</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">周红霞;王志成;陆海玲;张帆;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">46</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">车用醇基燃料及其应用性能评价</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">47</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">解读新修订的《科学事业单位财务管理制度》</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">关春玲;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">48</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">微藻研究进展及产油的影响因素</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张宇;王志成;张玥;周红霞;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">49</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">全馏分页岩油改质转化运输燃料技术进展及其评价</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">陈松;周扬;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">50</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">汽油含硫量对排放的影响研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;唐诗洋;刘岩;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">51</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">沼气发电工程沼气净化技术研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">刘伟;王欣;徐晓秋;赵娴;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">52</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">使用数学方法监测热固树脂固化程度的研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">科技创新与应用</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">刘旭丹;秦国辉;王玉鹏;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">53</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">沼气发电工程的无线监测系统</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">秦国辉;罗向东;王玉鹏;刘旭丹;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"108\">\r\n <td height=\"108\" style=\"height: 108px; text-align: center;\">\r\n <span style=\"font-size:14px;\">54</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">寒区牛粪两级厌氧高效发酵工艺参数研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">王欣;刘伟;赵娴;王玉鹏;秦国辉;刘旭丹;徐晓秋;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">55</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">基于最小二乘向量机的厌氧发酵沼气产量建模研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">秦国辉;刘伟;刘旭丹;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">56</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">混合建模方法研究及其在牛粪高温厌氧发酵过程中的监测应用</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">范庆丽;秦国辉;章力;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">57</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">Marathon 5kpro复用器配置介绍</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">韩涛;刘旭丹;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">58</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">ADWR多普勒天气雷达伺服系统故障分析与处理</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">韩涛;刘旭丹;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"36\">\r\n <td height=\"36\" style=\"height: 36px; text-align: center;\">\r\n <span style=\"font-size:14px;\">59</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">基于单片机的高温厌氧发酵罐温度控制系统</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">赵娴;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2013</span></td>\r\n </tr>\r\n <tr height=\"54\">\r\n <td height=\"54\" style=\"height: 55px; text-align: center;\">\r\n <span style=\"font-size:14px;\">60</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">MTBE的国内外研究进展</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">鞠春红;张伟君;李福裿;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">61</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">褐煤热水干燥改质后的性能研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学与黏合</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">鞠春红;张伟君;王志成;李福裿;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">62</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">光催化还原二氧化碳的发展</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">黑龙江科学</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">鞠春红;张伟君;王志成;李福裿;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">63</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">M15车用甲醇汽油复合添加剂的技术研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">64</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">对我国醇醚燃料产业的发展思路与对策探讨</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">农机使用与维修</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">刘岩;张树华;唐诗洋;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">65</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">臭氧助燃技术在柴油发动机中的应用</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">农机使用与维修</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">66</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">蛇纹石粉体作为机械摩擦副磨损表面自修复添加剂的研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">67</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">焦化废水中苯酚含量的测定方法研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">中国给水排水</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张宏森;周国江;周扬;王彦彪;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">68</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">车用汽油复合调节剂技术研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">核心</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">化学工程师</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">69</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">关于车用替代燃料的发展状况与前景探析</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">农机使用与维修</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"72\">\r\n <td height=\"72\" style=\"height: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">70</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">内燃机替代燃料的尴尬境地</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">农机使用与维修</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">张树华;刘岩;唐诗洋;李健;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n <tr height=\"108\">\r\n <td height=\"108\" style=\"height: 108px; text-align: center;\">\r\n <span style=\"font-size:14px;\">71</span></td>\r\n <td style=\"width: 179px; text-align: center;\">\r\n <span style=\"font-size:14px;\">搅拌时间对高固含量奶牛粪便高温厌氧消化的影响研究</span></td>\r\n <td style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\">一般</span></td>\r\n <td style=\"width: 99px; text-align: center;\">\r\n <span style=\"font-size:14px;\">应用能源技术</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">刘伟;王欣;徐晓秋;秦国辉;王玉鹏;刘旭丹;</span></td>\r\n <td style=\"width: 72px; text-align: center;\">\r\n <span style=\"font-size:14px;\">2012</span></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n', '', '', '1.58.195.50');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(161, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2月15日下午省能源院召开会议传达和贯彻2016年省科学院党风廉政建设工作会议和院工作会议精神。会议由省能源院党委书记、院长徐晓秋同志主持。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/160225/1-160225123025Z2.JPG\" style=\"width: 561px; height: 373px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长首先传达了省科学院赵梅书记在院2016年党风廉政建设工作会议上的讲话精神同时全文学习了省科学院郭春景院长在院工作会议上的工作报告和赵梅书记在院工作会议上的总结讲话参会人员结合省能源院工作实际对 &ldquo;一院(所)两制&rdquo;、搭建&ldquo;三大工作平台&rdquo;、激励科研人员制度措施、学科团队建设、成果转化等方面进行了深入交流和讨论。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长围绕贯彻两个工作会议精神提出了几点要求一是继续强化学习贯彻落实各级精神要求制定相关学习制度要细化到具体日期对需要长期学习、常态化学习和已经学习过的内容进行再学习、再巩固、再提高。二是将省科学院工作会议文件印发到各部门各部门要围绕文件要求把各项工作任务落到实处。最后徐晓秋院长强调各部门要提高认识准确领会会议精神把握好改革机遇提高创新发展意识在省科学院党组的领导下全面推进省能源院2016年相关工作稳步开展。</span><br />\r\n', '', '', '113.4.72.223'),
(162, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年3月23日省科学院人事处党支部与省能源环境研究院能源化学创新团队党建联系点工作对接会在能源院会议室召开。人事处党支部书记、处长张兴、副处长王向伟、盛力、曲恒峰、周磊省能源院党委书记、院长徐晓秋及能源化学创新团队全体党员参加了会议。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/160325/1-160325100Z33M.JPG\" style=\"width: 517px; height: 342px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 首先院人事处党支部成员与能源化学创新团队成员就人员、工作内容、研究方向等情况进行了介绍。随后由院人事处张兴同志和能源化学创新团队负责人王志成同志分别宣读了《黑龙江省科学院2016年度党建联系点机关党支部与创新团队责任书》及《科学院人事处党支部与能源院创新团队建立党建联系点工作方案》。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 座谈中张兴处长表示要全面落实《黑龙江省科学院2016年度党建联系点机关党支部与创新团队责任书》及《院人事处党支部与创新团队党建联系点工作方案》内容不但做到积极互动、互相带动还要帮助培养基层科研人员、创造良好科研环境。此外还将持续深入开展共建活动积极为创新团队探寻解决实际问题的有效举措同时形成良好的沟通机制提升党建工作水平、加强创新团队建设。<br />\r\n&nbsp;</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/160325/1-16032510091Y31.JPG\" style=\"width: 529px; height: 350px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长指出,院人事处党支部与能源化学创新团队建立党建联系点将机关和基层党建工作融为一体,极大地促进了能源院的党建及科研工作。创新团队全体成员决心以党建联系点工作为契机,在人事处党支部的支持与帮助下,以院党组&ldquo;四管四严&rdquo;的要求为核心,积极开展党建活动,将党建联系点工作落到实处,同时将以科研发展为中心,为能源院培养尖端科技人才、建设一流的科研队伍而努力奋斗。</span>', '', '', '113.4.72.147'),
(163, 10, '<span style=\"font-size:24px;\">&nbsp; &nbsp; &nbsp; &nbsp; 3月7日上午省能源院召开以&ldquo;创学习型组织、做知识型女性&rdquo;为主题的女职工座谈会。省能源院领导班子及全体女职工参加了会议,会议由能源院党委书记、院长徐晓秋同志主持。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:24px;\"><img src=\"/uploads/allimg/160328/1-16032P9321T09.jpg\" style=\"width: 485px; height: 321px;\" /></span></div>\r\n<span style=\"font-size:24px;\">&nbsp; &nbsp; &nbsp; &nbsp; 参会人员首先观看了2015年诺贝尔医学奖获得者屠呦呦女士的记录片。随后大家围绕此次座谈会的主题就女职工的工作、生活、健康等方面进行了交流大家积极建言献策提出了许多宝贵的意见和建议会议在热烈的氛围中进行参加会议女职工踊跃发言。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 最后徐晓秋院长强调,省能源院女职工人数约占全院人数的一半,女职工立足岗位,恪尽职守,为省能源院的发展和建设做出了积极贡献,充分体现了女职工的责任意识,大局意识,希望省能源院全体女职工在今后的工作中要沉得下心来,继续发挥女性专注与坚韧的特点,不断提高自己,十年磨一剑,取得更好的成绩。</span>', '', '', '125.211.31.163'),
(164, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 3月29日上午黑龙江省能源环境研究院召开全体职工专题学习会议学习宣传和贯彻落实习近平总书记参加黑龙江代表团审议时的重要讲话精神、王宪魁同志在专题研讨班上的讲话、杨汭部长在研讨班上的总结讲话等3个文件精神以及《中共黑龙江省委关于深入学习宣传贯彻落实习近平总书记重要讲话精神的决定》。会议由省能源院党委书记、院长徐晓秋同志主持。</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <br />\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/160329/1-160329163HYG.JPG\" style=\"width: 492px; height: 325px;\" /></span><br />\r\n <br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长首先传达了习近平总书记在黑龙江省代表团参加审议时的重要讲话和《中共黑龙江省委关于深入学习宣传贯彻落实习近平总书记重要讲话精神的决定》,关春玲副院长全文传达了王宪魁同志在省管主要领导干部专题研讨班上的讲话,和杨汭部长在研讨班上的总结讲话。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长强调,今后我院将根据科学院的安排部署,联系实际继续持续、深入地学习宣传贯彻落实习总书记重要讲话和王宪魁同志、杨汭同志的讲话精神,同时结合我院每周三学习日,把学习纳入 &ldquo;两学一做&rdquo;长期的学习内容,以支部为单位组织学习研讨,真正做到&ldquo;铺满盖严,不留死角&rdquo;,对照讲话谈思想、谈措施。增强广大职工的创新意识,坚定信心,明确工作方向,将科研工作落到实处,切实营造我院创新发展的浓厚氛围。</span>', '', '', '113.4.72.6'),
(165, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年4月27日省能源院召开&ldquo;两学一做&rdquo;学习教育工作会议,省科学院人事处全体党员和省能源院全体党员参加了会议,会议由省能源院党委书记徐晓秋同志主持。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/160427/1-16042G02P31c.JPG\" style=\"width: 553px; height: 383px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记传达了省科学院&ldquo;两学一做&rdquo;学习教育工作会议精神,宣读了省能源院关于开展&ldquo;两学一做&rdquo;学习教育实施方案。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记强调,省能源院各党支部要按照省科学院统一安排,全体党员干部要严格认真进行每日一学、半月研讨、每月一测,通过&ldquo;两学一做&rdquo;学习教育的开展,切实加强自我提升,进一步增强党性意识和宗旨意识,始终保持干事创业、开拓进取的精气神,在省能源院振兴发展中当标兵、作模范。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/160427/1-16042G02U9343.jpg\" style=\"width: 553px; height: 311px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 省科学院人事处张兴处长指出,要将&ldquo;两学一做&rdquo;学习教育与省科学院党建联系点制度紧密结合,加强与基层院所的联系沟通,切实解决相关实际问题,要充分调动广大党员干事创业的积极性与创造性,有效指导各领域工作。<br />\r\n<br />\r\n<br />\r\n&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;黑龙江省科学院人事处&nbsp;&nbsp;&nbsp;&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;黑龙江省能源环境研究院&nbsp;&nbsp;&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2016年4月27日 &nbsp; &nbsp; &nbsp;</span>', '', '', '113.4.72.111'),
(166, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 根据《中国共产党章程》和相关规定经省能源院党委研究报请省科学院机关党委批准中共黑龙江省能源环境研究院委员会于2016年5月19日召开全体党员大会省能源院党委书记、院长徐晓秋同志主持会议省科学院机关党委副书记刘颖同志参加会议并讲话。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/160520/1-1605200P531419.JPG\" style=\"width: 545px; height: 361px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 大会共有两项议程:一是听取和审议《中共黑龙江省能源环境研究院第一届委员会工作报告》,二是选举产生中共黑龙江省能源环境研究院第二届委员会。<br />\r\n徐晓秋同志作了题为《党建工作是第一要务》的工作报告总结回顾了第一届党委成立以来的主要工作情况并对下一步的党建工作提出了思路和建议。<br />\r\n大会通过了第一届党委工作报告、大会选举办法和监票人、计票人名单。本次大会选举产生了徐晓秋、关春玲、刘伟、王欣、李福裿五名同志为中共黑龙江省能源环境研究院第二届委员会委员徐晓秋同志为中共黑龙江省能源环境研究院第二届委员会书记。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img src=\"/uploads/allimg/160520/1-1605200P554L7.jpg\" style=\"width: 460px; height: 630px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 最后,刘颖同志对能源院党建工作给予了肯定,她指出,在省科学院党组的领导下,省能源院党委始终把抓党建作为工作中的重中之重,严格按照省科学党组的相关部署,持续推进学习型、服务型和创新型党组织建设,切实履行两个责任,在思想建设、班子建设、创先争优、特色活动、统战工作等多方面都取得了不错的成绩,希望省能源院党委再接再厉,持续发挥先锋模范带头作用和战斗堡垒作用,不断创新党建工作的思维方式,结合新形势、新任务开拓党建工作的新格局。</span>', '', '', '113.4.72.196'),
(167, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 6月8日上午黑龙江省能源环境研究院召开中心组学习扩大会议学习贯彻落实省科学院党组中心组扩大会议精神和省委十一届七次全体会议上王宪魁书记的讲话及陆昊省长的总结讲话精神。能源院领导班子及全体职工参加了此次会议会议由省能源院党委书记、院长徐晓秋同志主持。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/160608/1-16060Q421404Q.JPG\" style=\"width: 605px; height: 454px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 会上,徐晓秋书记传达了省科学院党组中心组扩大会议精神和省委十一届七次全体会议的主要内容,强调要深刻领会、准确把握全面振兴指导思想、&ldquo;三个方面&rdquo;解放思想、&ldquo;六个着力&rdquo;走出新路子、做好&ldquo;三篇大文章&rdquo;和强化五个&ldquo;进一步&rdquo;的指示精神;深入学习&ldquo;五头五尾&rdquo;、&ldquo;五个发展&rdquo;工作要求、把握&ldquo;四个四&rdquo;精神实质、要牢固树立&ldquo;四个意识&rdquo;、强化领导干部的&ldquo;四个过硬&rdquo;、要重点把握&ldquo;四个坚持&rdquo;重要要求指导工作实践、深刻领会&ldquo;九个三&rdquo;重要意义。要结合省能源院实际情况继续推动创新创业发展,激发内生动力,抓住机遇,真正做到&ldquo;走进去,走下去,走出去&rdquo;,不惧艰难,奋力走出能源院创新发展的新路子。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/160608/1-16060Q422095H.JPG\" style=\"width: 605px; height: 454px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 最后,徐晓秋书记指出,省能源院广大职工要将此次学习精神作为今后一段时期内首要学习内容,制定切实有效的工作计划,做到&ldquo;铺满盖严、不留死角&rdquo;,同时对青年科技工作者提出殷切希望,鼓励年轻人奋发图强、创新创业,敢于担当,为大科学院的创新发展贡献力量。</span><br />\r\n', '', '', '113.0.54.91'),
(168, 10, '&nbsp; &nbsp; &nbsp; &nbsp; 为纪念中国共产党建党九十五周年,省能源院全体职工及党建联系点院机关人事处党支部部分成员共同参观了爱国主义教育基地&mdash;&mdash;东北烈士纪念馆,一同缅怀先烈,深受教育,全体党员重温入党誓词。\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/160720/1-160H01002402E.JPG\" style=\"width: 640px; height: 480px;\" /><br />\r\n &nbsp;</div>\r\n&nbsp; &nbsp; &nbsp; &nbsp; 纪念馆分为《黑土英魂&mdash;&mdash;东北抗日战争时期烈士事迹》和《伪满哈尔滨警察厅遗址及罪恶展》两部分。直观的图片、雕塑、实物及影像资料真实地再现了自九一八事件以来一直到抗日战争胜利的十四年间,东北抗日烈士的英雄事迹。大家在参观过程中感触很深,表示要继承党的优良传统,坚定革命理想信念,弘扬先烈们面对流血牺牲不改气节的无私奉献精神,努力做弘扬正气的楷模。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 在重温入党誓词仪式中,全体党员们面对党旗庄严宣誓,立下对党忠诚的誓言,表达了为党的事业奋斗终身的决心。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 此次活动让广大职工受到了一次深刻的党性洗礼,使大家牢记职责使命,激发攻坚克难、乘势而进的动力,以求真务实的精神深入开展&ldquo;两学一做&rdquo;学习教育,同时立足本职岗位,推动能源院又好又快发展,不断开创各项工作的新局面。<br />\r\n', '', '', '1.58.162.54'),
(169, 10, '<span style=\"font-family:times new roman,times,serif;\"><span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年7月13日由黑龙江省科学院组织专家对省能源环境研究院承担的两项黑龙江省院所基本应用技术研究专项《车用甲醇汽油抗水复合添加剂技术研究》、《太阳能空气采暖智能控制装置的应用研究》进行了成果鉴定。鉴定委员会由哈尔滨工程大学、哈尔滨理工大学、哈尔滨703研究所、哈尔滨电站设备成套所、黑龙江省节能技术中心等单位的7位学科专家组成。省科学院科研处王阳处长主持了此次鉴定会。</span></span><br />\r\n<div style=\"text-align: center;\">\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-family:times new roman,times,serif;\"><span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/160720/1-160H0101Q4226.JPG\" style=\"width: 563px; height: 375px;\" /></span></span></div>\r\n<br />\r\n<span style=\"font-family:times new roman,times,serif;\"><span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会专家认真听取了各项目负责人的工作汇报,审议了项目组提供的全部鉴定材料。经充分质询、讨论,鉴定专家委员会认为项目组提供的鉴定材料齐全、研究路线合理,对项目的实用性给予了较高的评价:抗水复合添加剂解决了甲醇汽油在实际应用中出现的问题,提高了煤基甲醇的经济利用效益;太阳能空气采暖智能装置实现了系统运行的高效性、实用性和室内生活的舒适性,经审议一致同意两个项目的研究成果均达到了国内领先水平。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 这两个项目的顺利鉴定,将进一步促进我院在节能技术方向的深入研究,对学科团队的建设和发展起到了重要的支撑作用。</span></span>', '', '', '1.58.162.54'),
(170, 9, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 8月2日黑龙江省科学院与牡丹江市政府举行院市合作会议暨合作协议签约仪式省科学院党组书记赵梅、院长郭春景、牡丹江市市委书记<span style=\"color: rgb(51, 51, 51); font-family: arial; line-height: 16.016px;\">张雨浦、</span>市长刘忻、副市长王钢出席会议。签约仪式上,省能源环境研究院党委书记、院长徐晓秋代表省能源院与宁安市佳清化工有限公司、奥通汽车部件制造有限公司成功签订合作协议,未来省能源院将与上述企业在煤基燃料甲醇应用技术、生物质压缩燃料领域开展全面产学研合作。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:26px;\"><img alt=\"\" src=\"/uploads/allimg/160804/1-160P4112459117.jpg\" style=\"width: 432px; height: 362px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/160804/1-160P4112510637.jpg\" style=\"width: 432px; height: 365px;\" /></span></div>\r\n', '', '', '60.219.236.117'),
(171, 9, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年7月13日下午省科学院郭春景院长沙长青副院长科研处王阳处长隋月梅副处长赴能源院调研检查学科团队发展建设情况。在听取完两个团队的工作汇报后郭院长结合团队现状对团队学科方向、人才队伍构建、未来定位进行了细致点评沙长青副院长也对团队建设中的关键问题进行了点评。通过此次会议使能源院两个团队更明确了发展定位更明确了今后自主创新的发力点。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GH0102Q.jpg\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GH030524.jpg\" style=\"width: 540px; height: 405px;\" /></div>\r\n', '', '', '221.4.219.18'),
(172, 9, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8月17日穆棱市长、工信局局长和相关企业负责人一行到省能源院考察调研洽谈合作。 省能源院党委书记、院长徐晓秋同志、副院长关春玲同志对来访人员表示欢迎,相关研究室科研人员向来访人员介绍我院科研成果。</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GJT1227.JPG\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GJULP.JPG\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GK045224.JPG\" style=\"width: 540px; height: 405px;\" /></div>\r\n', '', '', '221.4.219.18'),
(173, 9, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8月18日省能源院党委召开中心组学习扩大会议深入学习贯彻落实全省&ldquo;两学一做&rdquo;学习教育工作座谈会上省委常委、组织部长杨汭同志讲话精神和院党组书记赵梅同志的重要讲话精神,会议由省能源院党委书记、院长徐晓秋同志主持,随后召开支部书记会议,部署下一步&ldquo;两学一做&rdquo;学习教育工作任务。&nbsp;</span><br />\r\n <br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GK510356.JPG\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GK53E42.JPG\" style=\"width: 540px; height: 405px;\" /></div>\r\n', '', '', '221.4.219.18'),
(174, 9, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 8月29日上午省能源院召开会议传达全省科技创新大会精神和王宪魁书记、陆昊省长及省科学院党组赵梅书记的讲话精神省能源院党委成员及中层干部参加了会议。按照赵梅书记的指示省能源院党委书记、院长徐晓秋同志部署了近期相关工作要求省能源院全体干部职工将各文件精神、相关政策学深、深透围绕国家、省委及省科学院改革总体要求结合省能源院工作实际经全体职工充分研究讨论形成《黑龙江省能源环境研究院科技改革实施方案》。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GQ01S34.JPG\" style=\"width: 540px; height: 405px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GQ033441.JPG\" style=\"width: 540px; height: 405px;\" /></div>\r\n', '', '', '221.4.219.18'),
(175, 9, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 9月22日 第十八届中国科协年会-暨全国科技工作者创新创业总决赛在西安举行省能源院关春玲副院长担任领队省能源院周闯和陆佳两位选手携《工业化封闭环式沼气发电系统1.0》参加此次总决赛。&nbsp;</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161007/1-16100GR35MG.JPG\" style=\"width: 800px; height: 600px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GR41TS.JPG\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GR44X09.JPG\" style=\"width: 576px; height: 324px;\" /></span></div>\r\n', '', '', '221.4.219.18'),
(176, 9, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年9月30日能源环境研究院与自动化研究所举行&ldquo;情系青山绿水&nbsp;共庆祖国华诞&rdquo;&nbsp;关爱环境社会实践活动。&mdash;&mdash;国庆前夕艳阳天,环保志愿松峰山,能源自动化齐携手,助建环保美家园。沿途尽览秋景色,车内尽情把言欢,兄弟院所增友谊,双创争优齐向前。&nbsp;</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161007/1-16100GS00a37.JPG\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161007/1-16100GS026409.JPG\" /></span></div>\r\n', '', '', '221.4.219.18'),
(177, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2016年10月12-14日黑龙江省能源环境研究院参加了由黑龙江省知识产权局举办的&ldquo;关于举办全省高校、科研院所知识产权管理工作经验交流会&rdquo;,为进一步提升我院所知识产权工作管理水平和能力奠定了基础。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161021/1-1610210Q2193D.jpg\" style=\"width: 784px; height: 441px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议在鸡西市委机关招待所举行,省知识产权局张毅副局长和中科院、哈工程专家教授就高校、科研院所知识产权战略实施,专利转化运用等内容进行发言。并选取部分典型单位在会上就本单位知识产权管理体制机制建设进行经验介绍。黑龙江省科学院科研处隋月梅副处长介绍了专利创造、运用、保护、管理等方面情况和知识产权文化建设情况。为我院知识产权及成果转化制定工作策略、启发创新思路提供了有益参考与帮助。</span><br />\r\n<br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161021/1-1610210Q244227.jpg\" /></span></div>\r\n', '', '', '112.102.104.182'),
(178, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; 2016年10月13日省能源院郭广亮、丁会敏、范超三人参加了黑龙江省科协双创活动周一线工程师创新方法培训班课程三人带着各自在工作中遇到的一些技术机械难题参加培训在6天的高强度紧张的培训学习中积极参与小组讨论、与老师沟通探讨经过培训不但解决了各自的技术机械问题且顺利通过答辩表现突出。其中我院丁会敏同志荣获优秀学员光荣称号。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161021/1-1610210R624I8.jpg\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161021/1-1610210R64G58.jpg\" /></span></div>\r\n', '', '', '112.102.104.182'),
(179, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 我院参加全国科学院联盟能源分会会议。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 我院作为全国科学院联盟能源分会的会员单位,与其他成员单位共同推动中科院、地方科学院和骨干院所企业在能源领域的战略合作和协同创新,提升能源领域技术创新和产业转型升级。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161021/1-1610210T230Y6.jpg\" style=\"width: 558px; height: 314px;\" /></span></div>\r\n', '', '', '112.102.104.182'),
(180, 10, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 10月13日省能源院参加全国科学院洁净能源知识产权联盟成立大会。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 会上,我院与联盟单位共商能源产业布局、低碳经济发展和知识产权运营事宜,提升产业创新能力,探索实践科技与经济相结合的体制机制。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161021/1-1610210TZ3J7.JPG\" style=\"width: 720px; height: 540px;\" /></span></div>\r\n', '', '', '112.102.104.182'),
(181, 16, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 10月19日我院召开&ldquo;两学一做&rdquo;&ldquo;双创争优&rdquo;延安学习培训汇报会,能源院领导班子和全体党员参加了本次汇报会。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161021/1-1610210ZK02R.JPG\" style=\"width: 640px; height: 480px;\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/161021/1-1610210ZPN08.JPG\" style=\"width: 640px; height: 480px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 参加省科学院延安培训班的两名党员代表李福裿和王欣,分别做了以&rdquo;学习光荣历史,汲取精神力量&rdquo;和&ldquo;胜利延安,红色之旅&rdquo;的学习汇报,与全体党员同志一同分享了延安之行的所见、所学、所悟,并表示将会把延安精神与自身工作结合好,更好的为省能源院的发展贡献力量。</span>', '', '', '112.102.104.182'),
(182, 9, '&nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:22px;\"> 根据省科学院关于学习贯彻落实《中国共产党问责条例》的相关部署,我院结合&ldquo;两学一做&rdquo;学习教育工作,利用午休时间,组织广大职工观看纪录《永远在路上》。</span><br />\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/161026/1-161026091U3336.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161026/1-161026091910512.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n', '', '', '125.211.31.152'),
(183, 9, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7月7日下午能源院召开了全体职工大会会议传达了中央办公厅关于学习贯彻习近平总书记在庆祝中国共产党成立95周年大会上的讲话学习贯彻王宪魁书记在中共黑龙江省委庆祝中国共产党成立95周年暨表彰大会上的讲话以及学习赵梅书记在省科学院纪念建党95周年&ldquo;两学一做、双创争优&rdquo;暨先优表彰大会上的讲话,并部署了下一步党建工作。&nbsp;</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161026/1-16102610150I35.JPG\" style=\"width: 600px; height: 338px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161026/1-161026101529145.JPG\" style=\"width: 600px; height: 338px;\" /></span></div>\r\n', '', '', '125.211.31.152'),
(184, 9, '&nbsp; &nbsp; &nbsp; &nbsp; 按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求10月28日省能源院召开全体职工会议会议围绕赵梅书记在省科学院《中国共产党问责条例》学习大会上的讲话及提出的要求认真学习习近平总书记在纪念红军长征80周年大会上的讲话全文宣读学习了十八届六中全会公报并进行了讨论。\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/161111/1-161111093936144.JPG\" style=\"height: 800px; width: 600px;\" /></div>\r\n&nbsp; &nbsp; &nbsp; &nbsp; 通过学习,大家一致认为,习近平总书记的重要讲话回顾了红军长征这一革命壮举、壮丽史诗和巍峨丰碑,总结了长征的伟大意义和深刻精神内涵,提出了弘扬伟大长征精神、走好今天的长征路的六方面要求,对于我们不忘初心、继续前进,全面做好各项工作,具有重要指导意义,会议要求各党支部要开展好长征精神的学习,并进行集中讨论,会议同时对我院近期科研和党建工作做了进一步部署。<br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161111/1-161111095315118.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/161111/1-16111109553Q60.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n &nbsp;</div>\r\n', '', '', '125.211.44.62'),
(185, 9, '<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求10月28日省能源院召开全体职工会议会议围绕赵梅书记在省科学院《中国共产党问责条例》学习大会上的讲话及提出的要求认真学习习近平总书记在纪念红军长征80周年大会上的讲话全文宣读学习了十八届六中全会公报并进行了讨论。</span><br />\r\n<div style=\"text-align: center;\">\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161111/1-16111109553Q60.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 通过学习,大家一致认为,习近平总书记的重要讲话回顾了红军长征这一革命壮举、壮丽史诗和巍峨丰碑,总结了长征的伟大意义和深刻精神内涵,提出了弘扬伟大长征精神、走好今天的长征路的六方面要求,对于我们不忘初心、继续前进,全面做好各项工作,具有重要指导意义,会议要求各党支部要开展好长征精神的学习,并进行集中讨论,会议同时对我院近期科研和党建工作做了进一步部署。</span><br />\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/161111/1-161111093936144.JPG\" style=\"height: 800px; width: 600px;\" /><img alt=\"\" src=\"/uploads/allimg/161111/1-161111095315118.JPG\" style=\"width: 600px; height: 450px;\" /></span><br />\r\n <br />\r\n <br />\r\n &nbsp;</div>\r\n', '', '', '125.211.44.62'),
(186, 10, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省能源环境研究院黑龙江省科学院科技孵化中心间接费用管理办法试行经2017年3月20日全体职工大会审议通过即日起进行公示公示期五个工作日。如有任何异议请与综合办联系。</span><br />\r\n <table width=\"450\">\r\n <tbody>\r\n <tr>\r\n <td height=\"30\" width=\"20\">\r\n <a href=\"/uploads/soft/170320/1-1F320110110.docx\" target=\"_blank\"><img align=\"middle\" alt=\"\" border=\"0\" src=\"/plus/img/addon.gif\" /></a></td>\r\n <td>\r\n <a href=\"/uploads/soft/170320/1-1F320110110.docx\" target=\"_blank\"><u>黑龙江省能源环境研究院(黑龙江省科学院科技孵化中心)间接费用管理办法(试行)</u></a></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n</div>\r\n<br />\r\n', '', '', '113.0.39.25'),
(187, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4月28日省能源院召开党风廉政建设扩大会议迅速传达省科学院月报会上关于党风廉政建设的相关要求并部署各项工作省能源院领导班子全体职工参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170502/1-1F5020QH6427.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170502/1-1F5020R423534.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;徐晓秋同志全文传达了省委纪委&ldquo;关于&lsquo;五一&rsquo;和&lsquo;端午节&rsquo;节日期间纪律要求的通知&rdquo;&ldquo;关于加强车辆管理严防节假日期间公车私用的通知&rdquo;同时要求省能源院全体干部职工要围绕省科学院2017年党风廉政工作会议上党组书记赵梅同志和纪检组长宫杰同志的讲话要求时刻严明政治纪律、严肃劳动纪律严格遵守各项法律及规章条例、严格执行各项制度用高标准规范自身行为各部门负责人要发挥&ldquo;一岗双责&rdquo;积极作用,坚决杜绝迟到早退、工作态度散漫、从事与无关的事宜,公车私用等现象,并再次强调要严格履行钉钉平台请假审批手续。最后,关春玲副院长指出各部门要做好节假日期间相关安全工作。</span><br />\r\n &nbsp;</div>\r\n', '', '', '125.211.31.4'),
(188, 10, '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2017年4月19日由黑龙江省科学院组织专家对省能源环境研究院承担的黑龙江省院所基本应用技术研究专项《基于&ldquo;一村一厂&rdquo;生物质加工和清洁利用的寒区&ldquo;无煤生态村&rdquo;应用技术研究》进行了成果鉴定。鉴定委员会由哈尔滨工程大学、哈尔滨理工大学、哈尔滨电站设备成套所等单位的7位专家组成。省科学院科研处王阳处长主持了此次鉴定会。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170502/1-1F502100322b4.JPG\" style=\"width: 450px; height: 600px;\" /><br />\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170502/1-1F502100352450.JPG\" style=\"width: 450px; height: 600px;\" /></span></div>\r\n<br />\r\n<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 鉴定委员会专家认真听取了项目组的工作汇报,审议了项目组提供的全部鉴定材料。经充分质询、讨论,鉴定专家委员会认为项目组提供的鉴定材料齐全、技术路线合理,对项目的实用性给予了较高的评价:采用&ldquo;一村一厂&rdquo;运营模式,大幅降低家户式炊事及采暖的煤炭和薪柴消耗,实现了秸秆生物质加工和清洁利用,减轻了环境污染,通过示范村应用,为农村住宅用能提供了节能环保手段,为我国北方&ldquo;无煤村&rdquo;建设推广提供了示范。经审议一致同意项目的研究成果达到了国内领先水平。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 该成果的鉴定和应用为我省秸秆综合利用提供新思路,可以有效处置秸秆,减少环境,节省煤炭资源,产业前景广阔。</span>', '', '', '125.211.31.4'),
(189, 10, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;为纪念并弘扬五四精神展现青春风采激发广大青年科技人员立足本职岗位、投身科研事业的热情5月5日上午省能源环境研究院开展了&ldquo;成长&nbsp;责任&nbsp;理想&rdquo;为主题的五四青年节座谈会,院班子成员和全院青年进行了交流座谈。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512152GCM.JPG\" style=\"width: 600px; height: 600px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:22px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会上,院领导与参会青年人一起围绕主题,结合个人经历,立足岗位,分享了成长中的感悟,青年人敞开心扉,畅谈了工作、学习、生活中的体会,展示了当代青年思想活跃,蓬勃朝气的精神风貌。徐晓秋院长在认真听取了青年员工的发言后,鼓励青年员工要敢于担当、勇于创新创造,善于运用科学的工作方法,加强交流沟通,充分利用我院为年轻人搭建的学习交流平台,借鉴先进经验,创造性地开展工作。&nbsp;<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; 最后,院所班子成员对全体青年人寄予厚望,希望青年人有理想有担当,不断加强业务学习锻炼,脚踏实地开展工作,全面提升自身素质修养,肩负起青年人建设能源院的责任,在激情奋斗中绽放青春光芒。&nbsp;</span></div>\r\n', '', '', '113.0.54.137'),
(190, 10, '<div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5日上午黑龙江省能源环境研究院组织召开全体职工大会院班子成员参加会议会议由党委书记兼院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:22px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512153040C1.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F51215311DT.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:22px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议传达了黑龙江省第十二次党代会精神、科学院党组扩大会议精神及赵梅书记讲话精神,同时对下阶段工作进行部署。会议指出,省第十二次党代会是凝心聚力、团结奋进、风清气正的会议,全体职工要把深入学习贯彻省第十二次党代会精神作为当前和今后一个时期的重要政治任务。要围绕中心工作谋实招,积极把各项工作融入到单位新一轮发展的总体布局之中加以谋划和部署。党员干部要起模范带头作用,以支部为单位开展学习活动,强化制度机制建设、作风效能建设,强化政治纪律,抓细抓小,进一步开拓工作的领域、创新工作的机制。会议还传达了科学院党组扩大会议精神及赵梅书记讲话精神,以新理念引领新路子,要求各支部将把此次学习活动与&ldquo;两学一做&rdquo;活动结合起来,坚持学以致用,知行合一,不断团结广大党员干部和群众,加大力气抓建设,以更加富有成效的工作推动党代会精神的全面落实,为决战决胜全面小康贡献力量。&nbsp;</span></div>\r\n', '', '', '113.0.54.137'),
(191, 10, '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 5日上午省能源院与其他3家院所一起参加省&nbsp;省直工委文明办文明单位创建工作验收会,并顺利通过验收。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512153K3D0.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '61.180.173.43'),
(192, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;4月28日省能源院召开党风廉政建设扩大会议迅速传达省科学院月报会上关于党风廉政建设的相关要求并部署各项工作省能源院领导班子全体职工参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512154321335.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F51215433C20.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;徐晓秋同志全文传达了省委纪委&ldquo;关于&lsquo;五一&rsquo;和&lsquo;端午节&rsquo;节日期间纪律要求的通知&rdquo;&ldquo;关于加强车辆管理严防节假日期间公车私用的通知&rdquo;同时要求省能源院全体干部职工要围绕省科学院2017年党风廉政工作会议上党组书记赵梅同志和纪检组长宫杰同志的讲话要求时刻严明政治纪律、严肃劳动纪律严格遵守各项法律及规章条例、严格执行各项制度用高标准规范自身行为各部门负责人要发挥&ldquo;一岗双责&rdquo;积极作用,坚决杜绝迟到早退、工作态度散漫、从事与无关的事宜,公车私用等现象,并再次强调要严格履行钉钉平台请假审批手续。最后,关春玲副院长指出各部门要做好节假日期间相关安全工作。</span><br />\r\n &nbsp;</div>\r\n', '', '', '113.0.54.137'),
(193, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 4月19日省能源院党委召开中心组学习扩大会议学习贯彻落实省科学院党风廉政会议精神省能源院领导班子、党委委员各党支部书记、部门负责人、职工代表参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F51215542O40.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 孵化中心主任姜宏宇同志全文传达了省科学院党组书记赵梅同志的讲话及派驻纪检组组长宫杰同志的讲话精神。随后,徐晓秋同志指出,各部门要持续加强党风廉政建设工作,按照中央、省委及省科学院的要求,牢固树立&ldquo;四个意识&rdquo;,严格遵守相关&ldquo;条例&rdquo;&ldquo;准则&rdquo;,认真落实&ldquo;一岗双责&rdquo;,有效执行好已签订的党风廉政建设责任书中的相关工作,全体党员干部要以身作则,做好表率,为省能源院的发展打牢思想基础。最后,徐晓秋同志对近期相关工作进行了部署,副院长关春玲同志对安全工作做出了相应安排。&nbsp;</span></div>\r\n', '', '', '61.180.173.43'),
(194, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 3月31日省能源院党委召开中心组学习会议院领导班子参加会议会议由徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121556302J.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 参会人员学习了省科学院第二期&ldquo;关键少数&rdquo;政治理论能力提升班相关学习内容及党组书记赵梅同志在学习贯彻党的十八届六中会精神中组心学习研讨班上的讲话,围绕讲政治、强意识、重行动,结合自身学习,相互交流学习心得,同时针对科技体制改革工作,聚集省能源院未来发展,就如何发挥好&ldquo;关键少数&rdquo;带头作用,将十八届六中全会精神及赵梅书记讲话精神落实到实处,开展讨论。与会人员一致认为,在今后的工作中,要带头增强&ldquo;四个意识&rdquo;,带头坚定理想信念,带头严守党规党纪,不断促进省能源院各项工作取得新成绩、新发展。&nbsp;</span></div>\r\n', '', '', '113.0.54.137'),
(195, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 值此&ldquo;三八&rdquo;妇女节来临之际,省能源院举行庆祝活动,组织全体女职工观看电影,这次活动营造出了浓郁的节日气氛,使广大女职工能在平日繁忙的工作中,放松身心,以更好的状态投入工作,创出新业绩。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512155PHC.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F512155R0M9.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '113.0.54.137'),
(196, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2月15日黑龙江省能源环境研究院党委召开&ldquo;两学一做&rdquo;专题民主生活会,省能源院党委书记、院长徐晓秋同志和省能源院党委委员、副院长关春玲同志参加会议,省科学院党组书记赵梅同志和院机关党委书记刘颖同志列席会议,会议由徐晓秋书记主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F51216023S96.JPG\" style=\"width: 578px; height: 800px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;民主生活会上,省能源院党委书记徐晓秋同志代表班子及个人紧扣&ldquo;两学一做&rdquo;学习教育主题,围绕全面学习党的十八届六中全会精神,重点对照《关于新形势下党内政治生活的若干准则》和《中国共产党党内监督条例》,针对省科学院党建联系点及&ldquo;三走&rdquo;战略要求,紧密联系班子和个人思想、工作实际,深入查找剖析了各方面存在的问题及原因,同时坚持问题导向、准确、中恳地对班子成员和个人开展了批评与自我批评,并提出了明确具体、切实可行的整改措施。关春玲同志随后进行了发言,进行了深刻的剖析和批评与自我批评。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会上,省科学院党组书记赵梅同志就如何深入落实好党的十八届六中全会的学习,如何高质量的开展、规范、执行好党内政治生活、提高政治生活严肃性,如何把党建工作抓实抓细,如何申报重大事项,如何提高领导班子示范性和如何落实责任等若干问题提出了要求,围绕党内政治生活&ldquo;怎么看、怎么做、怎么抓&rdquo;与省能源院领导班子进行了深入交流探讨,最后赵梅书记对省能源院专题民主生活会给予肯定,指出此次会议准备充分,态度端正,希望省能源院领导班子根据自身查找的问题,迅速积极制定出方向性措施,全面推进省能源院党建工作。&nbsp;</span></div>\r\n', '', '', '113.0.54.137'),
(197, 10, '<div>\r\n &nbsp; &nbsp; &nbsp;<span style=\"font-size:20px;\"> &nbsp; &nbsp;20日省能源院各党支部组织全体党员及广大干部职工集体观看省科学院党组赵梅书记受邀坐客人民网视频访谈。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121605241R.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F51216053U01.JPG\" style=\"width: 600px; height: 800px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F512160612226.JPG\" style=\"width: 600px; height: 338px;\" /></div>\r\n', '', '', '113.0.54.137'),
(198, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp;2月17日上午省能源院召开全体职工会议省科学院党组成员曾祥俊同志、人事处处长张兴同志参加了会议会议由省能源院院长徐晓秋同志主持。会上张兴处长宣读了关于任命姜宏宇同志为孵化中心主任参与省能源院班子分工的任职文件省能源院领导班子及全体职工对姜宏宇同志表示热烈的欢迎姜宏宇同志对日后的工作做出了表态最后曾祥俊同志对省能源院的工作给予肯定同时对姜宏宇同志今后的工作提出了五点要求祝愿省能源院在班子的带领下一定会有更加美好的未来。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512160QNN.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F512160S0Q8.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '113.0.54.137'),
(199, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2月16日省科学院郭春景院长、能源院徐晓秋院长和生物能团队带头人刘伟一同前往伊春格润生态养殖公司的大型沼气工程进行调研郭院长要求能源院要结合我省养殖业现状在废弃物处理与利用领域以&ldquo;坑口电站&rdquo;模式打造寒地沼气全产业链。&nbsp;</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512161255R0.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F512161309236.JPG\" style=\"width: 600px; height: 800px;\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121613233B.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '113.0.54.137'),
(200, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2017年1月24日上午省能源环境研究院召开职工大会传达省科学院2017年工作会议精神会上徐晓秋院长传达了省科学院2017年工作报告及院党组书记赵梅同志的讲话精神要求各部门会后系统学习领会会议精神并按照省科学院工作的总体思路和工作目标明确工作重点开展好2017年度相关工作最后对春节期间安全工作进行了部署。&nbsp;</span><br />\r\n &nbsp;</div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512161H3134.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F512161I3I3.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '113.0.54.137'),
(201, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 2017年1月10日由黑龙江省科学院组织专家对省能源环境研究院和科技孵化中心承担的三项课题省科学院预研项目《寒区农业固体废弃物循环厌氧发酵关键技术研究》、学部委员指导专项《抗生素对鸡粪厌氧消化过程影响的研究》和院所基本应用技术研究专项《污泥超声预处理对厌氧消化工艺性能的影响研究》进行了成果鉴定。鉴定委员会由来自东北农业大学等多家单位的专家组成。省科学院科研处王阳处长主持了此次鉴定会。</span></div>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121619492K.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F512162003622.JPG\" style=\"width: 600px; height: 450px;\" /></span><br />\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;鉴定委员会专家认真听取了各课题组的工作汇报,审议了课题组提供的全部鉴定材料。经充分质询、讨论,鉴定专家委员会认为课题组提供的鉴定材料齐全、研究路线合理,并对项目的现实指导意义和取得的成果给予了较高的评价,经审议一致同意三个课题的研究成果达到了国内领先水平。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; 这三个课题顺利通过鉴定,将进一步促进我院在废弃物处理技术方向的深入研究,对生物能学科团队的建设和发展起到了重要的支撑作用。&nbsp;</span></div>\r\n', '', '', '113.0.54.137'),
(202, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 12月21日省能源院召开全体党员大会省能源院党建联系点、党组成员曾祥俊同志院人事处副处长王向伟同志参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512162430E7.JPG\" style=\"width: 600px; height: 831px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;首先,徐晓秋书记就一年的党委书记工作情况进行了述职,述职报告经全体党员表决,全票通过。曾祥俊同志对省能源院党委一年的工作情况给予充分肯定,指出省能源院在班子带领下,无论是在硬实力还是软实力方面都取得了长足突破式的进步,希望省能源院坚定走改革发展探索之路,要重点突破,做到有所为有所不为;内引外联,实现协同创新;注重人才培养,充分发挥青年生力军的优势。王向伟副处长对省能源院与院人事处党建联系点一年来的工作给予了肯定,并希望有更多的机会与省能源院相互学习,共同进步。<br />\r\n <br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;随后省能源院召开全体职工大会会议由徐晓秋院长主持首先中层干部进行了述职并选举出2016年先进个人和先进集体最后徐晓秋院长就全年工作情况及2017年工作要点做了题为《深化改革凝聚力量创新发展提质增效》的工作报告报告经全体职工表决全票通过。&nbsp;</span></div>\r\n', '', '', '113.0.54.137'),
(203, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 11月28日省能源院召开会议学习贯彻落实省委十一届八次全会精神、省委书记王宪魁同志讲话精神及省科学院党组书记赵梅同志在省科学院学习全会精神会议上的讲话会议由省能源院党委书记、院长徐晓秋同志主持省能源院全体班子成员、中层干部、党支部书记、党员和民主人士参加了会议。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512163002V9.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F512163013144.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议学习了省委十一届八次全会精神、省委书记王宪魁同志讲话精神及省科学院党组书记赵梅同志在省科学院学习全会精神会议上的讲话。徐晓秋书记强调,各党支部要组织好党员群众,深入认真学习相关会议精神,准确把握&ldquo;五位一体&rdquo;总体布局和&ldquo;四个全面&rdquo;战略布局,不断提高&ldquo;四个意识&rdquo;,坚持开展好周三学习工作,按照省科学院党组的要求,制定好党的十八届六中全会学习方案,把理论学习与科研工作有机结合,抓住深入开展科技体制改革的有利时机,全面推进省能源院长足发展。&nbsp;</span></div>\r\n', '', '', '113.0.54.137'),
(204, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;11月26日作为黑龙江省科学技术协会学术年会的重要组成部分也是第八届黑龙江省科学技术协会学术年会暨太阳岛科技论坛分会场由黑龙江省能源环境学会,黑龙江省自然辩证法研究会,城市水资源水环境国家重点实验室共同组织的&ldquo;环境伦理与废弃物循环再利用技术学术研讨会&rdquo;在哈尔滨工业大学城市水资源与水环境国家重点实验室召开。本次研讨会的主题是废弃物的循环利用与环境伦理思想透析,会议由省能源环境研究院徐晓秋院长主持,省科学院副院长沙长青做重要讲话,多名知名专家学者作精彩学术报告,本次会议对促进我省废弃物循环利用起到积极的推动作用。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512163406459.JPG\" style=\"width: 600px; height: 831px;\" /></span></div>\r\n', '', '', '113.0.54.137'),
(205, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp;11月4日省能源院召开党委中心组学习扩大会议省能源院领导班子、党委委员、党支部书记、各部门负责人和党外人士出席了会议会议由党委书记、院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512164025935.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F51216403X10.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n <br />\r\n <span style=\"font-size:20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议第一项,全文学习十八届六中全会公报,徐晓秋书记从政治立场、思想意识、行为要求、党内民主、群众监督等方面对公报进行了详细解读,参会人员就学习内容进行了认真的讨论。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议第二项,认真学习《关于新形势下党内政治生活的若干准则》和《中国共产党党内监督条例》,并将上述文件共享到工作群,方便广大党员干部及职工学习。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;徐晓秋书记强调,政治学习不能只局限于党内学习,各党支部会后要组织全体党员干部、党外人士、群众,认真学习十八届六中全会公报内容、政策及要求,并严格执行《关于新形势下党内政治生活的若干准则》和《中国共产党党内监督条例》。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;最后,徐晓秋书记对近期相关工作作了具体安排及部署。&nbsp;</span></div>\r\n', '', '', '113.0.54.137'),
(206, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求28日省能源院召开全体职工会议会议围绕赵梅书记在省科学院《中国共产党问责条例》学习大会上的讲话及提出的要求认真学习习近平总书记在纪念红军长征80周年大会上的讲话全文宣读学习了十八届六中全会公报并继续观看纪录片《永远在路上》会议同时对我院近期科研和党建工作做了进一步部署。&nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170512/1-1F512164420353.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F51216443AS.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F512164451M8.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '113.0.54.137'),
(207, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121AJEc.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n<div style=\"text-align: center;\">\r\n &nbsp;</div>\r\n', '', '', '113.0.54.137'),
(208, 28, '<img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121A922X3.JPG\" style=\"width: 800px; height: 600px;\" />', '', '', '113.0.54.137'),
(209, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121F0261R.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', '', '', '113.0.54.137'),
(210, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121F133421.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', '', '', '113.0.54.137'),
(211, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121F353P8.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', '', '', '113.0.54.137'),
(212, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121F522936.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n', '', '', '113.0.54.137'),
(213, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121F614C7.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n', '', '', '113.0.54.137'),
(214, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121FH4S2.JPG\" style=\"width: 800px; height: 1067px;\" /></div>\r\n', '', '', '113.0.54.137'),
(215, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121FT2441.JPG\" style=\"width: 800px; height: 1067px;\" /></div>\r\n', '', '', '113.0.54.137'),
(216, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121F930448.JPG\" style=\"width: 800px; height: 1067px;\" /></div>\r\n', '', '', '113.0.54.137'),
(217, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121G015V4.JPG\" style=\"width: 800px; height: 1067px;\" /></div>\r\n', '', '', '113.0.54.137'),
(218, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121G10KQ.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', '', '', '113.0.54.137'),
(219, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121G212551.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', '', '', '113.0.54.137'),
(220, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121G405D6.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', '', '', '113.0.54.137'),
(221, 28, '<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170512/1-1F5121G44a92.JPG\" style=\"width: 800px; height: 600px;\" /></div>\r\n', '', '', '113.0.54.137'),
(222, 10, '&nbsp; &nbsp; &nbsp;<span style=\"font-size:20px;\"> &nbsp; 6月5日上午根据院党组关于开展全院2016年度财务收支审计工作的部署院党组成员副院长沙长青同志审计部副处长曹海虹同志率院审计部协同审计师事务所进驻省能源院开展2016年度财务收支情况审计工作省能源院党委书记院长徐晓秋同志孵化中心主任姜宏宇同志及省能源院财务人员参加了会议。</span><br />\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170616/1-1F616091925Y9.jpg\" style=\"width: 800px; height: 600px;\" /></span></div>\r\n', '', '', '113.4.102.164'),
(223, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8月1日上午10:00庆祝中国人民解放军建军90周年大会在人民大会堂举行中共中央总书记、国家主席、中央军委主席习近平出席大会并发表重要讲话。按照省委办公厅及省科学院机关党委通知要求省能源院党委组织能源院全体职工集体观看大会直播。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/170809/1-1FPZ939495X.jpg\" style=\"width: 600px; height: 450px;\" /></div>\r\n', '', '', '221.207.159.140'),
(224, 10, '<div style=\"text-align: center;\">\r\n <div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7月27日上午作为龙广结合首批抵哈的科研单位中国科学院广州能源院所庄新姝研究员、孔晓英博士一行到省能源环境研究院调研就涉及的研究领域进行洽谈交流同时与生物能创新团队开展科研对接省科学院产业化处、省科技厅成果转化中心及省能源院的领导和部</span></div>\r\n <div style=\"text-align: left;\">\r\n <span style=\"font-size:20px;\">分科研人员参加了会议。</span></div>\r\n <img alt=\"\" src=\"/uploads/allimg/170809/1-1FP9151G6105.jpg\" style=\"width: 600px; height: 450px;\" /><br />\r\n &nbsp;</div>\r\n<br />\r\n', '', '', '113.4.144.245'),
(225, 10, '<div>\r\n <div>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2017年8月22日山东大学鲍晓明教授黑龙江中丹建业生物能源公司总经理王建业一行两人来到省能源环境研究院就纤维素秸秆乙醇工业所涉及的纤维素降解菌及酵母菌的研发与应用进行洽谈交流并就今后的合作方向、优势互补和合作模式等方面进行了深入探讨能源院院长徐晓秋和相关科研人员参加了此次会议。</span></div>\r\n <span style=\"font-size:24px;\"><img alt=\"\" src=\"/uploads/allimg/170823/1-1FR30T21M20.jpg\" style=\"width: 600px; height: 450px;\" /><br />\r\n <br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></div>\r\n<br />\r\n', '', '', '113.0.131.101'),
(226, 10, '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;9月20日省能源环境学会到漠河县宏林菌业种植有限公司进行林下产业废弃物再利用技术及室内空气污染控制技术科普活动并与石忠斌董事长探讨了菌业废弃物综合利用方案等问题。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/170925/1-1F925143Q0603.jpg\" style=\"width: 400px; height: 300px;\" /></span></div>\r\n', '', '', '1.58.6.164'),
(227, 10, '<span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;18日9:00按照省科学院相关部署省能源环境研究院党委组织全体干部职工共同观看十九大召开盛况直播共唱国歌以饱满的精神工作状态庆祝十九大胜利召开</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/171020/1-1G020095H4433.jpg\" style=\"height: 600px; width: 600px;\" /></span></div>\r\n', '', '', '221.207.158.79'),
(228, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;10月19日上午省能源院召开全体职工大会全面部署学习贯彻落实十九大会议精神省能源院党委书记、院长徐晓秋同志主持会议省能源院领导班子、全体党员干部及民主人士参加会议会议对报告全文进行了学习参会人员围绕省能源院发展实际进行了解读学习和讨论徐晓秋书记指出各党支部要按照十九大报告中对科研工作提出的新任务、新要求开展形式多样的学习活动全体党员干部要不忘初心牢记使命强化党建引领推动创新发展要通过系统学习广泛讨论加强宣传以十九大会议精神武装头脑指导实践推进省能源院各项工作再上新台阶满怀信心迈向新征程。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/171020/1-1G020100J41X.jpg\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '221.207.158.79'),
(229, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; 为深入贯彻落实党的十九大精神,落实院党组提出关于&ldquo;新思想引领改革发展思路,新征程凝聚创新创业力量&rdquo;工作的相关部署11月15日上午省能源环境研究院生物能创新团队党支部支部开展了&ldquo;以向善、向上、向阳、向党精气神 打造一流科研创新团队&rdquo;为主题的&ldquo;说讲谈&rdquo;活动,院党组书记赵梅同志,院直属机关党委、人事处领导,省能源院领导班子、党员代表及石化院、塑料所代表参加了此次活动。会议由生物能创新团队党支部书记王欣同志主持。</span>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 活动开始,王欣同志首先介绍了生物能创新团队党支部概况,展示了支部建在团队上的发展理念及支部&ldquo;三创&rdquo;(创新学、创新做、创新用)工作成果,并围绕&ldquo;向善、向上、向阳、向党&rdquo;,从党务工作者的角度解读了要以积极向上,风雨兼程的精气神的开展各项工作;党支部其他成员和生物能创新团队民主人士代表,围绕十九大报告中与自身研究领域和工作实际联系最紧密的内容,与参会同事一同分享了学习工作心得,并结合对&ldquo;向善、向上、向阳、向党&rdquo;深刻理解,分别从科研建设、创新工作、科研新思路、学习感想、人文关怀和团队合作等多角度多视角,深入谈及党对自身工作的引领和对学习生活的积极影响;期间,在北京出差的支部成员也通过语音连线的方式参加了活动。与会同志一致表示,作为一名科技工作者,在党的十九大精神指引下,要不忘初心,牢记使命,以&ldquo;加快生态文明体制改革 建设美丽中国&rdquo;为目标,扎实做好本职工作,不负重托,做科技创新的引领者、成果转化的实践者、科学知识的传播者,在科研领域干事创业,共建大科学院。随后,省能源院党建联系点院人事处张兴处长与大家交流了学习党的十九大报告的方法和对本次活动的观摩体会,石化院、塑料所代表也分别谈了观摩体会。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 院党组书记赵梅同志对省能源院生物能创新团队党支部&ldquo;说讲谈&rdquo;活动给予了充分肯定,并对此次活动作出点评,赵书记指出,此次活动一是从不同角度展示了活动主题,丰富了党建文化;二是活动方向明确,主题紧密联系科研工作实际;三是党建文化开展的好,体现出对十九大报告的突出学习能力,同时赵书记对下一阶段学习重点进行了部署,指出要进一步深入学习贯彻落实党的十九大精神和加强基层党支部建设,一是要进一步深入学习领会理解党的十九大精神,这是一项长期的政治任务,将这&ldquo;说讲谈&rdquo;活动持续开展下去,将十九大的学习常态化;二是要强化基层党支部的政治功能建设,以政治建设作为统领,促进科研工作与政治功能互相融合推进,构建政治生态良好的党建文化;三是,通过对十九大会议精神的学习带动科研创新,立足岗位,发挥作用,为国家和社会做出贡献。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 活动最后,与会全体人员全体起立,与习总书记一起重温入党誓词,不忘初心,牢记使命,不断激发前进动力。<br />\r\n <img alt=\"\" src=\"/uploads/allimg/171116/1-1G11616001V39.JPG\" style=\"width: 450px; height: 600px;\" /><img alt=\"\" src=\"/uploads/allimg/171116/1-1G116160146348.JPG\" style=\"height: 600px; width: 450px;\" /></span></div>\r\n', '', '', '221.207.158.226'),
(230, 10, '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;为进一步巩固并发挥省能源院生物能创新团队在寒区固体废弃物处理处置、清洁能源领域的科研技术优势经过省能源院与农业部沼气科学研究所的前期准备11月13日上午省科学院郭春景院长与来访的农业部沼气科学研究所邓宇副所长一行在省科学院会议室进行了座谈省科学院产业化处李骏处长省能源院徐晓秋院长省能源院相关科研人员参加了会议。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 双方就在省能源院建立&ldquo;寒区生物能源利用联合实验室&rdquo;相关工作进行了深入交流。郭院长首先对邓副所长一行的到来表示欢迎,郭院长指出,要充分发挥好沼气所和能源院各自在生物质能源上的技术优势,拿出更好的技术和成果,解决好养殖业末端处理能力不强的问题,更好的为省域经济服务,要用&ldquo;场口气站&rdquo;模式,建设寒区沼气示范工程,实现寒区养殖业、种植业废弃物的高效循环利用,打造以沼气为纽带的循环经济产业。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 随后邓副所长介绍了农业部沼气科学研究所的相关情况,包括历史沿革、科学设置、平台条件、团队配置,邓副所长表示,此次合作即是机遇也是挑战,第一要通过建立联合实验室,针对黑龙江省农村生态环境、产业转型进行准确的战略布局;第二要建立更加完善的合作运行机制;第三要真正把合作落实落靠,让寒区生物质成果成规模成体系,实现预期目标。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 最后,郭院长与邓副所长共同签署了《农业部沼气科学研究所与黑龙江省科学院共建&ldquo;寒区生物能源利用联合实验室&rdquo;》协议。<br />\r\n <img alt=\"\" src=\"/uploads/allimg/171116/1-1G116161130414.JPG\" style=\"width: 800px; height: 600px;\" /><img alt=\"\" src=\"/uploads/allimg/171116/1-1G116161154463.JPG\" style=\"width: 800px; height: 600px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '221.207.158.226'),
(231, 10, '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;11月27日下午省能源院召开全体党员会议传达贯彻落实省委第十二届二次全会精神省能源院领导班子全体党员干部民主人士代表参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议首先学习传达了省委第十二届二次全会精神和全文学习了陆昊省长到自动化所调研时的讲话。会议要求,省能源院全体党员干部要认真学习、深入领会省委第十二届二次全会精神和陆昊省长讲话精神,切实提高认识,深刻理解全会鲜明主题;深刻理解建设现代化新龙江时代特征;深刻理解建设现代化新龙江战略安排;深刻理解建设现代化新龙江政治保证。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;最后,徐晓秋同志强调,学习贯彻党的十九大和省委第十二届二次全会精神,是当前和今后一个时期的重要政治任务。各党支部要以多种形式,组织、指导、推动全体党员干部开展学习,班子成员要以身作则、率先垂范、先学深学,作出表率,要把学习宣传贯彻党的十九大精神和省委第十二届二次全会精神紧密结合,围绕陆昊省长讲话精神,学深悟透、知行合一,迅速掀起学习宣传贯彻热潮,确保学习贯彻落实取得实效。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<img alt=\"\" src=\"/uploads/allimg/171204/1-1G2040S9332A.jpg\" style=\"height: 450px; width: 600px;\" /></span></div>\r\n', '', '', '113.4.149.77'),
(232, 10, '<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1月2日上午省能源院在会议室隆重召开2017年度总结表彰大会,省科学院郭春景院长,省能源院领导班子及全体职工参加了大会,会议由院长徐晓秋同志主持。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/180108/1-1P10PZ0464B.JPG\" style=\"width: 600px; height: 571px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋院长首先代表省能源院全体干部职工对郭春景院长一年来对省能源院的关心、支持表示衷心感谢。随后孵化中心主任姜宏宇同志、省能源院副院长关春玲同志分别做了2107年度省能源院工作总结报告及2018年度工作要点报告徐晓秋院长宣读了2017年省能源院表彰决定并由郭春景院长为获得表彰的集体和个人颁奖。郭院长对省能源院过去一年的工作情况给予肯定指出未来一年省能源院要持续围绕科研创新、学科团队建设、创新工程、人才培养、对外交流等方面重点开展工作。会上郭院长还与职工亲切座谈鼓舞广大青年科技工作者要立足岗位不驰于空想不骛于虚声脚踏实地努力工作。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\"><img alt=\"\" src=\"/uploads/allimg/180108/1-1P10PZ15SV.JPG\" style=\"width: 430px; height: 490px;\" /><img alt=\"\" src=\"/uploads/allimg/180108/1-1P10PZ21T03.JPG\" style=\"width: 430px; height: 490px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n<div>\r\n <span style=\"font-size:20px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 会后,全体职工纷纷表示此次大会深受鼓舞,在新的一年中将牢记使命,实干担当,走好能源院创新发展之路。</span></div>\r\n', '', '', '1.62.164.53');
INSERT INTO `dede_addonarticles` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`) VALUES
(233, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:18px;\"> &nbsp; &nbsp; 3月5日上午900时按照省科学院部署省能源院组织全体党员干部集中收看全国人大一次会议开幕盛况</span>\r\n<div>\r\n <span style=\"font-size:18px;\"><img alt=\"\" src=\"/uploads/allimg/180305/1-1P305114129A6.JPG\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/uploads/allimg/180305/1-1P305120550360.JPG\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/uploads/allimg/180305/1-1P3051210555B.JPG\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/uploads/allimg/180305/1-1P305121624X7.JPG\" style=\"width: 681px; height: 450px;\" /></span></div>\r\n', '', '', '113.4.236.5'),
(234, 10, '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;为庆祝全国人大召开喜迎三八国际妇女节的到来省能院开展系列活动3月7日召开&ldquo;聪慧时尚,自信坚韧,创新进取&rdquo;主题女职工座谈会能源院领导班子与全体女职工一同畅谈工作心得共叙新时代女性风貌3月8日组织全体职工观看爱国题材影片《厉害了我的国》共同领略祖国桑田碧海须臾改的巨大变化以及取得的卓著成就共同感受中国共产党直挂云帆济沧海的伟大信念。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180309/1-1P309105GR46.jpg\" style=\"width: 600px; height: 800px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '113.4.236.5'),
(235, 10, '<div>\r\n <span style=\"font-size:18px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; 3月26日上午9:00省能源院召开全中心组学习扩大会议学习传达3月23日省科学院党组扩大会议精神。会议由党委书记、院长徐晓秋同志主持能源院全体职工参加了会议。</span></div>\r\n<div>\r\n <span style=\"font-size:18px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会上,徐晓秋同志、姜宏宇同志、关春玲同志分别传达了&ldquo;第十三届全国人民代表大会第一次会议&rdquo;、&ldquo;十三届全国人大一次会议期间习总书记重要讲话&rdquo;、&ldquo;栗战书同志在十三届全国人大一次会议闭幕会上的讲话&rdquo;、&ldquo;中国人民政治协商会议第十三届全国委员会第一次会议&rdquo;的主要内容和&ldquo;张庆伟同志在全省领导干部大会上的讲话&rdquo;。</span></div>\r\n<div>\r\n <span style=\"font-size:18px;\">&nbsp; &nbsp; &nbsp; &nbsp; 徐晓秋书记要求能源院全体职工要把学习贯彻两会精神作为当前重要的政治任务及工作目标,持续加强基层支部建设及作风整顿工作,要把学习重要讲话与贯彻习近平新时代中国特色社会主义思想结合起来,与贯彻党的十九大精神部署结合起来,切实将两会精神学在深处落在实处。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:18px;\"><img alt=\"\" src=\"/uploads/allimg/180328/1-1P32Q513193L.jpg\" style=\"width: 600px; height: 600px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '122.159.32.134'),
(236, 10, '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp;按照省科学院团委的安排部署,省能源院组织全体干部职工开展&ldquo;汇聚阅读力量 托起明日希望&rdquo;文化扶贫慰问活动。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp;省能源院全院上下对此次文化扶贫工作高度重视2018年5月14日全体职工在江北会议室举办捐书仪式班子成员带头为贫困村的孩子们捐献了儿童文学、儿童教育、青少年成长等方面的书籍共计170余本。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp;2018年5月15日省能源院副院长关春玲同志等一行4人到我院精准扶贫对接点七台河市勃利县吉兴乡合庆村进行帮扶活动。 活动中首先对扶贫点进行文化帮扶将职工捐赠的170余本爱心书籍送到合庆村委会主任手中。然后关春玲同志详细询问了合庆村新建住房的室内环境情况我院专业人员为其进行了室内甲醛等有害气体的检测及室内环境的评估并为改善其室内环境提出了合理化建议。扶贫工作从&ldquo;扶志&rdquo;与&ldquo;扶智&rdquo;做起,生物质领域的专家还对帮扶点进行了秸秆综合利用的科普宣传,此次帮扶工作圆满完成。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 吉兴乡合庆村委会主任对省科学院给予的支持和对帮扶工作的高度重视表示感谢,同时对我院此次的文化扶贫慰问活动表示感谢。&nbsp; &nbsp;</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180517/1-1P51G61053292.jpg\" style=\"height: 600px; width: 431px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '221.212.38.234'),
(237, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\"> &nbsp;5月24日上午在院科研处倪宏伟处长带领下院科研处一行三人到省能源院开展科研情况调研工作省能源院领导班子及科研办相关人员参加了调研省能源院分别从科研总体情况、项目情况、研究领域、研究方向、创新团队等方面进行了汇报。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180709/1-1PF9153620917.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180709/1-1PF9153I2218.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '45.115.217.214'),
(238, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\"> &nbsp; 6月28日下午能源院徐晓秋院长带队一行4人赴理工大学化学与环境工程学院洽谈合作事宜双方围绕废弃物厌氧处理、木质纤维素降解转化等方面展开深入交流并对学生培养、互聘导师、建立联合实验室等方面进行商讨。双方最终商定将建立联合科研教学基地、学生实践实习基地及互聘导师机制。会后双方座谈人员建立了微信群便于后续工作开展。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180709/1-1PF91546132Y.jpg\" style=\"width: 600px; height: 338px;\" /></span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180709/1-1PF9154643Q9.jpg\" style=\"width: 600px; height: 338px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '45.115.217.214'),
(239, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp;2018年7月4-6日2018年斯里兰卡城市固体废弃物处理研修班在哈尔滨举办。本次研修班由商务部主办农业农村部沼气科学研究所承办共有20名来自斯里兰卡不同地区的市政官员参加了此次培训黑龙江省能源环境研究院作为协办单位组织了本次研修班。7月4日上午培训专题讲座在省科学院会议中心举行能源院徐晓秋院长首先对来自斯里兰卡的20名学员表示热烈欢迎随后王欣副研究员做了&ldquo;城市固废处理的方法和技术&rdquo;的专题培训报告普及了中国先进的城市固废处理技术对斯里兰卡学员的提问做了专业解答。7月5日研修班在徐晓秋院长的陪同下来到了方正县方正县县委书记董文琴代表县委县政府对斯里兰卡友人的到来表示了热烈的欢迎并且在董文琴书记的陪同下研修班来到天门乡垃圾处理中心参观了ERCM垃圾处理示范项目董文琴书记、徐晓秋院长及企业技术人员在现场给研修班学员进行了项目讲解。7月6日能源院刘伟副研究员与斯里兰卡学员进行了深入交流学员们对能源院的协办工作给予肯定和感谢希望将中国先进的有机固废处理技术引进到斯里兰卡提高斯里兰卡的有机固废处理水平。通过此次培训加强了能源院在有机固废处理领域的宣传力度为一带一路发展中国家的发展提供了帮助。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180709/1-1PF9155404438.jpg\" style=\"width: 600px; height: 817px;\" /></span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180709/1-1PF9155431957.jpg\" style=\"width: 600px; height: 817px;\" /></span></div>\r\n', '', '', '45.115.217.214'),
(240, 10, '<div style=\"text-align: center;\">\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:18px;\"> &nbsp;省能源环境研究院党委开展庆&ldquo;七一&rdquo;不忘初心跟党走、牢记使命有作为系列主题活动</span></div>\r\n&nbsp;<br />\r\n&nbsp; &nbsp;<span style=\"font-size:14px;\"> &nbsp; &nbsp; 为热烈庆祝中国共产党成立97周年进一步增强党组织的凝聚力和战斗力不断深入学习贯彻党的十九大精神不断强化党员&quot;四个意识&quot;,不断深化&ldquo;两学一做&rdquo;学习教育,不断夯实基层党建全面提升工程基础,不断提升基层党组织的引导力、号召力和凝聚力,&ldquo;七一&rdquo;期间,省能源院党委开展了以&ldquo;不忘初心跟党走、牢记使命有作为&rdquo;为主题的系列纪念活动,持续展现省能源院党员干部的精神风貌。<br />\r\n一、重温入党誓词<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;省能源院党委与党建联系点院人事处党支部全体同志共同重温入党誓词,不忘初心牢记使命,坚定入党信念和为共产主义奋斗终生的决心,激励党员以自身的实际行动积极实践誓词,以更加饱满的热情发挥共产党员的先锋模范作用,永葆共产党员的政治本色。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:12px;\"><img alt=\"\" src=\"/uploads/allimg/180710/1-1PG0113625596.jpg\" style=\"width: 600px; height: 799px;\" /></span><br />\r\n &nbsp;</div>\r\n<span style=\"font-size:14px;\">二、参观爱国主义教育基地<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;省能源院与党建联系点院人事处党支部全体党员沿着习近平总书记考察调研的足迹,重温总书记的殷切嘱托及东北抗日联军的英雄事迹,牢记历史、不忘过去,从思想和心灵深处接受了一次深刻的党性教育,使大家倍加珍惜无数先烈用生命给我们换来的幸福生活,激励大家克服一切艰难险阻,勤勉务学,努力工作,珍爱和平、开创未来!<br />\r\n&nbsp; &nbsp; &nbsp; 1.&ldquo;东北抗日联军政治军事干部学校遗址纪念碑&rdquo;</span>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/180710/1-1PG0113I1963.JPG\" style=\"width: 600px; height: 334px;\" /></div>\r\n<br />\r\n<span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp;2.&ldquo;抗联遗址老钱柜纪念碑&rdquo;</span>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/180710/1-1PG0113S1U0.JPG\" style=\"width: 600px; height: 461px;\" /></div>\r\n<div>\r\n <span style=\"font-size:14px;\">三、钉钉&ldquo;两学一做&ldquo;答题活动<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;围绕今年中央和省委重要会议精神、领导重要讲话精神和习近平谈治国理政内容,能源院全体党员干部每日登陆钉钉&ldquo;&nbsp;两学一做&rdquo;进行学习和答题,既检验了党员&ldquo;两学一做&rdquo;学习教育的成果,以及掌握党章党规知识水平,又激发了广大党员的学习热情,在今后的工作和生活中积极发挥党员的先锋模范带头作用。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/180710/1-1PG011404X04.PNG\" style=\"width: 600px; height: 1067px;\" /></div>\r\n<div>\r\n <span style=\"font-size:14px;\">四、井冈山红色教育学习心得报告会<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;为纪念建党97周年我院陈松同志以&ldquo;不忘初心牢记使命,坚定理想信念跟党走&rdquo;为题,分享培训心得。会上反响热烈,与会人员深受鼓舞,表示在今后潜心专研本职工作,增强党性修养,在科研战线上为党和国家做出贡献。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/180710/1-1PG011413I48.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n<div>\r\n <span style=\"font-size:14px;\">五、基层支部&ldquo;说讲谈&rdquo;<br />\r\n &nbsp; &nbsp; &nbsp; 为纪念建党97周年和改革开放40周年三个党支部组织党员重温入党志愿书并结合个人成长历程和组织发展历程围绕&ldquo;习近平看重的&#39;三个担当&#39;&rdquo;内容,分别开展一了次支部&ldquo;说讲谈&rdquo;活动,每名支部党员充分结合实际阐述观点、讲述感悟。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/180710/1-1PG011421V18.JPG\" style=\"width: 600px; height: 599px;\" /></div>\r\n<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp;1. 省能源院行政管理党支部召开了&ldquo;坚定理想信念,敢于担当尽职,牢记初心使命,助力科研一线&rdquo;说讲谈活动,整场座谈会气氛热烈。&nbsp;王书可同志表示 ,发展没有终点,改革没有停顿,未来还有更多的四十年需要我们去拼搏奋斗。姜宏宇同志表示人民美好的生活离不开党的领导,我们由原来的贫穷落后发展到现在的小康社会,人民的幸福感和满意度极大的增强。大家表示,坚决贯彻院党委的决策部署,立足岗位,踏实肯干,实实在在为一线办实事。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;2. 省能源院能源化学创新团队党支部结合建党97周年和改革开放40周年以及习近平看重的&ldquo;三个担当&rdquo;内容,召开了主题为&ldquo;初心逐梦诵改革,砥砺迈进新时代&rdquo;的说讲谈活动。会上支部同志踊跃发言,气氛热烈。关春玲同志讲述了赵一曼、赵尚志、杨靖宇等东北抗联战士的英雄事迹,大家从不忘初心艰苦奋斗的老一辈红色精神说起,谈到了改革开放四十年来国家发生的巨大变化,都感到无比自豪,表示在今后工作中要不忘初心,坚守信仰,勇于担当,开拓未来。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;3. 正时七一建党97周年和改革开放40周年纪念之际省能源院生物能创新团队党支部组织党员谈认识&nbsp;、谈感受。王欣同志深情诵读入党志愿书,畅谈心路历程、表明践诺决心。徐晓秋同志表示合格党员就要有敢担当、能担当、善担当的样子。党建联系点院人事处党支部张兴同志表示这次说讲谈气氛热烈,同志们理解深刻,在新时代我们应该初心如磐、使命在肩,坚守入党时的信仰信念,始终铭记誓言和志愿、始终永葆共产党员政治本色。<br />\r\n 六、&nbsp;基层党建提升工程总结表彰活动<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp;为巩固基层党建全面提升工程成果,推进服务型党组织建设,总结党建工作的成效和经验,发挥先进典型的示范引领作用,我院开展&ldquo;2017年党建提升工程优秀个人、优秀基层组织、优秀团队&rdquo;等评选表彰活动。此次表彰活动推动了党建工作落地见效,形成了&ldquo;党委有号召力、党支部有凝聚力、党员有向心力&rdquo;的党建发展局面,有效推动了各项工作上台阶上水平。</span></div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/180710/1-1PG0114259252.JPG\" style=\"width: 600px;\" /></div>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n &nbsp;</div>\r\n<br />\r\n', '', '', '45.115.217.214'),
(241, 10, '<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;7月12日下午哈尔滨理工大学化学与环境工程学院党委书记徐春霖带队到能源院进行第二次深入交流。双方首先签署了&ldquo;教学科研实践基地共建协议&rdquo;和&ldquo;研究生导师互聘协议&rdquo;,共同为&ldquo;哈尔滨理工大学教学科研实践基地&rdquo;揭牌,随后,徐春霖书记走访了实验室,对双方的合作的交叉点进行了细致探讨。通过第二次交流和合作协议的签订,为双方在科研、教学、互聘导师等方面的长久合作奠定了基础。石化院王阳书记带队一行,也到我院和哈尔滨理工大学化学与环境工程学院进行了深入交流。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\"><img alt=\"\" src=\"/uploads/allimg/180712/1-1PG2205959203.jpg\" style=\"width: 600px; height: 600px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '45.115.217.214'),
(242, 10, '<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;8月16日上午省能源院召开 &ldquo;深入学习张庆伟书记调研讲话精神&rdquo;会议,会议由徐晓秋院长主持,全体职工参加了会议。徐院长传达和讲解了&ldquo;关于在省科学院系统开展学习贯彻落实张庆伟书记调研讲话精神的通知&rdquo;、&ldquo;张庆伟书记在省科学院调研座谈会上的讲话&rdquo;两项重要文件,要求全体职工立足本职岗位,认真学习贯彻张庆伟书记调研时的讲话精神,采取行之有效的学习方式,积极组织开展支部&ldquo;说讲坛&rdquo;等专题学习活动。创新团队要以庆伟书记在我院的调研精神为引领加强顶层设计,合理规划构建协同创新体系。院所要牢牢把握正确的改革方向,探索改革创新发展新思路,推动科研事业单位深化改革。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180816/1-1PQ6141P1545.jpg\" style=\"height: 450px; width: 600px;\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/180816/1-1PQ6141T95b.jpg\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '45.115.217.214'),
(243, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\">8月17日能源院组织召开2019年度储备项目评审会两个创新团队共组织10项科研项目参与本次储备项目评审。评审委员会由来自哈尔滨工业大学、哈尔滨工程大学、黑龙江大学等七名省内知名专家组成。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;上午,先进行了院所基本应用技术研究专项和中试基地建设项目的评审,省科学院条财处陆凯参加会议。专家结合指南分别对院所基本应用技术储备项目给与了充分的建议和评价,对团队提出科研仪器设备进行了相关性、均衡性和匹配性的评价,并对储备项目进行了量化打分,一致同意进入项目储备库。</span>\r\n<div>\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180817/1-1PQGH33B13.jpg\" style=\"width: 600px; height: 600px;\" /></span><br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\">下午,召开了院基金项目、院青年基金项目、中试熟化项目、院长基金项目的储备项目评审会,与会专家对项目的选题、研究思路、技术路<br />\r\n 线、考核指标等方面提出了细致的修改意见,并对入库项目进行的打分排序,形成推荐意见。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/180817/1-1PQGH54a25.jpg\" style=\"width: 600px; height: 600px;\" /></span><br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\"> 本次评审会本着公开、公平、公正的原则,聘请的专家全部由系统外专家组成,同时,专家组对项目给与了充分、细致的评价,充分发挥了专家的咨询作用,对提升储备项目质量具有重要的指导作用。</span><br />\r\n <br />\r\n &nbsp;</div>\r\n', '', '', '45.115.217.214'),
(244, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">为深入贯彻落实中央、省委及省科学院相关精神同时围绕法制年建设11月5日省能源院党委召开中心组学习扩大会议能源院全体党员参加会议会议由党委书记、院长徐晓秋同志主持。</span>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会前徐晓秋同志带领全体党员再学新修订的《中国共产党纪律处分条例》。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议传达了中共黑龙江省第十二届委员会第四次全体会议决议、省科学院党组《关于学习宣传贯彻习近平总书记在深入推进东北振兴座谈会上重要讲话和考察黑龙江时重要指示精神的通知》和院党组书记赵梅同志在11月2日全院处级以上干部会议上提出的三点学习贯彻落实意见。</span></div>\r\n<div>\r\n <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 会议要求全体党员要将上述各项学习精神作为当前和今后一个时期首要政治任务,深刻领会全会精神实质。坚持以问题为导向,结合自身工作学以致用,进一步解放思想、统一思想、形成共识,认真开展&ldquo;支部说讲谈&rdquo;活动,每一名职工都要自觉肩负创新驱动的历史重任,要以实际行动助力我院振兴发展。<br />\r\n <img alt=\"\" src=\"/uploads/allimg/181109/1-1Q10Z929492R.jpg\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/uploads/allimg/181109/1-1Q10Z93020E8.jpg\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '1.58.50.10'),
(245, 10, '<span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;2018年11月17日太阳岛科技论坛系列活动&mdash;&mdash;2018能源环境可持续发展论坛暨省能源环境学会第四届学术年会在哈尔滨工业大学城市水资源与水环境国家重点实验室隆重举行。本次会议的主题为&ldquo;能源环境可持续发展&rdquo;,围绕秸秆综合利用技术、乡村厕所革命关键技术、生物制氢、土壤修复等主要议题进行大会报告。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;哈尔滨工业大学副校长任南琪院士、黑龙江省科学院院长郭春景研究员、城市水资源开发利用北方国家工程研究中心主任石广济教授、哈尔滨工业大学环境学院党委书记齐晶瑶教授、黑龙江省能源环境研究院院长徐晓秋研究员、东北农业大学资源与环境学院院长张颖教授等领导出席论坛。省内能源环境领域的高校、院所、企业的领导、学科带头人和骨干教师、学生等共计140余人参加了论坛。&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 论坛邀请了哈工大副校长、中国工程院院士任南琪教授、同济大学周雪飞教授、东北农业大学资源与环境学院院长张颖教授等七位知名专家学者做了精彩的学术报告。此次论坛的召开使科技人员能够结合我省的实际情况,立足服务发展需要,把握领域前沿动态,在提升学术水平的同时把理论应用于实践,最终实现我省能源环境的可持续发展。这次论坛对生态文明理念的提升、环境污染源头治理的加强以及资源循环利用能力的升级,具有重大的现实意义。<br />\r\n<img alt=\"\" src=\"/uploads/allimg/181121/1-1Q12110005D08.png\" style=\"width: 600px; height: 400px;\" /><img alt=\"\" src=\"/uploads/allimg/181121/1-1Q121100113Y8.png\" style=\"width: 600px;\" /><br />\r\n<img alt=\"\" src=\"/uploads/allimg/181121/1-1Q12110013a03.png\" style=\"width: 600px; height: 397px;\" /><img alt=\"\" src=\"/uploads/allimg/181121/1-1Q121100156295.png\" style=\"width: 600px; height: 384px;\" /><br />\r\n<img alt=\"\" src=\"/uploads/allimg/181121/1-1Q121100215c9.png\" style=\"width: 600px; height: 397px;\" /><img alt=\"\" src=\"/uploads/allimg/181121/1-1Q12110022aG.png\" style=\"width: 600px; height: 396px;\" /><br />\r\n<img alt=\"\" src=\"/uploads/allimg/181121/1-1Q121100255c5.png\" style=\"width: 600px; height: 400px;\" /><img alt=\"\" src=\"/uploads/allimg/181121/1-1Q1211003232c.png\" style=\"width: 600px; height: 397px;\" /><br />\r\n<img alt=\"\" src=\"/uploads/allimg/181121/1-1Q121100344251.png\" style=\"width: 600px; height: 398px;\" /><img alt=\"\" src=\"/uploads/allimg/181121/1-1Q121100403363.png\" style=\"width: 600px; height: 399px;\" /><br />\r\n<img alt=\"\" src=\"/uploads/allimg/181121/1-1Q121100425556.png\" style=\"width: 600px; height: 398px;\" /></span><br />\r\n', '', '', '221.212.192.10'),
(246, 10, '<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; 12月7日上午省科学院党组成员、副院长赵立涛同志、院对外合作处处长刘志忠同志以及对外合作处全体同志来到能源院调研座谈。此次调研的主题为&ldquo;解放思想,开放办院,协同创新&rdquo;。</span></div>\r\n<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; 能源院介绍了2018年外事工作情况、合作平台建设及运转情况、海外人才工作站专家及聘请院级客座研究员情况 、明年外事工作计划。赵院长对我院外事工作给予较高评价,并对每项具体工作都进行了点评,直接指导我院外事工作健康有序推进。特别是叮嘱我院要高度关注各种渠道的国合项目,提前谋划,签署合作协议,争取参与指南编写,认真对待项目申报和答辩,才有可能获得资助。明确了技术引进、消化吸收再创新、服务第三世界国家的工作思路。对引智工作和援外培训等工作也给予了指导。</span></div>\r\n<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; 赵院长一行的到来明晰了我院外事工作思路给我院树立起对外合作工作的信心和决心2019年我院要解放思想、提前谋划、凝心聚力外事工作再谱新篇。<br />\r\n <img alt=\"\" src=\"/uploads/allimg/181210/1-1Q210094431926.jpg\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/uploads/allimg/181210/1-1Q2100944524c.jpg\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '1.62.80.131'),
(247, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">12月18上午10点根据省委办公厅要求能源环境研究院认真组织全体职工收看中共中央国务院召开的庆祝改革开放40周年大会。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/181220/1-1Q220103332364.png\" style=\"width: 600px;\" /><img alt=\"\" src=\"/uploads/allimg/181220/1-1Q2201034015F.png\" style=\"width: 600px;\" /></span></div>\r\n', '', '', '113.0.21.85'),
(248, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp;3月5日上午9时能源院全体党员干部集体收看第十三届全国人民代表大会第二次会议开幕。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/190305/1-1Z305093T4X8.JPG\" style=\"width: 600px; height: 315px;\" /><img alt=\"\" src=\"/uploads/allimg/190305/1-1Z305093ZI36.JPG\" style=\"width: 600px; height: 328px;\" /></span></div>\r\n', '', '', '113.0.21.125'),
(249, 10, '<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2019年2月28日省能源院召开了全体职工大会传达学习贯彻省科学院2019年工&nbsp;作会议精神,能源院领导班子及全体职工参加了会议。<br />\r\n &nbsp; &nbsp; &nbsp; 会议全文传达了郭春景院长的工作会议报告及赵梅书记的总结讲话。省能源院党&nbsp;委书记、院长徐晓秋同志围绕&ldquo;双提行动计划&rdquo;和打造&ldquo;五新&rdquo;科学院的发展目标,&nbsp;及认真学习贯彻落实2019年各项工作任务及9项重点工作进行了深入全面部署同时&nbsp;加强三点工作,一是加强政治建设,引领优良工作作风;二是着力攻坚克难,为科研&nbsp;高质量发展提供科技和人才支撑;三是加强科技宣传,营造和谐安全稳定发展环境,&nbsp;能源院全体干部职工将以百倍的热情深入学习贯彻落实中央、省委及省科学院各项精神不断加强支部建设树立优良作风加快实现创新引领和关键核心技术突破扎实推进科研工作完善机制落实责任以优异成绩向中华人民共和国成立70周年献礼。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\"><img alt=\"\" src=\"/uploads/allimg/190319/1-1Z31Z93452143.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '1.58.47.77'),
(250, 10, '<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 为庆祝&ldquo;三八&rdquo;国际妇女节,省能源院举办&ldquo;聚巾帼力量 筑美丽未来&rdquo;座谈会,全院女职工和班子成员参加了座谈会,能源院党委书记、院长徐晓秋同志主持会议。</span></div>\r\n<div>\r\n <span style=\"font-size:14px;\">&nbsp; &nbsp; &nbsp; &nbsp;徐院长首先对全体女职工致以节日的祝福,对女同胞们多年来在能源院的建设和发展过程中做出的贡献给予了充分的肯定。女职工们纷纷发言,一致表示,作为新时代的女性,要认真学习领会全国&ldquo;两会&rdquo;精神,落实院工作会议精神,立足本职岗位,解放思想、勇于担当、锐意进取、奋发作为,不断提升科技创新能力和质量,为实现全院&ldquo;双提&rdquo;目标任务和我院创新发展做贡献。随后,我院邀请的专业老师为女职工们奉上了一堂精彩的服装搭配课程,受到了女职工们的热烈欢迎。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:14px;\"><img alt=\"\" src=\"/uploads/allimg/190319/1-1Z31Z94359601.JPG\" style=\"width: 600px; height: 900px;\" /></span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '1.58.47.77'),
(251, 10, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><strong>国家重点研发计划&ldquo;村镇低成本清洁能源供暖及蓄热技术研究&rdquo;项目启动会顺利召开</strong></span></div>\r\n<div>\r\n <div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2019年3月27日由中国建筑科学研究院有限公司作为项目牵头单位、建筑环境与节能研究院李忠研究员作为项目负责人的&ldquo;十三五&rdquo;国家重点研发计划&ldquo;绿色宜居村镇技术创新&rdquo;重点专项&ldquo;村镇低成本清洁能源供暖及蓄热技术研究&rdquo;项目启动会在北京顺利召开。</span></div>\r\n <div style=\"text-align: center;\">\r\n <span style=\"font-size:10px;\"><img alt=\"\" src=\"/uploads/allimg/190409/1-1Z40Z929251W.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n <div>\r\n &nbsp;</div>\r\n <div>\r\n &nbsp;</div>\r\n</div>\r\n<div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; 项目主管、中国农村技术开发中心副处长王峻项目专员朱浩、流动专员张志伟、张志强住房和城乡建设部标准定额司副调研员姚秋实中国建筑科学研究院有限公司副总经理王清勤、科技处副处长张靖岩、财务处副处长杨如冰建筑环境与节能研究院副院长邹瑜专项及项目咨询专家、21家项目参与单位共60余名研究人员参加了此次会议。</span></div>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:10px;\"><img alt=\"\" src=\"/uploads/allimg/190409/1-1Z40Z9304T56.JPG\" style=\"width: 600px; height: 400px;\" /></span></div>\r\n<div>\r\n <div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 项目启动会由建筑环境与节能研究院副院长邹瑜主持。院公司王清勤副总经理代表项目承担单位致辞,住房和城乡建设部标准定额司副调研员姚秋实代表项目推荐单位、中国农村技术开发中心王峻副处长代表项目管理团队发表讲话。</span></div>\r\n <div style=\"text-align: center;\">\r\n <span style=\"font-size:10px;\"><img alt=\"\" src=\"/uploads/allimg/190409/1-1Z40Z93200225.JPG\" style=\"width: 600px; height: 413px;\" />&nbsp;</span></div>\r\n <div>\r\n <div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; 项目专员朱浩详细讲解了国家层面关于&ldquo;十三五&rdquo;重点研发计划的各项制度文件,以及中国农村技术开发中心对项目管理的各项要求。华建会计师事务所张小艳高级会计师就重点研发计划项目资金管理的相关事项做出了细致的培训与专业的讲解。<br />\r\n &nbsp; &nbsp; &nbsp; &nbsp; 随后,会议进入实施方案咨询阶段。项目启动会咨询专家组由专项咨询专家中国建设科技集团股份有限公司教授级高工李宏,天津大学教授朱能,华建会计师事务所高级会计师张小艳;项目咨询专家中国建筑标准设计研究院有限公司教授级高工李军,北京工业大学教授陈超,中国建筑节能协会秘书长李德英共六人组成。此次启动会的咨询专家也被聘为项目的特聘专家,并由项目负责人李忠研究员向各位专家颁发了聘书。&nbsp;</span></div>\r\n </div>\r\n</div>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/190409/1-1Z40Z93332P6.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n<div>\r\n <div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp; 项目实施方案讨论会由李宏教授级高工主持。项目负责人李忠研究员汇报项目实施方案,重点介绍研究内容、统筹与分解、年度计划、组织保障和风险控制对策及加强项目内部控制的各项措施等内容。随后,各课题负责人李忠研究员、朱民教授、谭羽非教授、刘猛教授、张景高级工程师就课题实施方案进行汇报。</span></div>\r\n <div style=\"text-align: center;\">\r\n <span style=\"font-size:10px;\"><img alt=\"\" src=\"/uploads/allimg/190409/1-1Z40Z93513J6.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n <div>\r\n &nbsp;</div>\r\n</div>\r\n<div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp;汇报结束后,专家组通过质询和论证,并为项目和课题后期实施提出了意见和建议,指出项目的实施按照以课题服务于项目为宗旨,课题各项考核指标应制定详实周密的研究计划,落实到具体时间节点,同时对于国拨经费的使用应严格按照研究进度支出。另外,示范工程建设项目任务繁重,需要周密计划与部署,为后续测试、总结与验收预留充足的时间。</span></div>\r\n<div>\r\n <span style=\"font-size:10px;\">&nbsp; &nbsp; &nbsp; &nbsp;最后,项目负责人李忠研究员做总结发言,他感谢与会专家提出的宝贵意见,指出项目实施之前需要定好规矩,将项目考核指标进展落到实处,确保项目能够顺利完成,不负嘱托,切实为推动乡村振兴战略的落实提供有力的技术支撑。</span></div>\r\n<div>\r\n <span style=\"font-size:10px;\">此次启动会的顺利召开标志着本项目正式启动。该项目中央财政经费4295万元项目执行周期为2018年12月到2022年12月。项目针对我国绿色宜居村镇建设的需求将为绿色宜居村镇建设提供战略和技术决策支撑。</span></div>\r\n<div>\r\n &nbsp;</div>\r\n', '', '', '113.0.50.83'),
(252, 10, '<span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (一) 5月6日下午14时省能源院召开全院职工大会学习传达贯彻省科学院落实机构改革方案动员大会的精神。会议由党委书记、院长徐晓秋同志主持。<br />\r\n&nbsp;&nbsp;&nbsp; 会上,徐晓秋同志传达了《关于印发&lt;黑龙江省科学院及所属事业单位机构改革方案&gt;的通知》、全文传达了赵梅书记在省科学院落实机构改革方案动员大会上的讲话精神及郭春景院长提出的三点要求。会议要求全体干部职工,认真领会机构改革方案的精神,结合实际抓好落实,要按照科学院党组的要求,把会上布置的十一项工作落实落靠,要以改革为动力,为实现我院&ldquo;双提&rdquo;计划,打造"五新"科学院继续努力。动员全体党员积极开展&ldquo;说讲谈&rdquo;活动,要求各支部围绕落实动员大会精神,切实全面推进改革工作。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;下午15时许省科学院党组赵梅书记一行来到省能源院与省能源院领导班子进行了亲切的交流省能源院党委书记、院长徐晓秋同志将省能源院基本情况及改革涉及工作开展情况向赵书记一行进行了汇报赵梅书记和四位院机关部门领导根据省能源院实际情况给予了现场指导赵梅书记对落实改革工作中的责任任务、时间节点、人员组织、职能融合、队伍建设等重点工作做了进一步部署。</span>\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/190507/1-1Z50G44049615.JPG\" style=\"width: 600px; height: 450px;\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/190507/1-1Z50G44115393.JPG\" style=\"width: 600px; height: 450px;\" /></div>\r\n', '', '', '113.4.101.246'),
(253, 10, '<div style=\"text-align: center;\">\r\n <span style=\"font-size:20px;\">守初心、担使命、找差距、抓落实</span></div>\r\n&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;--省能源环境研究院党委&ldquo;不忘初心、牢记使命&rdquo;主题教育开展情况汇总<br />\r\n&nbsp;<br />\r\n&nbsp; &nbsp; &nbsp; &ldquo;不忘初心、牢记使命&rdquo;主题教育活动开展以来,省能源院党委始终把党的政治建设摆在突出位置,坚定政治信仰、增强&ldquo;四个意识&rdquo;、维护党中央权威和集中统一领导、严明党的政治纪律和政治规矩、加强和规范新形势下党内政治生活,确保各项工作取得实效。现将主题教育开展情况汇报如下。<br />\r\n一、以理论学习为基础<br />\r\n1.坚持读原著学原文悟原理。以习近平新时代中国特色社会主义思想为主题教育的主线,在学懂弄通做实上下功夫。组织党员干部学习党章、十九大报告,学习《习近平新时代中国特色社会主义思想学习纲要》《习近平关于&ldquo;不忘初心、牢记使命&rdquo;重要论述选编》《中共共产党党内法规汇编》,深入学习习近平总书记在振兴东北座谈会和到我省视察时的重要指示精神,以及习近平总书记最新重要讲话精神。党委成员带头认真开展学习,深学细悟,深入开展研讨,各党支部、各部门坚持自学、集中学习相结合,夯实学习基础。<br />\r\n2.开展集中学习研讨。召开中心组学习扩大学习会,带头深入开展专题研讨,集中研讨将自学、研讨、交流相结合,将革命传统教育和先进典型教育相结合,坚持领导带头、上下联动、同频共振。<br />\r\n3.丰富学习教育形式。结合观看纪录片《丰碑》、《楷模》,组织全体党员干部和党外人士集体参观《丰碑》中&ldquo;北大荒精神&rdquo;的代表-农垦北大荒博物馆,学习践行&ldquo;艰苦奋斗、勇于开拓、顾全大局、无私奉献&rdquo;的北大荒精神;组织全体党员干部与党建联系点省科学院人事处党支部共赴纪录片《楷模》中尚志市元宝村,开展&ldquo;观《丰碑》 学《楷模》 促&lsquo;双提&rsquo; 助&lsquo;落地&rsquo;&rdquo;主题教育活动,此行受到了元宝村村委会成员的亲切接待,村党总支书记也是&ldquo;楷模&rdquo;人物之一的张宝金同志对我们的到来表示热烈欢迎。全体人员首先来到抗日烈士赵尚志赵一曼纪念馆,追寻英雄足迹,缅怀英雄事迹,随后参观了以作家周立波长篇小说命名的暴风骤雨纪念馆,深入了解土地改革运动,以及改革前后元宝村发生的翻天覆地的变化,并重温入党誓词,以坚定有力的宣誓表达时刻不忘初心、牢记使命的信念和决心,并在元宝村围绕活动主题,现场召开了&ldquo;不忘初心、牢记使命&rdquo;主题座谈会。<br />\r\n二、以调查研究为载体<br />\r\n1.坚持问题导向。按照主题教育要求认真制定调研方案,聚焦党中央重大决策部署、群众反映突出的热点问题、党的建设面临的突出矛盾,切实把调查研究与履职尽责结合起来。在调研中紧盯问题,摸清实情,分析症结,理清思路,找出办法。<br />\r\n2.调查研究注重实际。紧密结合履职实际,分别制定调研方案,领导班子成员带头开展调研,聚焦问题,及时了解掌握干部职工思想动态,分别召开各层面座谈会,听取相关意见建议。<br />\r\n3.讲好专题党课。在学习调研的基础上,领导班子认真撰写党课提纲,为党员干部讲授党课。党委书记围绕&ldquo;学党史、知党情、强党性&rdquo;为全体党员干部讲授专题党课,并在支部围绕&ldquo;聚焦两会,助力科院&rdquo;、&ldquo;守初心 严律己 担使命&rdquo;分别讲授党课2次。<br />\r\n三、以检视问题为契机<br />\r\n1.广泛听取意见建议。突出主题教育目标之一&ldquo;为民服务解难题&rdquo;,通过谈话、问卷、座谈、设置征求意见箱等方式,广泛征集广大党员群众意见。<br />\r\n2.自觉对标查摆问题,深刻剖析反思。带头坚持高标准、严要求,按照总书记关于&ldquo;四个对照&rdquo;、&ldquo;四个找一找&rdquo;的要求,在征求意见基础上,把职责摆进去,把问题找出来,进一步细化问题,列出清单,从思想、政治、作风、能力、廉政方面全面检视,不留死角。认领问题,深入剖析症结,深刻反思原因,逐一对标,逐条逐项制定整改措施。<br />\r\n四、以整改落实为驱动<br />\r\n1.突出重点整改。认真研究制定主题教育专项整治实施方案,进一步强化宗旨意识,从政治站位上找差距,从思想深处找根源,从工作落实上找不足,从责任担当上找缺失。集中开展问题治理,对调硏发现的重点问题、群众反映强烈的问题和专项整治的问题列出清单、建立台账,逐条研究制定具体的解决办法和整改方案,有序有力抓整改,确保整改到位。<br />\r\n2.坚持立行立改。坚持把&ldquo;改&rdquo;字贯穿始终,注重将学习教育、调查研究和检视反思发现的问题纳入其中,明确整改任务。召开专项整治工作推进会议,对调研发现的问题、群众反映的问题、自身查找的问题列出清单、建立台账,逐条研究制定具体的解决办法和整改措施,能够当下改的,立行立改、即知即改,确保各项问题整改全部落实到位。<br />\r\n3.高质量开好专题民主生活会。高度重视、精心筹备、进一步认真开展学习、广泛征集意见,深入谈心交心,严格査摆问题并撰写检视剖析材料,为高质量的召开民主生活会夯实基础。<br />\r\n<br />\r\n', '', '', '1.62.164.183'),
(254, 10, '<span style=\"font-size:16px;\">&nbsp; &nbsp; &nbsp; &nbsp; 11月7日上午省能源院召开全体职工大会学习贯彻落实传达党的十九届四中全会精神全文学习了中国共产党第十九届中央委员会第四次全体会议公报会议由能源院党委书记、院长徐晓秋同志主持。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;会议要求全体职工,坚持以马克思列宁主义、毛泽东思想、邓小平理论、&ldquo;三个代表&rdquo;重要思想、科学发展观、习近平新时代中国特色社会主义思想为指导,全面贯彻党的十九届四中全会精神,准确把握大局,着力抓好发展,攻坚克难、砥砺前行,推动能源院科研事业取得新的进展。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/191107/1-19110G45100394.jpg\" style=\"width: 600px; height: 800px;\" /></span></div>\r\n', '', '', '1.62.164.183'),
(255, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:18px;\"> 10月24日按照省委&ldquo;不忘初心、牢记使命&rdquo;主题教育领导小组办公室《关于转发&lt;关于认真做好《榜样4》专题节目学习收看工作的通知&gt;的通知》和省科学院机关党委通知要求省能源院组织全体党员干部集体观看《榜样4》。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;《榜样4》讲述了&ldquo;本色英雄&rdquo;张富清、&ldquo;吃亏&rdquo;书记李连成、&ldquo;扶贫之花&rdquo;黄文秀、&ldquo;大湖鸿雁&rdquo;唐真亚、&ldquo;环卫天使&rdquo;李萌、扶贫&ldquo;硬汉&rdquo;隋耀达、揽月&ldquo;天团&rdquo;嫦娥四号参研参试人员群体代表的感人故事,彰显了优秀共产党员坚定入党初心、无私敬业奉献、热心服务群众的精神风貌,深刻诠释了中国共产党人不忘初心、牢记使命的执着坚守。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;全体党员干部纷纷表示深受感动和鼓舞,作为一名共产党员,要以榜样为镜,在以后的工作中自觉向榜样看齐,自足本职、主动作为、敢于担当。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:18px;\"><img alt=\"\" src=\"/uploads/allimg/191107/1-19110G501592Q.jpg\" style=\"width: 600px; height: 449px;\" /></span></div>\r\n', '', '', '1.62.164.183'),
(256, 10, '&nbsp; &nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp; &nbsp;2019年8月11-15日&ldquo;2019年刚果环保和可持续发展研修班&rdquo;在哈尔滨举办。本次研修班由商务部主办农业农村部沼气科学研究所承办共有25名来自刚果政府部门、企业协会、基金会的官员和学者参加了此次培训黑龙江省能源环境研究院作为协办单位组织了本次研修班。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8月12日研修班在徐晓秋院长和方正县农业局的陪同下来到了得莫利镇参观了得莫利镇垃圾处理中心鼎地科技公司技术人员对ERCM垃圾处理示范项目给研修班学员进行了详细讲解。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8月13日研修班参观了黑龙江省能源环境研究院生物质能实验室生物质能团队刘伟副研究员对实验室的研究领域、研究内容进行了详细介绍并与研修班学员进行了细致交流。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8月14日生物质能团队王欣副研究员做了&ldquo;城市固废处理的方法和技术&rdquo;的专题培训报告,普及了中国先进的城市固废处理技术,对研修班学员的提问做了专业解答。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;通过此次培训,加强了能源院在有机固废处理领域的宣传力度,为&ldquo;一带一路&rdquo;发展中国家的发展提供了帮助。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/191107/1-19110G52120A4.jpg\" style=\"width: 600px; height: 600px;\" /><br />\r\n <img alt=\"\" src=\"/uploads/allimg/191107/1-19110G52144546.jpg\" style=\"width: 600px; height: 600px;\" /></span></div>\r\n<br />\r\n', '', '', '1.62.164.183'),
(257, 10, '<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style=\"font-size:14px;\">为贯彻落实张庆伟同志《在全省工业强省暨产业发展大会上的讲话》精神和《黑龙江省委、省政府关于加快煤炭资源型城市转型推动高质量发展的指导意见》进一步做好低热值固废煤矸石燃烧项目对接工作应七台河市相关企业要求2019年10月20日至23日省科学院能源环境研究院徐晓秋院长带队由七台河市科技局牵头市直部门及七台河市吉伟煤焦有限公司、黑龙江省德利能源股份有限公司、亿达信煤焦化能源有限公司、联顺能源有限责任公司等相关企业赴湖南乾能新能源科技开发有限公司、江西省萍乡市安源电厂等地对低热值固废煤矸石燃烧35吨&mdash;40吨项目进行实地考察。</span><br />\r\n<img alt=\"\" src=\"/uploads/allimg/191112/1-19111209164Y48.png\" style=\"width: 600px; height: 799px;\" /><img alt=\"\" src=\"/uploads/allimg/191112/1-191112091FbE.png\" style=\"width: 600px; height: 800px;\" />\r\n<div style=\"text-align: center;\">\r\n <img alt=\"\" src=\"/uploads/allimg/191112/1-191112091I2460.png\" style=\"width: 600px; height: 446px;\" /></div>\r\n', '', '', '1.62.246.42'),
(260, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\">为进一步深入开展&ldquo;不忘初心、牢记使命&rdquo;主题教育活动7月4日黑龙江省能源环境研究院党委组织全体党员和部分党外人士参观北大荒博物馆学习践行&ldquo;艰苦奋斗、勇于开拓、顾全大局、无私奉献&rdquo;的北大荒精神。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;通过此次参观学习,大家都深刻体会到几代北大荒人献青春、献终身的无私伟大,大家纷纷表示本次活动不仅是一次学习教育,更是一次深刻的精神洗礼,应铭记历史,在今后工作生活中继续弘扬北大荒精神,初心不改,敢担当、顾大局、乐于奉献、奋勇向前!</span><br />\r\n', '', '', '1.62.246.42'),
(258, 10, '&nbsp; &nbsp; <span style=\"font-size:16px;\">&nbsp; &nbsp; 8月21日上午省能源院组织全体党员干部集体学习省委关于《切实加强党的建设、严明党的政治纪律和政治规矩》主题教育宣传片&ldquo;不忘初心、牢记使命&rdquo;主题教育活动开展以来,省能源院党委始终把党的政治建设摆在突出位置,坚定政治信仰、增强&ldquo;四个意识&rdquo;、维护党中央权威和集中统一领导、严明党的政治纪律和政治规矩、加强和规范新形势下党内政治生活,确保在各项工作中取得实效。</span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/191118/1-19111Q11400524.JPG\" style=\"width: 600px; height: 450px;\" /></span></div>\r\n', '', '', '1.62.246.42'),
(259, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style=\"font-size:16px;\">7月10日省能源院党委组织全体党员干部与党建联系点省科学院人事处党支部共赴纪录片《楷模》中尚志市元宝村开展观《丰碑》学《楷模》促&ldquo;双提&rdquo;,助落地主题教育活动。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;上午10时许全体人员来到抗日烈士赵尚志赵一曼纪念馆追寻英雄足迹缅怀英雄事迹深刻感受革命先烈不怕牺牲、艰苦奋斗、矢志报国的爱国情怀。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下午13时许全体人员抵达&ldquo;中国土改文化第一村&rdquo;元宝镇元宝村,受到了元宝村村委会成员的亲切接待,村总支张宝金书记对我们的到来表示热烈欢迎。全体人员参观了以作家周立波长篇小说命名的暴风骤雨纪念馆,深入了解土地改革运动,以及改革前后元宝村发生的翻天覆地的变化,并重温入党誓词,以坚定有力的宣誓表达时刻不忘初心、牢记使命的信念和决心。随后全体人员在元宝村围绕活动主题现场召开了&ldquo;不忘初心、牢记使命&rdquo;主题座谈会,并参观了元宝村雪莲笔业有限公司。<br />\r\n<img alt=\"\" src=\"/uploads/allimg/191118/1-19111Q13RCL.jpg\" style=\"width: 600px; height: 823px;\" /><img alt=\"\" src=\"/uploads/allimg/191118/1-19111Q13T5a6.jpg\" style=\"width: 497px; height: 677px;\" /><br />\r\n<img alt=\"\" src=\"/uploads/allimg/191118/1-19111Q13ZI28.jpg\" style=\"width: 600px; height: 823px;\" /><img alt=\"\" src=\"/uploads/allimg/191118/1-19111Q13926161.jpg\" style=\"width: 600px; height: 399px;\" /></span><br />\r\n<br />\r\n', '', '', '1.62.246.42'),
(261, 10, '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<span style=\"font-size:16px;\"> 根据中央、省委和省科学院党组关于开展&ldquo;不忘初心,牢记使命&rdquo;主题教育相关部署,省能源院迅速响应,组织全体党员干部,以主题教育为主导,将各项工作全面推向深入。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.6月13日省能源院召开全体党员大会暨省能源院&ldquo;不忘初心、牢记使命&rdquo;主题教育启动会,省能源院领导班子,全体党员参加会议,会议由省能源院党委书记、院长徐晓秋同志主持。<br />\r\n会议深入学习贯彻落实了中央、省委及省科学院关于开展&ldquo;不忘初心、牢记使命&rdquo;主题教育各项工作精神,全文学习了《关于开展&ldquo;不忘初心、牢记使命&rdquo;主题教育实施方案》、赵梅书记重要讲话精神、第九巡回督导组组长刘杰同志讲话精神。会议强调,要紧跟上级主题教育各项步伐,根据相关要求,迅速制定实施方案,准确把握目标要求,明确学习内容,强加组织领导,以上率下,层层传导,各支部要严格按照方案要求,切实行动起来,确保主题教育高质量完成。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.6月14日省能源院召开党委会议为保障主题教育全面开展成立&ldquo;不忘初心、牢记使命&rdquo;主题教育领导小组,研讨制定省能源环境研究院&ldquo;不忘实心、牢记使命&rdquo;主题教育理论学习方案。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;省能源院党委书记、院长徐晓秋同志在会议中指出:一要提高认识站位。要站在战略和全局的高度,充分认识主题教育的重要意义,坚定不移贯彻落实中央、省委和省科学院的部署要求,把理论学习作为严肃党内政治生活、强化党性修养的重要举措,切实把学习任务落到实处。二要突出学习重点。要坚持以学习贯彻习近平总书记系列重要讲话精神为重点,以学习贯彻习近平新时代中国特色社会主义思想为首要任务,原原本本学、原汁原味学,结合&ldquo;不忘初心、牢记使命&rdquo;主题教育,对标思想和工作实际,明方向、找差距、定措施,提升境界,改进工作。三要创新学习形式。要根据学习内容及实际情况,不断改进学习方式和拓展学习载体。坚持把个人自学思考与集体学习研讨相结合、把理论学习与专题调研相结合、把常规学习与线上学习相结合,进一步增强学习的吸引力、感染力。积极拓宽学习渠道、丰富学习手段,运用网络、移动新媒体、客户端等新技术新应用,不断激发学习兴趣,提高学习的主动性和自觉性。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3.6月21日根据省科学院相关要求和省能源院理论学习方案安排组织全体党员干部集体观看纪录片《丰碑》抗联精神北大荒精神大庆铁人精神、《楷模》于海河张宝金张秀林星火变电所前哨林场、《英雄的本色-张富清》、《初心无悔-马旭》,省能源院全体党员干部身受感动与鼓舞,会后主动撰写观后感,纷纷表示,这些英雄和楷模经在经历困难和面对牺牲时,心中始终怀揣着共产党人坚定不移的共产主义信念以及不畏艰难、不怕牺牲的大无畏精神,是共产党人舍己为公、无私奉献、忠诚担当的高贵品质,是共产党人为人民谋幸福、为民族谋复兴的高尚情怀,是所有共产党员学习的楷模和标准。回顾过去的艰苦创业、奋斗历程和光辉成就,是为了坚定今天的理想信念,激励全省党员干部不忘初心、牢记使命,锐意进取、担当作为,不断开创龙江全面振兴全方位振兴新局面。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;4.6月26日省能源院召开党委中心组学习扩大会议党委委员、支部书记参加会议。党委书记、院长徐晓秋同志主持并领学习近平关于&ldquo;不忘初心,牢记使命&rdquo;重要论述选编中《走的再远都不能忘记来时的路》《党必须勇于自我革命》。副院长关春玲同志领学习近平关于&ldquo;不忘初心,牢记使命&rdquo;重要论述选编中《牢固树立&ldquo;四个意识&rdquo;,维护党中央权威》《坚持和发展中国特色社会主义要一以贯之》,徐晓秋同志强调,全体党员干部要提高政治站位,增强思想自觉、政治自觉、行动自觉。开展主题教育是初心所在,是党心所系,是民心所向,党员领导干部只有打牢思想之基,不断增强&ldquo;四个意识&rdquo;、坚定&ldquo;四个自信&rdquo;、做到&ldquo;两个维护&rdquo;,才能确保改革发展沿着正确方向前进;只有勇于自我革命,坚持不懈地推动全面从严治党向纵深发展,才能全身心的投入改革发展大业中去;只有牢固树立群众观念、自觉践行群众路线,才能使职工群众满意,最终凝聚成砥砺奋进的强大力量。<br />\r\n<img alt=\"\" src=\"/uploads/allimg/191118/1-19111Q314514H.jpg\" style=\"width: 552px; height: 552px;\" /><img alt=\"\" src=\"/uploads/allimg/191118/1-19111Q3150G10.jpg\" style=\"width: 553px; height: 737px;\" /></span>\r\n<div style=\"text-align: center;\">\r\n <span style=\"font-size:16px;\"><img alt=\"\" src=\"/uploads/allimg/191118/1-19111Q3153G44.jpg\" style=\"width: 600px; height: 799px;\" /></span></div>\r\n', '', '', '1.62.246.42'),
(262, 10, '<div>\r\n &nbsp; &nbsp; &nbsp; &nbsp; 2019年11月30日由黑龙江省能源环境学会主办黑龙江省能源环境研究院承办的&ldquo;2019黑龙江省能源环境学会第五届学术年会暨生态文明建设与资源环境技术研讨会&rdquo;在哈尔滨北大荒国际饭店举行。</div>\r\n<div>\r\n &nbsp; &nbsp; &nbsp; &nbsp; 省科协学会部吕强部长到会,并发表贺词。他感谢省能源环境学会对科协工作的支持,对学会的发展壮大表示祝贺,对今后加强学会建设、促进创新驱动助力龙江发展等方面提出殷切希望。会议以&ldquo;生态文明建设与资源环境&rdquo;为主题,特邀了哈尔滨工业大学马放教授、城市水资源开发利用(北方)国家工程研究中心陈志强教授、黑龙江省农业科学院农村能源与环保研究所刘杰研究员、黑龙江八一农垦大学王伟东教授、黑龙江省能源环境研究院王志成研究员级高工做会议主旨报告。</div>\r\n<div>\r\n &nbsp; &nbsp; &nbsp; &nbsp; 与会专家学者围绕&ldquo;生态文明建设与资源环境技术&rdquo;等方面,开展学术交流和研讨,探讨如何发挥资源环境技术的作用,促进我省生态文明建设,为龙江经济社会发展服务。</div>\r\n<div>\r\n &nbsp; &nbsp; &nbsp; &nbsp; 2019黑龙江省能源环境学会学术年会在浓重的学术氛围中取得了圆满成功。</div>\r\n<div style=\"text-align: center;\">\r\n <br />\r\n <br />\r\n <img alt=\"\" src=\"/uploads/allimg/191220/1-191220111PCJ.jpg\" style=\"width: 500px; height: 283px;\" /><br />\r\n <br />\r\n &nbsp;</div>\r\n', '', '', '1.58.195.247'),
(263, 10, '<span style=\"font-size:18px;\">&nbsp; &nbsp;&nbsp;</span>&nbsp; 2019年12月31日省能源院召开2019年度总结大会院领导班子全体职工参加会议会议由省能源院党委书记、院长徐晓秋同志主持。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;会议认真总结了省能源院2019年各项工作情况并对全体职工进行了年终考核。2019年在省科学院党组的正确领导下省能源紧跟新时代奋斗新征程以&ldquo;双提行动&rdquo;和&ldquo;省科学院新时代科技创新发展规划&rdquo;为工作重点,以全面推进高质量发展为总要求,不断发扬&ldquo;双创争优&rdquo;精神,明确发展目标、坚持发展战略,建团队、强机制,全体科研人员用品质和创新突破自我,真抓实干,勇于奉献,圆满完成了各项目标任务。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp;随后开展了省能源院&ldquo;学习强国&rdquo;知识竞赛,竞赛分三个部分,分别为&ldquo;持续巩固主题教育成果&rdquo;&ldquo;不断夯实党建提升工程&rdquo;&ldquo;突出党建全面引领中心工作&rdquo;,此次活动意在提高全体干部职工善于学习、善于总结、善于提高的能力,激励干部职工不懈努力,为省能源院全面发展贡献力量。\r\n<div>\r\n <img alt=\"\" src=\"/uploads/allimg/200115/1-200115150509D1.jpg\" style=\"width: 600px; height: 450px;\" /><img alt=\"\" src=\"/uploads/allimg/200115/1-200115150529C7.jpg\" style=\"width: 600px; height: 450px;\" /></div>\r\n<div style=\"text-align: center;\">\r\n &nbsp;</div>\r\n&nbsp;<br />\r\n', '', '', '113.4.115.84'),
(264, 10, '&nbsp; &nbsp; &nbsp; <span style=\"font-size:12px;\">1月3日下午省科学院伍跃辉院长人事处机、关党委相关同志一行莅临省能源院对省能源院领导班子及成员进行年终考核并指导工作。省能源院全体干部职工参加会议。<br />\r\n&nbsp; &nbsp; &nbsp; 省能源院党委书记、院长徐晓秋代表领导班子就省能源院2019年目标完成情况、重点亮点工作、改革情况、存在问题及取得成绩等方面向伍院长一行进行全面了汇报随后班子成员就分管领域工作完成情况进行了汇报。伍院长对省能源院2019年度工作给予了充分肯定高度评价省能源院领导班子在各项工作中发挥的强有力作用指出省能源院班子、团队坚强有力、科研工作稳中创新并希望省能源院在2020年取得更大的成绩。<br />\r\n&nbsp; &nbsp; &nbsp; 随后,为更好的调动和鼓舞广大干部职工干事创业的积极性和创造性,伍院长为省能源院在创新发展中取得显著业绩获得表彰的先进个人颁奖。<br />\r\n&nbsp; &nbsp; &nbsp;&nbsp;<img alt=\"\" src=\"/uploads/allimg/200115/1-200115154154124.jpg\" style=\"width: 600px; height: 600px;\" /><img alt=\"\" src=\"/uploads/allimg/200115/1-200115154212610.jpg\" style=\"width: 600px; height: 600px;\" /><br />\r\n&nbsp;</span><br />\r\n', '', '', '113.4.115.84');
-- --------------------------------------------------------
--
-- 表的结构 `dede_archives`
--
CREATE TABLE `dede_archives` (
`id` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`typeid` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
`typeid2` varchar(90) NOT NULL DEFAULT '0',
`sortrank` int(10) UNSIGNED NOT NULL DEFAULT '0',
`flag` set('c','h','p','f','s','j','a','b') DEFAULT NULL,
`ismake` smallint(6) NOT NULL DEFAULT '0',
`channel` smallint(6) NOT NULL DEFAULT '1',
`arcrank` smallint(6) NOT NULL DEFAULT '0',
`click` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`money` smallint(6) NOT NULL DEFAULT '0',
`title` char(255) NOT NULL,
`shorttitle` char(36) NOT NULL DEFAULT '',
`color` char(7) NOT NULL DEFAULT '',
`writer` char(20) NOT NULL DEFAULT '',
`source` char(30) NOT NULL DEFAULT '',
`litpic` char(100) NOT NULL DEFAULT '',
`pubdate` int(10) UNSIGNED NOT NULL DEFAULT '0',
`senddate` int(10) UNSIGNED NOT NULL DEFAULT '0',
`mid` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`keywords` char(30) NOT NULL DEFAULT '',
`lastpost` int(10) UNSIGNED NOT NULL DEFAULT '0',
`scores` mediumint(8) NOT NULL DEFAULT '0',
`goodpost` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`badpost` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`voteid` mediumint(8) NOT NULL,
`notpost` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`description` varchar(255) NOT NULL DEFAULT '',
`filename` varchar(40) NOT NULL DEFAULT '',
`dutyadmin` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`tackid` int(10) NOT NULL DEFAULT '0',
`mtype` mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
`weight` int(10) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `dede_archives`
--
INSERT INTO `dede_archives` (`id`, `typeid`, `typeid2`, `sortrank`, `flag`, `ismake`, `channel`, `arcrank`, `click`, `money`, `title`, `shorttitle`, `color`, `writer`, `source`, `litpic`, `pubdate`, `senddate`, `mid`, `keywords`, `lastpost`, `scores`, `goodpost`, `badpost`, `voteid`, `notpost`, `description`, `filename`, `dutyadmin`, `tackid`, `mtype`, `weight`) VALUES
(8, 10, '0', 1364455080, 'p,f', 1, 1, 0, 220, 0, '我院与黑龙江科技大学签订科研合作与人才培养协议', '', '', '李福裿', '综合办', '/kjfh/uploads/130628/1-13062Q0313c11.jpg', 1364455080, 1372384851, 1, '黑龙江省,能源,环境,研究院,与,黑龙江,科技,', 0, 0, 0, 0, 0, 0, '黑龙江省能源环境研究院与黑龙江科技大学 签订科研合作与人才培养协议 为了更好的促进科研院所与高校之间资源的优势互补,黑龙江省能源环境研究院与黑龙江科技大学科技合作签约', '', 1, 0, 0, 5),
(9, 10, '0', 1364023020, 'p,f', 1, 1, -2, 123, 0, '中国绿色农业联盟刘连馥主席赴大庆杜尔伯特考察省科学院科技孵化中心生物质能源示范项目', '', '', '李福裿', '综合办', '/kjfh/uploads/130628/130628/1-13062Q12211928.jpg', 1364023020, 1372389432, 1, '中国,绿色农业,联盟,刘连馥,主席,赴,大庆,', 0, 0, 0, 0, 0, 0, '中国绿色农业联盟刘连馥主席赴大庆杜尔伯特考察 省科学院科技孵化中心生物质能源示范项目 中国绿色农业联盟刘连馥主席及国家财政部农发办项目审批专家组组长、华南农大食品学', '', 1, 0, 0, 1),
(10, 16, '0', 1368158040, 'p,f', 1, 1, -2, 96, 0, '我院职工赴杜尔伯特基地开展五四活动', '', '', '李福裿', '综合办', '/kjfh/uploads/allimg/130630/1-1306301149150-L.jpg', 1368158040, 1372564180, 1, '我院,职工,赴,杜尔伯特,基地,开展,五四,活动,', 0, 0, 0, 0, 0, 0, '黑龙江省能源环境研究中心(孵化中心)赴杜尔伯特基地开展五四活动 黑龙江省能源环境研究院孵化中心全体职工于5月10日到位于大庆市杜尔伯特蒙古族自治县的黑龙江省科学院', '', 1, 0, 0, 2),
(11, 10, '0', 1367911020, '', 1, 1, -2, 88, 0, '黑龙江省科学院产业化处到省能源环境研究院产业化基地调研', '', '', '李福裿', '综合办', '', 1367911020, 1372564661, 1, '黑龙江省,科学院,产业化,处,到,省,能源,环境,', 0, 0, 0, 0, 0, 0, '2013年5月7日省科学院产业化处孙宇峰处长、范延新副处长、李晓辉副处长在省能源环境研究院院长徐晓秋同志的陪同下来到位于双城的M15车用甲醇汽油复合添加剂产业化基地进行调研', '', 1, 0, 0, 3),
(12, 10, '0', 1370589360, 'p,f', 1, 1, 0, 66, 0, '“领导关怀,实地解决问题”黑龙江省科学院潘忠院长一行到能源院召开现场会', '', '', '李福裿', '综合办', '/kjfh/uploads/allimg/130630/1-1306301202010-L.jpg', 1370589360, 1372565081, 1, '“,领导关怀,实地,解决问题,”,黑龙江省,', 0, 0, 0, 0, 0, 0, '2013年6月7日潘忠院长率部分领导班子成员及相关处室负责人一行12人赴能源院孵化中心召开现场办公会议。能源院孵化中心班子成员、各部门负责人、副高职以上人员参加了', '', 1, 0, 0, 4),
(13, 10, '0', 1372557420, 'p', 1, 1, 0, 116, 0, '“磨练意志 以球会友”技术物理研究所与能源环境研究院篮球友谊赛', '', '', 'admin', '综合办', '/kjfh/uploads/allimg/130630/1-130630120Z0I3-lp.jpg', 1372557420, 1372565453, 1, '“,磨练意志,以,球,会友,”,技术,物理,研究所,', 0, 0, 0, 0, 0, 0, '为丰富职工业余文化生活增强兄弟院所之间的交流与合作提高研究院所团队的协作能力6月5日下午省科学院技术物理研究所与能源环境研究院孵化共同进行了一场篮球友谊', '', 1, 0, 0, 5),
(14, 10, '0', 1371107760, 'p,f', 1, 1, -2, 75, 0, '“探索新路、实现合作”我院与俄罗斯“梅索-克”科学生产应用中心实现科技合作', '', '', '李福裿', '综合办', '/kjfh/uploads/allimg/130630/1-1306301221320-L.jpg', 1371107760, 1372566247, 1, '“,探索新路,、,实现,合作,”,我院,与,俄罗斯,', 0, 0, 0, 0, 0, 0, '2013年06月13日省能源环境研究院孵化中心院长及相关科室人员在能源院孵化中心会议室会见了俄罗斯梅索-克科学生产应用中心总经理杰诺夫.尼古拉.杰奥里耶维奇博士一行二', '', 1, 0, 0, 6),
(15, 10, '0', 1372583640, 'p,f', 1, 1, 0, 161, 0, '“携手同行 共圆大科学院梦”省科学院自动化研究所与能源院帽儿山活动小记', '', '', '李福裿', '综合办', '/kjfh/uploads/allimg/130630/1-130630122P40-L.png', 1372583640, 1372566696, 1, '“,携手同行,共圆,大,科学院,梦,”,省,自动化,', 0, 0, 0, 0, 0, 0, '为了更好的完成收官之年的各项工作增强干劲凝心聚力鼓舞势气使大家能够在紧张而忙碌的工作中放松心情、愉悦身心同时为加强科学院各兄弟院所之间的感情6月14日', '', 1, 0, 0, 7),
(16, 27, '0', 1372657500, '', 1, 1, 0, 126, 0, '工厂化厌氧沼气发电控制系统仿真平台的开发研究', '', '', '李福裿', '综合办', '', 1372657500, 1372627302, 1, '工厂化,厌氧,沼气,发电,控制系统,仿真,平台,', 0, 0, 0, 0, 0, 0, '工厂化厌氧沼气发电控制系统仿真平台以加拿大阿尔伯塔研究院集成粪便综合利用系统IMUS设计工艺为基础针对工业化沼气发电过程中厌氧发酵工艺过程自动控制的复杂性和多样', '', 1, 0, 0, 8),
(17, 16, '0', 1353899760, 'p,f', 1, 1, 0, 111, 0, '认真学习贯彻十八大开创科研工作新局面', '', '', 'admin', '未知', '/uploads/allimg/130802/1-130P2111431507-lp.jpg', 1353899760, 1372628562, 1, '认真学习贯彻十八大开创科研工作新局面', 0, 0, 0, 0, 0, 0, '高举旗帜奋力开拓铸就辉煌业绩,领航中国信心满怀共创美好未来。举世瞩目的中国共产党第十八次全国代表大会在北京胜利闭幕以来,科技孵化中心掀起了深入学习、领会和贯彻十八', '', 1, 0, 0, 9),
(18, 16, '0', 1372821420, '', 1, 1, 0, 173, 0, '七一表彰的通知', '', '', 'admin', '未知', '', 1372821420, 1372629454, 1, '七一,表彰,的,通知,为,促进省,科学院,创新,', 0, 0, 0, 0, 0, 0, '为促进省科学院创新2020发展规划实施确保三年目的全面实现根据黑龙江省科学院关于《七一表彰的通知》的相关要求通过全体党员投票选举产生孵化中心支部为先进党组织王', '', 1, 0, 0, 10),
(19, 27, '0', 1372657500, '', 1, 1, 0, 141, 0, 'M15车用甲醇汽油复合添加剂', '', '', '李福裿', '综合办', '', 1372657500, 1372630211, 1, 'M15,车用,甲醇,汽油,复合,添加剂,《,', 0, 0, 0, 0, 0, 0, '《M15车用甲醇汽油复合添加剂》是含有辛烷值增强剂、动力增强剂、金属腐蚀抑制剂、橡胶溶胀抑制剂、助燃剂和助溶剂的复合添加剂。通过互配性试验、溶解性试验、辛烷值加和性和', '', 1, 0, 0, 11),
(20, 27, '0', 1372657500, '', 1, 1, 0, 203, 0, '大掺量甲醇汽油催化燃烧技术', '', '', '李福裿', '综合办', '', 1372657500, 1372630387, 1, '大掺,量,甲醇,汽油,催化,燃烧,技术,技术,特点,', 0, 0, 0, 0, 0, 0, '技术特点: 催化剂包括能量及辛烷值增强组份,自溶合组份、尾气净化组份等。 M45甲醇汽油合成工艺研究采用化学自溶合技术甲醇、催化剂、汽油三种物质不需要搅拌即可相互溶', '', 1, 0, 0, 12),
(21, 27, '0', 1372657440, '', 1, 1, 0, 103, 0, '直贮热太阳能技术', '', '', '李福裿', '综合办', '', 1372657440, 1372630972, 1, '热太阳能技术', 0, 0, 0, 0, 0, 0, '新能源是二十一世纪世界经济发展中最具决定力的五大技术领域之一。太阳能是一种清洁、高效和永不衰竭的新能源。在新世纪中,各国政府都将太阳能资源利用作为国家可持续发展战', '', 1, 0, 0, 13),
(22, 27, '0', 1372657440, '', 1, 1, 0, 77, 0, '油页岩中有机质的分离和分析', '', '', '李福裿', '综合办', '', 1372657440, 1372631153, 1, '油页岩,中,有机,质的,分离,和,分析,油页岩,', 0, 0, 0, 0, 0, 0, '油页岩作为非常规能源,已成为当前世界范围内开发利用的热点,由于油页岩的组成和结构的未知使得油页岩的开发、利用手段单一。如何提高其有效利用途径,发挥其在能源和化工原', '', 1, 0, 0, 14),
(23, 27, '0', 1372657380, '', 1, 1, 0, 90, 0, '集成牛粪便综合利用系统', '', '', 'admin', '未知', '', 1372657380, 1372631299, 1, '集成,牛,粪便,综合利用,系统,集成,粪便,', 0, 0, 0, 0, 0, 0, '集成粪便综合利用系统IMUS是阿尔伯塔研究院开发的工业化封闭环式沼气系统它采用独特的高温消化技术将畜禽粪便转换为能源、生物肥料和可再利用的水通过高温厌氧发酵来', '', 1, 0, 0, 15),
(24, 17, '0', 1372637700, 'p', 1, 1, 0, 77, 0, 'The Catcher in the Rye', '', '', 'admin', '未知', '/kjfh/uploads/130701/1-130F10F219336.jpg', 1372637700, 1372632968, 1, 'The,Catcher,the,Rye,The,Catche', 0, 0, 0, 0, 0, 0, '麦田里的守望者(The Catcher in the Rye)简介: The Catcher in the Rye is a 1951 novel by J. D. Salinger. Originally published for adults, it has been translated into almost all of the worlds major languages. Around 250,000 copies ar', '', 1, 0, 0, 16),
(25, 17, '0', 1372613640, 'p', 1, 1, 0, 192, 0, 'The Old Man and the Sea', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130701/1-130F10F5120-L.jpg', 1372613640, 1372633553, 1, 'The,Old,Man,and,the,Sea,老人与海,T', 0, 0, 0, 0, 0, 0, '老人与海(The Old Man and the Sea)简介: 这本书讲了古巴的一个名叫圣地亚哥的老渔夫独自一个人出海打鱼在一无所获的84天之后钓到了一条无比巨大的马林鱼。这是老人从来没见过也没', '', 1, 0, 0, 17),
(26, 17, '0', 1372633598, 'p', 1, 1, 0, 98, 0, 'Pride and Prejudice', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130701/1-130F10FA90-L.jpg', 1372633598, 1372633646, 1, 'Pride,and,Prejudice,傲慢与偏见,Prid', 0, 0, 0, 0, 0, 0, '傲慢与偏见(Pride and Prejudice)简介: Few have failed to be charmed by the witty and independent spirit of Elizabeth Bennet. Her early determination to dislike Mr. Darcy is a prejudice only matched by the folly of his arrogant pride', '', 1, 0, 0, 18),
(27, 17, '0', 1372633736, 'p', 1, 1, 0, 162, 0, 'Who Moved My Cheese', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130701/1-130F10FZ30-L.jpg', 1372633736, 1372633793, 1, 'Who,Moved,Cheese,谁,动了,我的,奶酪,Wh', 0, 0, 0, 0, 0, 0, '谁动了我的奶酪(Who Moved My Cheese)简介: Change can be a blessing or a curse, depending on your perspective. The message of Who Moved My Cheese? is that all can come to see it as a blessing, if they understand the nature of chees', '', 1, 0, 0, 19),
(28, 14, '0', 1372647488, 'p', 1, 1, -2, 79, 0, '科研人员档案', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130701/1-130F11046360-L.jpg', 1372647488, 1372647138, 1, '罗向东,罗,向东,罗向东,罗,向东,1989年,毕,', 0, 0, 0, 0, 0, 0, '罗向东1989年毕业于国防科技大学应用物理系黑龙江省能源环境研究院孵化中心工程实验室主任研究员。 具有本专业广博、坚实的基础理论知识,并有深入的研究和独到的见', '', 1, 0, 0, 20),
(29, 14, '0', 1372647199, 'p', 1, 1, -2, 107, 0, '科研人员档案', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130701/1-130F11055020-L.jpg', 1372647199, 1372647362, 1, '科研,人员,档案,王志成,王,志成,1973年,出生,', 0, 0, 0, 0, 0, 0, '王志成1973年出生学士研究员级高级工程师能源化学省级领军人才梯队后备带头人省级燃油燃煤清洁能源重点实验室成员省能源环境研究院科研与产业化办公室主任环境科', '', 1, 0, 0, 21),
(30, 27, '0', 1213940820, 'p', 1, 1, 0, 163, 0, '褐煤催化提炼轻质燃料油及石油干气技术', '', '', '李福裿', '综合办', '/kjfh/uploads/allimg/130703/1-130F3142624405.jpg', 1213940820, 1372832893, 1, '褐煤,催化,提炼,轻质,燃料油,及,石油,干气,我,', 0, 0, 0, 0, 0, 0, '我研究院经过6年的努力攻关采用低档褐煤做原料通过采用催化低温热裂解国家发明专利技术成功地从褐煤中催化提炼出20.4%轻质燃料油、9.2%石油干气及70.4%焦炭。轻质燃料油经过', '', 1, 0, 0, 22),
(31, 10, '0', 1351062900, '', 1, 1, 0, 90, 0, '能源院省级重点实验室通过省科技厅评估认定', '', '', '李福裿', '综合办', '', 1351062900, 1372833115, 1, '能源,院,省级,重点,实验室,通过省,科技厅,', 0, 0, 0, 0, 0, 0, '2012年5月在院领导班子高度重视及各部门的大力配合下能源院省级重点实验室-燃油燃煤清洁能源重点实验室参加了黑龙江省科技厅展开的省级各类科技平台评估认定工作,经自评申', '', 1, 0, 0, 23),
(32, 27, '0', 1197957360, '', 1, 1, 0, 166, 0, '奥里油或超重质沥青蒸馏轻质燃料油技术研究及产业化项目', '', '', '李福裿', '综合办', '', 1197957360, 1372906304, 1, '国家,振兴东北,老,工业,基地,科技,专项,—,由,', 0, 0, 0, 0, 0, 0, '由黑龙江省能源环境研究院承担的国家振兴东北老工业基地科技专项奥里油或超重质沥青蒸馏轻质燃料油技术研究及产业化项目2007年12月18日圆满通过国家验收。 该技术不采用传统', '', 1, 0, 0, 24),
(36, 27, '0', 1204524240, 'p', 1, 1, 0, 130, 0, '国家“九五”重点科技攻关计划——化学脱硫技术工业试验及性能考核', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH11334T9.jpg', 1204524240, 1373202916, 1, '国家,“,九五,”,重点,科技,攻关计划,—,化学,', 0, 0, 0, 0, 0, 0, '我研究院承担的国家九五重点科技攻关计划化学脱硫技术工业试验及性能考核[课题任务书编号96- A19-02-05)] 在邹家华副委员长和国家环保总局解振华局长的关怀和支持下,完成了在', '', 1, 0, 0, 28),
(35, 15, '0', 1164956520, 'p', 1, 1, -2, 59, 0, '棕榈毛油直接法转换生物柴油及催化燃烧技术', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130704/1-130F41223151b-lp.jpg', 1164956520, 1372921309, 1, '棕榈,毛油,直接,法,转换,生物,柴油,及,催化,', 0, 0, 0, 0, 0, 0, '棕榈毛油直接法转换生物柴油及催化燃烧技术,是黑龙江省能源环境研究院自主研发并完全拥有该技术知识产权的创新技术。生物柴油是被当前世界公认的石化柴油的友好替代燃料,是', '', 1, 0, 0, 27),
(33, 27, '0', 1173938880, '', 1, 1, 0, 58, 0, '国家“十五”科技攻关计划——工业锅炉脱硫试验与性能考核', '', '', '李福裿', '综合办', '', 1173938880, 1372906729, 1, '国家,“,十五,”,科技,攻关计划,—,工业,锅炉,', 0, 0, 0, 0, 0, 0, '由黑龙江省能源环境研究院承担的国家十五科技攻关计划 工业锅炉脱硫试验与性能考核项目2007年1月圆满通过国家验收。 该技术已在山西省工业锅炉上应用脱硫率高达95%。经法定', '', 1, 0, 0, 25),
(34, 27, '0', 1165903500, '', 1, 1, -1, 56, 0, '国际科技合作项目——中加沙油炼制技术合作研究', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130704/1-130F4110353502-lp.jpg', 1165903500, 1372907065, 1, '国际,科技,合作项目,—,中,加沙,油,炼制,', 0, 0, 0, 0, 0, 0, '黑龙江省能源环境研究院历时两年,圆满完成国家政府间国际科技合作项目中加沙油炼制技术合作研究。我院科技人员研发了加拿大沙油在非高压不加氢气的条件下,蒸馏出轻质燃料油', '', 1, 0, 0, 26),
(37, 27, '0', 1204524240, 'p', 1, 1, 0, 170, 0, '国家“十五”重点科技攻关计划——清洁能源项目', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH1204H08-lp.jpg', 1204524240, 1373203428, 1, '国家,“,十五,”,重点,科技,攻关计划,—,注,', 0, 0, 0, 0, 0, 0, '注:黑龙江省能源环境研究院原名为黑龙江省节油技术开发中心 我研究院与清华、中科院工程热物理所、国家电力公司西安热工院、国家电站工程技术研究中心、中国洁净煤中心等国家', '', 1, 0, 0, 29),
(38, 27, '0', 1204524180, 'p', 1, 1, 0, 204, 0, '国家“十五”重点科技攻关计划—工业锅炉脱硫试验与性能考核', '', '', '李福裿', '综合办', '/kjfh/uploads/allimg/130707/1-130FH12F2263-lp.jpg', 1204524180, 1373203731, 1, '国家,“,十五,”,重点,科技,攻关计划,—,工业,', 0, 0, 0, 0, 0, 0, '《工业锅炉脱硫试验与性能考核》是国家十五期间化学脱硫课题的深化研究脱硫效率进一步提高。燃煤锅炉烟气中污染物排放达到国家《锅炉大气污染物排放标准》要求烟气中SO2排', '', 1, 0, 0, 30),
(39, 27, '0', 1204523880, 'p', 1, 1, 0, 174, 0, '奥里油或超重质沥青蒸馏轻质燃料油技术研究', '', '', '李福裿', '综合办', '/kjfh/uploads/allimg/130707/1-130FH13314330-lp.jpg', 1204523880, 1373204177, 1, '奥里,油,或,超重,质,沥青,蒸馏,轻质,燃料油,', 0, 0, 0, 0, 0, 0, '奥里油或超重质沥青是应用常规技术提炼出汽、煤、柴油等石化产品后的终极产品,目前,国内外都是采用高温、高压、加氢气方法从奥里油或超重质沥青中加工轻质燃料油。我院研制', '', 1, 0, 0, 31),
(40, 13, '0', 1149775560, 'p', 1, 1, -2, 104, 0, 'M30车用甲醇汽油技术', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH15TU30-lp.jpg', 1149775560, 1373205647, 1, 'M30,车用,甲醇,汽油,技术,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 32),
(41, 27, '0', 1149775860, 'p', 1, 1, 0, 86, 0, '奥里油转化轻质燃料油技术', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH2192T55-lp.jpg', 1149775860, 1373206842, 1, '奥里,油,转化,轻质,燃料油,技术,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 33),
(42, 27, '0', 1149776400, 'p', 1, 1, 0, 139, 0, '含油岩石提炼轻质燃料油技术', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH2261a52-lp.jpg', 1149776400, 1373207237, 1, '含油,岩石,提炼,轻质,燃料油,技术,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 34),
(43, 27, '0', 1149776820, 'p', 1, 1, 0, 77, 0, '石脑油转化高性能燃料', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH23024364-lp.jpg', 1149776820, 1373207522, 1, '石脑油,转化,高性能,燃料,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 35),
(44, 13, '0', 1149777120, 'p', 1, 1, -2, 64, 0, 'M65型车用甲醇汽油技术', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH235301X-lp.jpg', 1149777120, 1373207774, 1, 'M65,型,车用,甲醇,汽油,技术,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 36),
(45, 13, '0', 1149777360, 'p', 1, 1, -2, 116, 0, 'M18型车用甲醇汽油技术', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH23910G3-lp.jpg', 1149777360, 1373207983, 1, 'M18,型,车用,甲醇,汽油,技术,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 37),
(46, 13, '0', 1149777660, 'p', 1, 1, -2, 117, 0, 'M20型车用甲醇汽油技术', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH24211416-lp.jpg', 1149777660, 1373208167, 1, 'M20,型,车用,甲醇,汽油,技术,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 38),
(47, 9, '0', 1375410076, '', 1, 1, 0, 113, 0, '新版网站上线', '', '', 'admin', '未知', '', 1375410076, 1375234895, 1, '通知,通知,', 0, 0, 0, 0, 0, 0, '能源环境研究院(孵化中心)新版网站现已重新上线啦!', '', 1, 0, 0, 39),
(149, 10, '0', 1445228400, 'p,f', 1, 1, 0, 157, 0, '黑龙江省能源环境学会成立大会暨首届学术年会在哈顺利召开', '', '', 'admin', '未知', '/uploads/allimg/151021/1-15102112162D17.jpg', 1445228400, 1445401129, 1, '黑龙江省,能源,环境,学会,成立,大会,暨,首届,', 0, 0, 0, 0, 0, 0, '2015年10月18日黑龙江省能源环境学会成立大会暨首届学术年会在哈隆重举行。此次活动由省能源环境学会筹备委员会主办省能源环境研究院、哈工大城市水资源与水环境国家重点实', '', 1, 0, 0, 137),
(49, 9, '0', 1376638307, '', 1, 1, -2, 139, 0, '关于举办万方数据平台使用培训的通知', '', '', '李福裿', '综合办', '', 1376638307, 1376637734, 1, '万方,数据,平台,使用,培训,高效,检索,与,文献,', 0, 0, 0, 0, 0, 0, '高效检索与文献分析万方数据知识服务平台使用详解培训大概定在本月20日或23日请大家留意。', '', 1, 0, 0, 41),
(50, 9, '0', 1376292720, '', 1, 1, 0, 105, 0, '关于举办Triz理论讲座的通知', '', '', '李福裿', '综合办', '', 1376292720, 1376638156, 1, 'Triz,理论,讲座,通知,题目,Triz,理论,时间,8月', 0, 0, 0, 0, 0, 0, '题目Triz理论 时间8月16日下午100 地点孵化中心8楼会议室 主讲:王志成 欢迎各位同事积极参加!', '', 1, 0, 0, 42),
(51, 10, '0', 1376640574, 'p,f', 1, 1, 0, 165, 0, '我院举办TRIZ科技创新讲座', '', '', '李福裿', '综合办', '/uploads/allimg/130816/1-130Q6160551549-lp.jpg', 1376640574, 1376640538, 1, '我院,举办,TRIZ,科技创新,讲座,8月,16日,我院,', 0, 0, 0, 0, 0, 0, '8月16日我院在8楼会议室举办了TRIZ科技创新讲座由环境科学研究室主任王志成同志进行宣讲。此次讲座是根据我院2013年的工作指示精神而安排旨在加强和提升院科研人员的创新能', '', 1, 0, 0, 43),
(52, 9, '0', 1376895492, '', 1, 1, 0, 115, 0, '关于万方数据“高效检索与文献分析”专题培训的通知', '', '', '李福裿', '综合办', '', 1376895492, 1376895481, 1, '关于,万方,数据,“,高效,检索,与,文献,分析,', 0, 0, 0, 0, 0, 0, '培训主题:高效检索与文献分析万方数据知识服务平台使用详解 培训讲师:万方数据周雷 培训时间2013年8月23日13:30---1630 培训地点嵩山路15号省科学院会议中心', '', 1, 0, 0, 44),
(53, 16, '0', 1376537220, '', 1, 1, 0, 145, 0, '倾听民意 关注发展', '', '', '李福裿', '综合办', '', 1376537220, 1377474873, 1, '倾听,民意,关注,发展,省,科学院,群众,', 0, 0, 0, 0, 0, 0, '--省科学院群众路线教育实践活动调研组到我院调研 8月15日下午省科学院群众路线教育实践活动调研组来到省能源环境研究院孵化中心召开听取群众意见调研会议。省能源环境', '', 1, 0, 0, 45),
(54, 17, '0', 1377579749, '', 1, 1, 0, 121, 0, '生物质能源发展趋势', '', '', 'admin', '能源化学研究室', '', 1377579749, 1377579732, 1, '生物质,能源,发展,趋势,生物质,能源,发展,', 0, 0, 0, 0, 0, 0, '生物质能源发展趋势', '', 1, 0, 0, 46),
(55, 17, '0', 1377579819, '', 1, 1, 0, 64, 0, '我国生物质能源的特点和发展方向', '', '', 'admin', '未知', '', 1377579819, 1377579960, 1, '我国,生物质,能源,的,特点,和,发展方向,请,', 0, 0, 0, 0, 0, 0, '请点击下载: 我国生物质能源的特点和发展方向', '', 1, 0, 0, 47),
(56, 10, '0', 1377593516, 'p,f', 1, 1, 0, 105, 0, '黑龙江省能源环境研究院与延寿县技术合作洽谈', '', '', '刘伟', '生物质能源实验室', '/uploads/allimg/130827/1-130RGA504317-lp.JPG', 1377593516, 1377593755, 1, '黑龙江省,能源,环境,研究院,与,延,寿县,2013年,', 0, 0, 0, 0, 0, 0, '2013年8月22日应延寿县政协主席杨晓春的邀请黑龙江省能源环境研究院院长徐晓秋、副院长关春玲同志以及科研办和财务办同志一行五人来到延寿县交流访问。 徐晓秋院长一行受', '', 1, 0, 0, 48),
(57, 10, '0', 1381388940, 'p,f', 1, 1, 0, 112, 0, '能源环境研究院举办“马来西亚培训学习”经验交流会', '', '', '王志成', '环境科学与节能技术研究', '/uploads/allimg/131010/1-13101016351M43-lp.JPG', 1381388940, 1381394157, 1, '能源,环境,研究院,孵化,中心,举办,“,能源,院,', 0, 0, 0, 0, 0, 0, '能源院孵化中心举办马来西亚培训学习经验交流会 2013年9月18日下午能源院孵化中心举办了马来西亚培训学习经验交流会。我院青年科技人员张玥同志做了内容丰富的培训学习汇报', '', 1, 0, 0, 49),
(58, 10, '0', 1382949016, 'p,f', 1, 1, -2, 103, 0, '院产业处领导来我院产业基地检查指导工作', '', '', '王志成', '科研与产业化办公室', '/uploads/allimg/131028/1-13102Q620470-L.jpg', 1382949016, 1382949000, 1, '院,产业,处,领导,来,我院,基地,检查,指导工作,', 0, 0, 0, 0, 0, 0, '院产业处领导来我院产业基地检查指导工作 2013年10月11日上午院产业处孙宇峰处长、范延新、曹海虹副处长来到我院双城产业基地检查院产业化基金项目《M15车用甲醇汽油复合添加剂', '', 1, 0, 0, 50),
(59, 10, '0', 1383203593, 'p,f', 1, 1, 0, 153, 0, '能源院四项课题顺利通过鉴定', '', '', '王志成', '科研与产业化办公室', '/uploads/allimg/131031/1-131031151Z0534-lp.JPG', 1383203593, 1383204010, 1, '能源,院,四项,课题,顺利,通过鉴定,10月,23日,', 0, 0, 0, 0, 0, 0, '10月23日我院成功地召开科学院预研课题利用页岩油制取油砂分离剂的研究、全馏分页岩油改质转化轻质运输燃料工艺的研究院青年基金膜生物反应器中改性复合膜的制备与性能研究', '', 1, 0, 0, 51),
(60, 9, '0', 1385605260, '', 1, 1, 0, 52, 0, '关于认真落实党的群众路线教育实践活动整改工作的通知', '', '', '李福裿', '综合办', '', 1385605260, 1389579876, 1, '关于,认真,落实,党的,群众,路线教育,实践,院,', 0, 0, 0, 0, 0, 0, '院各部门: 为深入推进党的群众路线教育实践活动,认真做好整改工作,使整改工作扎实、有序推进,现就有关要求通知如下: 一、提高思想认识,增强工作紧迫性 整改落实是确保党', '', 1, 0, 0, 52),
(61, 10, '0', 1379820480, '', 1, 1, -2, 81, 0, '践行群众路线、深入一线检查', '', '', 'admin', '未知', '', 1379820480, 1389669663, 1, '践行,群众路线,、,深入,一线,检查,省,财政厅,', 0, 0, 0, 0, 0, 0, '--省财政厅庄炳艳处长到能源院检查维修施工情况 9月22日下午省财政厅教科文处庄炳艳处长、曹铁峰省科学院条财处沙长青处长、张云志副处长一同到我院实验楼维修项目施工现', '', 1, 0, 0, 53),
(62, 10, '0', 1392772320, 'p,f', 1, 1, -2, 128, 0, '践行群众路线、科技服务先行', '', '', '王志成', '科研与产业化办公室', '/uploads/allimg/140225/1-1402250U9100-L.jpg', 1392772320, 1393290138, 1, '践行,群众路线,、,科技服务,先行,为,实践,', 0, 0, 0, 0, 0, 0, '为实践党的群众路线活动2014年2月19日黑龙江省能源环境研究院院长徐晓秋、省科学院外事处处长高德玉以及科研办和寒区生物质能源技术研究中心科研人员等5名同志来到齐齐哈', '', 1, 0, 0, 54),
(63, 10, '0', 1394590680, 'p,f', 1, 1, -2, 146, 0, '积极作为 凝聚推动环保事业正能量<br />--省科学院产业化处到能源院考察指导工作', '', '', '李福裿', '综合办', '/uploads/allimg/140312/1-140312141110525.JPG', 1394590680, 1394604796, 1, '积极,作为,凝聚,推动,环保,事业,正,能量,省,', 0, 0, 0, 0, 0, 0, '2014年3月12日黑龙江省科学院产业化处李骏处长一行到我院考察指导工作。李骏处长考察了我院改造后的综合实验楼和中试实验室并认真听取了我院近期的工作成果以及未来的发展计', '', 1, 0, 0, 55),
(66, 10, '0', 1395111690, 'p,f', 1, 1, -2, 182, 0, '黑龙江省能源环境研究院<br/>首批科研人员赴清华大学学习交流', '', '', '李福裿', '综合办公室', '/uploads/allimg/140318/1-14031Q05955136-lp.JPG', 1395111690, 1395111651, 1, '黑龙江省,能源,环境,研究院,首批,科研,人员,', 0, 0, 0, 0, 0, 0, '为学习借鉴先进技术汲取科研经验我院选派的首批科研骨干于3月14日起程赴清华大学开展学习交流活动省科学院王钢副院长、省能源院徐晓秋院长和关春玲副院长亲自到场送行', '', 1, 0, 0, 58),
(65, 10, '0', 1394493180, 'p,f', 1, 1, -2, 109, 0, '下基层 接地气<br/>--省科学院产业化处与能源院', '', '', '王志成', '科研与产业化办公室', '/uploads/allimg/140318/1-14031Q01031493-lp.jpg', 1394493180, 1395108865, 1, '下基层,接地,气,省,科学院,产业化,处,与,能源,', 0, 0, 0, 0, 0, 0, '为进一步了解黑龙江省各地农作物秸秆资源化利用现状2014年3月11日黑龙江省科学院产业化处处长李骏黑龙江省能源环境研究院院长徐晓秋黑龙江省能源环境研究院总工程师高德', '', 1, 0, 0, 57),
(67, 10, '0', 1394838720, 'p,f', 1, 1, 0, 155, 0, '院校交流,优势互补,扩大人才互动<br/>--能源院科研人员赴清华大学学习', '', '', 'admin', '未知', '/uploads/allimg/140318/1-14031Q05955136-lp.JPG', 1394838720, 1395270567, 1, '院校,交流,优势互补,扩大,人才,互动,能源,院,', 0, 0, 0, 0, 0, 0, '根据2013年清华大学杨旭东教授来院指导工作期间双方达成的关于人才培养方面的协议我院从现在开始选派科研人员赴清华大学学习首批人员一行四人于3月14日启程。省科学院王钢副', '', 1, 0, 0, 59),
(68, 10, '0', 1395906505, 'h,p,f', 1, 1, 0, 112, 0, '贯彻精神 认真部署</br>--省能源院召开科研工作会议', '', '', '李福裿', '综合办公室', '/uploads/allimg/140327/1-14032G52Z0Y3-lp.JPG', 1395906505, 1395905599, 1, '贯彻,精神,认真,部署,省,能源,院,召开,3月,', 0, 0, 0, 0, 0, 0, '3月27日上午我院2014年创新团队建设工作会议在能源院会议室召开各科研部门负责人出席会议。 徐晓秋院长主持会议并发言,在发言中,徐晓秋院长指出,要紧密围绕郭春景院长到', '', 1, 0, 0, 60),
(69, 17, '0', 1396199344, '', 1, 1, 0, 71, 0, '油页岩加工工艺进展', '', '', '陈松', '能源化学研究室', '', 1396199344, 1396199472, 1, '油页岩,加工,工艺,进展,我国,页岩,油中,约,', 0, 0, 0, 0, 0, 0, '我国页岩油中约含有40%左右的轻柴油馏分约含有45%左右的重柴油馏分,其十六烷值较高,经过精制后可作高速柴油机燃料。我国页岩重柴油馏分含有大量石蜡,也称为含蜡油,从中脱', '', 1, 0, 0, 61),
(70, 17, '0', 1396200653, 'p', 1, 1, 0, 50, 0, '煤焦油深加工现状、新技术和发展方向', '', '', '陈松', '能源化学研究室', '/uploads/140331/1-140331013114D9.jpg', 1396200653, 1396199748, 1, '煤焦油,深加工,现状,、,新技术,和,发展方向,', 0, 0, 0, 0, 0, 0, '煤焦油行业是一个比较传统的行业尽管近30年来受到石油化工行业的激烈竞争煤焦油行业仍然具有较大的发展潜力尤其近几年来随着新材料和钢铁行业的发展煤焦油资源的高效', '', 1, 0, 0, 62),
(71, 17, '0', 1396200185, 'p', 1, 1, 0, 83, 0, '页岩气真的能掀起一场能源革命吗?', '', '', '陈松', '能源化学研究室', '/uploads/140331/1-140331012335D4.jpg', 1396200185, 1396199898, 1, '页岩,气,真的,能,掀起,一场,能源,革命,吗,', 0, 0, 0, 0, 0, 0, '2012年争论最热烈的能源话题莫过于页岩气革命。而随着隆冬来临对这场革命的关注热度也在降温。激烈的唱多派声音有些嘶哑了务实派的冷静思考开始占上风。这种转变有点成也', '', 1, 0, 0, 63),
(72, 17, '0', 1396201497, '', 1, 1, -2, 167, 0, '页岩气真的能掀起一场能源革命吗?', '', '', '陈松', '能源化学研究室', '', 1396201497, 1396201537, 1, '页岩,气,真的,能,掀起,一场,能源,革命,吗,', 0, 0, 0, 0, 0, 0, '2012年争论最热烈的能源话题莫过于页岩气革命。而随着隆冬来临对这场革命的关注热度也在降温。激烈的唱多派声音有些嘶哑了务实派的冷静思考开始占上风。这种转变有点成也', '', 1, 0, 0, 64),
(73, 16, '0', 1390446180, '', 1, 1, 0, 173, 0, '我院第一届工会委员会成立', '', '', '李福裿', '综合办公室', '', 1390446180, 1396233753, 1, '我院,召开,工会,委员会,第一次,会员,大会,', 0, 0, 0, 0, 0, 0, '经过近半年的筹备依据科学院的批复1月20日我院党委组织召开了黑龙江省能源环境研究院工会委员会第一次会员大会选举工会主席1人工会委员4人发展会员26人。 随着工会', '', 1, 0, 0, 65),
(74, 10, '0', 1397798542, 'p,f', 1, 1, -2, 62, 0, '加拿大李筱梅博士到我院访问交流', '', '', '苏小红', '生物质能源实验室', '/uploads/allimg/140418/1-14041Q31URc-lp.JPG', 1397798542, 1397798442, 1, '加拿大,李筱梅,博士,到,我院,访问,交流,为,', 0, 0, 0, 0, 0, 0, '为深入开展厌氧发酵技术的应用研究交流IMUS技术的推广经验2014年4月17日阿尔伯塔创新能源环境研究院李筱梅博士应邀到能源院访问在能源院徐晓秋院长、高德玉总工程师及相', '', 1, 0, 0, 66),
(75, 10, '0', 1401333060, 'p,f', 1, 1, 0, 66, 0, '我院创新团队工作落实情况', '', '', '王志成', '科研办', '/uploads/allimg/140604/1-1406041105230-L.jpg', 1401333060, 1401851352, 1, '院,创新,团队,工作,落实,情况,2014年,3月,24日,', 0, 0, 0, 0, 0, 0, '2014年3月24日,郭院长带队调研我院学科创新团队工作,作出重要指示:调整研究方向,找准主线,抓住切入点,确立目标,建设创新团队。我院领导班子对郭院长的指示特别重视,先后', '', 1, 0, 0, 67),
(76, 16, '0', 1401762240, 'p,f', 1, 1, 0, 194, 0, '开展消防演练 提高防火意识', '', '', '李福裿', '综合办公室', '/uploads/allimg/140605/1-1406051021203R-lp.JPG', 1401762240, 1401934956, 1, '开展,消防,演练,提高,防火,意识,为,进一步,', 0, 0, 0, 0, 0, 0, '为进一步提高我院职工的消防安全意识检验与巩固职工掌握灭火器材扑灭火灾的能力6月3日下午我院举行了消防演习活动各部门防火负责人及职工约15人参加了演习。 演习由我', '', 1, 0, 0, 68),
(77, 9, '0', 1401936960, '', 1, 1, 0, 169, 0, '关于省科学院系统乒乓球比赛的通知', '', '', 'admin', '未知', '', 1401936960, 1401937252, 1, '关于省,科学院,系统,乒乓球,比,赛的,通知,院,', 0, 0, 0, 0, 0, 0, '院各部门: 省科学院系统乒乓球赛拟定于6月27日召开比赛项目设定为团体比赛男单、女单、男双、女双和混双请各部门乒乓球好手踊跃报名。 报名地点:综合办 联 系 人:赵', '', 1, 0, 0, 69),
(78, 17, '0', 1401937777, '', 1, 1, 0, 128, 0, '我国液化石油气LPG发展现状及趋势', '', '', 'admin', '能源化学研究室', '', 1401937777, 1401937876, 1, '我国,液化,石油气,LPG,发展现状,及,趋势,2013年,', 0, 0, 0, 0, 0, 0, '2013年原油依旧维持箱体震荡格局走势与品种的季节性规律密切相关。在3月、9月形成两个高点在10、11月整体维持弱势低点曾触及82美元/桶。总体上是下行的趋势。2012年国际液化', '', 1, 0, 0, 70),
(79, 17, '0', 1401938011, '', 1, 1, 0, 84, 0, '我国替代能源的现实选择', '', '', 'admin', '能源化学研究室', '', 1401938011, 1401938002, 1, '我国,替代,能源,的,现实,选择,以,煤炭,为主,', 0, 0, 0, 0, 0, 0, '以煤炭为主的能源消耗结构,是我国空气污染不断恶化的主要原因。在全国上下寻找治理污染特别是治理雾霾突破口的关键时期,发展清洁的替代能源,推动我国能源结构的调整优化,', '', 1, 0, 0, 71),
(80, 17, '0', 1401938023, '', 1, 1, 0, 90, 0, '生物燃料发展重心将向原料生产倾斜', '', '', 'admin', '能源化学研究室', '', 1401938023, 1401938248, 1, '生物,燃料,发展,重心,将向,原料,生产,倾斜,', 0, 0, 0, 0, 0, 0, '生物燃料通常指生物液体燃料,是重要的交通替代燃料。相对于其他替代燃料,生物燃料具有与现有基础设施兼容性好、能量密度高、清洁低碳、资源可再生且资源基础广阔等优点,而', '', 1, 0, 0, 72),
(81, 9, '0', 1402543792, '', 1, 1, 0, 51, 0, '我院关于召开2014年上半年工作会议的通知', '', '', '李福裿', '综合办公室', '', 1402543792, 1402543920, 1, '我院,关于,召开,2014年,上半年,工作,会议,的,', 0, 0, 0, 0, 0, 0, '院各部门: 2014年已经过半为及时总结上半年工作情况并对下半年工作做好规划和部署我院决定召开上半年工作会议具体事宜如下 一、会议时间暂定为6月末-7月初。 二、会', '', 1, 0, 0, 73),
(82, 9, '0', 1402543792, '', 1, 1, -2, 51, 0, '我院关于召开2014年上半年工作会议的通知', '', '', '李福裿', '综合办公室', '', 1402543792, 1402543961, 1, '我院,关于,召开,2014年,上半年,工作,会议,的,', 0, 0, 0, 0, 0, 0, '院各部门: 2014年已经过半为及时总结上半年工作情况并对下半年工作做好规划和部署我院决定召开上半年工作会议具体事宜如下 一、会议时间暂定为6月末-7月初。 二、会', '', 1, 0, 0, 73),
(83, 16, '0', 1404128880, 'p,f', 1, 1, 0, 104, 0, '我院开展系列活动庆祝中国共产党成立93周年', '', '', '李福裿', '综合办公室', '/uploads/allimg/140701/1-140F10F0349B-lp.JPG', 1404128880, 1404169510, 1, '我院,开展,系列,活动,庆祝,中国共产党,成立,', 0, 0, 0, 0, 0, 0, '为了隆重庆祝中国共产党成立93周年我院党委组织全体党员及群众开展党史知识测试等活动祝福党的生日。活动以共筑中国梦喜迎建党93周年为主题通过回顾93年来党的光辉历程、认', '', 1, 0, 0, 75),
(84, 16, '0', 1403825160, '', 1, 1, 0, 96, 0, '我院参加省科学院乒乓球赛', '', '', '赵娴', '综合办公室', '', 1403825160, 1404170734, 1, '我院,参加省,科学院,乒乓球赛,由,院,', 0, 0, 0, 0, 0, 0, '由院机关党委举办的省科学院职工乒乓球赛在省科学院石油化学研究院举行共70多名选手参加了比赛。比赛分三组为团体比赛。我院共有6名队员参加比赛虽然大家平时没有经过专', '', 1, 0, 0, 76),
(85, 10, '0', 1404289740, '', 1, 1, 0, 193, 0, '我院参加温室、沼气产品创新联盟暨产学研合作对接会', '', '', '王志成', '科研与产业化办公室', '', 1404289740, 1404193349, 1, '我究,院,参加,温室,、,沼气,产品,创新,联盟,', 0, 0, 0, 0, 0, 0, '2014年6月28日黑龙江省能源环境研究院科研办主任王志成同志参加了省科技厅组织召开的温室、沼气产品创新联盟暨产学研合作对接会。会议主要内容1.研究温室、沼气产品产业发展的', '', 1, 0, 0, 77),
(86, 10, '0', 1404372905, '', 1, 1, 0, 68, 0, '我院参加全省高校科研院所知识产权管理工作座谈会', '', '', '王志成', '科研办', '', 1404372905, 1404373069, 1, '我院,参加,全省,高校,科研院所,知识产权,', 0, 0, 0, 0, 0, 0, '2014年7月2日在黑龙江工会大厦我院科研办主任王志成同志参加了省专利管理局组织的全省高校科研院所知识产权管理工作座谈会。与会的有省专利管理局马峰副局长和综合处领导', '', 1, 0, 0, 78),
(87, 10, '0', 1404441769, 'p,f', 1, 1, 0, 168, 0, '加拿大阿尔伯塔大学医学和病理学实验室庞晓莉教授</br>到我院进行讲座', '', '', '', '综合办公室', '/uploads/allimg/140703/1-140F31AT4621.JPG', 1404441769, 1404377947, 1, '加拿大,阿尔伯塔,大学,医学,和,病理学,7月,', 0, 0, 0, 0, 0, 0, '7月2日加拿大阿尔伯塔大学医学和病理学实验室庞晓丽教授Pang XiaoliLilly),在能源院一楼会议室就如何建立分子生物实验室举行了精彩的讲座,我院徐晓秋院长、关春玲副院长及部分', '', 1, 0, 0, 79),
(88, 10, '0', 1405044708, 'p,f', 1, 1, 0, 149, 0, '我院召开上半年工作会议', '', '', 'admin', '未知', '/uploads/allimg/140709/1-140F913010c25-lp.JPG', 1405044708, 1404882364, 1, '我院,召开,上半年,工作,会议,7月,9日,我院,在,', 0, 0, 0, 0, 0, 0, '7月9日我院在江北会议室召开了由全体职工参加的2014年上半年工作会议。会议由党委书记、院长徐晓秋同志主持。会上各部门负责人分别汇报了本部门上半年工作进展情况并提出了', '', 1, 0, 0, 80),
(89, 10, '0', 1405568134, 'p,f', 1, 1, 0, 121, 0, '热烈祝贺我院三名科研工作者获得ACI及MOHRSS认证', '', '', 'admin', '未知', '/uploads/allimg/140717/1-140GG1245EH-lp.jpg', 1405568134, 1405567749, 1, '热烈,祝贺,我院,三名,科研,工作者,获得,ACI,及,', 0, 0, 0, 0, 0, 0, '近日我院三名科研工作者通过了ACI美国认证协会和MOHRSS中国人力资源和社会保障部联合举办的能源管理、能源审计及能源评估岗位培训考核并获得ACI和MOHRSS颁发的国际注册', '', 1, 0, 0, 81),
(90, 17, '0', 1406162786, '', 1, 1, 0, 173, 0, '油页岩低温热解的影响因素', '', '', 'admin', '能源化学研究室', '', 1406162786, 1406162870, 1, '油页岩,低,温热,解,的,影响,因素,油页岩,热解,', 0, 0, 0, 0, 0, 0, '油页岩热解生成的液态产物汽化后,与气态产物一起首先通过页岩内部的空隙和毛细管扩散到油页岩块之外,然后通过页岩间的空隙至页岩层之外,最后通过页岩层外空间导出干馏装置', '', 1, 0, 0, 82),
(91, 17, '0', 1406162876, '', 1, 1, 0, 180, 0, '油页岩综合利用行业发展概述', '', '', 'admin', '能源化学研究室', '', 1406162876, 1406163096, 1, '油页岩,综合利用,行业发展,概述,油页岩,干馏,', 0, 0, 0, 0, 0, 0, '油页岩干馏分为两种,即地下干馏和地上干馏。地下干馏也被称为就地干馏,是在地下对油页岩矿层进行加热和裂解,促使其转化为高品质的油或气,再通过相关通道将油、气分别提取', '', 1, 0, 0, 83),
(92, 10, '0', 1406857860, 'p,f', 1, 1, 0, 111, 0, '热烈祝贺我院选手在省科学院外语大赛中获得一等奖', '', '', 'admin', '未知', '/uploads/allimg/140801/1-140P1113112H5-lp.jpg', 1406857860, 1406863952, 1, '热烈,祝贺,我院,选手,在,省,科学院,外语,大,', 0, 0, 0, 0, 0, 0, '7月30日省科学院第5届外语大赛在高研院举行经过个人演讲评委提问团体展示等环节我院参赛的选手不负重望取得了优异的成绩。其中杨光获得个人赛一等奖陆佳获个人', '', 1, 0, 0, 84),
(93, 10, '0', 1407114060, 'p,f', 1, 1, -2, 91, 0, '省环科院专家考察我院杜蒙IMUS装置', '', '', 'admin', '未知', '/uploads/allimg/140909/1-140ZZZTVB-lp.jpg', 1407114060, 1410225440, 1, '省,环科,院,专家,考察,我院,杜蒙,IMUS,装置,', 0, 0, 0, 0, 0, 0, '2014年7月29日我院徐晓秋院长、关春玲副院长陪同省环科院叶真主任、黑龙江科技大学周国江教授到我院位于杜蒙的集成粪便综合利用系统IMUS示范装置考察。徐院长向两位专家详', '', 1, 0, 0, 85),
(94, 17, '0', 1410225560, '', 1, 1, 0, 172, 0, '世界原油加工消费现状和趋势', '', '', 'admin', '未知', '', 1410225560, 1410225647, 1, '世界,原油,加工,消费,现状,和,趋势,截至,', 0, 0, 0, 0, 0, 0, '截至2012年底世界原油探明储量2358亿吨比2011年增长0.9%。原油储量最多的中东地区保持小幅增长已探明储量为1093亿吨同比增长1.2%。原油资源仍然集中在欧佩克,欧佩克控制着', '', 1, 0, 0, 86),
(95, 17, '0', 1410225654, '', 1, 1, 0, 150, 0, '我国炼油产能现状分析', '', '', 'admin', '未知', '', 1410225654, 1410225771, 1, '我国,炼油,产能,现状,分析,目前,我国,炼油,', 0, 0, 0, 0, 0, 0, '目前我国炼油产能严重过剩2013年炼厂平均开工率仅67.3%同比下降了2.4个百分点。受益于成品油定价机制调整2013年我国炼油行业实现了扭亏实现利润400亿元。但由于一方面炼厂产', '', 1, 0, 0, 87),
(96, 17, '0', 1410225774, '', 1, 1, 0, 75, 0, '中国能源如何应对全球能源格局的转变</br>—2035年前世界能源局势预测', '', '', 'admin', '未知', '', 1410225774, 1410225892, 1, '中国,能源,如何,应对,全球,格局,的,转变,—,', 0, 0, 0, 0, 0, 0, '当前,国际能源格局正处于深刻变化之中,全球经济期待新的增长引擎拉动,欧元区危机日益加深,延宕世界经济复苏,西方社会整体陷入体制性危机。国际社会陷于全球经济危机后的', '', 1, 0, 0, 88),
(97, 10, '0', 1413361286, 'p,f', 1, 1, 0, 92, 0, '营造健康运动氛围,丰富职工业余生活</br>-省能源环境研究院开展羽毛球比赛', '', '', 'admin', '未知', '/uploads/allimg/141011/1-141011112F0224-lp.JPG', 1413361286, 1412998149, 1, '营造,健康,运动,氛围,丰富,职工,业余,生活,省,', 0, 0, 0, 0, 0, 0, '为使我院职工在工作之余放松身心劳逸结合经过精心筹备我院羽毛球比赛于9月28日正式开始此次活动得到了院领导的大力支持和职工的积极响应。 比赛中选手们挥舞球拍、腾挪', '', 1, 0, 0, 89),
(98, 10, '0', 1416798314, 'p,f', 1, 1, 0, 76, 0, '知识产权助推创新</br>--省能源院专利知识培训', '', '', 'admin', '未知', '/uploads/allimg/141124/1-141124110J93I-lp.jpg', 1416798314, 1416798528, 1, '知识产权,助推,创新,省,能源,院,专利,知识,', 0, 0, 0, 0, 0, 0, '11月17日第八届中国专利周黑龙江省系列活动正式启幕。为配合专利周系列活动11月20日黑龙江省能源环境研究院举办了知识产权培训讲座。特邀黑龙江省知识产权服务中心副主任', '', 1, 0, 0, 90),
(99, 28, '0', 1494581758, 'p,f', 1, 1, 0, 140, 0, '黑龙江省科学技术进步一等奖', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH2593T91-lp.jpg', 1494581758, 1416813470, 1, '科学技术,进步,一等奖,科学技术,发明,一等奖,', 0, 0, 0, 0, 0, 0, '科学技术发明一等奖 科学技术进步一等奖 全国化工系统技术二等奖', '', 1, 0, 0, 10),
(102, 29, '0', 1417162645, '', 1, 1, 0, 92, 0, '论文《木焦油预处理制取加氢原料的方法》', '', '', 'admin', '未知', '', 1417162645, 1417162693, 1, '论文,《,木焦油预处理制取加氢原料的方法,', 0, 0, 0, 0, 0, 0, '以廊乡林业局木焦油为原料采取萃取破乳液固分离蒸馏脱水的方法对木焦油原料进行净化预处理脱除原料中的水分和杂质等非理想组分使木焦油的含水量降至0.56%,固体含量降至', '', 1, 0, 0, 94),
(103, 29, '0', 1417162711, '', 1, 1, 0, 188, 0, '论文《轻质木焦油加氢脱氧的影响因素》', '', '', 'admin', '未知', '', 1417162711, 1417162733, 1, '论文,《,轻质木焦油加氢脱氧的影响因素,》,', 0, 0, 0, 0, 0, 0, '摘要在固定床加氢微反装置上采用硫化态NiMoW/Al 2 O 3 催化剂以廊乡林业局轻质木焦油300℃馏分为原料考察反应条件对加氢脱氧性能的影响。结果表明适当降低反应空速、', '', 1, 0, 0, 95),
(104, 29, '0', 1417162822, '', 1, 1, 0, 139, 0, '论文《<M25车用甲醇汽油>企业标准解读》', '', '', 'admin', '未知', '', 1417162822, 1417162791, 1, '论文,《,M25车用甲醇汽油,》,摘要,为,推动,', 0, 0, 0, 0, 0, 0, '摘要:为推动车用燃料的多元化发展,拓展代用燃料的应用领域,经黑龙江省科技厅推介,黑龙江省能源环境研究院与哈尔滨市依兰巨澜清洁能源发展有限公司共同签订了《产研技术研', '', 1, 0, 0, 96),
(105, 29, '0', 1417162846, '', 1, 1, 0, 199, 0, '论文《<车用汽油>的胶质指标解析》', '', '', 'admin', '未知', '', 1417162846, 1417162893, 1, '论文,《,<车用汽油>的胶质指标解析,》,摘要,', 0, 0, 0, 0, 0, 0, '摘要近几年随着我国汽车工业的快速发展石油能源快速消耗车辆尾气排放对环境的污染日益增加。考虑到已经实施国三和将要实施的国四、国五标准要求国家发布了GB1793020', '', 1, 0, 0, 97),
(106, 29, '0', 1417162895, '', 1, 1, 0, 164, 0, '论文《调和国IV标准车用汽油的抗爆剂研究》', '', '', 'admin', '未知', '', 1417162895, 1417162950, 1, '论文,《,调和国IV标准车用汽油的抗爆剂研究,', 0, 0, 0, 0, 0, 0, '摘要针对提高油品辛烷值使调和后汽油的质量指标符合GB17930-2011/XG1-2012国家《车用汽油》IV标准的目的。本文创新了一种由0.365%MMT、60%MTBE、8%TBAC、3.635%二氯甲烷、28%抗爆助剂m/m', '', 1, 0, 0, 98),
(107, 29, '0', 1417076880, '', 1, 1, 0, 109, 0, '论文《沼气工程工艺参数的优化模型研究》', '', '', 'admin', '未知', '', 1417076880, 1417163371, 1, '论文,《,沼气工程工艺参数的优化模型研究,', 0, 0, 0, 0, 0, 0, '《自动化技术与应用》2014.06', '', 1, 0, 0, 99),
(108, 29, '0', 1417077000, '', 1, 1, 0, 141, 0, '专利《一种搅拌破壳于一体的发酵反应器》', '', '', 'admin', '未知', '', 1417077000, 1417163597, 1, '专利,《,一种搅拌破壳于一体的发酵反应器,', 0, 0, 0, 0, 0, 0, '专利名称 申请号 授 权 时 间 一种搅拌破壳于一体的发酵反应器 (实用新型,王玉鹏) 201320512530.5 2014.1.15', '', 1, 0, 0, 100),
(109, 29, '0', 1417077180, '', 1, 1, 0, 71, 0, '专利《一种太阳能集热控制系统》', '', '', 'admin', '未知', '', 1417077180, 1417163704, 1, '专利,《,一种太阳能集热控制系统,》,专利,', 0, 0, 0, 0, 0, 0, '专利名称 申请号 授 权 时 间 一种太阳能集热控制系统 (实用新型,罗向东) 201320573185.6 2014.2.19', '', 1, 0, 0, 101),
(110, 29, '0', 1417077300, '', 1, 1, 0, 132, 0, '一种厌氧发酵分段控温系统', '', '', 'admin', '未知', '', 1417077300, 1417163740, 1, '一种,厌氧,发酵,分段,控温,系统,专利,名称,', 0, 0, 0, 0, 0, 0, '专利名称 申请号 授 权 时 间 一种厌氧发酵分段控温系统 (实用新型,秦国辉) 201320509483.9 2014.1.8', '', 1, 0, 0, 102),
(111, 29, '0', 1417163743, '', 1, 1, 0, 105, 0, '专利《一种高温厌氧发酵运行参数的无线实时监测系统》', '', '', 'admin', '未知', '', 1417163743, 1417163815, 1, '专利,《,专利,名称,申请,号,授,权,时,间,一种,', 0, 0, 0, 0, 0, 0, '专利名称 申请号 授 权 时 间 一种高温厌氧发酵运行参数的无线实时监测系统(实用新型,徐晓秋) 201320509482.4 2014.1.15', '', 1, 0, 0, 103),
(112, 10, '0', 1417769162, 'p,f', 1, 1, 0, 140, 0, '黑龙江省能源环境研究院两项课题通过省级鉴定', '', '', 'admin', '未知', '/uploads/allimg/141205/1-141205164U1518-lp.JPG', 1417769162, 1417769377, 1, '黑龙江省,能源,环境,研究院,两项,课题,通过,', 0, 0, 0, 0, 0, 0, '2014年12月4日在省能源环境研究院嵩山路15号8楼会议室召开了项目鉴定会会议对我院承担的《轻质木焦油加氢提质转化运输燃料油调和组分的工艺研究》和《利用炼厂90 # 汽油生产国', '', 1, 0, 0, 104),
(113, 10, '0', 1418018128, 'p,f', 1, 1, 0, 51, 0, '黑龙江省能源环境研究院科技人员参加CHINA EPA STAR MEETING', '', '', 'admin', '未知', '/uploads/allimg/141208/1-14120Q35642917-lp.jpg', 1418018128, 1418018273, 1, '黑龙江省,能源,环境,研究院,科技人员,参加,', 0, 0, 0, 0, 0, 0, '2014年12月4日至6日黑龙江省能源环境研究院春苗秦国辉、唐诗洋青年科技人员周扬参加了在清华大学举办的CHINA EPA STAR MEETING。加拿大麦吉尔大学、美国明尼苏达大学、英国帝国理工', '', 1, 0, 0, 105),
(114, 10, '0', 1418019639, 'p,f', 1, 1, 0, 133, 0, '清华大学杨旭东博士到省能源环境研究院洽谈合作', '', '', 'admin', '未知', '/uploads/allimg/141208/1-14120Q42122206-lp.jpg', 1418019639, 1418019776, 1, '清华大学,杨旭东,杨,旭东,博士,到,省,能源,', 0, 0, 0, 0, 0, 0, '12月1日清华大学建筑环境与设备研究所副所长、清华大学百人计划引进教授、教育部长江学者特聘教授、美国麻省理工学院(MIT)博士、美国迈阿密大学终身教授杨旭东一行两人,携最', '', 1, 0, 0, 106),
(115, 28, '0', 1494581940, 'p,f', 1, 1, 0, 182, 0, '黑龙江省科学技术发明一等奖', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH25Z3220-lp.jpg', 1494581940, 1418020080, 1, '科学技术,发明,一等奖,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 1),
(116, 28, '0', 1494581351, 'p,f', 1, 1, 0, 159, 0, '中国石油与化工协会科技进步二等奖', '', '', 'admin', '未知', '/kjfh/uploads/allimg/130707/1-130FH3000BQ-lp.jpg', 1494581351, 1418020278, 1, '科技,进步,二等奖,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 6),
(117, 10, '0', 1418370133, 'p,f', 1, 1, 0, 77, 0, '黑龙江省能源环境研究院三项课题顺利通过鉴定', '', '', 'admin', '未知', '/uploads/allimg/141212/1-141212154255N3-lp.jpg', 1418370133, 1418370219, 1, '黑龙江省,能源,环境,研究院,三项,课题,顺利,', 0, 0, 0, 0, 0, 0, '2014年12月11日在省能源环境研究院召开了由能源院农业生物环境与能源工程创新团队承担的《秸秆高温厌氧发酵过程关键技术参数研究》、《沼液高效会用及综合处理工艺研究》和《', '', 1, 0, 0, 109),
(118, 10, '0', 1418693820, '', 1, 1, 0, 89, 0, '黑龙江省能源环境研究院两项课题通过鉴定', '', '', 'admin', '未知', '', 1418693820, 1419212305, 1, '黑龙江省,能源,环境,研究院,两项,课题,2014年,', 0, 0, 0, 0, 0, 0, '2014年12月16日黑龙江省科学院科研基金项目《寒地沼气发电机余热回收仿真优化研究》与院青年基金项目《厌氧发酵反应器温度监控及补偿系统的研究》鉴定会在省能源环境研究院召', '', 1, 0, 0, 110),
(119, 10, '0', 1418781000, 'p,f', 1, 1, 0, 122, 0, '热烈祝贺我院选手在省科学院TRIZ大赛中获得二等奖', '', '', 'admin', '未知', '/uploads/allimg/141222/1-14122209493E19-lp.jpg', 1418781000, 1419213049, 1, '热烈,祝贺,我院,选手,在,省,科学院,TRIZ,大,', 0, 0, 0, 0, 0, 0, '2014年12月17日我院有两组TRIZ作品参加了黑龙江省科学院第三届TRIZ理论创新大赛经过作品展示、答辩及评审委员会的评审等环节我院参赛选手不负众望取得了优异的成绩其中参', '', 1, 0, 0, 111),
(120, 10, '0', 1419474225, 'p,f', 1, 1, 0, 166, 0, '我院三项省科学院青年科学基金项目通过验收', '', '', 'admin', '未知', '/uploads/allimg/141225/1-14122510251V35-lp.jpg', 1419474225, 1419474345, 1, '我院,三项省,科学院,青年科学,基金,项目,', 0, 0, 0, 0, 0, 0, '2014年12月22日黑龙江省能源环境研究院召开了省科学院青年创新基金资助项目《浮选技术在油砂分离中的应用研究》、《木醋液成份分析及对肿瘤细胞杀伤作用初探》和《微米稀土粉', '', 1, 0, 0, 112),
(121, 10, '0', 1419840120, 'p,f', 1, 1, 0, 194, 0, '黑龙江省能源环境研究院召开2014年全体职工大会', '', '', 'admin', '未知', '/uploads/allimg/150115/1-1501151A33E11.JPG', 1419840120, 1421312139, 1, '黑龙江省,能源,环境,研究院,召开,2014年,全体,', 0, 0, 0, 0, 0, 0, '2014年12月19日上午省能源环境研究院召开了全体职工大会领导班子及全体职工参加了会议会议由工会主席李福裿同志主持。 会上能源院院长徐晓秋同志做能源院2014年工作总结报', '', 1, 0, 0, 113),
(122, 17, '0', 1421807363, 'p', 1, 1, 0, 159, 0, '页岩油不是“页岩油”', '', '', 'admin', '未知', '/uploads/allimg/150121/1-150121095P2X7.JPG', 1421807363, 1421805534, 1, '页岩,油,不是,“,页岩油,”,金银,岛,财经,', 0, 0, 0, 0, 0, 0, '金银岛财经 石油价格高位暴跌评论纷纷从评论的字里行间经常出现打压美国页岩油发展等好多人不知道这里所指的页岩油不是页岩油而是致密油。美国能源信息署EIA将页', '', 1, 0, 0, 114),
(123, 17, '0', 1421808482, '', 1, 1, 0, 112, 0, '2015年全球将重新进入廉价石油时代', '', '', 'admin', '未知', '', 1421808482, 1421808448, 1, '2015年,全球,将,重新,进入,廉价,石油,时代,', 0, 0, 0, 0, 0, 0, '华夏时报 2014年全球大宗商品市场最瞩目的事件是石油暴跌的黑天鹅事件引发了俄罗斯卢布危机。2014年7月初国际原油价格还在100美元之上12月25日纽约原油价格已经跌到56美元短', '', 1, 0, 0, 115),
(124, 17, '0', 1421808499, '', 1, 1, 0, 125, 0, '煤化工与石油化工“嫁接”新路径', '', '', 'admin', '未知', '', 1421808499, 1421808570, 1, '煤化工,与,石油化工,“,嫁接,”,新路径,新,', 0, 0, 0, 0, 0, 0, '中国科学报 在煤价下行和天然气荒愈演愈烈的背景下,发展现代煤化工已是大势所趋。现代煤化工包括煤制油、煤制天然气、煤制甲醇、煤制烯烃等。截至目前,虽然我国煤化工仍处于', '', 1, 0, 0, 116),
(125, 17, '0', 1421808802, '', 1, 1, 0, 153, 0, '煤化工重新开闸 环境约束待考', '', '', 'admin', '未知', '', 1421808802, 1421808896, 1, '煤化工,重新,开闸,环境,约束,待考,21世纪,', 0, 0, 0, 0, 0, 0, '21世纪经济报道 核心提示:面对中国重启的煤化工大幕,水资源、环境、能耗以及将要出台的碳税,成为发展这一产业必须克服的风险,国家高层对煤化工产业的态度也不无谨慎,截至', '', 1, 0, 0, 117),
(126, 17, '0', 1421808910, '', 1, 1, 0, 124, 0, '现代煤化工:心急难吃热豆腐', '', '', 'admin', '未知', '', 1421808910, 1421808951, 1, '现代,煤化工,心急,难吃,热,豆腐,中国,化工,报,', 0, 0, 0, 0, 0, 0, '中国化工报 近十年来,我国现代煤化工在争议声中从起步磕磕绊绊走到今天,就像时下的天气一样由暖转寒不断降温。从当初的争先恐后,到如今的观望退出,现代煤化工似乎走到了发', '', 1, 0, 0, 118),
(127, 17, '0', 1421808969, '', 1, 1, 0, 192, 0, '新型煤化工五路径:谁能走得更远?', '', '', 'admin', '未知', '', 1421808969, 1421809231, 1, '新型,煤化工,五,路径,谁能,走得,更远,中化,', 0, 0, 0, 0, 0, 0, '中化新网 2014年7月以来国际原油价格暴跌近50%。有机构研究认为,本轮油价下跌远未见底,后期仍有下跌空间。若参照煤炭及主要大宗商品近几年的跌幅,预计国际原油价格最低将探', '', 1, 0, 0, 119),
(128, 10, '0', 1422246723, 'p,f', 1, 1, 0, 193, 0, '黑龙江省能源环境研究院召开全体职工大会', '', '', 'admin', '未知', '/uploads/allimg/150126/1-150126122I43W.JPG', 1422246723, 1422246503, 1, '黑龙江省,能源,环境,研究院,召开,全体,职工,', 0, 0, 0, 0, 0, 0, '2015年1月26日黑龙江省能源环境研究院召开全体职工大会会议由能源院徐晓秋院长主持院班子及全体职工参加了会议。 徐晓秋院长首先传达了省科学院郭春景院长在省科学院2015年', '', 1, 0, 0, 120),
(129, 10, '0', 1422334800, '', 1, 1, 0, 190, 0, '我院召开科研人员座谈会', '', '', 'admin', '未知', '', 1422334800, 1425272881, 1, '我院,召开,科研,人员,座谈会,1月,27日,', 0, 0, 0, 0, 0, 0, '1月27日黑龙江省能源环境研究院召开了科研人员座谈会院长徐晓秋、副院长关春玲与我院一线科研骨干、高级职称人员参加了座谈院长徐晓秋主持会议。 与会科研人员认真总结了', '', 1, 0, 0, 121),
(130, 10, '0', 1422508200, '', 1, 1, 0, 116, 0, '黑龙江省能源环境研究院召开青年科研人员座谈会', '', '', 'admin', '未知', '', 1422508200, 1425273065, 1, '黑龙江省,能源,环境,研究院,召开,青年,科研,', 0, 0, 0, 0, 0, 0, '1月29日我院召开了青年科研人员座谈会院长徐晓秋、副院长关春与青年科研人员10余人参加了会议会议由院长徐晓秋主持。徐院长指出希望通过此次会议为我院青年人提供交', '', 1, 0, 0, 122),
(131, 10, '0', 1425632100, 'p,f', 1, 1, 0, 132, 0, '我院召开庆“三八”座谈会', '', '', 'admin', '未知', '/uploads/allimg/150309/1-1503091A309593-lp.JPG', 1425632100, 1425891224, 1, '我院,召开,庆,“,三八,”,座谈会,3月,6日,上午,', 0, 0, 0, 0, 0, 0, '3月6日上午我院召开了三八妇女节座谈会院长徐晓秋、副院长关春玲与十余名女同志参加了座谈会。院长徐晓秋向全体女同志表示节日的问候和祝贺感谢大家一年来在各自岗位上', '', 1, 0, 0, 123),
(132, 16, '0', 1428388980, '', 1, 1, 0, 137, 0, '我院召开全体党员会议学习习近平总书记2月2日讲话精神', '', '', 'admin', '未知', '', 1428388980, 1428455269, 1, '我院,召开,全体,党员,会议,4月,7日,省,能源,院,', 0, 0, 0, 0, 0, 0, '4月7日省能源院党委在一楼会议室召开了全体党员会议党委书记、院长徐晓秋同志、党委委员、副院长关春玲同志、各支部书记及全体党员参加了会议。会议由徐晓秋同志主持。 会', '', 1, 0, 0, 124),
(133, 10, '0', 1429246702, 'p,f', 1, 1, 0, 178, 0, '我院与天津大学签订合作协议', '', '', 'admin', '未知', '/uploads/allimg/150417/1-15041G3004TT-lp.JPG', 1429246702, 1429246928, 1, '我院,与,天津,大学,签订,合作,协议,2015年,3月,', 0, 0, 0, 0, 0, 0, '2015年3月16日应天津大学内燃机燃烧学国家重点实验室主任、博士生导师姚春德教授的邀请黑龙江省科学院科研处王阳处长、黑龙江省能源环境研究院徐晓秋院长和油品助剂研发中心', '', 1, 0, 0, 125),
(134, 10, '0', 1430722575, 'p,f', 1, 1, 0, 182, 0, '黑龙江省能源环境研究院参加国家行业标准编制', '', '', 'admin', '未知', '/uploads/allimg/150504/1-150504145242U3-lp.jpg', 1430722575, 1430722472, 1, '黑龙江省,能源,环境,研究院,参加,国家,2015年,', 0, 0, 0, 0, 0, 0, '2015年4月27日国家行业标准《住宅建筑室内装修污染控制技术规程》启动会暨编制组第一次工作会议在深圳市召开。黑龙江省能源环境研究院作为编制组成员单位由徐晓秋院长带队', '', 1, 0, 0, 126),
(135, 10, '0', 1432639115, 'p,f', 1, 1, 0, 92, 0, '农业部沼气科学研究所专家团访问黑龙江省能源环境研究院', '', '', 'admin', '未知', '/uploads/allimg/150526/1-150526192050T1-lp.jpg', 1432639115, 1432639369, 1, '农业部,沼气,科,学研究所,专家团,访问,2015年,', 0, 0, 0, 0, 0, 0, '2015年5月12日农业部沼气科学研究所生物质能中心主任胡启春研究员一行四人到黑龙江省能源环境研究院进行交流与访问。 胡启春研究员首先来到能源院江北实验室,在会议室做了沼', '', 1, 0, 0, 127),
(136, 10, '16', 1433389200, 'p,f', 1, 1, 0, 68, 0, '我院召开“三严三实”专题教育动员会', '', '', 'admin', '未知', '/uploads/allimg/150608/1-15060Q0232O11.jpg', 1433389200, 1433394709, 1, '我院,召开,“,三严三实,”,专题,教育,动员会,', 0, 0, 0, 0, 0, 0, '根据省科学院通知要求6月4日黑龙江省能源环境研究院在一楼会议室召开了党委扩大会议暨省能源院三严三实专题教育动员会省能源院领导班子、全体党员、部门负责人及副科级', '', 1, 0, 0, 128),
(137, 10, '0', 1433725205, 'p,f', 1, 1, 0, 199, 0, '省知识产权局张毅副局长到我院调研', '', '', 'admin', '未知', '/uploads/allimg/150608/1-15060PU64Q64-lp.JPG', 1433725205, 1433725033, 1, '省,知识产权局,张毅,副局长,到,我院,调研,5月,', 0, 0, 0, 0, 0, 0, '5月27日省知识产权局张毅副局长率综合协调处负责同志就全省高校院所专利提质促量工作到黑龙江省能源环境研究院进行调研。省能源院徐晓秋院长、关春玲副院长、科研与产业化', '', 1, 0, 0, 129),
(138, 10, '0', 1433734306, 'p,f', 1, 1, 0, 191, 0, '我院参加省高校、科研院所知识产权专题培训班学习', '', '', 'admin', '未知', '/uploads/allimg/150608/1-15060Q13402934-lp.JPG', 1433734306, 1433734477, 1, '我院,参加省,高校,、,科研院所,知识产权,', 0, 0, 0, 0, 0, 0, '2015年6月4日至5日省知识产权局举办了黑龙江省高校、科研院所知识产权专题培训班。我院科研办王志成主任、设计部王玉鹏和环境与节能研究室张玥参加了此次培训。 此次培训课程', '', 1, 0, 0, 130),
(139, 10, '0', 1433924755, 'p,f', 1, 1, 0, 187, 0, '黑龙江省能源环境学会成立', '', '', 'admin', '未知', '/uploads/allimg/150610/1-150610161231964-lp.JPG', 1433924755, 1433924020, 1, '黑龙江省,能源,环境,学会,成立,2015年,6月,8日,', 0, 0, 0, 0, 0, 0, '2015年6月8日由黑龙江省能源环境研究院发起的黑龙江省能源环境学会正式成立。学会由黑龙江省民政厅批准并发放《社会团体法人登记证书》业务主管部门为黑龙江省科学技术协', '', 1, 0, 0, 131),
(140, 10, '16', 1434346140, 'p,f', 1, 1, 0, 151, 0, '黑龙江省能源环境研究院党委书记徐晓秋同志带头讲“三严三实”专题党课', '', '', 'admin', '未知', '/uploads/allimg/150616/1-150616130424M7.jpg', 1434346140, 1434356019, 1, '黑龙江省,能源,环境,研究院,党委书记,徐晓,', 0, 0, 0, 0, 0, 0, '6月15日在省能源院一楼会议室省能源院党委书记、院长徐晓秋同志以《践行三严三实要求聚力五年会战》为题为全体党员、副科级以上人员讲了一堂三严三实专题党课。 徐晓秋', '', 1, 0, 0, 132),
(141, 10, '0', 1435026651, 'p,f', 1, 1, 0, 149, 0, '低碳环保,健康生活</br>-省能源院举办职工徒步活动', '', '', 'admin', '未知', '/uploads/allimg/150623/1-150623100631N0-lp.jpg', 1435026651, 1435025373, 1, '低碳,环保,健康生活,省,能源,院,举办,职工,', 0, 0, 0, 0, 0, 0, '6月18日清晨省能源院举办了首届能源杯徒步活动活动的主题为 低碳环保,健康生活。 本次活动全程约8公里环绕阿勒锦岛一周历时两个 小时。一路上大家奋勇争先、相互鼓励,', '', 1, 0, 0, 133),
(142, 10, '16', 1436160480, 'p,f', 1, 1, 0, 165, 0, '黑龙江省能源环境研究院开展系列庆祝活动</br>为中国共产党成立94周年献礼', '', '', 'admin', '未知', '/uploads/allimg/150706/1-150F6145634K6-lp.JPG', 1436160480, 1436166009, 1, '黑龙江省,能源,环境,研究院,开展,系列,为,', 0, 0, 0, 0, 0, 0, '为喜迎中国共产党成立94周年继承和发扬党的优良传统和作风切实加强基层党组织建设七一期间省能源环境研究开展内了容丰富、形式多样的庆祝活动通过主题鲜明、广泛参', '', 1, 0, 0, 134),
(143, 10, '0', 1436749506, 'p,f', 1, 1, 0, 191, 0, '我院与加拿大阿尔伯塔技术创新研究院签订框架协议', '', '', 'admin', '未知', '/uploads/allimg/150713/1-150G30U9244D.JPG', 1436749506, 1436749190, 1, '我院,与,加拿大,阿尔伯塔,技术创新,研究院,', 0, 0, 0, 0, 0, 0, '2015年7月3日在省科学院四楼会议室黑龙江省科学院与加拿大阿尔伯塔省技术创新研究院合作协议签约仪式正式举行。省科学院院长郭春景、黑龙江省能源环境研究院院长徐晓秋及加', '', 1, 0, 0, 135),
(144, 10, '16', 1438320480, 'p,f', 1, 1, 0, 112, 0, '我院组织全体职工观看记录片《筑梦中国》', '', '', 'admin', '未知', '/uploads/allimg/150731/1-150I1100346239.JPG', 1438320480, 1438308300, 1, '我院,组织,全体,职工,观看,记录片,《,根据省,', 0, 0, 0, 0, 0, 0, '根据省科学院机关党委关于观看大型历史文献记录片《筑梦中国》相关要求我院高度重视积极部署观看学习活动。于7月24日、27日、28日每天下午13:30在能源院一楼会议室组织全院职', '', 1, 0, 0, 136),
(145, 10, '0', 1439953140, 'p,f', 1, 1, 0, 130, 0, '我院参加全国科学院联盟能源分会启动仪式', '', '', 'admin', '未知', '/uploads/allimg/150819/1-150Q9130104925-lp.jpg', 1439953140, 1439960502, 1, '我院,参加,全国,科学院,联盟,能源,分会,启动,', 0, 0, 0, 0, 0, 0, '2015年8月13日-14日黑龙江省能源环境研究院院长徐晓秋同志应邀参加了全国科学院联盟能源分会启动仪式。本次会议由中国科学院科技促进发展局和中国科学院沈阳分院主办由中国科学', '', 1, 0, 0, 137),
(146, 10, '0', 1440646938, 'p,f', 1, 1, 0, 79, 0, '省科学院督研委对能源环境研究院</br>科研基金项目的执行情况进行督导和检查', '', '', 'admin', '未知', '/uploads/allimg/150827/1-150RG14423309-lp.JPG', 1440646938, 1440647096, 1, '省,科学院,督研,委,对,能源,环境,研究院,科研,', 0, 0, 0, 0, 0, 0, '2015年8月26日省科学院督研委对院基金项目页岩油深加工工艺关键技术的执行情况进行阶段性督导和检查。会议由院科研处隋月梅副处长主持。 督研委专家们听取了课题组的工作汇报', '', 1, 0, 0, 138),
(147, 10, '16', 1441782300, 'p,f', 1, 1, 0, 160, 0, '热烈祝贺我院选手在省科学院“三严三实”青年党史知识竞赛中获三等奖', '', '', 'admin', '未知', '/uploads/allimg/150916/1-15091614595c35-lp.JPG', 1441782300, 1442386850, 1, '热烈,祝贺,我院,选手,在,省,科学院,“,月,9日,', 0, 0, 0, 0, 0, 0, '9 月9日 ,由省科学院团委主办的 三严三实 青年党史知识竞赛在嵩山路15号8楼会议室拉开帷幕。此次竞赛内容涵盖了党章党史十八大报告十八届三中、四中全会精神习总书记系', '', 1, 0, 0, 139),
(148, 10, '0', 1444801440, 'p,f', 1, 1, 0, 163, 0, '黑龙江省科学院党组书记赵梅同志莅临黑龙江省能源环境研究院调研指导工作', '', '', 'admin', '未知', '/uploads/allimg/151015/1-151015113633c1-lp.JPG', 1444801440, 1444880298, 1, '黑龙江省,科学院,党组书记,赵梅,同志,莅临,', 0, 0, 0, 0, 0, 0, '10月13日下午省科学院党组书记赵梅同志在院办公室主任章力同志的陪同下莅临黑龙江省能源环境研究院调研指导工作。省能源院徐晓秋院长、关春玲副院长参加了此次调研。 调研会', '', 1, 0, 0, 140),
(150, 10, '16', 1446521563, '', 1, 1, 0, 167, 0, '关于转发《中国共产党廉政自律准则》和《中国共产党纪律处分条例》的通知', '', '', 'admin', '未知', '', 1446521563, 1446521851, 1, '关于,转发,《,中国共产党廉政自律准则,》,和,', 0, 0, 0, 0, 0, 0, '能源院全体党员: 为扎实开展三严三实专题教育工作,紧扣《中国共产党巡视工作条例》对六大纪律的要求,引导和教育全体党员牢固树立自觉遵守党章党纪党规的政治意识和大局观念', '', 1, 0, 0, 138),
(151, 10, '0', 1447393980, '', 1, 1, 0, 191, 0, '中共中央关于制定国民经济和社会发展第十三个五年规划的建议', '', '', 'admin', '未知', '', 1447393980, 1447566727, 1, '中共中央,关于,制定,国民经济,和,社会发展,', 0, 0, 0, 0, 0, 0, '2015年10月29日中国共产党第十八届中央委员会第五次全体会议通过 到二〇二〇年全面建成小康社会,是我们党确定的两个一百年奋斗目标的第一个百年奋斗目标。十三五时期是全面', '', 1, 0, 0, 139),
(152, 10, '0', 1447663869, '', 1, 1, 0, 200, 0, '关于转发《黑龙江省人民政府关于深化体制机制改革加快实施创新驱动发展战略的实施意见》的通知', '', '', 'admin', '未知', '', 1447663869, 1447664040, 1, '关于,转发,《,黑龙江省,人民政府,深化,体制,', 0, 0, 0, 0, 0, 0, '按照赵梅书记批示和我院16日会议部署现将《黑龙江省人民政府关于深化体制机制改革加快实施创新驱动发展战略的实施意见》黑政发[2015]32号上传到院网站和群共享请各部门认', '', 1, 0, 0, 140),
(153, 10, '16', 1447999958, 'p,f', 1, 1, 0, 58, 0, '黑龙江省能源环境研究院召开中心组学习(扩大)会议', '', '', 'admin', '未知', '/uploads/allimg/151120/1-15112014063YY-lp.JPG', 1447999958, 1447999652, 1, '黑龙江省,能源,环境,研究院,召开,中心组,11月,', 0, 0, 0, 0, 0, 0, '11月16日在省能源院会议室省能源院党委中心组召开学习贯彻十八届五中全会精神和三严三实专题教育第三专题研讨扩大会议。省能源院领导班子、省科学院机关党委刘颖书记及能源', '', 1, 0, 0, 141),
(154, 10, '0', 1450234560, 'p,f', 1, 1, 0, 133, 0, '我院承办国家行业标准《住宅建筑室内装修污染控制技术规程》编制组第二次工作会议', '', '', 'admin', '未知', '/uploads/allimg/151225/1-151225110013332-lp.JPG', 1450234560, 1451012516, 1, '我院,承办,国家,行业标准,《,2015年,12月,15日,', 0, 0, 0, 0, 0, 0, '2015年12月15日由深圳市建筑科学研究院股份有限公司主办的国家行业标准《住宅建筑室内装修污染控制技术规程》编制组第二次工作会议在哈尔滨召开黑龙江省能源环境研究院作为', '', 1, 0, 0, 142),
(155, 10, '0', 1450407720, 'p,f', 1, 1, 0, 107, 0, '省科学院科研处莅临省能源环境研究院指导检查学科创新团队建设工作', '', '', 'admin', '未知', '/uploads/allimg/151225/1-15122511042EC-lp.JPG', 1450407720, 1451012765, 1, '省,科学院,科研处,莅临省,能源,环境,研究院,', 0, 0, 0, 0, 0, 0, '2015年12月17日院科研处王阳处长一行3人莅临能源环境研究院检查学科创新团队发展情况和团队一年来的主要工作。 王阳处长逐一听取了能源院三个学科创新团队2015年的工作进展情况', '', 1, 0, 0, 143),
(156, 10, '0', 1452822060, 'p,f', 1, 1, 0, 188, 0, '黑龙江省能源环境研究院省院科技合作项目顺利通过鉴定', '', '', 'admin', '未知', '/uploads/allimg/160122/1-160122093932Z9-lp.JPG', 1452822060, 1453426824, 1, '黑龙江省,能源,环境,研究院省,院,科技,2016年,', 0, 0, 0, 0, 0, 0, '2016年1月14日黑龙江省科技厅在哈尔滨市组织专家对黑龙江省能源环境研究院承担的省院科技合作项目寒区农业固体废弃物高值化利用关键技术研究进行了成果鉴定。 鉴定委员会由哈', '', 1, 0, 0, 144),
(157, 10, '0', 1454035080, '', 1, 1, 0, 156, 0, '我院两项黑龙江省应用技术研究与开发计划项目通过验收', '', '', 'admin', '未知', '', 1454035080, 1454378801, 1, '我院,两项,黑龙江省,应用技术,研究,与,开发,', 0, 0, 0, 0, 0, 0, '2015年1月黑龙江省科技厅组织鉴定委员会对黑龙江省能源环境研究院和科技孵化中心承担的省应用技术研究与开发计划项目《煤与废弃有机制品共焦化技术开发与应用》和《M25车用甲', '', 1, 0, 0, 145),
(158, 27, '0', 1455500242, '', 1, 1, 0, 126, 0, '黑龙江省能源环境研究院</br>部分科技成果汇编目录2008-2015', '', '', 'admin', '未知', '', 1455500242, 1455499725, 1, '黑龙江省,能源,环境,研究院,部分,科技成果,', 0, 0, 0, 0, 0, 0, '序号 成果名称 鉴定时间 1 油页岩低温热解条件对页岩油性质的影响研究 2015 2 煤与废弃有机制品共焦化技术开发与应用 2015 3 M25车用甲醇汽油应用技术研究 2015 4 寒区农业固体废弃物高', '', 1, 0, 0, 146),
(159, 29, '0', 1455502609, '', 1, 1, 0, 56, 0, '黑龙江省能源环境研究院</br>专利目录2008-2015', '', '', 'admin', '未知', '', 1455502609, 1455501247, 1, '黑龙江省,能源,环境,研究院,专利,目录,序号,', 0, 0, 0, 0, 0, 0, '序号 专利名称 专利号 类型 1 利用高温厌氧发酵运行参数无线实时监测系统对高温厌氧发酵运行参数监测的方法 ZL201310364454.2 发明专利 2 一种基于沼气发电的余热回收利用系统 ZL201310', '', 1, 0, 0, 147),
(160, 29, '0', 1455502637, '', 1, 1, 0, 105, 0, '黑龙江省能源环境研究院</br>论文目录2012-2015', '', '', 'admin', '未知', '', 1455502637, 1455502806, 1, '黑龙江省,能源,环境,研究院,论文目录,2012-2015,', 0, 0, 0, 0, 0, 0, '序号 文章名称 类别 期刊名 作者 发表时间 1 沼气脱碳提纯技术研究进展 一般 黑龙江科学 潘良;徐晓秋;高德玉;王欣;刘伟; 2015 2 依兰油页岩逐级氧化/萃取及其产物的红外分析 一般 黑龙', '', 1, 0, 0, 148),
(161, 10, '0', 1455597060, 'p,f', 1, 1, 0, 153, 0, '黑龙江能源环境研究院召开会议学习贯彻2016年省科学院党风廉政建设工作会议和省科学院工作会议精神', '', '', 'admin', '未知', '/uploads/allimg/160225/1-160225123025Z2-lp.JPG', 1455597060, 1456374646, 1, '黑龙江,能源,环境,研究院,召开,会议,2月,15日,', 0, 0, 0, 0, 0, 0, '2月15日下午省能源院召开会议传达和贯彻2016年省科学院党风廉政建设工作会议和院工作会议精神。会议由省能源院党委书记、院长徐晓秋同志主持。 徐晓秋院长首先传达了省科学', '', 1, 0, 0, 149),
(162, 10, '0', 1458785400, 'p,f', 1, 1, 0, 186, 0, '省科学院人事处党支部与能源院能源化学创新团队召开党建联系点工作对接会', '', '', 'admin', '未知', '/uploads/allimg/160325/1-160325100Z33M-lp.JPG', 1458785400, 1458871784, 1, '省,科学院,人事处,党支部,与,能源,院,化学,', 0, 0, 0, 0, 0, 0, '2016年3月23日省科学院人事处党支部与省能源环境研究院能源化学创新团队党建联系点工作对接会在能源院会议室召开。人事处党支部书记、处长张兴、副处长王向伟、盛力、曲恒峰、', '', 1, 0, 0, 150),
(163, 10, '0', 1457401080, 'p,f', 1, 1, 0, 177, 0, '创学习型组织 做知识型女性</br>省能源院召开“三八”妇女节女职工座谈会', '', '', 'admin', '未知', '/uploads/allimg/160328/1-16032P9321T09.jpg', 1457401080, 1459128781, 1, '创,学习型,组织,做,知识型,女性,省,能源,院,', 0, 0, 0, 0, 0, 0, '3月7日上午省能源院召开以创学习型组织、做知识型女性为主题的女职工座谈会。省能源院领导班子及全体女职工参加了会议会议由能源院党委书记、院长徐晓秋同志主持。 参会人', '', 1, 0, 0, 151),
(164, 10, '0', 1459239780, 'p,f', 1, 1, 0, 156, 0, '黑龙江省能源环境研究院召开全体职工大会学习贯彻落实习近平总书记参加黑龙江代表团审议时的重要讲话精神', '', '', 'admin', '未知', '/uploads/allimg/160329/1-160329163HYG-lp.JPG', 1459239780, 1459240698, 1, '黑龙江省,能源,环境,研究院,召开,全体,职工,', 0, 0, 0, 0, 0, 0, '3月29日上午黑龙江省能源环境研究院召开全体职工专题学习会议学习宣传和贯彻落实习近平总书记参加黑龙江代表团审议时的重要讲话精神、王宪魁同志在省委中心组学习上的讲话', '', 1, 0, 0, 152),
(165, 10, '0', 1461724284, 'p,f', 1, 1, 0, 136, 0, '黑龙江省能源环境研究院召开“两学一做”学习教育工作会议', '', '', 'admin', '未知', '/uploads/allimg/160427/1-16042G02P31c-lp.JPG', 1461724284, 1461724206, 1, '黑龙江省,能源,环境,研究院,召开,“,2016年,', 0, 0, 0, 0, 0, 0, '2016年4月27日省能源院召开两学一做学习教育工作会议省科学院人事处全体党员和省能源院全体党员参加了会议会议由省能源院党委书记徐晓秋同志主持。 徐晓秋书记传达了省科', '', 1, 0, 0, 153),
(166, 10, '16', 1463634600, 'p,f', 1, 1, 0, 120, 0, '中共黑龙江省能源环境研究院委员会召开换届选举大会', '', '', 'admin', '未知', '/uploads/allimg/160520/1-1605200P531419-lp.JPG', 1463634600, 1463702827, 1, '中共,黑龙江省,能源,环境,研究院,委员会,', 0, 0, 0, 0, 0, 0, '根据《中国共产党章程》和相关规定经省能源院党委研究报请省科学院机关党委批准中共黑龙江省能源环境研究院委员会于2016年5月19日召开全体党员大会省能源院党委书记、院', '', 1, 0, 0, 154),
(167, 10, '16', 1465366775, 'p,f', 1, 1, 0, 195, 0, '黑龙江省能源环境研究院召开中心组学习扩大会议', '', '', 'admin', '未知', '/uploads/allimg/160608/1-16060Q421404Q-lp.JPG', 1465366775, 1465366979, 1, '黑龙江省,能源,环境,研究院,召开,中心组,6月,', 0, 0, 0, 0, 0, 0, '6月8日上午黑龙江省能源环境研究院召开中心组学习扩大会议学习贯彻落实省科学院党组中心组扩大会议精神和省委十一届七次全体会议上王宪魁书记的讲话及陆昊省长的总结讲话', '', 1, 0, 0, 155),
(168, 10, '16', 1467597540, 'p,f', 1, 1, 0, 110, 0, '缅怀先烈 铭记历史--省能源院开展纪念建党95周年活动', '', '', 'admin', '未知', '/uploads/allimg/160720/1-160H01002402E-lp.JPG', 1467597540, 1468980260, 1, '缅怀,先烈,铭记,历史,省,能源,院,开展,纪念,', 0, 0, 0, 0, 0, 0, '为纪念中国共产党建党九十五周年,省能源院全体职工及党建联系点院机关人事处党支部部分成员共同参观了爱国主义教育基地东北烈士纪念馆,一同缅怀先烈,深受教育,全体党员重', '', 1, 0, 0, 156),
(169, 10, '0', 1468462800, 'p,f', 1, 1, 0, 128, 0, '黑龙江省能源环境研究院两项课题顺利通过鉴定', '', '', 'admin', '未知', '/uploads/allimg/160720/1-160H0101Q4226-lp.JPG', 1468462800, 1468981161, 1, '黑龙江省,能源,环境,研究院,两项,课题,顺利,', 0, 0, 0, 0, 0, 0, '2016年7月13日由黑龙江省科学院组织专家对省能源环境研究院承担的两项黑龙江省院所基本应用技术研究专项《车用甲醇汽油抗水复合添加剂技术研究》、《太阳能空气采暖智能控制装', '', 1, 0, 0, 157),
(170, 9, '0', 1470281087, 'p,f', 1, 1, 0, 77, 0, '省科学院与牡丹江市举行院市合作会议-省能源院两项成果成功签约', '', '', 'admin', '未知', '/uploads/allimg/160804/1-160P411225D57-lp.jpg', 1470281087, 1470281039, 1, '省,科学院,与,牡丹江市,举行,院市,合作,会议,', 0, 0, 0, 0, 0, 0, '8月2日黑龙江省科学院与牡丹江市政府举行院市合作会议暨合作协议签约仪式省科学院党组书记赵梅、院长郭春景、牡丹江市市委书记 张雨浦、 市长刘忻、副市长王钢出席会议。签', '', 1, 0, 0, 158),
(171, 9, '0', 1468487820, 'p', 1, 1, 0, 178, 0, '省科学院郭春景院长一行到省能源院调研检查学科团队发展建设情况', '', '', 'admin', '未知', '/uploads/allimg/161007/1-16100GH0102Q-lp.jpg', 1468487820, 1475832108, 1, '省,科学院,郭春景,郭,春景,院长,一行,到,能源,', 0, 0, 0, 0, 0, 0, '2016年7月13日下午省科学院郭春景院长沙长青副院长科研处王阳处长隋月梅副处长赴能源院调研检查学科团队发展建设情况。在听取完两个团队的工作汇报后郭院长结合团队现', '', 1, 0, 0, 159),
(172, 9, '0', 1471514160, 'p', 1, 1, 0, 174, 0, '穆棱市长一行到省能源院考察调研', '', '', 'admin', '未知', '/uploads/allimg/161007/1-16100GJT1227-lp.JPG', 1471514160, 1475833869, 1, '穆棱,市长,一行,到,省,能源,院,考察,调研,8月,', 0, 0, 0, 0, 0, 0, '8月17日穆棱市长、工信局局长和相关企业负责人一行到省能源院考察调研洽谈合作。 省能源院党委书记、院长徐晓秋同志、副院长关春玲同志对来访人员表示欢迎,相关研究室科研', '', 1, 0, 0, 160),
(173, 9, '0', 1471600320, 'p', 1, 1, 0, 160, 0, '省能源院党委召开中心组学习扩大会议,深入学习贯彻落实全省“两学一做”学习教育工作座谈会上省委常委、组织部长杨汭同志讲话精神和院党组书记赵梅同志的重要讲话精神', '', '', 'admin', '未知', '/uploads/allimg/161007/1-16100GK510356-lp.JPG', 1471600320, 1475834193, 1, '省能源院党委召开中心组学习扩大会议,深入学', 0, 0, 0, 0, 0, 0, '8月18日省能源院党委召开中心组学习扩大会议深入学习贯彻落实全省两学一做学习教育工作座谈会上省委常委、组织部长杨汭同志讲话精神和院党组书记赵梅同志的重要讲话精神会', '', 1, 0, 0, 161);
INSERT INTO `dede_archives` (`id`, `typeid`, `typeid2`, `sortrank`, `flag`, `ismake`, `channel`, `arcrank`, `click`, `money`, `title`, `shorttitle`, `color`, `writer`, `source`, `litpic`, `pubdate`, `senddate`, `mid`, `keywords`, `lastpost`, `scores`, `goodpost`, `badpost`, `voteid`, `notpost`, `description`, `filename`, `dutyadmin`, `tackid`, `mtype`, `weight`) VALUES
(174, 9, '0', 1472465340, 'p', 1, 1, 0, 145, 0, '省能源院召开会议,传达全省科技创新大会精神和王宪魁书记、陆昊省长及省科学院党组赵梅书记的讲话精神', '', '', 'admin', '未知', '/uploads/allimg/161007/1-16100GQ01S34-lp.JPG', 1472465340, 1475835061, 1, '省,能源,院,召开,会议,传达,全省,科技创新,', 0, 0, 0, 0, 0, 0, '8月29日上午省能源院召开会议传达全省科技创新大会精神和王宪魁书记、陆昊省长及省科学院党组赵梅书记的讲话精神省能源院党委成员及中层干部参加了会议。按照赵梅书记的', '', 1, 0, 0, 162),
(175, 9, '0', 1474625940, 'p', 1, 1, 0, 73, 0, '第十八届中国科协年会-暨全国科技工作者创新创业总决赛在西安举行,我院两选手参加比赛', '', '', 'admin', '未知', '/uploads/allimg/161007/1-16100GR35MG-lp.JPG', 1474625940, 1475835913, 1, '第十,八届,中国科协,年会,暨,全国,科技,9月,', 0, 0, 0, 0, 0, 0, '9月22日 第十八届中国科协年会-暨全国科技工作者创新创业总决赛在西安举行省能源院关春玲副院长担任领队省能源院周闯和陆佳两位选手携《工业化封闭环式沼气发电系统1.0》', '', 1, 0, 0, 163),
(176, 9, '0', 1475231220, 'p', 1, 1, 0, 191, 0, '省能源院举办“情系青山绿水 共庆祖国华诞” 关爱环境社会实践活动', '', '', 'admin', '未知', '/uploads/allimg/161007/1-16100GS00a37-lp.JPG', 1475231220, 1475836263, 1, '省,能源,院,举办,“,情系,青山绿水,共庆,祖国,', 0, 0, 0, 0, 0, 0, '2016年9月30日能源环境研究院与自动化研究所举行情系青山绿水共庆祖国华诞关爱环境社会实践活动。国庆前夕艳阳天环保志愿松峰山能源自动化齐携手助建环保美家园。沿途尽', '', 1, 0, 0, 164),
(177, 10, '0', 1476439560, 'p,f', 1, 1, 0, 148, 0, '与时俱进,知识产权工作再上新台阶', '', '', 'admin', '未知', '/uploads/allimg/161021/1-1610210Q2193D-lp.jpg', 1476439560, 1477008852, 1, '与时俱进,知识产权,工作,再上,新台阶,新,', 0, 0, 0, 0, 0, 0, '2016年10月12-14日黑龙江省能源环境研究院参加了由黑龙江省知识产权局举办的关于举办全省高校、科研院所知识产权管理工作经验交流会为进一步提升我院所知识产权工作管理水平', '', 1, 0, 0, 165),
(178, 10, '0', 1476789420, 'p,f', 1, 1, 0, 147, 0, '我院参加省科协创新方法培训班-丁会敏同志荣获优秀学员光荣称号', '', '', 'admin', '未知', '/uploads/allimg/161021/1-1610210R624I8-lp.jpg', 1476789420, 1477009653, 1, '我院,参加省,科协,创,新方法,培训班,丁会敏,', 0, 0, 0, 0, 0, 0, '2016年10月13日省能源院郭广亮、丁会敏、范超三人参加了黑龙江省科协双创活动周一线工程师创新方法培训班课程三人带着各自在工作中遇到的一些技术机械难题参加培训在6天的', '', 1, 0, 0, 166),
(179, 10, '0', 1476405840, 'p,f', 1, 1, 0, 147, 0, '我院参加全国科学院联盟能源分会会议', '', '', 'admin', '未知', '/uploads/allimg/161021/1-1610210T230Y6-lp.jpg', 1476405840, 1477010571, 1, '我院,参加,全国,科学院,联盟,能源,分会,会议,', 0, 0, 0, 0, 0, 0, '10月13日我院参加全国科学院联盟能源分会会议。 我院作为全国科学院联盟能源分会的会员单位,与其他成员单位共同推动中科院、地方科学院和骨干院所企业在能源领域的战略合作', '', 1, 0, 0, 167),
(180, 10, '0', 1476406200, 'p,f', 1, 1, 0, 61, 0, '省能源院参加全国科学院洁净能源知识产权联盟成立大会', '', '', 'admin', '未知', '/uploads/allimg/161021/1-1610210TZ3J7-lp.JPG', 1476406200, 1477011001, 1, '省,能源,院,参加,全国,科学院,洁净,知识产权,', 0, 0, 0, 0, 0, 0, '10月13日省能源院参加全国科学院洁净能源知识产权联盟成立大会。 会上,我院与联盟单位共商能源产业布局、低碳经济发展和知识产权运营事宜,提升产业创新能力,探索实践科技', '', 1, 0, 0, 168),
(181, 16, '10', 1476838380, 'p,f', 1, 1, 0, 72, 0, '我院召开“两学一做”“双创争优”延安学习培训汇报会', '', '', 'admin', '未知', '/uploads/allimg/161021/1-1610210ZK02R-lp.JPG', 1476838380, 1477012122, 1, '我院,召开,“,两学一做,”,双创争优,延安,', 0, 0, 0, 0, 0, 0, '10月19日我院召开两学一做双创争优延安学习培训汇报会能源院领导班子和全体党员参加了本次汇报会。 参加省科学院延安培训班的两名党员代表李福裿和王欣,分别做了以学习光', '', 1, 0, 0, 169),
(182, 9, '0', 1477444179, 'p,f', 1, 1, 0, 172, 0, '我院组织全院职工观看纪录片《永远在路上》', '', '', 'admin', '未知', '/uploads/allimg/161026/1-161026091U3336-lp.JPG', 1477444179, 1477444815, 1, '我院,组织,全院,职工,观看,纪录片,《,根据省,', 0, 0, 0, 0, 0, 0, '根据省科学院关于学习贯彻落实《中国共产党问责条例》的相关部署,我院结合两学一做学习教育工作,利用午休时间,组织广大职工观看纪录《永远在路上》。', '', 1, 0, 0, 170),
(183, 9, '0', 1467944040, 'p', 1, 1, 0, 118, 0, '召开职工大会学习共产党成立95周年各项讲话精神', '', '', 'admin', '未知', '/uploads/allimg/161026/1-16102610150I35-lp.JPG', 1467944040, 1477448150, 1, '召开,职工,大会,学习,共产党,成立,95周年,7月,', 0, 0, 0, 0, 0, 0, '7月7日下午能源院召开了全体职工大会会议传达了中央办公厅关于学习贯彻习近平总书记在庆祝中国共产党成立95周年大会上的讲话学习贯彻王宪魁书记在中共黑龙江省委庆祝中国共', '', 1, 0, 0, 171),
(184, 9, '0', 1477647000, 'p', 1, 1, 0, 74, 0, '我院组织全体职工认真学习贯彻习长征精神', '', '', 'admin', '未知', '/uploads/allimg/161111/1-161111093936144-lp.JPG', 1477647000, 1478829372, 1, '我院,组织,全体,职工,认真,学习贯彻,习,长征,', 0, 0, 0, 0, 0, 0, '按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求10月28日省能源院召开全体职工会议会', '', 1, 0, 0, 172),
(185, 9, '0', 1414486620, 'p', 1, 1, 0, 74, 0, '我院组织全体职工认真学习贯彻习长征精神', '', '', 'admin', '未知', '/uploads/allimg/161111/1-161111093936144-lp.JPG', 1414486620, 1478829378, 1, '我院,组织,全体,职工,认真,学习贯彻,习,长征,', 0, 0, 0, 0, 0, 0, '按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求10月28日省能源院召开全体职工会议会', '', 1, 0, 0, 172),
(186, 10, '0', 1489978973, '', 1, 1, 0, 146, 0, '公示-“黑龙江省能源环境研究院(黑龙江省科学院科技孵化中心)间接费用管理办法(试行)”', '', '', 'admin', '未知', '', 1489978973, 1489978913, 1, '“,黑龙江省,能源,环境,研究院,科学院,科技,', 0, 0, 0, 0, 0, 0, '黑龙江省能源环境研究院黑龙江省科学院科技孵化中心间接费用管理办法试行经2017年3月20日全体职工大会审议通过即日起进行公示公示期五个工作日。如有任何异议请与', '', 1, 0, 0, 174),
(187, 10, '16', 1492653840, 'p,f', 1, 1, -2, 62, 0, '我院召开党风廉政建设扩大会议', '', '', 'admin', '未知', '/uploads/allimg/170502/1-1F5020QH6427-lp.JPG', 1492653840, 1493684745, 1, '我院,召开,党风,廉政建设,扩大会议,4月,28日,', 0, 0, 0, 0, 0, 0, '4月28日省能源院召开党风廉政建设扩大会议迅速传达省科学院月报会上关于党风廉政建设的相关要求并部署各项工作省能源院领导班子全体职工参加了会议会议由省能源院', '', 1, 0, 0, 175),
(188, 10, '0', 1492566780, 'p,f', 1, 1, 0, 146, 0, '我院承担的省院所基本应用技术研究专项顺利通过鉴定', '', '', 'admin', '未知', '/uploads/allimg/170502/1-1F502100322b4-lp.JPG', 1492566780, 1493690675, 1, '我院,承担,的,省,院所,基本,应用技术,研究,', 0, 0, 0, 0, 0, 0, '2017年4月19日由黑龙江省科学院组织专家对省能源环境研究院承担的黑龙江省院所基本应用技术研究专项《基于一村一厂生物质加工和清洁利用的寒区无煤生态村应用技术研究》进行了', '', 1, 0, 0, 176),
(189, 10, '16', 1493968740, 'p,f', 1, 1, 0, 74, 0, '“成长 责任 理想”我院召开青年职工交流座谈会', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512152GCM-lp.JPG', 1493968740, 1494574160, 1, '“,成长,责任,理想,”,我院,召开,青年,职工,', 0, 0, 0, 0, 0, 0, '为纪念并弘扬五四精神展现青春风采激发广大青年科技人员立足本职岗位、投身科研事业的热情5月5日上午省能源环境研究院开展了成长责任理想为主题的五四青年节座谈会', '', 1, 0, 0, 177),
(190, 10, '16', 1493958540, 'p,f', 1, 1, 0, 148, 0, '省能源院召开全体职工大会传达黑龙江省第十二次党代会精神、科学院党组扩大会议精神及赵梅书记讲话精神', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512153040C1-lp.JPG', 1493958540, 1494574382, 1, '省,能源,院,召开,全体,职工,大会,传达,5日,', 0, 0, 0, 0, 0, 0, '5日上午黑龙江省能源环境研究院组织召开全体职工大会院班子成员参加会议会议由党委书记兼院长徐晓秋同志主持。 会议传达了黑龙江省第十二次党代会精神、科学院党组扩大', '', 1, 0, 0, 178),
(191, 10, '9', 1493961120, 'p,f', 1, 1, 0, 149, 0, '省能源院顺利通过省直精神文明单位标兵验收', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512153K3D0-lp.JPG', 1493961120, 1494574897, 1, '省,能源,院,顺利,通过,省直,精神,文明单位,', 0, 0, 0, 0, 0, 0, '5日上行省能源院与其他3家院所一起参加省省直工委文明办文明单位创建工作验收会并顺利通过验收。', '', 1, 0, 0, 179),
(192, 10, '16', 1493365260, 'p,f', 1, 1, 0, 189, 0, '省能源院召开党风廉政建设扩大会议迅速传达省科学院党风廉政建设相关要求', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512154321335-lp.JPG', 1493365260, 1494575102, 1, '省,能源,院,召开,党风,廉政建设,扩大会议,4月,', 0, 0, 0, 0, 0, 0, '4月28日省能源院召开党风廉政建设扩大会议迅速传达省科学院月报会上关于党风廉政建设的相关要求并部署各项工作省能源院领导班子全体职工参加了会议会议由省能源院', '', 1, 0, 0, 180),
(193, 10, '16', 1492593240, 'p,f', 1, 1, 0, 108, 0, '省能源院党委召开中心组学习扩大会议学习贯彻落实省科学院党风廉政会议精神', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F51215542O40-lp.JPG', 1492593240, 1494575710, 1, '省,能源,院,党委,召开,中心组,学习,扩大会议,', 0, 0, 0, 0, 0, 0, '4月19日省能源院党委召开中心组学习扩大会议学习贯彻落实省科学院党风廉政会议精神省能源院领导班子、党委委员各党支部书记、部门负责人、职工代表参加了会议会议由', '', 1, 0, 0, 181),
(194, 10, '16', 1490946900, 'p,f', 1, 1, 0, 161, 0, '省能源院党委召开中心组学习会议', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121556302J-lp.JPG', 1490946900, 1494575832, 1, '省,能源,院,党委,召开,中心组,学习,会议,3月,', 0, 0, 0, 0, 0, 0, '3月31日省能源院党委召开中心组学习会议院领导班子参加会议会议由徐晓秋同志主持。 参会人员学习了省科学院第二期关键少数政治理论能力提升班相关学习内容及党组书记赵梅', '', 1, 0, 0, 182),
(195, 10, '9', 1488960000, 'p,f', 1, 1, 0, 68, 0, '省能源院举办女职工观影活动喜迎“三八”妇女节', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512155PHC-lp.JPG', 1488960000, 1494575999, 1, '省,能源,院,举办,女,职工,观影,活动,喜迎,“,', 0, 0, 0, 0, 0, 0, '值此三八妇女节来临之际,省能源院举行庆祝活动,组织全体女职工观看电影,这次活动营造出了浓郁的节日气氛,使广大女职工能在平日繁忙的工作中,放松身心,以更好的状态投入', '', 1, 0, 0, 183),
(196, 10, '16', 1487145600, 'p,f', 1, 1, 0, 167, 0, '省能源环境研究院党委召开“两学一做”专题民主生活会', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F51216023S96-lp.JPG', 1487145600, 1494576215, 1, '省,能源,环境,研究院,党委,召开,“,两学一做,', 0, 0, 0, 0, 0, 0, '2月15日黑龙江省能源环境研究院党委召开两学一做专题民主生活会省能源院党委书记、院长徐晓秋同志和省能源院党委委员、副院长关春玲同志参加会议省科学院党组书记赵梅同', '', 1, 0, 0, 184),
(197, 10, '9', 1487577840, 'p,f', 1, 1, 0, 200, 0, '省能源院各党支部组织全体党员及广大干部职工集体观看省科学院党组赵梅书记受邀坐客人民网视频访谈', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121605241R-lp.JPG', 1487577840, 1494576431, 1, '省,能源,院各,党支部,组织,全体,党员,及,20日,', 0, 0, 0, 0, 0, 0, '20日省能源院各党支部组织全体党员及广大干部职工集体观看省科学院党组赵梅书记受邀坐客人民网视频访谈。', '', 1, 0, 0, 185),
(198, 10, '9', 1487318820, 'p,f', 1, 1, 0, 146, 0, '省能源院召开全体职工会议宣布关于任命姜宏宇同志为孵化中心主任的任命文件', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512160QNN-lp.JPG', 1487318820, 1494576611, 1, '省,能源,院,召开,全体,职工,会议,宣布,关于,', 0, 0, 0, 0, 0, 0, '2月17日上午省能源院召开全体职工会议省科学院党组成员曾祥俊同志、人事处处长张兴同志参加了会议会议由省能源院院长徐晓秋同志主持。会上张兴处长宣读了关于任命姜宏', '', 1, 0, 0, 186),
(199, 10, '9', 1487232600, 'p,f', 1, 1, 0, 87, 0, '省科学院郭春景院长与我院人员一共赴伊春调研', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512161255R0-lp.JPG', 1487232600, 1494576936, 1, '省,科学院,郭春景,郭,春景,院长,与,我院,人员,', 0, 0, 0, 0, 0, 0, '2月16日省科学院郭春景院长、能源院徐晓秋院长和生物能团队带头人刘伟一同前往伊春格润生态养殖公司的大型沼气工程进行调研郭院长要求能源院要结合我省养殖业现状在废弃', '', 1, 0, 0, 187),
(200, 10, '0', 1485245760, 'p,f', 1, 1, 0, 165, 0, '省能源环境研究院召开职工大会传达省科学院2017年工作会议精神', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512161H3134-lp.JPG', 1485245760, 1494577074, 1, '省,能源,环境,研究院,召开,职工,大会,传达省,', 0, 0, 0, 0, 0, 0, '2017年1月24日上午省能源环境研究院召开职工大会传达省科学院2017年工作会议精神会上徐晓秋院长传达了省科学院2017年工作报告及院党组书记赵梅同志的讲话精神要求各部门会后', '', 1, 0, 0, 188),
(201, 10, '0', 1484036280, 'p,f', 1, 1, 0, 196, 0, '省能源院三项课题顺利通过鉴定', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121619492K-lp.JPG', 1484036280, 1494577272, 1, '省,能源,院,三项,课题,顺利,通过鉴定,2017年,', 0, 0, 0, 0, 0, 0, '2017年1月10日由黑龙江省科学院组织专家对省能源环境研究院和科技孵化中心承担的三项课题省科学院预研项目《寒区农业固体废弃物循环厌氧发酵关键技术研究》、学部委员指导专项', '', 1, 0, 0, 189),
(202, 10, '0', 1482308580, 'p,f', 1, 1, 0, 153, 0, '省能源院召开全体党员大会及全体职工大会', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512162430E7-lp.JPG', 1482308580, 1494577573, 1, '省,能源,院,召开,全体,党员,大会,及,职工,12月,', 0, 0, 0, 0, 0, 0, '12月21日省能源院召开全体党员大会省能源院党建联系点、党组成员曾祥俊同志院人事处副处长王向伟同志参加了会议会议由省能源院党委书记、院长徐晓秋同志主持。 首先,', '', 1, 0, 0, 190),
(203, 10, '16', 1480321740, 'p,f', 1, 1, 0, 66, 0, '省能源院召开会议学习贯彻落实省委十一届八次全会精神、省委书记王宪魁同志讲话精神及省科学院党组书记赵梅同志在省科学院学习全会精神会议上的讲话', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512163002V9-lp.JPG', 1480321740, 1494577893, 1, '省,能源,院,召开,会议,学习贯彻,落实,省委,', 0, 0, 0, 0, 0, 0, '11月28日省能源院召开会议学习贯彻落实省委十一届八次全会精神、省委书记王宪魁同志讲话精神及省科学院党组书记赵梅同志在省科学院学习全会精神会议上的讲话会议由省能源', '', 1, 0, 0, 191),
(204, 10, '0', 1480149120, 'p,f', 1, 1, 0, 195, 0, '黑龙江省能源环境学会召开第二次年会', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512163406459-lp.JPG', 1480149120, 1494578199, 1, '黑龙江省,能源,环境,学会,召开,第二次,年会,', 0, 0, 0, 0, 0, 0, '11月26日作为黑龙江省科学技术协会学术年会的重要组成部分也是第八届黑龙江省科学技术协会学术年会暨太阳岛科技论坛分会场由黑龙江省能源环境学会,黑龙江省自然辩证法研', '', 1, 0, 0, 192),
(205, 10, '16', 1478248800, 'p,f', 1, 1, 0, 92, 0, '省能源院召开党委中心组学习扩大会议', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512164025935-lp.JPG', 1478248800, 1494578483, 1, '省,能源,院,召开,党委,中心组,学习,扩大会议,', 0, 0, 0, 0, 0, 0, '11月4日省能源院召开党委中心组学习扩大会议省能源院领导班子、党委委员、党支部书记、各部门负责人和党外人士出席了会议会议由党委书记、院长徐晓秋同志主持。 会议第一', '', 1, 0, 0, 193),
(206, 10, '0', 1477644240, 'p,f', 1, 1, 0, 139, 0, '省能源院召开全体职工会议学习习近平总书记在纪念红军长征80周年大会上的讲话', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F512164420353-lp.JPG', 1477644240, 1494578752, 1, '省,能源,院,召开,全体,职工,会议,学,习习,近,', 0, 0, 0, 0, 0, 0, '按照省科学院机关党委《关于认真学习贯彻习近平总书记在纪念红军长征胜利80周年大会上的讲话的通知》及学习十八届六中全会精神相关要求28日省能源院召开全体职工会议会议围', '', 1, 0, 0, 194),
(207, 28, '0', 1494581381, 'p,f', 1, 1, 0, 116, 0, '省科学院科技进步一等奖', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121AJEc-lp.JPG', 1494581381, 1494579504, 1, '省,科学院,科技,进步,一等奖,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 6),
(208, 28, '0', 1494579549, 'p', 1, 1, 0, 133, 0, '省科学院TRIZ大赛三等奖', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121A922X3-lp.JPG', 1494579549, 1494579594, 1, '省,科学院,TRIZ,大赛,三等奖,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 196),
(209, 28, '0', 1494579607, 'p,f', 1, 1, 0, 63, 0, '省科学院书写党章优秀组织奖', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121F0261R-lp.JPG', 1494579607, 1494579671, 1, '省,科学院,书写,党章,优秀,组织奖,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 197),
(210, 28, '0', 1494579678, 'p,f', 1, 1, 0, 130, 0, '省科学院TRIZ大赛三等奖', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121F133421-lp.JPG', 1494579678, 1494579731, 1, '省,科学院,TRIZ,大赛,三等奖,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 198),
(211, 28, '0', 1494581638, 'p,f', 1, 1, 0, 161, 0, '黑龙江省科学技术三等奖', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121F353P8-lp.JPG', 1494581638, 1494579893, 1, '黑龙江省,科学技术,三等奖,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 3),
(212, 28, '0', 1494581999, 'p,f', 1, 1, 0, 194, 0, '黑龙江省科学技术发明一等奖', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121F522936-lp.JPG', 1494581999, 1494579955, 1, '黑龙江省,科学技术,发明,一等奖,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 1),
(213, 28, '0', 1494579958, 'p', 1, 1, 0, 161, 0, '中国环境科学学会团体会员', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121F614C7-lp.JPG', 1494579958, 1494580019, 1, '中国,环境科学,学会,团体,会员,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 201),
(214, 28, '0', 1494580023, 'p', 1, 1, 0, 186, 0, '省科技厅共享服务平台先进集体、先进个人', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121FH4S2-lp.JPG', 1494580023, 1494580105, 1, '省,科技厅,共享,服务平台,先进集体,、,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 202),
(215, 28, '0', 1494580109, 'p', 1, 1, 0, 70, 0, '省科技厅共享服务平台先进集体、先进个人', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121FT2441-lp.JPG', 1494580109, 1494580148, 1, '省,科技厅,共享,服务平台,先进集体,、,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 203),
(216, 28, '0', 1494580151, 'p,f', 1, 1, 0, 55, 0, '省科技厅共享服务平台先进集体、先进个人', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121F930448-lp.JPG', 1494580151, 1494580191, 1, '省,科技厅,共享,服务平台,先进集体,、,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 204),
(217, 28, '0', 1494580195, 'p,f', 1, 1, 0, 55, 0, '省直文明单位', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121G015V4-lp.JPG', 1494580195, 1494580242, 1, '省直,文明单位,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 205),
(218, 28, '0', 1494580246, 'p,f', 1, 1, 0, 162, 0, '省直“五一巾帼奖”集体', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121G10KQ-lp.JPG', 1494580246, 1494580310, 1, '省直,“,五一巾帼奖,”,集体,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 206),
(219, 28, '0', 1494580313, 'p,f', 1, 1, 0, 75, 0, '省科学院先进党组织', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121G212551-lp.JPG', 1494580313, 1494580374, 1, '省,科学院,先进,党组织,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 207),
(220, 28, '0', 1494580381, 'p,f', 1, 1, 0, 130, 0, '省直精神文明单位', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121G405D6-lp.JPG', 1494580381, 1494580471, 1, '省直,精神,文明单位,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 208),
(221, 28, '0', 1494580476, 'p,f', 1, 1, 0, 110, 0, '省直青年文明号', '', '', 'admin', '未知', '/uploads/allimg/170512/1-1F5121G44a92-lp.JPG', 1494580476, 1494580515, 1, '省直,青年文明号,', 0, 0, 0, 0, 0, 0, '', '', 1, 0, 0, 209),
(222, 10, '0', 1496711640, 'p,f', 1, 1, 0, 127, 0, '省科学院审计部进驻我院开展2016年度审计工作', '', '', 'admin', '未知', '/uploads/allimg/170616/1-1F616091925Y9-lp.jpg', 1496711640, 1497576057, 1, '省,科学院,审计部,进驻,我院,开展,2016,年度,', 0, 0, 0, 0, 0, 0, '6月5日上午根据院党组关于开展全院2016年度财务收支审计工作的部署院党组成员副院长沙长青同志审计部副处长曹海虹同志率院审计部协同审计师事务所进驻省能源院开展2016年度', '', 1, 0, 0, 210),
(223, 10, '0', 1502242507, 'p,f', 1, 1, 0, 181, 0, '能源院党委组织全体职工观看中国人民解放军建军90周年大会直播', '', '', 'admin', '未知', '/uploads/allimg/170809/1-1FPZ939495X-lp.jpg', 1502242507, 1502243113, 1, '能源,院,党委,组织,全体,职工,观看,8月,1日,', 0, 0, 0, 0, 0, 0, '8月1日上午10:00庆祝中国人民解放军建军90周年大会在人民大会堂举行中共中央总书记、国家主席、中央军委主席习近平出席大会并发表重要讲话。按照省委办公厅及省科学院机关党', '', 1, 0, 0, 211),
(224, 10, '0', 1501142160, 'p,f', 1, 1, 0, 118, 0, '中国科学院广州能源院所庄新姝研究员、孔晓英博士到我院调研', '', '', 'admin', '未知', '/uploads/allimg/170809/1-1FP9151G6105-lp.jpg', 1501142160, 1502263265, 1, '中国科学院,广州,能源,院所,庄新,姝,研究员,', 0, 0, 0, 0, 0, 0, '7月27日上午作为龙广结合首批抵哈的科研单位中国科学院广州能源院所庄新姝研究员、孔晓英博士一行到省能源环境研究院调研就涉及的研究领域进行洽谈交流同时与生物能创', '', 1, 0, 0, 212),
(225, 10, '0', 1503448797, 'p,f', 1, 1, 0, 64, 0, '山东大学鲍晓明教授,黑龙江中丹建业生物能源公司总经理王建业一行两人来我院进行洽谈交流', '洽谈交流', '', 'admin', '未知', '/uploads/allimg/170823/1-1FR30T21M20-lp.jpg', 1503448797, 1503449429, 1, '山东,大学,鲍,晓明,教授,黑龙,江中,丹,建业,', 0, 0, 0, 0, 0, 0, '2017年8月22日山东大学鲍晓明教授黑龙江中丹建业生物能源公司总经理王建业一行两人来到省能源环境研究院就纤维素秸秆乙醇工业所涉及的纤维素降解菌及酵母菌的研发与应用进', '', 1, 0, 0, 213),
(226, 10, '0', 1506321153, 'p,f', 1, 1, 0, 126, 0, '能源院开展科普活动', '', '', 'admin', '未知', '/uploads/allimg/170925/1-1F925143Q0603-lp.jpg', 1506321153, 1506321569, 1, '能源,院,开展,科普活动,9月,20日,省,能源,环境,', 0, 0, 0, 0, 0, 0, '9月20日省能源环境学会到漠河县宏林菌业种植有限公司进行林下产业废弃物再利用技术及室内空气污染控制技术科普活动并与石忠斌董事长探讨了菌业废弃物综合利用方案等问题。', '', 1, 0, 0, 214),
(227, 10, '16', 1508291700, 'p,f', 1, 1, 0, 136, 0, '18日9:00 省能源环境研究院党委组织全体干部职工共同观看十九大召开盛况直播', '', '', 'admin', '未知', '/uploads/allimg/171020/1-1G020095H4433-lp.jpg', 1508291700, 1508464828, 1, '18日,省,能源,环境,研究院,党委,组织,全体,', 0, 0, 0, 0, 0, 0, '18日9:00按照省科学院相关部署省能源环境研究院党委组织全体干部职工共同观看十九大召开盛况直播共唱国歌以饱满的精神工作状态庆祝十九大胜利召开', '', 1, 0, 0, 215),
(228, 10, '16', 1508378540, 'p,f', 1, 1, 0, 108, 0, '10月19日上午省能源院领导班子、全体党员干部对十九大报告全文进行了学习参会人员围绕省能源院发展实际进行了解读学习和讨论', '', '', 'admin', '未知', '/uploads/allimg/171020/1-1G020100J41X-lp.jpg', 1508378540, 1508465312, 1, '10月,19日,上午省,能源,院,领导班子,、,全体,', 0, 0, 0, 0, 0, 0, ' 10月19日上午省能源院召开全体职工大会全面部署学习贯彻落实十九大会议精神省能源院党委书记、院长徐晓秋同志主持会议省能源院领导班子、全体党员干部及民主人士', '', 1, 0, 0, 216),
(229, 10, '0', 1510819005, 'p,f', 1, 1, 0, 145, 0, '以向善、向上、向阳、向党精气神 打造一流科研创新团队 --省能源院生物能创新团队党支部开展“说讲谈”活动', '', '', 'admin', '未知', '/uploads/allimg/171116/1-1G11616001V39-lp.JPG', 1510819005, 1510819412, 1, '以,向善,、,向上,向阳,向,党,精气神,打造,为,', 0, 0, 0, 0, 0, 0, '为深入贯彻落实党的十九大精神落实院党组提出关于“新思想引领改革发展思路新征程凝聚创新创业力量”工作的相关部署11月15日上午省能源环境研究院生物能创新团队党支部', '', 1, 0, 0, 217),
(230, 10, '0', 1510560600, 'p', 1, 1, 0, 92, 0, ' 为进一步巩固并发挥省能源院生物能创新团队在寒区固体废弃物处理处置、清洁能源领域的科研技术优势经过省能源院与农业部沼气科学研究所的前期准备11月13日上午省科学院郭春景院长与来访的农业部沼气科学研究所邓宇副所长一行在省科学院会议室进行了座谈省科学院产业化处李骏处长省能源院徐晓秋院长省能源院相关科研人员参加了会议。 双方就在省能源院建立“寒区生物能源利用联合实验室”相关工作进行了深入交流。郭院长首先对邓副所长一行的到来表示欢迎,郭院长指出,要充分发挥好沼气所和能源院各自在生物质', '', '', 'admin', '未知', '/uploads/allimg/171116/1-1G116161130414-lp.JPG', 1510560600, 1510820021, 1, '为,进一步,巩固,并,发挥省,能源,院,生物能,为,', 0, 0, 0, 0, 0, 0, ' 为进一步巩固并发挥省能源院生物能创新团队在寒区固体废弃物处理处置、清洁能源领域的科研技术优势经过省能源院与农业部沼气科学研究所的前期准备11月13日上午省科学院郭', '', 1, 0, 0, 218),
(231, 10, '10', 1511829000, 'p,f', 1, 1, 0, 74, 0, '省能源院召开全体职工会议 传达贯彻落实省委第十二届二次全会精神', '', '', 'admin', '未知', '/uploads/allimg/171204/1-1G2040S9332A-lp.jpg', 1511829000, 1512348104, 1, '省,能源,院,召开,全体,职工,会议,传达,贯彻,', 0, 0, 0, 0, 0, 0, '11月27日下午省能源院召开全体党员会议传达贯彻落实省委第十二届二次全会精神省能源院领导班子全体党员干部民主人士代表参加了会议会议由省能源院党委书记、院长徐', '', 1, 0, 0, 219),
(232, 10, '0', 1515142680, 'p,f', 1, 1, 0, 102, 0, '省能源院召开2017年度总结表彰大会', '', '', '李福裿', '未知', '/uploads/allimg/180108/1-1P10PZ0464B-lp.JPG', 1515142680, 1515373470, 1, '省,能源,院,召开,2017,年度,总结,表彰大会,1月,', 0, 0, 0, 0, 0, 0, '1月2日上午省能源院在会议室隆重召开2017年度总结表彰大会,省科学院郭春景院长,省能源院领导班子及全体职工参加了大会,会议由院长徐晓秋同志主持。', '', 1, 0, 0, 220),
(233, 10, '16', 1520818014, 'p,f', 1, 1, 0, 95, 0, '省能源院组织全体党员干部集中收看全国人大一次会议开幕盛况', '', '', 'admin', '未知', '/uploads/allimg/180305/1-1P305114129A6-lp.JPG', 1520818014, 1520223898, 1, '省,能源,院,组织,全体,党员,干部,集中,收看,', 0, 0, 0, 0, 0, 0, '3月5日上午900时按照省科学院部署省能源院组织全体党员干部集中收看全国人大一次会议开幕盛况', '', 1, 0, 0, 221),
(234, 10, '16', 1520817978, 'p,f', 1, 1, 0, 82, 0, '能源院开展庆祝“三八国际妇女节"系列活动', '', '', 'admin', '未知', '/uploads/allimg/180309/1-1P309105GR46-lp.jpg', 1520817978, 1520564423, 1, '能源,院,开展,庆祝,“,三八国际妇女节,系列,', 0, 0, 0, 0, 0, 0, '为庆祝全国人大召开喜迎三八国际妇女节的到来省能院开展系列活动3月7日召开“聪慧时尚自信坚韧创新进取”主题女职工座谈会能源院领导班子与全体女职工一同畅谈工作', '', 1, 0, 0, 222),
(235, 10, '10,16', 1522221418, 'p,f', 1, 1, 0, 172, 0, '省能源院召开全中心组学习扩大会议学习传达3月23日省科学院党组扩大会议精神', '', '', 'admin', '未知', '/uploads/allimg/180328/1-1P32Q513193L-lp.jpg', 1522221418, 1522221407, 1, '省,能源,院,召开,全,中心组,学习,扩大会议,', 0, 0, 0, 0, 0, 0, ' 3月26日上午9:00省能源院召开全中心组学习扩大会议学习传达3月23日省科学院党组扩大会议精神。会议由党委书记、院长徐晓秋同志主持能源院全体职工参加了会议。', '', 1, 0, 0, 223),
(236, 10, '0', 1526544740, 'p,f', 1, 1, 0, 83, 0, '能源院开展“汇聚读书力量 托起明日希望”文化扶贫慰问活动', '', '', 'admin', '未知', '/uploads/allimg/180517/1-1P51G61053292-lp.jpg', 1526544740, 1526544716, 1, '能源,院,开展,“,汇聚,读书,力量,托起,明日,', 0, 0, 0, 0, 0, 0, ' 按照省科学院团委的安排部署,省能源院组织全体干部职工开展“汇聚阅读力量 托起明日希望”文化扶贫慰问活动。\r\n', '', 1, 0, 0, 224),
(237, 10, '0', 1531121347, 'p', 1, 1, 0, 83, 0, '省科学院科研处到省能源院进行科研情况调研', '', '', 'admin', '未知', '/uploads/allimg/180709/1-1PF9153620917-lp.JPG', 1531121347, 1531121927, 1, '省,科学院,科研处,到,能源,院,进行,科研,情况,', 0, 0, 0, 0, 0, 0, '5月24日上午在院科研处倪宏伟处长带领下院科研处一行三人到省能源院开展科研情况调研工作省能源院领导班子及科研办相关人员参加了调研省能源院分别从科研总体情况、项', '', 1, 0, 0, 225),
(238, 10, '0', 1530171780, 'p', 1, 1, 0, 66, 0, '省能源环境研究院与化工学院项目对接会', '', '', 'admin', '未知', '/uploads/allimg/180709/1-1PF91546132Y-lp.jpg', 1530171780, 1531122523, 1, '省,能源,环境,研究院,与,化工学院,项目,对接,', 0, 0, 0, 0, 0, 0, '6月28日下午能源院徐晓秋院长带队一行4人赴理工大学化学与环境工程学院洽谈合作事宜双方围绕废弃物厌氧处理、木质纤维素降解转化等方面展开深入交流并对学生培养、互聘导', '', 1, 0, 0, 226),
(239, 10, '0', 1531122715, 'p', 1, 1, 0, 185, 0, '2018年斯里兰卡城市固体废弃物处理研修班访问黑龙江省能源环境研究院', '', '', '刘伟', '未知', '/uploads/allimg/180709/1-1PF9155404438-lp.jpg', 1531122715, 1531122904, 1, '2018年,斯里兰卡,城市,固体,废弃物,处理,2018年,', 0, 0, 0, 0, 0, 0, '2018年7月4-6日2018年斯里兰卡城市固体废弃物处理研修班在哈尔滨举办。本次研修班由商务部主办农业农村部沼气科学研究所承办共有20名来自斯里兰卡不同地区的市政官员参加了此', '', 1, 0, 0, 227),
(240, 10, '16', 1530416040, 'p,f', 1, 1, 0, 134, 0, '省能源环境研究院党委开展庆“七一”不忘初心跟党走、牢记使命有作为系列主题活动', '', '', 'admin', '未知', '/uploads/allimg/180710/1-1PG0113625596-lp.jpg', 1530416040, 1531194387, 1, '省,能源,环境,研究院,党委,开展,庆,“,七一,', 0, 0, 0, 0, 0, 0, '为热烈庆祝中国共产党成立97周年进一步增强党组织的凝聚力和战斗力不断深入学习贯彻党的十九大精神不断强化党员\"四个意识\",不断深化“两学一做”学习教育,不断夯实基层', '', 1, 0, 0, 228),
(241, 10, '0', 1531400321, 'p,f', 1, 1, 0, 141, 0, '省能源院同哈理工化学与工程学院签署共建协议,成立教学科研实践基地', '', '', 'admin', '未知', '/uploads/allimg/180712/1-1PG2205959203-lp.jpg', 1531400321, 1531400432, 1, '省,能源,院同,哈理工,哈,理工,化学,与,7月,', 0, 0, 0, 0, 0, 0, '7月12日下午哈尔滨理工大学化学与环境工程学院党委书记徐春霖带队到能源院进行第二次深入交流。双方首先签署了“教学科研实践基地共建协议”和“研究生导师互聘协议”共同', '', 1, 0, 0, 229),
(242, 10, '0', 1534399968, 'p,f', 1, 1, 0, 87, 0, '省能源院召开 “深入学习张庆伟书记调研讲话精神”会议', '', '', 'admin', '未知', '/uploads/allimg/180816/1-1PQ6141P1545-lp.jpg', 1534399968, 1534400348, 1, '省,能源,院,召开,“,深入,学习,张庆伟,书记,', 0, 0, 0, 0, 0, 0, '8月16日上午省能源院召开 “深入学习张庆伟书记调研讲话精神”会议,会议由徐晓秋院长主持,全体职工参加了会议。', '', 1, 0, 0, 230),
(243, 10, '0', 1534497638, 'p,f', 1, 1, 0, 141, 0, '能源院召开2019年度储备项目评审会', '', '', 'admin', '未知', '/uploads/allimg/180817/1-1PQGH33B13-lp.jpg', 1534497638, 1534498031, 1, '能源,院,召开,2019,年度,储备,项目,评审会,8月,', 0, 0, 0, 0, 0, 0, '8月17日能源院组织召开2019年度储备项目评审会两个创新团队共组织10项科研项目参与本次储备项目评审。评审委员会由来自哈尔滨工业大学、哈尔滨工程大学、黑龙江大学等七名省', '', 1, 0, 0, 231),
(244, 10, '16', 1541726162, 'p,f', 1, 1, 0, 105, 0, '省能源院贯彻落实中央、省委及省科学院党组各项精神', '', '', 'admin', '未知', '/uploads/allimg/181109/1-1Q10Z929492R-lp.jpg', 1541726162, 1541727047, 1, '省,能源,院,贯彻,落实,中央,、,省委,及,为,', 0, 0, 0, 0, 0, 0, '为深入贯彻落实中央、省委及省科学院相关精神同时围绕法制年建设11月5日省能源院党委召开中心组学习扩大会议能源院全体党员参加会议会议由党委书记、院长徐晓秋同志', '', 1, 0, 0, 232),
(245, 10, '0', 1542765515, 'p,f', 1, 1, 0, 69, 0, '2018能源环境可持续发展论坛 暨省能源环境学会第四届学术年会召开', '', '', 'admin', '未知', '/uploads/allimg/181121/1-1Q12110005D08-lp.png', 1542765515, 1542765882, 1, '2018,能源,环境,可,持续,发展论坛,暨省,学会,', 0, 0, 0, 0, 0, 0, '2018年11月17日太阳岛科技论坛系列活动——2018能源环境可持续发展论坛暨省能源环境学会第四届学术年会在哈尔滨工业大学城市水资源与水环境国家重点实验室隆重举行。本次会议的', '', 1, 0, 0, 233),
(246, 10, '0', 1544161380, 'p,f', 1, 1, 0, 148, 0, '“解放思想,开放办院,协同创新”副院长赵立涛同志来能源院调研', '', '', 'admin', '未知', '/uploads/allimg/181210/1-1Q210094431926-lp.jpg', 1544161380, 1544406472, 1, '“,解放思想,开放,办院,协同,创新,”,副院长,', 0, 0, 0, 0, 0, 0, ' 12月7日上午省科学院党组成员、副院长赵立涛同志、院对外合作处处长刘志忠同志以及对外合作处全体同志来到能源院调研座谈。此次调研的主题为“解放思想开放办院协同创新', '', 1, 0, 0, 234),
(247, 10, '16', 1545273138, 'p', 1, 1, 0, 124, 0, '省能源院集体观看中共中央国务院庆祝改革开放40周年大会', '', '', 'admin', '未知', '/uploads/allimg/181220/1-1Q220103332364-lp.png', 1545273138, 1545273284, 1, '省,能源,院,集体,观看,中共中央,国务院,庆祝,', 0, 0, 0, 0, 0, 0, '12月18上午10点根据省委办公厅要求能源环境研究院认真组织全体职工收看中共中央国务院召开的庆祝改革开放40周年大会。', '', 1, 0, 0, 235),
(248, 10, '16', 1551749787, 'p,f', 1, 1, 0, 137, 0, '能源院全体党员干部收看第十三届全国人民代表大会第二次会议开幕', '', '', 'admin', '未知', '/uploads/allimg/190305/1-1Z305093T4X8-lp.JPG', 1551749787, 1551749973, 1, '能源,院,全体,党员,干部,收看,第十,三届,全国,', 0, 0, 0, 0, 0, 0, '3月5日上午9时能源院全体党员干部集体收看第十三届全国人民代表大会第二次会议开幕。', '', 1, 0, 0, 236),
(249, 10, '0', 1552959049, 'p,f', 1, 1, 0, 189, 0, '能源院召开全体职工大会 传达学习贯彻省科学院2019年工作会议精神', '', '', 'admin', '未知', '/uploads/allimg/190319/1-1Z31Z93452143-lp.JPG', 1552959049, 1552959316, 1, '能源,院,召开,全体,职工,大会,传达,2019年,2月,', 0, 0, 0, 0, 0, 0, '2019年03月28日能源院召开全体职工大会传达学习贯彻省科学院2019年工作会议精神', '', 1, 0, 0, 237),
(250, 10, '0', 1552009320, 'p', 1, 1, 0, 144, 0, '能源院举办“聚巾帼力量 筑美丽未来”座谈会庆祝“三八”国际妇女节', '', '', 'admin', '未知', '/uploads/allimg/190319/1-1Z31Z94359601-lp.JPG', 1552009320, 1552959868, 1, '能源,院,举办,“,聚巾帼力量,筑,美丽,未来,”,', 0, 0, 0, 0, 0, 0, ' 为庆祝“三八”国际妇女节,省能源院举办“聚巾帼力量 筑美丽未来”座谈会,全院女职工和班子成员参加了座谈会,能源院党委书记、院长徐晓秋同志主持会议。', '', 1, 0, 0, 238),
(251, 10, '0', 1554772922, 'p,f', 1, 1, 0, 56, 0, '省能源院参加的国家重点研发计划“村镇低成本清洁能源供暖及蓄热技术研究”项目启动会顺利召开', '', '', 'admin', '未知', '/uploads/allimg/190409/1-1Z40Z929251W-lp.JPG', 1554772922, 1554773801, 1, '省,能源,院,参加,的,国家,重点,研发,计划,“,', 0, 0, 0, 0, 0, 0, '2019年3月27日由中国建筑科学研究院有限公司作为项目牵头单位、建筑环境与节能研究院李忠研究员作为项目负责人的“十三五”国家重点研发计划“绿色宜居村镇技术创新”重点专项', '', 1, 0, 0, 239),
(252, 10, '10', 1557211514, 'p,f', 1, 1, 0, 50, 0, '省能源院召开全院职工大会,学习传达贯彻省科学院落实机构改革方案动员大会的精神', '', '', 'admin', '未知', '/uploads/allimg/190507/1-1Z50G44049615-lp.JPG', 1557211514, 1557211291, 1, '省,能源,院,召开,全院,职工,大会,学习,传达,', 0, 0, 0, 0, 0, 0, '5月6日下午14时省能源院召开全院职工大会学习传达贯省科学院落实机构改革方案动员大会的精神。会议由党委书记、院长徐晓秋同志主持。', '', 1, 0, 0, 240),
(253, 10, '0', 1573024753, 'p,f', 1, 1, 0, 103, 0, '守初心、担使命、找差距、抓落实', '', '', 'admin', '未知', '', 1573024753, 1573024723, 1, '守初,心,、,担,使命,找,差距,抓,落实,守初,心,', 0, 0, 0, 0, 0, 0, '--省能源环境研究院党委“不忘初心、牢记使命”主题教育开展情况汇总\r\n\r\n“不忘初心、牢记使命”主题教育活动开展以来省能源院党委始终把党的政治建设摆在突出位置坚定政治', '', 1, 0, 0, 241),
(254, 10, '16', 1573109149, 'p', 1, 1, 0, 130, 0, '能源院全体职工学习贯彻落实传达党的十九届四中全会精神', '', '', 'admin', '未知', '/uploads/allimg/191107/1-19110G45100394-lp.jpg', 1573109149, 1573109634, 1, '能源,院,全体,职工,学习贯彻,落实,传达,党的,', 0, 0, 0, 0, 0, 0, '11月7日上午省能源院召开全体职工大会学习贯彻落实传达党的十九届四中全会精神全文学习了中国共产党第十九届中央委员会第四次全体会议公报会议由能源院党委书记、院长', '', 1, 0, 0, 242),
(255, 10, '16', 1571900400, 'p', 1, 1, 0, 106, 0, '能源院全体党员干部观看《榜样4》', '', '', 'admin', '未知', '/uploads/allimg/191107/1-19110G501592Q-lp.jpg', 1571900400, 1573110305, 1, '能源,院,全体,党员,干部,观看,《,榜样4,》,', 0, 0, 0, 0, 0, 0, ' 10月24日按照省委“不忘初心、牢记使命”主题教育领导小组办公室《关于转发<关于认真做好《榜样4》专题节目学习收看工作的通知>的通知》和省科学院机关党委通知要求,省能源院', '', 1, 0, 0, 243),
(256, 10, '0', 1565854320, 'p', 1, 1, 0, 145, 0, '能源院协办“2019年刚果环保可持续发展研修班”在哈尔滨举办', '', '', 'admin', '未知', '/uploads/allimg/191107/1-19110G52120A4-lp.jpg', 1565854320, 1573111226, 1, '能源,院,协办,“,2019年,刚果,金,环保,2019年,', 0, 0, 0, 0, 0, 0, '2019年8月11-15日“2019年刚果环保和可持续发展研修班”在哈尔滨举办。本次研修班由商务部主办农业农村部沼气科学研究所承办共有25名来自刚果政府部门、企业协会', '', 1, 0, 0, 244),
(257, 10, '0', 1571547900, 'p,f', 1, 1, 0, 154, 0, '省能源院与七台河市相关门、企业赴湖南省、江西省就低热值固废(煤矸石)资源化利用开展项目对接', '', '', 'admin', '未知', '/uploads/allimg/191112/1-19111209164Y48-lp.png', 1571547900, 1573521500, 1, '赴,湖南省,、,江西省,对接,低,热值,固废,赴,', 0, 0, 0, 0, 0, 0, '为贯彻落实张庆伟同志《在全省工业强省暨产业发展大会上的讲话》精神和《黑龙江省委、省政府关于加快煤炭资源型城市转型推动高质量发展的指导意见》,进一步做好低热值固废(', '', 1, 0, 0, 245),
(258, 10, '16', 1566357000, 'p,f', 1, 1, 0, 148, 0, '省能源院组织全体党员干部,集体学习省委关于《切实加强党的建设、严明党的政治纪律和政治规矩》主题教育宣传片', '', '', 'admin', '未知', '/uploads/allimg/191118/1-19111Q11400524-lp.JPG', 1566357000, 1574046973, 1, '省,能源,院,组织,全体,党员,干部,集体,学习,', 0, 0, 0, 0, 0, 0, '8月21日上午省能源院组织全体党员干部集体学习省委关于《切实加强党的建设、严明党的政治纪律和政治规矩》主题教育宣传片“不忘初心、牢记使命”主题教育活动开展以来', '', 1, 0, 0, 246),
(259, 10, '16', 1562728680, 'p,f', 1, 1, 0, 121, 0, '省能源院党委组织全体党员干部与党建联系点省科学院人事处党支部共赴纪录片《楷模》中尚志市元宝村,开展观《丰碑》,学《楷模》,促“双提”,助落地主题教育活动', '', '', 'admin', '未知', '/uploads/allimg/191118/1-19111Q13RCL-lp.jpg', 1562728680, 1574048423, 1, '省,能源,院,党委,组织,全体,党员,干部,与,7月,', 0, 0, 0, 0, 0, 0, '省能源院党委组织全体党员干部与党建联系点省科学院人事处党支部共赴纪录片《楷模》中尚志市元宝村,开展观《丰碑》,学《楷模》,促“双提”,助落地主题教育活动', '', 1, 0, 0, 247),
(260, 10, '16', 1562216760, '', 1, 1, 0, 120, 0, '黑龙江省能源环境研究院党委组织全体党员和部分党外人士参观北大荒博物馆', '', '', 'admin', '未知', '', 1562216760, 1574053818, 1, '黑龙江省,能源,环境,研究院,党委,组织,全体,', 0, 0, 0, 0, 0, 0, '为进一步深入开展“不忘初心、牢记使命”主题教育活动7月4日黑龙江省能源环境研究院党委组织全体党员和部分党外人士参观北大荒博物馆学习践行“艰苦奋斗、勇于开拓、顾全', '', 1, 0, 0, 248),
(261, 10, '16', 1561525980, 'p', 1, 1, 0, 138, 0, '能源院组织全体党员干部开展“不忘初心,牢记使命”主题教育启动会', '', '', 'admin', '未知', '/uploads/allimg/191118/1-19111Q314514H-lp.jpg', 1561525980, 1574054319, 1, '能源,院,组织,全体,党员,干部,开展,“,根据,', 0, 0, 0, 0, 0, 0, '根据中央、省委和省科学院党组关于开展“不忘初心,牢记使命”主题教育相关部署,省能源院迅速响应,组织全体党员干部,以主题教育为主导,将各项工作全面推向深入。', '', 1, 0, 0, 249),
(262, 10, '0', 1576821180, 'p,f', 1, 1, 0, 62, 0, '能源院承办第五届学术年会暨生态文明建设与资源环境技术研讨会', '', '', 'admin', '未知', '/uploads/allimg/191220/1-191220110U3Q4-lp.jpg', 1576821180, 1576811454, 1, '能源,院,承办,第五届,学术年会,暨,生态,简讯,', 0, 0, 0, 0, 0, 0, '2019年11月30日由黑龙江省能源环境学会主办黑龙江省能源环境研究院承办的“2019黑龙江省能源环境学会第五届学术年会暨生态文明建设与资源环境技术研讨会”在哈尔滨北大荒国际', '', 1, 0, 0, 250),
(263, 10, '0', 1577776980, 'p,f', 1, 1, 0, 83, 0, '省能源环境研究院召开2019年度总结大会', '', '', 'admin', '未知', '/uploads/allimg/200115/1-200115150132C6-lp.jpg', 1577776980, 1579071819, 1, '省,能源,环境,研究院,召开,2019,年度,总结,省,', 0, 0, 0, 0, 0, 0, '2019年12月31日省能源院召开2019年度总结大会院领导班子全体职工参加会议会议由省能源院党委书记、院长徐晓秋同志主持。', '', 1, 0, 0, 251),
(264, 10, '0', 1577778180, 'p', 1, 1, 0, 74, 0, '省科学院伍跃辉院长一行 莅临省能源院指导工作', '', '', 'admin', '未知', '/uploads/allimg/200115/1-200115154154124-lp.jpg', 1577778180, 1579074154, 1, '省,科学院,伍跃,辉,院长,一行,莅临省,能源,院,', 0, 0, 0, 0, 0, 0, '1月3日下午省科学院伍跃辉院长人事处机、关党委相关同志一行莅临省能源院对省能源院领导班子及成员进行年终考核并指导工作。省能源院全体干部职工参加会议。', '', 1, 0, 0, 252);
-- --------------------------------------------------------
--
-- 表的结构 `dede_arctypes`
--
CREATE TABLE `dede_arctypes` (
`id` smallint(5) UNSIGNED NOT NULL,
`reid` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
`topid` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
`sortrank` smallint(5) UNSIGNED NOT NULL DEFAULT '50',
`typename` char(30) NOT NULL DEFAULT '',
`typedir` char(60) NOT NULL DEFAULT '',
`isdefault` smallint(6) NOT NULL DEFAULT '0',
`defaultname` char(15) NOT NULL DEFAULT 'index.html',
`issend` smallint(6) NOT NULL DEFAULT '0',
`channeltype` smallint(6) DEFAULT '1',
`maxpage` smallint(6) NOT NULL DEFAULT '-1',
`ispart` smallint(6) NOT NULL DEFAULT '0',
`corank` smallint(6) NOT NULL DEFAULT '0',
`tempindex` char(50) NOT NULL DEFAULT '',
`templist` char(50) NOT NULL DEFAULT '',
`temparticle` char(50) NOT NULL DEFAULT '',
`namerule` char(50) NOT NULL DEFAULT '',
`namerule2` char(50) NOT NULL DEFAULT '',
`modname` char(20) NOT NULL DEFAULT '',
`description` char(150) NOT NULL DEFAULT '',
`keywords` varchar(60) NOT NULL DEFAULT '',
`seotitle` varchar(80) NOT NULL DEFAULT '',
`moresite` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`sitepath` char(60) NOT NULL DEFAULT '',
`siteurl` char(50) NOT NULL DEFAULT '',
`ishidden` smallint(6) NOT NULL DEFAULT '0',
`cross` tinyint(1) NOT NULL DEFAULT '0',
`crossid` text,
`content` text,
`smalltypes` text
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- 转存表中的数据 `dede_arctypes`
--
INSERT INTO `dede_arctypes` (`id`, `reid`, `topid`, `sortrank`, `typename`, `typedir`, `isdefault`, `defaultname`, `issend`, `channeltype`, `maxpage`, `ispart`, `corank`, `tempindex`, `templist`, `temparticle`, `namerule`, `namerule2`, `modname`, `description`, `keywords`, `seotitle`, `moresite`, `sitepath`, `siteurl`, `ishidden`, `cross`, `crossid`, `content`, `smalltypes`) VALUES
(1, 0, 0, 1, '简介', '{cmspath}/a/jigouqingkuang', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '机构情况', 0, '{cmspath}/a/jigouqingkuang', '', 0, 0, '0', '&nbsp;\r\n<h1 style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\">黑龙江省能源环境研究院(孵化中心)组织结构</span></strong></h1>\r\n<h2>\r\n &nbsp;</h2>\r\n<h1>\r\n <span style=\"font-size: 20px\">1、科研开发部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 20px\"><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span>环境科学与节能技术研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">能源化学研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;<strong>&nbsp;&middot;</strong></span><span style=\"font-size: 20px\">油品助剂研发中心</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">控制实验室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">生物质能源实验室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">寒区生物质能源基地</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">2、行政管理部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">科研与产业化办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">综合管理办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\">&nbsp; &nbsp;&nbsp;<strong>&middot;</strong></span><span style=\"font-size: 20px\">财务管理办公室</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">3、</span><span style=\"font-size: 20px\">领军人才梯队</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">能源化学</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">4、省重点室验室</span></h1>\r\n<p style=\"margin-top: 0px; margin-bottom: 0px\">\r\n <strong><span style=\"font-size: 28px\">&nbsp;&nbsp;&nbsp; &middot;</span></strong><span style=\"font-size: 20px\"><span style=\"font-family: 宋体\">燃油燃煤清洁能源重点实验室</span></span></p>\r\n', ''),
(2, 1, 1, 0, '院所简介', '{cmspath}/a/jigouqingkuang/yuansuojianjie', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '院所简介', 0, '{cmspath}/a/jigouqingkuang', '', 0, 0, '0', '<h1 style=\"text-align: center\">\r\n <span style=\"font-size:26px;\">黑龙江省能源环境研究院简介</span></h1>\r\n<p>\r\n <span style=\"font-size:28px;\">&nbsp; &nbsp; &nbsp; &nbsp;黑龙江省能源环境研究院创建于1995年前身为&ldquo;黑龙江省节油技术开发中心&rdquo;隶属于黑龙江省科技厅2003年更名为&ldquo;黑龙江省能源环境研究院&rdquo;。2010年隶属于黑龙江省科学院属公益一类事业单位。</span></p>\r\n<span style=\"font-size:28px;\">&nbsp; &nbsp; &nbsp; &nbsp; 黑龙江省能源环境研究院在能源和环境领域是一个基础研究与应用研究并重、公益服务与技术创新相结合的综合性研究院。二十多年来,黑龙江省能源环境研究院根据地域特点,不断完善学科体系,稳步提高科研水平,形成了鲜明的科研特色。其职能为&ldquo;围绕国家重大战略需求,面向黑龙江省政府决策和公益事业发展的战略需求,在环境工程、一次能源、二次能源等学科领域开展基础性、系统性和前瞻性研究,掌握和突破关键核心技术,为国家和黑龙江省战略、经济和社会发展提供科技支撑&rdquo;。拥有能源化学省级领军人才梯队和黑龙江省燃油燃煤清洁能源重点实验室。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 近年来形成了能源化学、生物质能和固废处理与环境改善三个学科领域六个重点研究方向的科研体系。在黑龙江省建成了首座可全年连续稳定运行的大型沼气发电工程,在催化油浆制备新材料形成技术创新,在油页岩综合利用形成技术储备。在煤矸石处理、室内空气质量改善、农村垃圾、厕所革命、秸秆固体燃料等方向积极与国内知名高校、科研院所和企业开展联合,大力推进废弃物处理技术联合研发和成果落地,改善农村和城市环境,助推污染防治攻坚战。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 建院以来累计完成国家攻关项目4项科技部国际科技合作项目2项黑龙江省重大项目1项黑龙江省科技攻关项目11项省自然科学基金2项各级科研项目120余项。获得省科技进步一等奖1项省科技发明一等奖2项中国石油和化学协会科技进步二等奖1项省科技进步三等奖1项省科学院科技进步一等奖2项二等奖1项获得国家专利100余项发表科技论文200余篇。<br />\r\n&nbsp; &nbsp; &nbsp; &nbsp; 进入新时代的黑龙江省能源环境研究院,将&ldquo;不忘初心,牢记使命&rdquo;,面向政府战略需求,面向技术创新前沿,面向公益事业发展,通过&ldquo;协同创新、开放合作&rdquo;的办院理念,推动高质量发展,为黑龙江省在能源和环境领域的全方位发展提供技术引领,为国家和地方经济、社会发展做出应有的贡献。</span>', ''),
(3, 1, 1, 1, '机构职能', '{cmspath}/a/jigouqingkuang/jigouzhinen', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '机构职能', 0, '{cmspath}/a/jigouqingkuang', '', 1, 0, '0', '&nbsp;\r\n<h1 style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\">黑龙江省能源环境研究院(孵化中心)组织结构</span></strong></h1>\r\n<h2>\r\n &nbsp;</h2>\r\n<h1>\r\n <span style=\"font-size: 20px\">1、科研开发部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 20px\"><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span>环境科学与节能技术研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">能源化学研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">油品助剂研发中心</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">控制实验室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">生物质能源实验室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">寒区生物质能源基地</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">2、行政管理部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">科研与产业化办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">综合管理办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp; </span><span style=\"font-size: 20px\"><strong><font size=\"6\">&middot;</font></strong><span style=\"font-size: 20px\">财务管理办公室</span></span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">3、</span><span style=\"font-size: 20px\">领军人才梯队</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">能源化学</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">4、省重点室验室</span></h1>\r\n<p style=\"margin-top: 0px; margin-bottom: 0px\">\r\n <strong><span style=\"font-size: 28px\">&nbsp;&nbsp;&nbsp; &middot;</span></strong><span style=\"font-size: 20px\"><span style=\"font-family: 宋体\">燃油燃煤清洁能源重点实验室</span></span></p>\r\n', ''),
(4, 1, 1, 2, '领导关怀', '{cmspath}/a/jigouqingkuang/lingdaoguanhuai', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '领导关怀', 0, '{cmspath}/a/jigouqingkuang', '', 1, 0, '0', '&nbsp;', ''),
(5, 1, 1, 3, '人才队伍', '{cmspath}/a/jigouqingkuang/rencaiduiwu', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '人才队伍', 0, '{cmspath}/a/jigouqingkuang', '', 1, 0, '0', '<h1>\r\n <span style=\"font-size: 20px\">、我院现有正高3人副高7人中级11人初级9人春苗1人研究生9人。</span><br />\r\n &nbsp;</h1>\r\n<h1>\r\n <span style=\"font-size: 20px\">(二)、引进清华大学的杨旭东博士和黑龙江科技大学的周国江、吕哲博士。三位博士的引进可以使我院在环境和煤化工领域找到准确的切入点,并提升现有科技人员的研究水平,使科研团队的能力得到加强。</span></h1>\r\n', ''),
(6, 1, 1, 4, '光荣榜', '{cmspath}/a/jigouqingkuang/guangrongbang', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '光荣榜', 0, '{cmspath}/a/jigouqingkuang', '', 1, 0, '0', '<div style=\"text-align: center\">\r\n &nbsp;<img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH25Z3220.jpg\" style=\"width: 600px; height: 401px\" /></div>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">科学技术发明一等奖</span><br />\r\n <br />\r\n &nbsp;</p>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH2593T91.jpg\" style=\"width: 600px; height: 409px\" /></div>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">科学技术进步一等奖</span><br />\r\n &nbsp;</p>\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/kjfh/uploads/allimg/130707/1-130FH3000BQ.jpg\" style=\"width: 500px; height: 716px\" /></div>\r\n<p style=\"text-align: center\">\r\n <span style=\"font-size: 20px\">全国化工系统技术二等奖</span></p>\r\n', ''),
(7, 1, 1, 5, '历任领导', '{cmspath}/a/jigouqingkuang/lirenlingdao', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '历任领导', 0, '{cmspath}/a/jigouqingkuang', '', 1, 0, '0', '&nbsp;', ''),
(8, 0, 0, 3, '能源院动态', '{cmspath}/a/nenyuanyuandongtai', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '能源院动态', 0, '{cmspath}/a/nenyuanyuandongtai', '', 0, 0, '0', '&nbsp;', ''),
(9, 8, 8, 0, '简讯', '{cmspath}/a/nenyuanyuandongtai/gonggaolan', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '公告栏', 0, '{cmspath}/a/nenyuanyuandongtai', '', 0, 0, '0', '&nbsp;', ''),
(10, 8, 8, 1, '能源院新闻', '{cmspath}/a/nenyuanyuandongtai/nenyuanyuanxinwen', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '能源院新闻', 0, '{cmspath}/a/nenyuanyuandongtai', '', 0, 0, '0', '', ''),
(24, 1, 1, 50, '历史沿革', '{cmspath}/a/jigouqingkuang/lishiyange', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigouqingkuang', '', 0, 0, '', '<h1>\r\n <span style=\"font-size: 22px\"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院成立于1995年前身为黑龙江省节油技术开发中心单位性质为公益三类事业单位隶属于黑龙江省科学技术厅2003年更名为黑龙江省能源环境研究院2006年单位性质转变为公益一类事业单位2010年隶属关系由黑龙江省科学技术厅变更为黑龙江省科学院2013年3月与黑龙江省科学院科技孵化中心合并。</strong></span></h1>\r\n&nbsp;', ''),
(12, 0, 0, 3, '科研靓点', '{cmspath}/a/keyanliangdian', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article_s.htm', '{style}/article_article_s.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '科研靓点', 0, '{cmspath}/a/keyanliangdian', '', 1, 0, '0', '&nbsp;', ''),
(13, 12, 12, 0, '科研项目情况', '{cmspath}/a/keyanliangdian/keyanxiangmuqingkuang', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article_s.htm', '{style}/article_article_s.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '科研项目情况', 0, '{cmspath}/a/keyanliangdian', '', 1, 0, '0', '', ''),
(14, 12, 12, 1, '科研人员档案', '{cmspath}/a/keyanliangdian/keyanrenyuandangan', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article_s.htm', '{style}/article_article_s.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '科研人员档案', 0, '{cmspath}/a/keyanliangdian', '', 1, 0, '0', '', ''),
(15, 12, 12, 2, '行业信息', '{cmspath}/a/keyanliangdian/xingyexinxi', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article_s.htm', '{style}/article_article_s.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '行业信息', 0, '{cmspath}/a/keyanliangdian', '', 1, 0, '0', '', ''),
(16, 0, 0, 6, '党政建设', '{cmspath}/a/dangtuanshenghuo', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '党团生活', 0, '{cmspath}/a/dangtuanshenghuo', '', 0, 0, '0', '&nbsp;', ''),
(17, 0, 0, 7, '学习园地', '{cmspath}/a/xuexiyuandi', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '学习园地', 0, '', '', 0, 0, '0', '', ''),
(22, 0, 0, 8, '联系我们', '{cmspath}/a/lianxiwomen', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '联系我们', 0, '{cmspath}/a/lianxiwomen', '', 0, 0, '0', '<h1>\r\n <span style=\"font-size: 20px\">邮箱:<a href=\"mailto:lifuqihappy@163.com\">hljnyfh@163.com</a>&nbsp;&nbsp;&nbsp;<a href=\"mailto:hljnyhj@163.com\">hljnyhj@163.com</a></span></h1>\r\n<h1>\r\n <span style=\"font-size: 20px\">电话0451-88071351&nbsp;&nbsp; 0451-82387268</span></h1>\r\n', ''),
(36, 25, 25, 47, '环境科学研究室', '{cmspath}/a/jigoushezhi/diyibumen', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}/{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigoushezhi', '', 0, 0, '', '<div style=\"text-align: center\">\r\n <span style=\"font-size: 22px\"><strong>环境科学研究室简介</strong></span></div>\r\n&nbsp;\r\n<p>\r\n <span style=\"font-size:22px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>环境科学研究室一直致力于节能减排技术和室内环境污染分析方面的研究工作。主要从事生物法处理生活、工业污水和室内空气中污染物的源解析及治理研究。</strong><br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>环境科学研究室曾完成过多项省部级科研项目,如:《奥里油脱硫技术研制及应用</strong>&nbsp;<strong>》、《燃煤锅炉催化脱硫技术研究》和《工业燃煤锅炉烟气净化技术</strong>&nbsp;<strong>》等项目,为我国固定污染源减排提供新技术</strong><strong>,</strong><strong>并分别获得黑龙江省科技一等奖</strong><strong>1</strong><strong>项、中国石油和化学工业科技进步类二等奖</strong><strong>1</strong><strong>项。还完成了基于废碳源的产油微藻提取生物油脂技术,既解决污水排放问题,又提供生物能源,为排污综合利用储备了基础技术。研究室正在参与编制国家行业标准《住宅建筑室内装修污染控制技术规程》,并承担室内环境相关课题两项。</strong><br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>环境科学研究室下设生物环境实验室、室内环境实验室、乳化实验室等,具有较为完备的分析测试仪器设备,如热脱附仪,粉尘检测仪,臭氧检测仪,甲醛便携检测仪,</strong><strong>TVOC</strong><strong>便携检测仪,测氡仪,</strong><strong>1m<sup>3</sup></strong><strong>环境气候箱等。同时,研究室成员专业互补,高中初级分布合理,并拥有多年的实验室工作经验,可以处理各种环境、节能实验,科研实力较强。</strong><br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>研究室主任介绍:</strong><br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>王志成,</strong><strong>1973</strong><strong>年出生,学士,研究员级高级工程师,能源化学省级领军人才梯队后备带头人,省级燃油燃煤清洁能源重点实验室成员,兼任:省能源环境学会常务理事、省化学会理事。从事新型醇醚燃料催化剂和乳化燃料催化剂及合成工艺研究,以及室内空气污染研究工作。主持和主研科研课题</strong><strong>22</strong><strong>项,其中包括国家攻关计划项目</strong><strong>3</strong><strong>项,省自然科学基金项目</strong><strong>1</strong><strong>项,国家政府间国际合作项目</strong><strong>1</strong><strong>项,省攻关计划项目</strong><strong>6</strong><strong>项。获省科技进步一等奖</strong><strong>1</strong><strong>项,省科技发明一等奖</strong><strong>2</strong><strong>项,三等奖</strong><strong>1</strong><strong>项,国家石化协会科技二等奖</strong><strong>1</strong><strong>项,发表学术论文</strong><strong>11</strong><strong>篇。</strong></span></p>\r\n', ''),
(25, 0, 0, 2, '机构设置', '{cmspath}/a/jigoushezhi', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/article_article1.htm', '{style}/article_article.htm', '{typedir}/{Y}/{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigoushezhi', '', 0, 0, '', '&nbsp;\r\n<h1 style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\">黑龙江省能源环境研究院组织结构</span></strong></h1>\r\n<h2>\r\n &nbsp;</h2>\r\n<h1>\r\n <span style=\"font-size: 20px\">1、科研开发部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 20px\"><span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span>环境科学研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">能源化学研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px;\"><strong>&nbsp; &nbsp; &middot;</strong></span><span style=\"font-size: 20px;\">能源微生物研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">节能技术研究室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">生物质能源实验室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">控制实验室</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">2、行政管理部门</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">科研管理办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">综合管理办公室</span></p>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">财务管理办公室</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">3、</span><span style=\"font-size: 20px\">领军人才梯队</span></h1>\r\n<p>\r\n <span style=\"font-size: 28px\"><strong>&nbsp;&nbsp;&nbsp; &middot;</strong></span><span style=\"font-size: 20px\">能源化学</span></p>\r\n<h1>\r\n <span style=\"font-size: 20px\">4、省重点室验室</span></h1>\r\n<p style=\"margin-top: 0px; margin-bottom: 0px\">\r\n <strong><span style=\"font-size: 28px\">&nbsp;&nbsp;&nbsp; &middot;</span></strong><span style=\"font-size: 20px\"><span style=\"font-family: 宋体\">燃油燃煤清洁能源重点实验室</span></span></p>\r\n', ''),
(26, 0, 0, 4, '科研成果', '{cmspath}/a/keyanchengguo', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '科研成果', 0, '', '', 0, 0, '0', '', ''),
(27, 26, 26, 0, '成果', '{cmspath}/a/keyanchengguo/chengguo', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '成果', 0, '', '', 0, 0, '0', '', ''),
(28, 26, 26, 1, '获奖', '{cmspath}/a/keyanchengguo/huojiang', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '获奖', 0, '', '', 0, 0, '0', '', ''),
(29, 26, 26, 2, '专利/论文', '{cmspath}/a/keyanchengguo/zhuanli_lunwen', 1, 'index.html', 1, 1, -1, 0, 0, '{style}/index_article.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '专利/论文', 0, '', '', 0, 0, '0', '', ''),
(30, 0, 0, 5, '服务与支持', '{cmspath}/a/fuwuyuzhichi', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '服务与支持', 0, '{cmspath}/a/fuwuyuzhichi', '', 1, 0, '0', '&nbsp;', ''),
(31, 30, 30, 0, '节能评估', '{cmspath}/a/fuwuyuzhichi/jienenpinggu', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '节能评估', 0, '{cmspath}/a/fuwuyuzhichi', '', 1, 0, '0', '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\"><span style=\"font-size: 22px\">节能咨询评估</span></span></strong><br />\r\n &nbsp;</div>\r\n<strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 根据《黑龙江省节能服务机构备案管理暂行办法》黑发改环资{2010}799号文件规定黑龙江省能源环境研究院于2011年向省发改委申请节能服务机构备案并通过审核批准获准在我省行政辖区内从事节能咨询评估、能源审计监测、清洁生产审核等业务。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该资质使黑龙江省能源环境研究院成为我省第三批拥有审核资质的节能服务机构。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主要业务:受项目建设单位委托,可编制固定资产投资项目节能评估文件。&nbsp;</span></strong>', ''),
(32, 30, 30, 1, '能源审计', '{cmspath}/a/fuwuyuzhichi/nenyuanshenji', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '能源审计', 0, '{cmspath}/a/fuwuyuzhichi', '', 1, 0, '0', '<div style=\"text-align: center\">\r\n &nbsp;<strong><span style=\"font-size: 20px\"><span style=\"font-size: 22px\">能源审计监测</span></span></strong><br />\r\n &nbsp;</div>\r\n&nbsp;<strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 根据《黑龙江省节能服务机构备案管理暂行办法》黑发改环资{2010}799号文件规定黑龙江省能源环境研究院于2011年向省发改委申请节能服务机构备案并通过审核批准获准在我省行政辖区内从事节能咨询评估、能源审计监测、清洁生产审核等业务。</span></strong><br />\r\n<span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>该资质使黑龙江省能源环境研究院成为我省第二批拥有审核资质的节能服务机构。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主要业务:受政府部门委托,可对外提供能源审计、能源监测、节能改造项目节能量审核及竣工节能验收等服务。</strong></span>', ''),
(33, 30, 30, 2, '清洁生产审核', '{cmspath}/a/fuwuyuzhichi/qingjieshengchanshenhe', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '清洁生产审核', 0, '{cmspath}/a/fuwuyuzhichi', '', 1, 0, '0', '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 22px\">清洁生产审核</span></strong><br />\r\n &nbsp;</div>\r\n<div>\r\n <strong><span style=\"font-size: 22px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 根据《黑龙江省节能服务机构备案管理暂行办法》黑发改环资{2010}799号文件规定黑龙江省能源环境研究院于2011年向省发改委申请节能服务机构备案并通过审核批准获准在我省行政辖区内从事节能咨询评估、能源审计监测、清洁生产审核等业务。</span></strong></div>\r\n<strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 该资质使黑龙江省能源环境研究院成为我省第二批拥有审核资质的节能服务机构。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主要业务:受政府部门委托,可对外提供编制清洁生产审核报告等服务。&nbsp;</span></strong>', ''),
(34, 30, 30, 3, '检测中心', '{cmspath}/a/fuwuyuzhichi/jiancezhongxin', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '检测中心', 0, '{cmspath}/a/fuwuyuzhichi', '', 1, 0, '0', '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\"><span style=\"font-size: 22px\">检测中心</span></span></strong><br />\r\n &nbsp;</div>\r\n<strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省科学院能源环境研究院检测中心成立于2011年该中心依托黑龙江省燃煤、燃油重点实验室分别于2011年和2012年建立由省科学技术厅组织的&ldquo;黑龙江省科技创新创业共享服务平台&rdquo;,及由省科学院组织的&ldquo;大中型科学仪器共享平台&rdquo;。平台针对我院实验中心油品检测的现状,发挥资源优势,提高实验仪器设备利用率。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 检测中心现有实验分析检测仪器共计40余台/套,包括石油产品闭口闪点测定器、石油产品运动粘度测定器、石油产品蒸馏测定器、石油产品饱和蒸汽压测定器、石油产品铜片腐蚀测定器、汽油辛烷值、汽油氧化安定性、全自动量热仪、傅里叶变换红外光谱仪和气相色谱-质谱联用仪等。2012年先后为24个公司/集团提供服务达到695次服务机时数达7948小时。并连续两年获得黑龙江科技创新创业共享服务平台的&ldquo;共享服务优秀集体&rdquo;、&ldquo;先进加盟单位&rdquo;以及&ldquo;先进个人&rdquo;的荣誉称号。&nbsp;</span></strong>', ''),
(35, 30, 30, 4, '控制工程编程设计', '{cmspath}/a/fuwuyuzhichi/kongzhigongchengbianchengsheji', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '控制工程编程设计', 0, '{cmspath}/a/fuwuyuzhichi', '', 1, 0, '0', '<h1 style=\"text-align: center\">\r\n <span style=\"font-size: 22px\">控制工程编程设计</span></h1>\r\n<p>\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>工程设计部有一批具有丰富经验的电气、自控方面的专家能够承揽清洁能源、生物质能等领域的控制工程的工作对沼气发酵工艺控制、太阳能集热器控制都有丰富的实践经验。尤其擅长工艺设计及PLC编程设计方面的工作。</strong></span></p>\r\n', ''),
(37, 25, 25, 48, '能源化学研究室', '{cmspath}/a/jigoushezhi/nenyuanhuaxueyanjiushi', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}/{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigoushezhi', '', 0, 0, '', '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 22px\">能源化学研究室简介</span></strong></div>\r\n<p>\r\n <strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源化学研究室主要从事常规能源、非常规能源、生物质能及清洁能源技术的研究研究范围涉及石油化工、煤化工、生物化工和燃料化工等领域。近三年先后承担省级、市级各类科技开发项目10余项取得了一批达到国内先进水平的标志性成果。目前该研究室在科研领域已初步形成四条技术开发链条页岩油加氢提质转化技术页岩油制取油砂分离剂技术煤与废弃有机制品共焦化技术木焦油加氢提质转化技术。<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源化学研究室经过多年的实践,逐步形成一支结构合理、自主研发能力强的创新型科研梯队。与中科院大连物化所、大庆石化研究院、大连理工大学、哈尔滨工业大学等多家科研院所和高校在基础研究、信息交流、资源共享等方面建立了良好的科研互联关系。</span><br />\r\n <span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 研究室主任介绍:<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 陈松1969年出生高级工程师现任黑龙江省能源环境研究院能源化学研究室主任。黑龙江省节能评估审查中心化工专家黑龙江科技大学校外研究生导师。主要从事能源化学领域前沿技术的研究研究范围包括常规、非常规能源的加工工艺和工程的研究高硫高酸原油、稠油的改质及转化工艺的研究。其成果在石油化工、煤化工、油页岩资源综合利用等方面具有较高理论指导意义和实用价值。</span></strong></p>\r\n', ''),
(38, 25, 25, 50, '节能技术研究室', '{cmspath}/a/yanfazhongxin/', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}/{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigoushezhi', '', 0, 0, '', '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 22px\">节能技术研究室简介</span></strong><br />\r\n &nbsp;</div>\r\n<strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院节能技术研究室先后承担和参与承担完成了国家&ldquo;九五&rdquo;重点科技攻关计划项目,国家&ldquo;十五&rdquo;重点科技攻关项目获得了国家级、省级科研成果20多项。获黑龙江省科技发明一等奖一项。获黑龙江省科技进步一等奖一项、获得了全国石油化工系统二等奖一项获黑龙江省科技进步三等一项奖等。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院</span></strong><strong><span style=\"font-size: 20px;\">节能技术研究室</span></strong><strong><span style=\"font-size: 20px\">秉承&ldquo;崇尚科学,求实创新&rdquo;的指导方针,具有人员素质高、仪器种类齐全、测试手段标准可靠和可达到测试要求的工作环境等特点。<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></strong>\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n&nbsp;\r\n<div style=\"text-align: center\">\r\n <img alt=\"\" src=\"/uploads/allimg/130802/1-130P21041315P.jpg\" style=\"width: 562px; height: 398px\" /></div>\r\n&nbsp;\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n&nbsp;\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n&nbsp;<br />\r\n<div style=\"text-align: center\">\r\n &nbsp;</div>\r\n', ''),
(39, 25, 25, 50, '生物质能源实验室', '{cmspath}/a/shiyanshi/', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}/{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigoushezhi', '', 0, 0, '', '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 22px\">生物质能源实验室简介</span></strong></div>\r\n<strong><span style=\"font-size: 20px\">&nbsp;<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 生物质能源实验室主要从事寒区沼气工程、固体废弃物利用、农村生物质资源、厌氧微生物机理、厌氧消化技术以及农村资源与环境综合研究与开发等工作涉及微生物学、生物化学与分子生物学、环境工程、能源工程、农业资源与环境等学科。拥有先进科研仪器设备40余台具有较完备的研究平台和实验条件。实验室已承担和在研的有国家国际科技合作专项课题、黑龙江省科技攻关计划、黑龙江省科学院科学研究基金、黑龙江省科学院青年创新基金等十余项课题。已经在高温厌氧消化技术、寒区沼气发电工程研究等寒区生物质资源能源化利用技术方面取得了突破性研究进展另外还开展了高效产甲烷菌的分子生物学、沼液高效回用、厌氧菌影响因素等研究为在我国寒区兴建大型沼气工程奠定了理论及技术基础。目前已发表研究论文10余篇申报专利10项。</span></strong>', ''),
(40, 25, 25, 49, '能源微生物研究室', '{cmspath}/a/jigoushezhi/hanqushengwuzhinenyuanjishuyingyongg', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}/{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigoushezhi', '', 0, 0, '', '<div style=\"text-align: center\">\r\n <strong><span style=\"font-size: 20px\"><span style=\"font-size: 22px\">能源微生物研究室简介</span></span><br />\r\n &nbsp;</strong></div>\r\n<div>\r\n <strong><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 能源微生物研究室致力于环境工程、二次能源技术和生物工程三大学科交叉领域的应用基础研究。主要研究方向是:<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1、畜禽粪便资源化技术<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2、秸秆资源化技术。</span><br />\r\n <br />\r\n &nbsp;</strong></div>\r\n<div style=\"text-align: center\">\r\n <br />\r\n <strong><img alt=\"\" src=\"/uploads/allimg/130808/1-130PQ00H9120.JPG\" style=\"width: 516px; height: 343px\" /><br />\r\n &nbsp;</strong></div>\r\n<div>\r\n <strong><span style=\"font-size: 20px\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></strong><strong><span style=\"font-size: 20px\">近年来,</span></strong><strong><span style=\"font-size: 20px;\">能源微生物研究室</span></strong><strong><span style=\"font-size: 20px\">承担国家级、省市级、院基金项目20余项多项成果获奖。其中畜禽粪便高温厌氧消化技术与牛粪沼液秸秆联用技术是我国唯一成功应用于高寒地区连续作业的技术并取得了显著的社会效益。</span></strong></div>\r\n', ''),
(41, 25, 25, 50, '控制实验室', '{cmspath}/a/jigoushezhi/gongchengshejibu', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}/{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigoushezhi', '', 0, 0, '', '<h1 style=\"text-align: center;\">\r\n <span style=\"font-size: 22px;\">控制实验室简介</span></h1>\r\n<p>\r\n <strong><span style=\"font-size: 20px;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 控制实验室主要进行</span></strong><strong><span style=\"font-size: 20px;\">电气设计、自控设计、仪表安装调试及控制系统的设计和编制工作,工作中善于提出改进措施,解决项目中遇到的关键性的技术难题。</span></strong><br />\r\n <strong><span style=\"font-size: 20px;\">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span></strong><strong><span style=\"font-size: 20px;\">控制实验室</span></strong><strong><span style=\"font-size: 20px;\">参与研制建设的国家级国际科技合作项目《工业化封闭环式沼气、发电系统》以及省国际科技合作项目《加拿大直贮热太阳能技术》提升了我省高寒地区高温厌氧发酵和光伏发酵温室控制领域在国际上的知名度,该项目得到了加拿大阿尔伯塔研究院业内专家的一致好评。</span></strong></p>\r\n', ''),
(42, 1, 1, 50, '领导班子', '{cmspath}/a/jigouqingkuang/lingdaobanzi', 1, 'index.html', 1, 1, -1, 1, 0, '{style}/article_article1l.htm', '{style}/list_article.htm', '{style}/article_article.htm', '{typedir}/{Y}/{M}{D}/{aid}.html', '{typedir}/list_{tid}_{page}.html', 'default', '', '', '', 0, '{cmspath}/a/jigouqingkuang', '', 0, 0, '', '&nbsp;\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <img alt=\"\" src=\"/uploads/allimg/130826/1-130R613423TS.JPG\" style=\"height: 320px; width: 500px\" /></td>\r\n <td style=\"width: 5px\">\r\n &nbsp;</td>\r\n <td style=\"width: 200px; line-height: 24px\">\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td colspan=\"3\" style=\"line-height: 24px\">\r\n &nbsp;<br />\r\n <span style=\"font-family: courier new, courier, monospace\"><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 26px\"><strong>徐 晓 秋</strong></span><br />\r\n <br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中共党员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院院长、党委书记<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;研究员级高级工程师</span></span><br />\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n&nbsp;\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <img alt=\"\" src=\"/uploads/allimg/130826/1-130R61403405M.JPG\" style=\"height: 320px; width: 500px\" /></td>\r\n <td style=\"width: 5px\">\r\n &nbsp;</td>\r\n <td style=\"width: 200px; line-height: 24px\">\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td colspan=\"3\" style=\"line-height: 24px\">\r\n &nbsp;<br />\r\n <span style=\"font-family: courier new, courier, monospace\"><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 26px\"><strong>关 春 玲</strong></span><br />\r\n <br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中共党员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院副院长、党委委员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;高级会计师</span></span><br />\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n&nbsp;<br />\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <img alt=\"\" src=\"/uploads/allimg/191220/1-19122011363R19.jpg\" style=\"height: 398px; width: 500px;\" /></td>\r\n <td style=\"width: 5px\">\r\n &nbsp;</td>\r\n <td style=\"width: 200px; line-height: 24px\">\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td colspan=\"3\" style=\"line-height: 24px\">\r\n &nbsp;<br />\r\n <span style=\"font-family: courier new, courier, monospace\"><span style=\"font-size: 20px\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size: 26px\"><strong>刘&nbsp; &nbsp; 伟</strong></span><br />\r\n <br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 中共党员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黑龙江省能源环境研究院副院长、党委委员<br />\r\n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;副研究员</span></span><br />\r\n &nbsp;</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n&nbsp;<br />\r\n', '');
-- --------------------------------------------------------
--
-- 表的结构 `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- 表的结构 `links`
--
CREATE TABLE `links` (
`id` bigint(20) UNSIGNED NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `links`
--
INSERT INTO `links` (`id`, `title`, `url`, `created_at`, `updated_at`) VALUES
(1, '黑龙江省科学院', 'http://www.has.ac.cn', '2020-05-28 08:46:27', '2020-05-29 06:09:24');
-- --------------------------------------------------------
--
-- 表的结构 `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转存表中的数据 `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2016_01_04_173148_create_admin_tables', 1),
(4, '2019_08_19_000000_create_failed_jobs_table', 1),
(5, '2020_05_28_153525_create_articles_table', 2),
(6, '2020_05_28_153536_create_categories_table', 2),
(7, '2020_05_28_163818_create_links_table', 3),
(8, '2017_07_17_040159_create_config_table', 4);
-- --------------------------------------------------------
--
-- 表的结构 `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- 表的结构 `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- 转储表的索引
--
--
-- 表的索引 `admin_config`
--
ALTER TABLE `admin_config`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `admin_config_name_unique` (`name`);
--
-- 表的索引 `admin_menu`
--
ALTER TABLE `admin_menu`
ADD PRIMARY KEY (`id`);
--
-- 表的索引 `admin_operation_log`
--
ALTER TABLE `admin_operation_log`
ADD PRIMARY KEY (`id`),
ADD KEY `admin_operation_log_user_id_index` (`user_id`);
--
-- 表的索引 `admin_permissions`
--
ALTER TABLE `admin_permissions`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `admin_permissions_name_unique` (`name`),
ADD UNIQUE KEY `admin_permissions_slug_unique` (`slug`);
--
-- 表的索引 `admin_roles`
--
ALTER TABLE `admin_roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `admin_roles_name_unique` (`name`),
ADD UNIQUE KEY `admin_roles_slug_unique` (`slug`);
--
-- 表的索引 `admin_role_menu`
--
ALTER TABLE `admin_role_menu`
ADD KEY `admin_role_menu_role_id_menu_id_index` (`role_id`,`menu_id`);
--
-- 表的索引 `admin_role_permissions`
--
ALTER TABLE `admin_role_permissions`
ADD KEY `admin_role_permissions_role_id_permission_id_index` (`role_id`,`permission_id`);
--
-- 表的索引 `admin_role_users`
--
ALTER TABLE `admin_role_users`
ADD KEY `admin_role_users_role_id_user_id_index` (`role_id`,`user_id`);
--
-- 表的索引 `admin_users`
--
ALTER TABLE `admin_users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `admin_users_username_unique` (`username`);
--
-- 表的索引 `admin_user_permissions`
--
ALTER TABLE `admin_user_permissions`
ADD KEY `admin_user_permissions_user_id_permission_id_index` (`user_id`,`permission_id`);
--
-- 表的索引 `adverts`
--
ALTER TABLE `adverts`
ADD PRIMARY KEY (`id`) USING BTREE;
--
-- 表的索引 `articles`
--
ALTER TABLE `articles`
ADD PRIMARY KEY (`id`) USING BTREE,
ADD KEY `category_id` (`category_id`) USING BTREE;
--
-- 表的索引 `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`),
ADD KEY `parent_id` (`parent_id`);
--
-- 表的索引 `dede_addonarticles`
--
ALTER TABLE `dede_addonarticles`
ADD PRIMARY KEY (`aid`),
ADD KEY `typeid` (`typeid`);
--
-- 表的索引 `dede_archives`
--
ALTER TABLE `dede_archives`
ADD PRIMARY KEY (`id`),
ADD KEY `sortrank` (`sortrank`),
ADD KEY `mainindex` (`arcrank`,`typeid`,`channel`,`flag`,`mid`),
ADD KEY `lastpost` (`lastpost`,`scores`,`goodpost`,`badpost`,`notpost`);
--
-- 表的索引 `dede_arctypes`
--
ALTER TABLE `dede_arctypes`
ADD PRIMARY KEY (`id`),
ADD KEY `reid` (`reid`,`isdefault`,`channeltype`,`ispart`,`corank`,`topid`,`ishidden`),
ADD KEY `sortrank` (`sortrank`);
--
-- 表的索引 `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- 表的索引 `links`
--
ALTER TABLE `links`
ADD PRIMARY KEY (`id`);
--
-- 表的索引 `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- 表的索引 `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- 表的索引 `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- 在导出的表使用AUTO_INCREMENT
--
--
-- 使用表AUTO_INCREMENT `admin_config`
--
ALTER TABLE `admin_config`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- 使用表AUTO_INCREMENT `admin_menu`
--
ALTER TABLE `admin_menu`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
--
-- 使用表AUTO_INCREMENT `admin_operation_log`
--
ALTER TABLE `admin_operation_log`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=617;
--
-- 使用表AUTO_INCREMENT `admin_permissions`
--
ALTER TABLE `admin_permissions`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- 使用表AUTO_INCREMENT `admin_roles`
--
ALTER TABLE `admin_roles`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- 使用表AUTO_INCREMENT `admin_users`
--
ALTER TABLE `admin_users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- 使用表AUTO_INCREMENT `adverts`
--
ALTER TABLE `adverts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- 使用表AUTO_INCREMENT `articles`
--
ALTER TABLE `articles`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=269;
--
-- 使用表AUTO_INCREMENT `categories`
--
ALTER TABLE `categories`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- 使用表AUTO_INCREMENT `dede_arctypes`
--
ALTER TABLE `dede_arctypes`
MODIFY `id` smallint(5) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;
--
-- 使用表AUTO_INCREMENT `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- 使用表AUTO_INCREMENT `links`
--
ALTER TABLE `links`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- 使用表AUTO_INCREMENT `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- 使用表AUTO_INCREMENT `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;